The Payment Initiation API enables you to initiate a payment using one of the payment products made available by the Bank of the Payment Service User in his internet Banking.
With this API it is possible to integrate this type of of payments in an online store as well as to provide personal finance services to both private and corporate clients.
This API intends to provide an interface to access PSD2 Payments services.
The API is designed on a REST model using JSON structures.
Paths
/{aspsp-cde}/v1-0-3/bulk-payments/{payment-product}
Bulk Payment Initiation Request
Creates a bulk payment initiation request at the ASPSP.
Identification of the aspsp
{
"default": ""
}
Type of payment
{
"default": "sepa-credit-transfers",
"enum": [
"sepa-credit-transfers",
"cross-border-credit-transfers",
"instant-sepa-credit-transfers",
"target-2-payments",
"sdcl-sepa-credit-transfers",
"urgent-sepa-credit-transfers"
]
}
If it equals “true”, the TPP prefers a redirect over an embedded SCA approach. If it equals “false”, the TPP prefers not to be redirected for SCA. The ASPSP will then choose between the Embedded or the Decoupled SCA approach, depending on the choice of the SCA procedure by the TPP/PSU. If the parameter is not used, the ASPSP will choose the SCA approach to be applied depending on the SCA method chosen by the TPP/PSU.
{
"default": false
}
ID of the transaction as determined by the initiating party.
{
"default": ""
}
ID of the request, unique to the call, as determined bu the initiating party.
{
"default": ""
}
User identification in ASPSP
{
"default": ""
}
Type of the PSU-ID, needed in scenarios where PSUs have several PSU-IDs as access possibility.
{
"default": ""
}
Corporate User identification in ASPSP
{
"default": ""
}
Might be mandated in the ASPSPs documentation. Only used in a corporate context.
{
"default": ""
}
This data element may be contained, if the payment initiation transaction is part of a session, i.e. combined AIS/PIS service. This then contains the consentId of the related AIS consent, which was performed prior to this payment initiation.
{
"default": ""
}
The forwarded Agent header field of the http request between PSU and TPP.
{
"default": ""
}
The forwarded IP Address header field consists of the corresponding http request IP Address field between PSU and TPP.
{
"default": ""
}
The forwarded IP Port header field consists of the corresponding HTTP request IP Port field between PSU and TPP, if available.
{
"default": ""
}
UUID (Universally Unique Identifier) for a device, which is used by the PSU, if available. UUID identifies either a device or a device dependant application installation. In case of an installation identification this ID need to be unaltered until removal from device.
{
"default": ""
}
Fingerprint of the device used in the request between PSU and TPP, if available.
{
"default": ""
}
Only used for Delegated Authentication Approach. \n "NSCA" - "SCA Not performed"; \n "SUCC" - "SCA Performed with Success"; \n If this data element is not used, there is no information about transaction SCA authentication
{
"enum": [
"NSCA",
"SUCC"
]
}
The forwarded Geo Location of the corresponding http request between PSU and TPP if available.
{
"pattern": "^GEO:[-?+?(\\d){1,3}.(\\d){6}]{8,11};[-?+?(\\d){1,3}.(\\d){6}]{8,11}$",
"default": "GEO:1.111111;-1.111111"
}
URI of the TPP, where the transaction flow shall be redirected to after a Redirect. Shall be contained at least if the tppRedirectPreferred parameter is set to true or is missing.
{
"default": ""
}
If it equals “true”, the TPP requests a delegated SCA approach. If it equals “false”, the TPP do not request a delegated SCA approach. If the parameter is not used, the TPP do not request a delegated SCA approach.
An identification provided by the ASPSP for the later identification of the authentication delegated.
A signature of the request by the TPP on application level. This might be mandated by ASPSP.
{
"default": ""
}
The certificate used for signing the request, in base64 encoding. Shall be contained if the signature is used.
{
"default": ""
}
Request date
{
"pattern": "yyyy-MM-dd'T'hh:MM:ss.SSS"
}
Hash of the message body. Should be present when Request body exists
{
"default": ""
}
Bulk Payment Initiation Request
{
"schema": {
"description": "Creates a bulk payment initiation request at the ASPSP.",
"type": "object",
"properties": {
"debtorAccount": {
"$ref": "#\/definitions\/AccountReference",
"description": ""
},
"debtorName": {
"description": "Payment's debtor name.",
"maxLength": 70,
"type": "string"
},
"batchBookingPreferred": {
"type": "boolean",
"description": "If this element equals true, the PSU prefers only one booking entry. If this element equals false, the PSU prefers individual booking of all contained individual transactions. The ASPSP will follow this preference according to contracts agreed on with the PSU."
},
"paymentInformationId": {
"description": "Unique identification as assigned by the sending party to unambiguously identify this bulk payment.",
"maxLength": 35,
"minLength": 1,
"type": "string"
},
"requestedExecutionDate": {
"type": "string",
"format": "date",
"description": "Indicates the acceptance of future dated payments by issuing an ASPSP."
},
"payments": {
"description": "Array of Payment Initiations",
"$ref": "#\/definitions\/BulkEntryArray"
}
},
"additionalProperties": false,
"required": [
"payments",
"paymentInformationId"
]
}
}
Created
Bad Request.
Unauthorized.
Forbidden.
Not Found.
Method Not Allowed.
Not Acceptable.
Request Timeout.
Unsupported Media Type.
Too Many Requests.
Internal Server Error.
Service Unavailable.
Gatewaty Timeout.
curl --request POST \
--url 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE' \
--header 'Date: REPLACE_THIS_VALUE' \
--header 'Delegation-ID: REPLACE_THIS_VALUE' \
--header 'Digest: REPLACE_THIS_VALUE' \
--header 'PSU-Agent: REPLACE_THIS_VALUE' \
--header 'PSU-Consent-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID-Type: REPLACE_THIS_VALUE' \
--header 'PSU-Device-Fingerprint: REPLACE_THIS_VALUE' \
--header 'PSU-Device-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Geo-Location: GEO:1.111111;-1.111111' \
--header 'PSU-ID: REPLACE_THIS_VALUE' \
--header 'PSU-ID-Type: REPLACE_THIS_VALUE' \
--header 'PSU-IP-Address: REPLACE_THIS_VALUE' \
--header 'PSU-IP-Port: REPLACE_THIS_VALUE' \
--header 'Signature: REPLACE_THIS_VALUE' \
--header 'TPP-Certificate: REPLACE_THIS_VALUE' \
--header 'TPP-Delegated-Preferred: REPLACE_THIS_VALUE' \
--header 'TPP-Redirect-URI: REPLACE_THIS_VALUE' \
--header 'TPP-Request-ID: REPLACE_THIS_VALUE' \
--header 'TPP-Transaction-ID: REPLACE_THIS_VALUE' \
--header 'Transaction-SCA-Performed: REPLACE_THIS_VALUE' \
--header 'X-IBM-Client-Id: REPLACE_THIS_KEY' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{"debtorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SXR"},"debtorName":"Lucas Sparks","batchBookingPreferred":false,"paymentInformationId":"3565709980336128","requestedExecutionDate":"2001-01-05","payments":[{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OWI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903448233539106"
curl --request POST \
--url 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE' \
--header 'Date: REPLACE_THIS_VALUE' \
--header 'Delegation-ID: REPLACE_THIS_VALUE' \
--header 'Digest: REPLACE_THIS_VALUE' \
--header 'PSU-Agent: REPLACE_THIS_VALUE' \
--header 'PSU-Consent-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID-Type: REPLACE_THIS_VALUE' \
--header 'PSU-Device-Fingerprint: REPLACE_THIS_VALUE' \
--header 'PSU-Device-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Geo-Location: GEO:1.111111;-1.111111' \
--header 'PSU-ID: REPLACE_THIS_VALUE' \
--header 'PSU-ID-Type: REPLACE_THIS_VALUE' \
--header 'PSU-IP-Address: REPLACE_THIS_VALUE' \
--header 'PSU-IP-Port: REPLACE_THIS_VALUE' \
--header 'Signature: REPLACE_THIS_VALUE' \
--header 'TPP-Certificate: REPLACE_THIS_VALUE' \
--header 'TPP-Delegated-Preferred: REPLACE_THIS_VALUE' \
--header 'TPP-Redirect-URI: REPLACE_THIS_VALUE' \
--header 'TPP-Request-ID: REPLACE_THIS_VALUE' \
--header 'TPP-Transaction-ID: REPLACE_THIS_VALUE' \
--header 'Transaction-SCA-Performed: REPLACE_THIS_VALUE' \
--header 'X-IBM-Client-Id: REPLACE_THIS_KEY' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{"debtorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SXR"},"debtorName":"Lucas Sparks","batchBookingPreferred":false,"paymentInformationId":"3565709980336128","requestedExecutionDate":"2001-01-05","payments":[{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OWI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903448233539106","remittanceInformationUnstructured":"","purposeCode":"icol","chargeBearer":"SHAR","creditorAgentName":"30074838931581","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CKN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304236509352134","remittanceInformationUnstructured":"","purposeCode":"dufo","chargeBearer":"SHAR","creditorAgentName":"5497962127109205","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NML"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528540050673369","remittanceInformationUnstructured":"","purposeCode":"jism","chargeBearer":"SHAR","creditorAgentName":"4026204005028626","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HSB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018771388484995","remittanceInformationUnstructured":"","purposeCode":"weba","chargeBearer":"SHAR","creditorAgentName":"5411755248541998","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LNN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528457986234648","remittanceInformationUnstructured":"","purposeCode":"dajo","chargeBearer":"SHAR","creditorAgentName":"5449054197268712","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ARX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528606398118886","remittanceInformationUnstructured":"","purposeCode":"ludg","chargeBearer":"SHAR","creditorAgentName":"6266495377678436","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BWI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018152476141799","remittanceInformationUnstructured":"","purposeCode":"etuh","chargeBearer":"SHAR","creditorAgentName":"5610297224926470","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LSD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5410065703822060","remittanceInformationUnstructured":"","purposeCode":"taon","chargeBearer":"SHAR","creditorAgentName":"5459460276173805","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BFI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018267123100475","remittanceInformationUnstructured":"","purposeCode":"jenf","chargeBearer":"SHAR","creditorAgentName":"6334030206173123","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GCE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30058919510786","remittanceInformationUnstructured":"","purposeCode":"nacc","chargeBearer":"SHAR","creditorAgentName":"4026716251639681","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ISN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304979428927888","remittanceInformationUnstructured":"","purposeCode":"kogm","chargeBearer":"SHAR","creditorAgentName":"4903202326462225","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RLJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334072096645299","remittanceInformationUnstructured":"","purposeCode":"bopc","chargeBearer":"SHAR","creditorAgentName":"347069896673883","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IUW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5158426720078837","remittanceInformationUnstructured":"","purposeCode":"vevo","chargeBearer":"SHAR","creditorAgentName":"30051776401355","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GVL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373061549264354","remittanceInformationUnstructured":"","purposeCode":"gaka","chargeBearer":"SHAR","creditorAgentName":"3528131759956881","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GPH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026552417789288","remittanceInformationUnstructured":"","purposeCode":"rege","chargeBearer":"SHAR","creditorAgentName":"6304366205125094","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QKK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903316123839938","remittanceInformationUnstructured":"","purposeCode":"atei","chargeBearer":"SHAR","creditorAgentName":"201496424860879","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FNU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6299438673051982","remittanceInformationUnstructured":"","purposeCode":"icji","chargeBearer":"SHAR","creditorAgentName":"6375991437150547","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZWT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36440788980700","remittanceInformationUnstructured":"","purposeCode":"zuci","chargeBearer":"SHAR","creditorAgentName":"5122345751765653","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PVX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011802443816841","remittanceInformationUnstructured":"","purposeCode":"celo","chargeBearer":"SHAR","creditorAgentName":"6295259515204561","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JSE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5198105399573078","remittanceInformationUnstructured":"","purposeCode":"huov","chargeBearer":"SHAR","creditorAgentName":"5610859529530669","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XEV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903777323039282","remittanceInformationUnstructured":"","purposeCode":"japu","chargeBearer":"SHAR","creditorAgentName":"36382630247096","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FAE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610026661009411","remittanceInformationUnstructured":"","purposeCode":"kubi","chargeBearer":"SHAR","creditorAgentName":"345970566472757","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LAN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903855001576674","remittanceInformationUnstructured":"","purposeCode":"suju","chargeBearer":"SHAR","creditorAgentName":"347297679594931","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TWU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6247039948697030","remittanceInformationUnstructured":"","purposeCode":"lild","chargeBearer":"SHAR","creditorAgentName":"6377745284233410","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NSO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026624327927959","remittanceInformationUnstructured":"","purposeCode":"reda","chargeBearer":"SHAR","creditorAgentName":"36943491237722","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FYJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334114780684364","remittanceInformationUnstructured":"","purposeCode":"cejr","chargeBearer":"SHAR","creditorAgentName":"6205621851826175","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LTS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30053207757884","remittanceInformationUnstructured":"","purposeCode":"tilf","chargeBearer":"SHAR","creditorAgentName":"36150979295871","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PWS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018232473211769","remittanceInformationUnstructured":"","purposeCode":"vobp","chargeBearer":"SHAR","creditorAgentName":"6334848177676224","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DOS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610883946798105","remittanceInformationUnstructured":"","purposeCode":"futd","chargeBearer":"SHAR","creditorAgentName":"6304011193600217","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GDG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334351602081565","remittanceInformationUnstructured":"","purposeCode":"salz","chargeBearer":"SHAR","creditorAgentName":"6375188093656806","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PLO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018401491192059","remittanceInformationUnstructured":"","purposeCode":"cezf","chargeBearer":"SHAR","creditorAgentName":"6370063866749390","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ODG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610705634406404","remittanceInformationUnstructured":"","purposeCode":"dupe","chargeBearer":"SHAR","creditorAgentName":"6334925110859909","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GIJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5199722370661505","remittanceInformationUnstructured":"","purposeCode":"nige","chargeBearer":"SHAR","creditorAgentName":"5610087920726187","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GFJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011373368426115","remittanceInformationUnstructured":"","purposeCode":"mazf","chargeBearer":"SHAR","creditorAgentName":"5610793382861061","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YGD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378000685418130","remittanceInformationUnstructured":"","purposeCode":"ebop","chargeBearer":"SHAR","creditorAgentName":"6334496214674669","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LJO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903332535980343","remittanceInformationUnstructured":"","purposeCode":"denk","chargeBearer":"SHAR","creditorAgentName":"6334300477364366","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XAB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30051975216034","remittanceInformationUnstructured":"","purposeCode":"tevi","chargeBearer":"SHAR","creditorAgentName":"5610076110785574","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UFG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304084896902925","remittanceInformationUnstructured":"","purposeCode":"kaid","chargeBearer":"SHAR","creditorAgentName":"6334631700968213","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HJY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6258969660429921","remittanceInformationUnstructured":"","purposeCode":"pikd","chargeBearer":"SHAR","creditorAgentName":"4026112050616965","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TTJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30015575272523","remittanceInformationUnstructured":"","purposeCode":"ildu","chargeBearer":"SHAR","creditorAgentName":"5018288976692194","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MDR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378749546251086","remittanceInformationUnstructured":"","purposeCode":"wude","chargeBearer":"SHAR","creditorAgentName":"30032315816378","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RKI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4844836781323257","remittanceInformationUnstructured":"","purposeCode":"tefm","chargeBearer":"SHAR","creditorAgentName":"4087554525336529","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UFU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343639982430366","remittanceInformationUnstructured":"","purposeCode":"turr","chargeBearer":"SHAR","creditorAgentName":"6372565085998176","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JUS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36727366799134","remittanceInformationUnstructured":"","purposeCode":"zeta","chargeBearer":"SHAR","creditorAgentName":"5413037263433148","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WMG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5142239482541044","remittanceInformationUnstructured":"","purposeCode":"jawi","chargeBearer":"SHAR","creditorAgentName":"5610230939415109","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CNT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304555402239159","remittanceInformationUnstructured":"","purposeCode":"zake","chargeBearer":"SHAR","creditorAgentName":"5610527279690740","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KPK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343552189301076","remittanceInformationUnstructured":"","purposeCode":"zoho","chargeBearer":"SHAR","creditorAgentName":"30088203040919","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RDW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"349070680157982","remittanceInformationUnstructured":"","purposeCode":"favt","chargeBearer":"SHAR","creditorAgentName":"5018768939578747","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XKD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018017118023665","remittanceInformationUnstructured":"","purposeCode":"deef","chargeBearer":"SHAR","creditorAgentName":"6376930782124409","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OZL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201459288618817","remittanceInformationUnstructured":"","purposeCode":"zefp","chargeBearer":"SHAR","creditorAgentName":"4903231347644636","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XIW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026021267410858","remittanceInformationUnstructured":"","purposeCode":"nats","chargeBearer":"SHAR","creditorAgentName":"4897158979824301","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DFA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304434394913322","remittanceInformationUnstructured":"","purposeCode":"dabe","chargeBearer":"SHAR","creditorAgentName":"201491398555597","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YUC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610157158193242","remittanceInformationUnstructured":"","purposeCode":"enbu","chargeBearer":"SHAR","creditorAgentName":"5197233866658627","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VHR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374715986335824","remittanceInformationUnstructured":"","purposeCode":"boiv","chargeBearer":"SHAR","creditorAgentName":"4477912851634099","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FZU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903858662966507","remittanceInformationUnstructured":"","purposeCode":"wadl","chargeBearer":"SHAR","creditorAgentName":"6334782411910562","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BVT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"348145058775333","remittanceInformationUnstructured":"","purposeCode":"jiru","chargeBearer":"SHAR","creditorAgentName":"36718090116083","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JGI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4299824982579935","remittanceInformationUnstructured":"","purposeCode":"fafg","chargeBearer":"SHAR","creditorAgentName":"4271808080411416","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MDA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304515410216284","remittanceInformationUnstructured":"","purposeCode":"sein","chargeBearer":"SHAR","creditorAgentName":"30039833148630","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BJM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6264138817276351","remittanceInformationUnstructured":"","purposeCode":"ufur","chargeBearer":"SHAR","creditorAgentName":"4026762564721477","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JUF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610785994287867","remittanceInformationUnstructured":"","purposeCode":"befo","chargeBearer":"SHAR","creditorAgentName":"6011482439677562","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UNJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36107238042304","remittanceInformationUnstructured":"","purposeCode":"ikki","chargeBearer":"SHAR","creditorAgentName":"4026853515794828","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PFQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5472618146006280","remittanceInformationUnstructured":"","purposeCode":"wegr","chargeBearer":"SHAR","creditorAgentName":"344100297445705","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZWV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5157401329492029","remittanceInformationUnstructured":"","purposeCode":"siku","chargeBearer":"SHAR","creditorAgentName":"201473544052497","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HSB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5453937136225301","remittanceInformationUnstructured":"","purposeCode":"otsu","chargeBearer":"SHAR","creditorAgentName":"201426204409050","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FZQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304498079742793","remittanceInformationUnstructured":"","purposeCode":"ruka","chargeBearer":"SHAR","creditorAgentName":"6304458595341983","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YFN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201469946663022","remittanceInformationUnstructured":"","purposeCode":"vami","chargeBearer":"SHAR","creditorAgentName":"4345773764365308","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZWH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018446090769708","remittanceInformationUnstructured":"","purposeCode":"hidu","chargeBearer":"SHAR","creditorAgentName":"3528866442982931","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BPT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018732753322194","remittanceInformationUnstructured":"","purposeCode":"ehgo","chargeBearer":"SHAR","creditorAgentName":"36587540158171","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"REB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30025498032870","remittanceInformationUnstructured":"","purposeCode":"cong","chargeBearer":"SHAR","creditorAgentName":"3528632236625809","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NRH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5105348177356231","remittanceInformationUnstructured":"","purposeCode":"kati","chargeBearer":"SHAR","creditorAgentName":"5170344966746724","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LJL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610825098303630","remittanceInformationUnstructured":"","purposeCode":"fifu","chargeBearer":"SHAR","creditorAgentName":"6011726004035790","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DOC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304660696128736","remittanceInformationUnstructured":"","purposeCode":"aros","chargeBearer":"SHAR","creditorAgentName":"6011416714071240","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TYO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30075405673639","remittanceInformationUnstructured":"","purposeCode":"nimu","chargeBearer":"SHAR","creditorAgentName":"36182448872774","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EHA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528244969546663","remittanceInformationUnstructured":"","purposeCode":"poza","chargeBearer":"SHAR","creditorAgentName":"201493363481585","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DQK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011024681829937","remittanceInformationUnstructured":"","purposeCode":"live","chargeBearer":"SHAR","creditorAgentName":"5018165332419894","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JCX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528831685080470","remittanceInformationUnstructured":"","purposeCode":"labr","chargeBearer":"SHAR","creditorAgentName":"4903695615354005","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SSZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528383581531248","remittanceInformationUnstructured":"","purposeCode":"wane","chargeBearer":"SHAR","creditorAgentName":"4026082046547519","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AGP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026140130657063","remittanceInformationUnstructured":"","purposeCode":"ahob","chargeBearer":"SHAR","creditorAgentName":"6011114388894753","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VYW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36593176251504","remittanceInformationUnstructured":"","purposeCode":"cogn","chargeBearer":"SHAR","creditorAgentName":"5018661654661303","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PIB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610756417742663","remittanceInformationUnstructured":"","purposeCode":"ozgu","chargeBearer":"SHAR","creditorAgentName":"30029192167925","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DBZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5146601025882654","remittanceInformationUnstructured":"","purposeCode":"ozaf","chargeBearer":"SHAR","creditorAgentName":"201415509325418","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ARW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6225434734830141","remittanceInformationUnstructured":"","purposeCode":"uwav","chargeBearer":"SHAR","creditorAgentName":"6304042513223042","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NRC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6379100957897232","remittanceInformationUnstructured":"","purposeCode":"caze","chargeBearer":"SHAR","creditorAgentName":"30023190150975","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FDM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6271762617054592","remittanceInformationUnstructured":"","purposeCode":"hipa","chargeBearer":"SHAR","creditorAgentName":"346981990387270","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WCR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011344831763293","remittanceInformationUnstructured":"","purposeCode":"juwh","chargeBearer":"SHAR","creditorAgentName":"4384204076140371","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YRX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610235997425031","remittanceInformationUnstructured":"","purposeCode":"huwm","chargeBearer":"SHAR","creditorAgentName":"201401849948747","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZDC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026532390106577","remittanceInformationUnstructured":"","purposeCode":"zice","chargeBearer":"SHAR","creditorAgentName":"6259800059171387","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GCO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528981463178127","remittanceInformationUnstructured":"","purposeCode":"luom","chargeBearer":"SHAR","creditorAgentName":"6377927706849342","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CIZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"345856994277423","remittanceInformationUnstructured":"","purposeCode":"wuku","chargeBearer":"SHAR","creditorAgentName":"36841027377139","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NWX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4526140305176860","remittanceInformationUnstructured":"","purposeCode":"bers","chargeBearer":"SHAR","creditorAgentName":"6377859779269027","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EMW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4810419687893655","remittanceInformationUnstructured":"","purposeCode":"ojfi","chargeBearer":"SHAR","creditorAgentName":"5146770540755974","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XLO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5128525195545324","remittanceInformationUnstructured":"","purposeCode":"fodf","chargeBearer":"SHAR","creditorAgentName":"4903496405575531","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CXS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30071181727921","remittanceInformationUnstructured":"","purposeCode":"suwa","chargeBearer":"SHAR","creditorAgentName":"36978989785279","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DXD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610564490627144","remittanceInformationUnstructured":"","purposeCode":"emoj","chargeBearer":"SHAR","creditorAgentName":"4678256166430133","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GHM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5186381754241403","remittanceInformationUnstructured":"","purposeCode":"naib","chargeBearer":"SHAR","creditorAgentName":"6011729816196560","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PGO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334718000239559","remittanceInformationUnstructured":"","purposeCode":"zetu","chargeBearer":"SHAR","creditorAgentName":"36345619290296","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KLZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610878174467969","remittanceInformationUnstructured":"","purposeCode":"cesf","chargeBearer":"SHAR","creditorAgentName":"5610982017614959","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QIU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334761927084799","remittanceInformationUnstructured":"","purposeCode":"gurf","chargeBearer":"SHAR","creditorAgentName":"201470236157709","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VMQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610766758382391","remittanceInformationUnstructured":"","purposeCode":"ziso","chargeBearer":"SHAR","creditorAgentName":"6374783498409792","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GDC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528782203740915","remittanceInformationUnstructured":"","purposeCode":"wuar","chargeBearer":"SHAR","creditorAgentName":"201444305722198","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WYJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5481381864499661","remittanceInformationUnstructured":"","purposeCode":"zuvi","chargeBearer":"SHAR","creditorAgentName":"30063334953025","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HEP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026406630906403","remittanceInformationUnstructured":"","purposeCode":"udle","chargeBearer":"SHAR","creditorAgentName":"5488896671282680","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"USH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903237765676380","remittanceInformationUnstructured":"","purposeCode":"rizd","chargeBearer":"SHAR","creditorAgentName":"4026298799288271","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XIO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011220854057682","remittanceInformationUnstructured":"","purposeCode":"guzu","chargeBearer":"SHAR","creditorAgentName":"3528453115577254","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RUS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026825305594410","remittanceInformationUnstructured":"","purposeCode":"obbo","chargeBearer":"SHAR","creditorAgentName":"5610031147056465","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GWI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30091820352949","remittanceInformationUnstructured":"","purposeCode":"mecb","chargeBearer":"SHAR","creditorAgentName":"5165056248565758","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IWQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6370370904563570","remittanceInformationUnstructured":"","purposeCode":"avoo","chargeBearer":"SHAR","creditorAgentName":"5610030934408137","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WUY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334593188579849","remittanceInformationUnstructured":"","purposeCode":"wavh","chargeBearer":"SHAR","creditorAgentName":"5408225568898506","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HPM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6379980324375677","remittanceInformationUnstructured":"","purposeCode":"hazz","chargeBearer":"SHAR","creditorAgentName":"36266507854425","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BZH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5435461511763672","remittanceInformationUnstructured":"","purposeCode":"hise","chargeBearer":"SHAR","creditorAgentName":"6227322037215276","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OLI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5405519110708475","remittanceInformationUnstructured":"","purposeCode":"rode","chargeBearer":"SHAR","creditorAgentName":"6011050889395850","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZBN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011913557499652","remittanceInformationUnstructured":"","purposeCode":"kaez","chargeBearer":"SHAR","creditorAgentName":"6371523535239312","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GGW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903224934302411","remittanceInformationUnstructured":"","purposeCode":"zare","chargeBearer":"SHAR","creditorAgentName":"6334757190181510","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VJJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6252195539027268","remittanceInformationUnstructured":"","purposeCode":"ataf","chargeBearer":"SHAR","creditorAgentName":"30073641062709","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VZH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903075199482128","remittanceInformationUnstructured":"","purposeCode":"simw","chargeBearer":"SHAR","creditorAgentName":"5610548271456609","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GXB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6281077690185272","remittanceInformationUnstructured":"","purposeCode":"ujar","chargeBearer":"SHAR","creditorAgentName":"5485697748372279","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OAW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304159561808373","remittanceInformationUnstructured":"","purposeCode":"meru","chargeBearer":"SHAR","creditorAgentName":"4977778017163231","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BCD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201445640683086","remittanceInformationUnstructured":"","purposeCode":"viju","chargeBearer":"SHAR","creditorAgentName":"201433848151676","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VZO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304539610324276","remittanceInformationUnstructured":"","purposeCode":"gamv","chargeBearer":"SHAR","creditorAgentName":"6334263258027851","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QTL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018281224403100","remittanceInformationUnstructured":"","purposeCode":"etar","chargeBearer":"SHAR","creditorAgentName":"4320499797991170","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WVT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610799207893528","remittanceInformationUnstructured":"","purposeCode":"bavw","chargeBearer":"SHAR","creditorAgentName":"4574588423888595","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EIV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026147552842149","remittanceInformationUnstructured":"","purposeCode":"udeg","chargeBearer":"SHAR","creditorAgentName":"6304852095337410","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KHV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4628640850666881","remittanceInformationUnstructured":"","purposeCode":"nakh","chargeBearer":"SHAR","creditorAgentName":"4026574400028102","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MYY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304001656754429","remittanceInformationUnstructured":"","purposeCode":"ovot","chargeBearer":"SHAR","creditorAgentName":"5167258801521206","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DQQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4714101273505532","remittanceInformationUnstructured":"","purposeCode":"pucr","chargeBearer":"SHAR","creditorAgentName":"6334920696485070","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UYB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5487954471454347","remittanceInformationUnstructured":"","purposeCode":"wuga","chargeBearer":"SHAR","creditorAgentName":"201415948113193","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LQJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528775329405264","remittanceInformationUnstructured":"","purposeCode":"jesa","chargeBearer":"SHAR","creditorAgentName":"6304787154144705","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LIG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30076402540839","remittanceInformationUnstructured":"","purposeCode":"kavo","chargeBearer":"SHAR","creditorAgentName":"4903607661527558","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GTR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36571714526744","remittanceInformationUnstructured":"","purposeCode":"belo","chargeBearer":"SHAR","creditorAgentName":"3528091915388660","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HHL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30058941813992","remittanceInformationUnstructured":"","purposeCode":"toki","chargeBearer":"SHAR","creditorAgentName":"3528417931872710","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WYP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610796374521049","remittanceInformationUnstructured":"","purposeCode":"ceso","chargeBearer":"SHAR","creditorAgentName":"5123840684396294","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KUW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334966280413226","remittanceInformationUnstructured":"","purposeCode":"rata","chargeBearer":"SHAR","creditorAgentName":"5423590560830935","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PWV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6257045487197388","remittanceInformationUnstructured":"","purposeCode":"wuwh","chargeBearer":"SHAR","creditorAgentName":"5492200263427544","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WNV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026024446289599","remittanceInformationUnstructured":"","purposeCode":"kosu","chargeBearer":"SHAR","creditorAgentName":"4903805787949900","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PSM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018005505170967","remittanceInformationUnstructured":"","purposeCode":"nimz","chargeBearer":"SHAR","creditorAgentName":"201402335436445","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HSK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347924958166814","remittanceInformationUnstructured":"","purposeCode":"ecoz","chargeBearer":"SHAR","creditorAgentName":"4394329603831255","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BKF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4440823132059499","remittanceInformationUnstructured":"","purposeCode":"masa","chargeBearer":"SHAR","creditorAgentName":"5476159159463734","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OAZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6243880073706664","remittanceInformationUnstructured":"","purposeCode":"foum","chargeBearer":"SHAR","creditorAgentName":"346613664968917","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FPV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378122122311932","remittanceInformationUnstructured":"","purposeCode":"nuof","chargeBearer":"SHAR","creditorAgentName":"6291754358603600","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UBH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5483602092963899","remittanceInformationUnstructured":"","purposeCode":"pesn","chargeBearer":"SHAR","creditorAgentName":"6269858862251182","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VQR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201477257144144","remittanceInformationUnstructured":"","purposeCode":"delu","chargeBearer":"SHAR","creditorAgentName":"5018719773318914","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WMP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026425755435949","remittanceInformationUnstructured":"","purposeCode":"reji","chargeBearer":"SHAR","creditorAgentName":"4026277637530417","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AKA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5414668986298100","remittanceInformationUnstructured":"","purposeCode":"ukot","chargeBearer":"SHAR","creditorAgentName":"201434593242660","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UFK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5187353515533104","remittanceInformationUnstructured":"","purposeCode":"alaf","chargeBearer":"SHAR","creditorAgentName":"6334169642300245","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SHK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36247944559769","remittanceInformationUnstructured":"","purposeCode":"kone","chargeBearer":"SHAR","creditorAgentName":"201468343046955","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DEJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6294805958137584","remittanceInformationUnstructured":"","purposeCode":"baut","chargeBearer":"SHAR","creditorAgentName":"5119966072674640","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GGM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528165309788584","remittanceInformationUnstructured":"","purposeCode":"bodu","chargeBearer":"SHAR","creditorAgentName":"201409785676974","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XPW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5488488207651925","remittanceInformationUnstructured":"","purposeCode":"nojg","chargeBearer":"SHAR","creditorAgentName":"6334762372346154","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MGW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903539228013543","remittanceInformationUnstructured":"","purposeCode":"damo","chargeBearer":"SHAR","creditorAgentName":"5158175623184784","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TWN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5124947736963549","remittanceInformationUnstructured":"","purposeCode":"vewd","chargeBearer":"SHAR","creditorAgentName":"6334660651169265","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TDG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026927870325939","remittanceInformationUnstructured":"","purposeCode":"doro","chargeBearer":"SHAR","creditorAgentName":"340790738786867","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HUX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5403289096767034","remittanceInformationUnstructured":"","purposeCode":"coku","chargeBearer":"SHAR","creditorAgentName":"3528267124406176","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TUV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026961137748617","remittanceInformationUnstructured":"","purposeCode":"aciu","chargeBearer":"SHAR","creditorAgentName":"4026579822017310","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RKW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528544617527019","remittanceInformationUnstructured":"","purposeCode":"mase","chargeBearer":"SHAR","creditorAgentName":"4894552991866105","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VYN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374219451337977","remittanceInformationUnstructured":"","purposeCode":"vusa","chargeBearer":"SHAR","creditorAgentName":"6304838429506374","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KXB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026711850851613","remittanceInformationUnstructured":"","purposeCode":"kiga","chargeBearer":"SHAR","creditorAgentName":"5143176726833226","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OKQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334963411636320","remittanceInformationUnstructured":"","purposeCode":"lued","chargeBearer":"SHAR","creditorAgentName":"30002527240998","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FMH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"349273008705538","remittanceInformationUnstructured":"","purposeCode":"capb","chargeBearer":"SHAR","creditorAgentName":"6334676257050105","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AQB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6286943890069266","remittanceInformationUnstructured":"","purposeCode":"onju","chargeBearer":"SHAR","creditorAgentName":"6304759222469281","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JCH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026783955372845","remittanceInformationUnstructured":"","purposeCode":"jina","chargeBearer":"SHAR","creditorAgentName":"3528641808879728","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GBF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026190386433503","remittanceInformationUnstructured":"","purposeCode":"taiv","chargeBearer":"SHAR","creditorAgentName":"3528473201271315","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YIZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5429229207145738","remittanceInformationUnstructured":"","purposeCode":"vavo","chargeBearer":"SHAR","creditorAgentName":"36127520487264","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AGP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610743633909227","remittanceInformationUnstructured":"","purposeCode":"hini","chargeBearer":"SHAR","creditorAgentName":"6334969556488682","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UVC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903533457384774","remittanceInformationUnstructured":"","purposeCode":"tolv","chargeBearer":"SHAR","creditorAgentName":"6334507399444593","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WRO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373521111182854","remittanceInformationUnstructured":"","purposeCode":"hunz","chargeBearer":"SHAR","creditorAgentName":"5412102187897637","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SRQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6233664128939955","remittanceInformationUnstructured":"","purposeCode":"ohia","chargeBearer":"SHAR","creditorAgentName":"5018328086706607","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BWQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011158498642354","remittanceInformationUnstructured":"","purposeCode":"hedc","chargeBearer":"SHAR","creditorAgentName":"6011312583413219","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FUS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026792310552892","remittanceInformationUnstructured":"","purposeCode":"jupc","chargeBearer":"SHAR","creditorAgentName":"345380082611617","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GCI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011265078423905","remittanceInformationUnstructured":"","purposeCode":"ajne","chargeBearer":"SHAR","creditorAgentName":"30001664074467","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UEX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334116089167611","remittanceInformationUnstructured":"","purposeCode":"egbo","chargeBearer":"SHAR","creditorAgentName":"6334324169490412","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TLU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36406332797544","remittanceInformationUnstructured":"","purposeCode":"kije","chargeBearer":"SHAR","creditorAgentName":"6011530416479566","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JWK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304848589291139","remittanceInformationUnstructured":"","purposeCode":"tugw","chargeBearer":"SHAR","creditorAgentName":"6379432115620309","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VRO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011363855347650","remittanceInformationUnstructured":"","purposeCode":"puwo","chargeBearer":"SHAR","creditorAgentName":"5406080312758833","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WKZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201458978318530","remittanceInformationUnstructured":"","purposeCode":"nebo","chargeBearer":"SHAR","creditorAgentName":"6304176108018472","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OBN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610238462602563","remittanceInformationUnstructured":"","purposeCode":"wirl","chargeBearer":"SHAR","creditorAgentName":"4068592242599170","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FZU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30023167875869","remittanceInformationUnstructured":"","purposeCode":"dohe","chargeBearer":"SHAR","creditorAgentName":"6265364681130107","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PTR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347325798078468","remittanceInformationUnstructured":"","purposeCode":"kaso","chargeBearer":"SHAR","creditorAgentName":"4903149633874701","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ILL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304415096936380","remittanceInformationUnstructured":"","purposeCode":"neta","chargeBearer":"SHAR","creditorAgentName":"30065736632511","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XOB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011427454630590","remittanceInformationUnstructured":"","purposeCode":"pesi","chargeBearer":"SHAR","creditorAgentName":"6372129183869621","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZEK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5124418917354122","remittanceInformationUnstructured":"","purposeCode":"uzos","chargeBearer":"SHAR","creditorAgentName":"5420343194758509","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SIW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5408239663943422","remittanceInformationUnstructured":"","purposeCode":"baik","chargeBearer":"SHAR","creditorAgentName":"6011103054767047","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YFA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304829034180127","remittanceInformationUnstructured":"","purposeCode":"ifeu","chargeBearer":"SHAR","creditorAgentName":"3528039952327323","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GUU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304941694941290","remittanceInformationUnstructured":"","purposeCode":"ofwo","chargeBearer":"SHAR","creditorAgentName":"36898764372152","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MOT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5160155846425574","remittanceInformationUnstructured":"","purposeCode":"tuct","chargeBearer":"SHAR","creditorAgentName":"6372501573404344","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HAC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610735059859191","remittanceInformationUnstructured":"","purposeCode":"cejk","chargeBearer":"SHAR","creditorAgentName":"6334797863777475","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NRC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011722635986881","remittanceInformationUnstructured":"","purposeCode":"jige","chargeBearer":"SHAR","creditorAgentName":"5180456772003195","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IXB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201423236257185","remittanceInformationUnstructured":"","purposeCode":"vonr","chargeBearer":"SHAR","creditorAgentName":"4903564190948385","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SFC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528698288008665","remittanceInformationUnstructured":"","purposeCode":"haul","chargeBearer":"SHAR","creditorAgentName":"6304555291751413","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WRD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36992797272461","remittanceInformationUnstructured":"","purposeCode":"vefe","chargeBearer":"SHAR","creditorAgentName":"5487875605410154","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WUW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30061288277961","remittanceInformationUnstructured":"","purposeCode":"feri","chargeBearer":"SHAR","creditorAgentName":"4148886272150712","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WPX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011222888698879","remittanceInformationUnstructured":"","purposeCode":"sozi","chargeBearer":"SHAR","creditorAgentName":"4856233412683645","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"THP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30020964229241","remittanceInformationUnstructured":"","purposeCode":"rerg","chargeBearer":"SHAR","creditorAgentName":"3528011156538880","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OZM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903799780600844","remittanceInformationUnstructured":"","purposeCode":"bifu","chargeBearer":"SHAR","creditorAgentName":"5018071408658185","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JYU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334399390500809","remittanceInformationUnstructured":"","purposeCode":"cipa","chargeBearer":"SHAR","creditorAgentName":"5610746074319160","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FRM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5104199970064865","remittanceInformationUnstructured":"","purposeCode":"bisn","chargeBearer":"SHAR","creditorAgentName":"6372030922634799","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RDA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201403604669716","remittanceInformationUnstructured":"","purposeCode":"miga","chargeBearer":"SHAR","creditorAgentName":"6293943994986002","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MTB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018772649311498","remittanceInformationUnstructured":"","purposeCode":"pini","chargeBearer":"SHAR","creditorAgentName":"201495102554846","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PVT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6372289152317976","remittanceInformationUnstructured":"","purposeCode":"rubd","chargeBearer":"SHAR","creditorAgentName":"5150158668868139","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IDL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6250581632947704","remittanceInformationUnstructured":"","purposeCode":"haco","chargeBearer":"SHAR","creditorAgentName":"6011836635901516","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UXQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377920610875438","remittanceInformationUnstructured":"","purposeCode":"mupo","chargeBearer":"SHAR","creditorAgentName":"4903661534954770","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"STP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903355506828241","remittanceInformationUnstructured":"","purposeCode":"vulu","chargeBearer":"SHAR","creditorAgentName":"6334763710686483","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CMV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026464909106981","remittanceInformationUnstructured":"","purposeCode":"sido","chargeBearer":"SHAR","creditorAgentName":"343486656764666","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZXX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610045774289413","remittanceInformationUnstructured":"","purposeCode":"faho","chargeBearer":"SHAR","creditorAgentName":"30031482547402","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EHT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610973944785053","remittanceInformationUnstructured":"","purposeCode":"kahe","chargeBearer":"SHAR","creditorAgentName":"6334859578819156","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WVN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36990838406742","remittanceInformationUnstructured":"","purposeCode":"sole","chargeBearer":"SHAR","creditorAgentName":"6011369312852315","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SZJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346540437466939","remittanceInformationUnstructured":"","purposeCode":"mine","chargeBearer":"SHAR","creditorAgentName":"4903253851809017","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KRH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011719834864976","remittanceInformationUnstructured":"","purposeCode":"coun","chargeBearer":"SHAR","creditorAgentName":"344924904041155","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PMQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334970064340639","remittanceInformationUnstructured":"","purposeCode":"baah","chargeBearer":"SHAR","creditorAgentName":"5018678808466504","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MTZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6279110548016029","remittanceInformationUnstructured":"","purposeCode":"ajfe","chargeBearer":"SHAR","creditorAgentName":"5610894284850721","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SJA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610021306704294","remittanceInformationUnstructured":"","purposeCode":"ogli","chargeBearer":"SHAR","creditorAgentName":"36622749399407","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GCE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610349834242465","remittanceInformationUnstructured":"","purposeCode":"nokr","chargeBearer":"SHAR","creditorAgentName":"36825386959991","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VDF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4015343757399869","remittanceInformationUnstructured":"","purposeCode":"caez","chargeBearer":"SHAR","creditorAgentName":"5018360459136120","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BUF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374693998701376","remittanceInformationUnstructured":"","purposeCode":"epli","chargeBearer":"SHAR","creditorAgentName":"6011084827043892","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ANV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201433701798712","remittanceInformationUnstructured":"","purposeCode":"sech","chargeBearer":"SHAR","creditorAgentName":"4903269642162490","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MCJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6240930124716106","remittanceInformationUnstructured":"","purposeCode":"doro","chargeBearer":"SHAR","creditorAgentName":"36049383434698","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VZU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201485944633841","remittanceInformationUnstructured":"","purposeCode":"usag","chargeBearer":"SHAR","creditorAgentName":"6304070252823961","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TEP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610237578716994","remittanceInformationUnstructured":"","purposeCode":"fice","chargeBearer":"SHAR","creditorAgentName":"5610164384722968","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CXU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343911905919068","remittanceInformationUnstructured":"","purposeCode":"ecki","chargeBearer":"SHAR","creditorAgentName":"4007688991161784","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ALL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5429268585831329","remittanceInformationUnstructured":"","purposeCode":"puna","chargeBearer":"SHAR","creditorAgentName":"4885502835597987","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DXB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201433005658711","remittanceInformationUnstructured":"","purposeCode":"koti","chargeBearer":"SHAR","creditorAgentName":"5165539080084129","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VIU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378030660521889","remittanceInformationUnstructured":"","purposeCode":"wuro","chargeBearer":"SHAR","creditorAgentName":"30095329591717","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AYK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4813404818690482","remittanceInformationUnstructured":"","purposeCode":"nuad","chargeBearer":"SHAR","creditorAgentName":"5413800178472778","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XOS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528130053685675","remittanceInformationUnstructured":"","purposeCode":"gesi","chargeBearer":"SHAR","creditorAgentName":"349757957096535","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WPV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026122460118361","remittanceInformationUnstructured":"","purposeCode":"vome","chargeBearer":"SHAR","creditorAgentName":"5018110398496535","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OZO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6379400421412075","remittanceInformationUnstructured":"","purposeCode":"sike","chargeBearer":"SHAR","creditorAgentName":"201473010145023","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DNI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304821025546853","remittanceInformationUnstructured":"","purposeCode":"bipm","chargeBearer":"SHAR","creditorAgentName":"4154016542537743","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DTL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5198429228976033","remittanceInformationUnstructured":"","purposeCode":"diba","chargeBearer":"SHAR","creditorAgentName":"6334563111648896","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JKR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346151115589289","remittanceInformationUnstructured":"","purposeCode":"azow","chargeBearer":"SHAR","creditorAgentName":"6304669225362187","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DIW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304199281940692","remittanceInformationUnstructured":"","purposeCode":"jicc","chargeBearer":"SHAR","creditorAgentName":"3528546370742537","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TPA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4463934994023739","remittanceInformationUnstructured":"","purposeCode":"atuo","chargeBearer":"SHAR","creditorAgentName":"201431432872491","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PTQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6226981790409797","remittanceInformationUnstructured":"","purposeCode":"onap","chargeBearer":"SHAR","creditorAgentName":"349060552162004","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HPA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201440230207719","remittanceInformationUnstructured":"","purposeCode":"tojl","chargeBearer":"SHAR","creditorAgentName":"5149542944705765","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SGG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30054113263736","remittanceInformationUnstructured":"","purposeCode":"loma","chargeBearer":"SHAR","creditorAgentName":"4903135478462975","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YQV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528654259528868","remittanceInformationUnstructured":"","purposeCode":"zobi","chargeBearer":"SHAR","creditorAgentName":"4334181927666864","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QUB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"342131780638482","remittanceInformationUnstructured":"","purposeCode":"ipli","chargeBearer":"SHAR","creditorAgentName":"5143327631624248","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LAS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903460961898786","remittanceInformationUnstructured":"","purposeCode":"zect","chargeBearer":"SHAR","creditorAgentName":"340040674324830","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MLB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026074376793144","remittanceInformationUnstructured":"","purposeCode":"etak","chargeBearer":"SHAR","creditorAgentName":"30081676333036","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GBS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5455296042832900","remittanceInformationUnstructured":"","purposeCode":"kere","chargeBearer":"SHAR","creditorAgentName":"5171958378165139","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GAB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011207965229649","remittanceInformationUnstructured":"","purposeCode":"hubw","chargeBearer":"SHAR","creditorAgentName":"6334345012817345","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FKR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018631246750112","remittanceInformationUnstructured":"","purposeCode":"huci","chargeBearer":"SHAR","creditorAgentName":"6304003726105822","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MMI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011892426602177","remittanceInformationUnstructured":"","purposeCode":"mepb","chargeBearer":"SHAR","creditorAgentName":"5018231073135436","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TDF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6299152736288834","remittanceInformationUnstructured":"","purposeCode":"hofd","chargeBearer":"SHAR","creditorAgentName":"6334568918054990","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AJM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334410388344843","remittanceInformationUnstructured":"","purposeCode":"moon","chargeBearer":"SHAR","creditorAgentName":"5104724710645507","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NDJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201414132783812","remittanceInformationUnstructured":"","purposeCode":"vori","chargeBearer":"SHAR","creditorAgentName":"6334930237069085","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PUC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334490835087583","remittanceInformationUnstructured":"","purposeCode":"zejf","chargeBearer":"SHAR","creditorAgentName":"4988308944781678","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VSP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903410190128331","remittanceInformationUnstructured":"","purposeCode":"rawp","chargeBearer":"SHAR","creditorAgentName":"6304622733690904","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RZI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36730629940750","remittanceInformationUnstructured":"","purposeCode":"lahj","chargeBearer":"SHAR","creditorAgentName":"346269475818161","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RLG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201428509495339","remittanceInformationUnstructured":"","purposeCode":"jipk","chargeBearer":"SHAR","creditorAgentName":"5610451726168988","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SQZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4402041354793960","remittanceInformationUnstructured":"","purposeCode":"lent","chargeBearer":"SHAR","creditorAgentName":"6334953925474458","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MVK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528977723602823","remittanceInformationUnstructured":"","purposeCode":"civh","chargeBearer":"SHAR","creditorAgentName":"4026916977895498","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OSF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903340313901308","remittanceInformationUnstructured":"","purposeCode":"baih","chargeBearer":"SHAR","creditorAgentName":"30086474602532","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PCE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374313156656284","remittanceInformationUnstructured":"","purposeCode":"vobi","chargeBearer":"SHAR","creditorAgentName":"6304933837118662","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OEU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6205936719207917","remittanceInformationUnstructured":"","purposeCode":"rasg","chargeBearer":"SHAR","creditorAgentName":"36676301549130","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JYT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30085697117484","remittanceInformationUnstructured":"","purposeCode":"lalu","chargeBearer":"SHAR","creditorAgentName":"5438813170733254","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TTL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528583141842049","remittanceInformationUnstructured":"","purposeCode":"bule","chargeBearer":"SHAR","creditorAgentName":"5610764368217842","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PUR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018456935630262","remittanceInformationUnstructured":"","purposeCode":"dukv","chargeBearer":"SHAR","creditorAgentName":"3528405031552498","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UHS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6376547519407046","remittanceInformationUnstructured":"","purposeCode":"gapf","chargeBearer":"SHAR","creditorAgentName":"5429393004204989","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GFE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6245427165202505","remittanceInformationUnstructured":"","purposeCode":"cimb","chargeBearer":"SHAR","creditorAgentName":"6011679247547040","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QWR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"345379728142888","remittanceInformationUnstructured":"","purposeCode":"etav","chargeBearer":"SHAR","creditorAgentName":"341841174568514","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YVR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334176357363631","remittanceInformationUnstructured":"","purposeCode":"emti","chargeBearer":"SHAR","creditorAgentName":"6236272332331832","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OLL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026986296162144","remittanceInformationUnstructured":"","purposeCode":"lacl","chargeBearer":"SHAR","creditorAgentName":"345455439986217","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YXB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5144683770773439","remittanceInformationUnstructured":"","purposeCode":"vesd","chargeBearer":"SHAR","creditorAgentName":"6269527055798453","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RXN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026594017231550","remittanceInformationUnstructured":"","purposeCode":"kumo","chargeBearer":"SHAR","creditorAgentName":"4285096129108037","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FLI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5118531507085688","remittanceInformationUnstructured":"","purposeCode":"pobi","chargeBearer":"SHAR","creditorAgentName":"5104372814991847","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BEJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30040352129266","remittanceInformationUnstructured":"","purposeCode":"fasu","chargeBearer":"SHAR","creditorAgentName":"30065623383822","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ELT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334654571584737","remittanceInformationUnstructured":"","purposeCode":"locw","chargeBearer":"SHAR","creditorAgentName":"201439605105151","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UFS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011066470415543","remittanceInformationUnstructured":"","purposeCode":"rifa","chargeBearer":"SHAR","creditorAgentName":"5018991018380872","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MAX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610540679896403","remittanceInformationUnstructured":"","purposeCode":"sanu","chargeBearer":"SHAR","creditorAgentName":"6263105364241451","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CAL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30066783169589","remittanceInformationUnstructured":"","purposeCode":"kena","chargeBearer":"SHAR","creditorAgentName":"5129922772570503","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FWK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343666812875510","remittanceInformationUnstructured":"","purposeCode":"jimo","chargeBearer":"SHAR","creditorAgentName":"341348994980655","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HJY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334564386588213","remittanceInformationUnstructured":"","purposeCode":"jodo","chargeBearer":"SHAR","creditorAgentName":"5018690794581568","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OXL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201474932209814","remittanceInformationUnstructured":"","purposeCode":"tioz","chargeBearer":"SHAR","creditorAgentName":"201451162901559","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CRN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026791447045895","remittanceInformationUnstructured":"","purposeCode":"muda","chargeBearer":"SHAR","creditorAgentName":"5610030368380653","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OUN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4502744788882718","remittanceInformationUnstructured":"","purposeCode":"voki","chargeBearer":"SHAR","creditorAgentName":"6334199744840574","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JAH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374155716315632","remittanceInformationUnstructured":"","purposeCode":"wetj","chargeBearer":"SHAR","creditorAgentName":"3528056320560781","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KIB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30068380935602","remittanceInformationUnstructured":"","purposeCode":"komf","chargeBearer":"SHAR","creditorAgentName":"340311027064534","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VIK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018090201771573","remittanceInformationUnstructured":"","purposeCode":"rogu","chargeBearer":"SHAR","creditorAgentName":"5427595855445923","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UPF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011775818678899","remittanceInformationUnstructured":"","purposeCode":"lawe","chargeBearer":"SHAR","creditorAgentName":"6234486516689201","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MAV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304676745486800","remittanceInformationUnstructured":"","purposeCode":"fero","chargeBearer":"SHAR","creditorAgentName":"348132988867455","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BMO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343766949415386","remittanceInformationUnstructured":"","purposeCode":"fejo","chargeBearer":"SHAR","creditorAgentName":"4026999399973523","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MSM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528067859719433","remittanceInformationUnstructured":"","purposeCode":"nupu","chargeBearer":"SHAR","creditorAgentName":"6372402827216677","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LPP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5181090482308575","remittanceInformationUnstructured":"","purposeCode":"kiwi","chargeBearer":"SHAR","creditorAgentName":"4903325038779469","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LML"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011935138517074","remittanceInformationUnstructured":"","purposeCode":"pihl","chargeBearer":"SHAR","creditorAgentName":"5400462438850064","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LBR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36961166215096","remittanceInformationUnstructured":"","purposeCode":"bace","chargeBearer":"SHAR","creditorAgentName":"6011622547209028","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ACX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528192108655764","remittanceInformationUnstructured":"","purposeCode":"wecm","chargeBearer":"SHAR","creditorAgentName":"30047939505694","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DAW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528894507613845","remittanceInformationUnstructured":"","purposeCode":"segp","chargeBearer":"SHAR","creditorAgentName":"5438792426983907","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JFY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334963148930210","remittanceInformationUnstructured":"","purposeCode":"etap","chargeBearer":"SHAR","creditorAgentName":"201462329571482","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UVZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201470904802800","remittanceInformationUnstructured":"","purposeCode":"fomo","chargeBearer":"SHAR","creditorAgentName":"4903919024430325","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YLL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026045714742217","remittanceInformationUnstructured":"","purposeCode":"hife","chargeBearer":"SHAR","creditorAgentName":"6334651600883460","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MJE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36210380096621","remittanceInformationUnstructured":"","purposeCode":"solb","chargeBearer":"SHAR","creditorAgentName":"4026350235285773","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MZW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30059585713605","remittanceInformationUnstructured":"","purposeCode":"japk","chargeBearer":"SHAR","creditorAgentName":"36858479401894","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DQE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5499352269470631","remittanceInformationUnstructured":"","purposeCode":"lahk","chargeBearer":"SHAR","creditorAgentName":"201484082229173","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ARC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4793795351826092","remittanceInformationUnstructured":"","purposeCode":"pude","chargeBearer":"SHAR","creditorAgentName":"201427968080384","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RYT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026975393278960","remittanceInformationUnstructured":"","purposeCode":"nafe","chargeBearer":"SHAR","creditorAgentName":"5123167721193157","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JYQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334170654101919","remittanceInformationUnstructured":"","purposeCode":"wuek","chargeBearer":"SHAR","creditorAgentName":"5610994697159718","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZWM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6370639305610309","remittanceInformationUnstructured":"","purposeCode":"igir","chargeBearer":"SHAR","creditorAgentName":"5018975321878037","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EJU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026135860993050","remittanceInformationUnstructured":"","purposeCode":"pana","chargeBearer":"SHAR","creditorAgentName":"36324741946026","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NYC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4369691012330455","remittanceInformationUnstructured":"","purposeCode":"hapw","chargeBearer":"SHAR","creditorAgentName":"5610861230206175","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AGU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5110360098981982","remittanceInformationUnstructured":"","purposeCode":"itof","chargeBearer":"SHAR","creditorAgentName":"4059878985864256","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UJJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4960750067978163","remittanceInformationUnstructured":"","purposeCode":"piat","chargeBearer":"SHAR","creditorAgentName":"6304076915652747","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KRP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6275157439742324","remittanceInformationUnstructured":"","purposeCode":"ujfi","chargeBearer":"SHAR","creditorAgentName":"6011862485911918","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AHG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"349794011379771","remittanceInformationUnstructured":"","purposeCode":"izus","chargeBearer":"SHAR","creditorAgentName":"4026235674226026","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GOY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5441042235368303","remittanceInformationUnstructured":"","purposeCode":"sale","chargeBearer":"SHAR","creditorAgentName":"5446742450702160","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QPR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011879957682140","remittanceInformationUnstructured":"","purposeCode":"banh","chargeBearer":"SHAR","creditorAgentName":"6304144512033644","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KRS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334649103975734","remittanceInformationUnstructured":"","purposeCode":"tett","chargeBearer":"SHAR","creditorAgentName":"4903745561388794","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TMR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5446080673413509","remittanceInformationUnstructured":"","purposeCode":"rizo","chargeBearer":"SHAR","creditorAgentName":"6011403171104243","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GWM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011410999241586","remittanceInformationUnstructured":"","purposeCode":"affa","chargeBearer":"SHAR","creditorAgentName":"5018404026624398","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OOF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5403765868364001","remittanceInformationUnstructured":"","purposeCode":"beoh","chargeBearer":"SHAR","creditorAgentName":"5118839823454417","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JTO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"341939550399999","remittanceInformationUnstructured":"","purposeCode":"lomc","chargeBearer":"SHAR","creditorAgentName":"343150571442630","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ABT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5402959853645075","remittanceInformationUnstructured":"","purposeCode":"koni","chargeBearer":"SHAR","creditorAgentName":"3528808692542593","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VPS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36226869459320","remittanceInformationUnstructured":"","purposeCode":"mivu","chargeBearer":"SHAR","creditorAgentName":"5160934508560542","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RWT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610075246018678","remittanceInformationUnstructured":"","purposeCode":"ewni","chargeBearer":"SHAR","creditorAgentName":"6246194136820695","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HBT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347302592730214","remittanceInformationUnstructured":"","purposeCode":"vuwm","chargeBearer":"SHAR","creditorAgentName":"201484038109222","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EMS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36613496625458","remittanceInformationUnstructured":"","purposeCode":"vewl","chargeBearer":"SHAR","creditorAgentName":"4725451346852750","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GXQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4905980383655579","remittanceInformationUnstructured":"","purposeCode":"wamo","chargeBearer":"SHAR","creditorAgentName":"3528709356677412","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AQX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011390555009736","remittanceInformationUnstructured":"","purposeCode":"ride","chargeBearer":"SHAR","creditorAgentName":"6304720178260934","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XST"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903317028268124","remittanceInformationUnstructured":"","purposeCode":"imne","chargeBearer":"SHAR","creditorAgentName":"5183993514685050","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JQD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018533033851741","remittanceInformationUnstructured":"","purposeCode":"guba","chargeBearer":"SHAR","creditorAgentName":"3528657349062046","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RNQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610962739801704","remittanceInformationUnstructured":"","purposeCode":"emip","chargeBearer":"SHAR","creditorAgentName":"4026452459760943","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GKZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018236464273910","remittanceInformationUnstructured":"","purposeCode":"cazh","chargeBearer":"SHAR","creditorAgentName":"30001690962628","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QDM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903886509613123","remittanceInformationUnstructured":"","purposeCode":"sosv","chargeBearer":"SHAR","creditorAgentName":"6376352969978855","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JDN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5469971952915721","remittanceInformationUnstructured":"","purposeCode":"vasi","chargeBearer":"SHAR","creditorAgentName":"6371121024019681","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ETT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347427282343554","remittanceInformationUnstructured":"","purposeCode":"vohs","chargeBearer":"SHAR","creditorAgentName":"6374793306543633","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JIA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5108600302712754","remittanceInformationUnstructured":"","purposeCode":"udoa","chargeBearer":"SHAR","creditorAgentName":"4026248901199940","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RKO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610207154429551","remittanceInformationUnstructured":"","purposeCode":"mifl","chargeBearer":"SHAR","creditorAgentName":"6279373124692304","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TLS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903502408265515","remittanceInformationUnstructured":"","purposeCode":"kadj","chargeBearer":"SHAR","creditorAgentName":"6236101662730695","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ITP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018005285981468","remittanceInformationUnstructured":"","purposeCode":"hove","chargeBearer":"SHAR","creditorAgentName":"344086736764410","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QOI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903963768158874","remittanceInformationUnstructured":"","purposeCode":"ovil","chargeBearer":"SHAR","creditorAgentName":"30043547582415","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ACZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"348643688227444","remittanceInformationUnstructured":"","purposeCode":"gikm","chargeBearer":"SHAR","creditorAgentName":"5610572295236763","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TRJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36219997744358","remittanceInformationUnstructured":"","purposeCode":"ubal","chargeBearer":"SHAR","creditorAgentName":"3528593609704326","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"REH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018868573707071","remittanceInformationUnstructured":"","purposeCode":"agej","chargeBearer":"SHAR","creditorAgentName":"5018615589111354","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NEW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340361945417926","remittanceInformationUnstructured":"","purposeCode":"buti","chargeBearer":"SHAR","creditorAgentName":"6294315973155777","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CLG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6379817480841904","remittanceInformationUnstructured":"","purposeCode":"buum","chargeBearer":"SHAR","creditorAgentName":"6280778649210670","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FPA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5184620421643240","remittanceInformationUnstructured":"","purposeCode":"gudp","chargeBearer":"SHAR","creditorAgentName":"6334444467167866","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QUA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334143469913273","remittanceInformationUnstructured":"","purposeCode":"fego","chargeBearer":"SHAR","creditorAgentName":"6255078056749323","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PRL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6371238243716416","remittanceInformationUnstructured":"","purposeCode":"daos","chargeBearer":"SHAR","creditorAgentName":"4903009643201453","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QHZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334442866879065","remittanceInformationUnstructured":"","purposeCode":"iriz","chargeBearer":"SHAR","creditorAgentName":"5018269078220779","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ODU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5463268657507127","remittanceInformationUnstructured":"","purposeCode":"bibu","chargeBearer":"SHAR","creditorAgentName":"5474598426931589","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PKN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4224517809745081","remittanceInformationUnstructured":"","purposeCode":"unai","chargeBearer":"SHAR","creditorAgentName":"5018235104893426","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JAK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343466435300206","remittanceInformationUnstructured":"","purposeCode":"durd","chargeBearer":"SHAR","creditorAgentName":"5460641912958603","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DJQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6253455682707531","remittanceInformationUnstructured":"","purposeCode":"acvi","chargeBearer":"SHAR","creditorAgentName":"6247264311411930","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RGC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304112916120366","remittanceInformationUnstructured":"","purposeCode":"miku","chargeBearer":"SHAR","creditorAgentName":"343563906255297","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HEW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30002702705526","remittanceInformationUnstructured":"","purposeCode":"zobi","chargeBearer":"SHAR","creditorAgentName":"4903466948732105","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AHC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011199554665533","remittanceInformationUnstructured":"","purposeCode":"elju","chargeBearer":"SHAR","creditorAgentName":"5018991885845767","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VZP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5494073290943249","remittanceInformationUnstructured":"","purposeCode":"igre","chargeBearer":"SHAR","creditorAgentName":"6304304623146533","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DPR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36064964219897","remittanceInformationUnstructured":"","purposeCode":"jotp","chargeBearer":"SHAR","creditorAgentName":"4903869921444392","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AGM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5131035701734466","remittanceInformationUnstructured":"","purposeCode":"etiz","chargeBearer":"SHAR","creditorAgentName":"5116449079255302","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YXJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334789447585714","remittanceInformationUnstructured":"","purposeCode":"ciij","chargeBearer":"SHAR","creditorAgentName":"4026098638710588","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TFY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528531370645740","remittanceInformationUnstructured":"","purposeCode":"tols","chargeBearer":"SHAR","creditorAgentName":"36634935381099","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NUS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304365212712654","remittanceInformationUnstructured":"","purposeCode":"depl","chargeBearer":"SHAR","creditorAgentName":"6256697135925353","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WFD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6375761792030000","remittanceInformationUnstructured":"","purposeCode":"temj","chargeBearer":"SHAR","creditorAgentName":"5197244238032334","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HQH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304731603527755","remittanceInformationUnstructured":"","purposeCode":"kigo","chargeBearer":"SHAR","creditorAgentName":"6297467892524133","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SPD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4761491631802099","remittanceInformationUnstructured":"","purposeCode":"hiso","chargeBearer":"SHAR","creditorAgentName":"6334375043746056","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XEL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201461579413247","remittanceInformationUnstructured":"","purposeCode":"sodu","chargeBearer":"SHAR","creditorAgentName":"4903020924434176","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HNK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026751597613280","remittanceInformationUnstructured":"","purposeCode":"cuhe","chargeBearer":"SHAR","creditorAgentName":"6334660547330535","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GKG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528944279530378","remittanceInformationUnstructured":"","purposeCode":"huju","chargeBearer":"SHAR","creditorAgentName":"348267028870596","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VYB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903101664358534","remittanceInformationUnstructured":"","purposeCode":"mimu","chargeBearer":"SHAR","creditorAgentName":"5492488599906196","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ETF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334860412984545","remittanceInformationUnstructured":"","purposeCode":"ragu","chargeBearer":"SHAR","creditorAgentName":"201495670147874","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NSL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304811236792776","remittanceInformationUnstructured":"","purposeCode":"fikm","chargeBearer":"SHAR","creditorAgentName":"4903460842784999","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZEN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528888177675704","remittanceInformationUnstructured":"","purposeCode":"jawa","chargeBearer":"SHAR","creditorAgentName":"201473643420264","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XJC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4221544610473193","remittanceInformationUnstructured":"","purposeCode":"delt","chargeBearer":"SHAR","creditorAgentName":"3528271281220347","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DRG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4078229682569805","remittanceInformationUnstructured":"","purposeCode":"raal","chargeBearer":"SHAR","creditorAgentName":"5018750489722230","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MVI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011355863490969","remittanceInformationUnstructured":"","purposeCode":"aduz","chargeBearer":"SHAR","creditorAgentName":"4903669111288462","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YNB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018768066080160","remittanceInformationUnstructured":"","purposeCode":"pofe","chargeBearer":"SHAR","creditorAgentName":"6379016589949987","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FDC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"348300226907850","remittanceInformationUnstructured":"","purposeCode":"comw","chargeBearer":"SHAR","creditorAgentName":"3528307367641483","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AJN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5106985373608672","remittanceInformationUnstructured":"","purposeCode":"uvez","chargeBearer":"SHAR","creditorAgentName":"4903298938063252","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BYO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36064578116836","remittanceInformationUnstructured":"","purposeCode":"urlu","chargeBearer":"SHAR","creditorAgentName":"5018410685382442","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZHA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201497653929807","remittanceInformationUnstructured":"","purposeCode":"pepj","chargeBearer":"SHAR","creditorAgentName":"6334869494855655","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UXK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528227456683156","remittanceInformationUnstructured":"","purposeCode":"utuk","chargeBearer":"SHAR","creditorAgentName":"4026920857250568","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DLA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4626729465358760","remittanceInformationUnstructured":"","purposeCode":"ovje","chargeBearer":"SHAR","creditorAgentName":"5183450110552408","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ACL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36918816311543","remittanceInformationUnstructured":"","purposeCode":"esow","chargeBearer":"SHAR","creditorAgentName":"4903089707429778","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BUU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610788206615867","remittanceInformationUnstructured":"","purposeCode":"zinu","chargeBearer":"SHAR","creditorAgentName":"201420491857428","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JDR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528545604291691","remittanceInformationUnstructured":"","purposeCode":"dibv","chargeBearer":"SHAR","creditorAgentName":"6378969842044288","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NAL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026616750226875","remittanceInformationUnstructured":"","purposeCode":"ziob","chargeBearer":"SHAR","creditorAgentName":"6011586877934465","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ELO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304201527809879","remittanceInformationUnstructured":"","purposeCode":"vuni","chargeBearer":"SHAR","creditorAgentName":"36745505768919","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KQW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903946642202562","remittanceInformationUnstructured":"","purposeCode":"bend","chargeBearer":"SHAR","creditorAgentName":"6334378598781684","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AEZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6240592673051499","remittanceInformationUnstructured":"","purposeCode":"umav","chargeBearer":"SHAR","creditorAgentName":"201484882464897","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MUD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"342794308617005","remittanceInformationUnstructured":"","purposeCode":"ivev","chargeBearer":"SHAR","creditorAgentName":"6011629742506140","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PAL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201488400216184","remittanceInformationUnstructured":"","purposeCode":"riun","chargeBearer":"SHAR","creditorAgentName":"5610194477815684","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ITF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201492402874735","remittanceInformationUnstructured":"","purposeCode":"retu","chargeBearer":"SHAR","creditorAgentName":"6304620738841456","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HKD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346889359898532","remittanceInformationUnstructured":"","purposeCode":"kufa","chargeBearer":"SHAR","creditorAgentName":"3528423421804643","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MPT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610164012583444","remittanceInformationUnstructured":"","purposeCode":"avus","chargeBearer":"SHAR","creditorAgentName":"6376160498411243","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GYV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5123116511405545","remittanceInformationUnstructured":"","purposeCode":"gego","chargeBearer":"SHAR","creditorAgentName":"4676678919545994","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ATR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011819009824555","remittanceInformationUnstructured":"","purposeCode":"somi","chargeBearer":"SHAR","creditorAgentName":"4903053193185484","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EWY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4083130184978655","remittanceInformationUnstructured":"","purposeCode":"datb","chargeBearer":"SHAR","creditorAgentName":"5610869353682981","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NPK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6372357475169299","remittanceInformationUnstructured":"","purposeCode":"lugu","chargeBearer":"SHAR","creditorAgentName":"3528223907672864","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EAM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026182407189537","remittanceInformationUnstructured":"","purposeCode":"pure","chargeBearer":"SHAR","creditorAgentName":"4026064194767180","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PWM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36693692404478","remittanceInformationUnstructured":"","purposeCode":"kock","chargeBearer":"SHAR","creditorAgentName":"4903473540534822","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AYW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610738099126167","remittanceInformationUnstructured":"","purposeCode":"ucik","chargeBearer":"SHAR","creditorAgentName":"5610335605459222","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AVJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304948922658901","remittanceInformationUnstructured":"","purposeCode":"poih","chargeBearer":"SHAR","creditorAgentName":"3528896547898807","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XXF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903672069072227","remittanceInformationUnstructured":"","purposeCode":"ijuv","chargeBearer":"SHAR","creditorAgentName":"6011399913264701","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OSN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334445551523229","remittanceInformationUnstructured":"","purposeCode":"zata","chargeBearer":"SHAR","creditorAgentName":"6379092177254742","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VGA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528042362616491","remittanceInformationUnstructured":"","purposeCode":"emeb","chargeBearer":"SHAR","creditorAgentName":"4903106678798203","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YFU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903777296504718","remittanceInformationUnstructured":"","purposeCode":"irez","chargeBearer":"SHAR","creditorAgentName":"6334778207242681","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GQG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6253035922256331","remittanceInformationUnstructured":"","purposeCode":"dowa","chargeBearer":"SHAR","creditorAgentName":"5018930943158078","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CRZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334150771216576","remittanceInformationUnstructured":"","purposeCode":"geak","chargeBearer":"SHAR","creditorAgentName":"30098233708880","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NYD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304735112553467","remittanceInformationUnstructured":"","purposeCode":"nanf","chargeBearer":"SHAR","creditorAgentName":"5018352074446521","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HNV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026782738630776","remittanceInformationUnstructured":"","purposeCode":"cala","chargeBearer":"SHAR","creditorAgentName":"4904847057116611","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FFZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"345497419396876","remittanceInformationUnstructured":"","purposeCode":"muzi","chargeBearer":"SHAR","creditorAgentName":"3528276682082089","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SEW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528352532231166","remittanceInformationUnstructured":"","purposeCode":"giep","chargeBearer":"SHAR","creditorAgentName":"4903440488063924","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XXU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304761696561254","remittanceInformationUnstructured":"","purposeCode":"umje","chargeBearer":"SHAR","creditorAgentName":"201475253636766","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TAO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5481139201464917","remittanceInformationUnstructured":"","purposeCode":"fuza","chargeBearer":"SHAR","creditorAgentName":"36935016869088","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BGT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011244240964369","remittanceInformationUnstructured":"","purposeCode":"ehir","chargeBearer":"SHAR","creditorAgentName":"3528777115145088","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LYM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340801396591893","remittanceInformationUnstructured":"","purposeCode":"memw","chargeBearer":"SHAR","creditorAgentName":"30047950561790","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WAM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304155694209125","remittanceInformationUnstructured":"","purposeCode":"ajfo","chargeBearer":"SHAR","creditorAgentName":"5610676544335431","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TBW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528635186661682","remittanceInformationUnstructured":"","purposeCode":"wepd","chargeBearer":"SHAR","creditorAgentName":"6304846029202187","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CHU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5474820608102833","remittanceInformationUnstructured":"","purposeCode":"umef","chargeBearer":"SHAR","creditorAgentName":"5423351271432655","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XVT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4353992286414183","remittanceInformationUnstructured":"","purposeCode":"zicl","chargeBearer":"SHAR","creditorAgentName":"201431587382874","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KEX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201461628087265","remittanceInformationUnstructured":"","purposeCode":"tahe","chargeBearer":"SHAR","creditorAgentName":"4026944781101572","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XZX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304362325224487","remittanceInformationUnstructured":"","purposeCode":"cuvc","chargeBearer":"SHAR","creditorAgentName":"6304142623808367","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AHU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378658357011036","remittanceInformationUnstructured":"","purposeCode":"geav","chargeBearer":"SHAR","creditorAgentName":"6304856768198769","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KLN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903142615238482","remittanceInformationUnstructured":"","purposeCode":"pale","chargeBearer":"SHAR","creditorAgentName":"4026299271317521","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PHS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30003574325690","remittanceInformationUnstructured":"","purposeCode":"kudd","chargeBearer":"SHAR","creditorAgentName":"5491022074558395","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DJZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018624858403336","remittanceInformationUnstructured":"","purposeCode":"navp","chargeBearer":"SHAR","creditorAgentName":"201487691491571","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AIN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610457830166610","remittanceInformationUnstructured":"","purposeCode":"irvu","chargeBearer":"SHAR","creditorAgentName":"3528425128557960","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IIC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334085272700795","remittanceInformationUnstructured":"","purposeCode":"batu","chargeBearer":"SHAR","creditorAgentName":"342406103908972","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PGL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334524259373267","remittanceInformationUnstructured":"","purposeCode":"sopp","chargeBearer":"SHAR","creditorAgentName":"6334343555051885","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HWT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6257044609861856","remittanceInformationUnstructured":"","purposeCode":"haco","chargeBearer":"SHAR","creditorAgentName":"6222946086399824","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TZO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373867712827946","remittanceInformationUnstructured":"","purposeCode":"geag","chargeBearer":"SHAR","creditorAgentName":"6378732288306466","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SHW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36054975189098","remittanceInformationUnstructured":"","purposeCode":"nese","chargeBearer":"SHAR","creditorAgentName":"5018782954691160","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YGE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026966566655175","remittanceInformationUnstructured":"","purposeCode":"cesc","chargeBearer":"SHAR","creditorAgentName":"6304390306216875","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SFK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4354913768560839","remittanceInformationUnstructured":"","purposeCode":"ocei","chargeBearer":"SHAR","creditorAgentName":"6374889303890652","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XPR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026115723757553","remittanceInformationUnstructured":"","purposeCode":"paza","chargeBearer":"SHAR","creditorAgentName":"30044105991873","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VTS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018035733506484","remittanceInformationUnstructured":"","purposeCode":"canu","chargeBearer":"SHAR","creditorAgentName":"30013852105987","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WKE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304402128521091","remittanceInformationUnstructured":"","purposeCode":"olau","chargeBearer":"SHAR","creditorAgentName":"6304829615555275","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LPV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610255547005703","remittanceInformationUnstructured":"","purposeCode":"jasu","chargeBearer":"SHAR","creditorAgentName":"36545917549075","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KHM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026457374666737","remittanceInformationUnstructured":"","purposeCode":"wala","chargeBearer":"SHAR","creditorAgentName":"6372638054834282","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UMX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6283751190444821","remittanceInformationUnstructured":"","purposeCode":"usku","chargeBearer":"SHAR","creditorAgentName":"6334811136620899","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RFV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903211578057120","remittanceInformationUnstructured":"","purposeCode":"gare","chargeBearer":"SHAR","creditorAgentName":"3528337645142392","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MVK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011982691997897","remittanceInformationUnstructured":"","purposeCode":"juze","chargeBearer":"SHAR","creditorAgentName":"6334062984074488","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BAY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018032846386870","remittanceInformationUnstructured":"","purposeCode":"gamh","chargeBearer":"SHAR","creditorAgentName":"36309208808983","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QDI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334751631281484","remittanceInformationUnstructured":"","purposeCode":"ewde","chargeBearer":"SHAR","creditorAgentName":"5610526840058262","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WGM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6286816468421822","remittanceInformationUnstructured":"","purposeCode":"judu","chargeBearer":"SHAR","creditorAgentName":"36574021942414","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NRB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5165281156968766","remittanceInformationUnstructured":"","purposeCode":"hefo","chargeBearer":"SHAR","creditorAgentName":"6304514225818921","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IPQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373251186259474","remittanceInformationUnstructured":"","purposeCode":"mica","chargeBearer":"SHAR","creditorAgentName":"5490869458882002","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UXF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201477414794781","remittanceInformationUnstructured":"","purposeCode":"zemu","chargeBearer":"SHAR","creditorAgentName":"4526764207051119","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MZY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5165572081528331","remittanceInformationUnstructured":"","purposeCode":"mimo","chargeBearer":"SHAR","creditorAgentName":"5610442795206734","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SJG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304233007019646","remittanceInformationUnstructured":"","purposeCode":"togn","chargeBearer":"SHAR","creditorAgentName":"344082867323241","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IMY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30094358730635","remittanceInformationUnstructured":"","purposeCode":"runf","chargeBearer":"SHAR","creditorAgentName":"201497046157686","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QPU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4899015315040208","remittanceInformationUnstructured":"","purposeCode":"jubn","chargeBearer":"SHAR","creditorAgentName":"5610960303123752","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OOZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304771055815134","remittanceInformationUnstructured":"","purposeCode":"fusm","chargeBearer":"SHAR","creditorAgentName":"5610810899203627","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IVL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346241126469116","remittanceInformationUnstructured":"","purposeCode":"luse","chargeBearer":"SHAR","creditorAgentName":"201459968242078","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DYB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6375250666430777","remittanceInformationUnstructured":"","purposeCode":"tivk","chargeBearer":"SHAR","creditorAgentName":"4903313309845888","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MKD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5492218205486899","remittanceInformationUnstructured":"","purposeCode":"himu","chargeBearer":"SHAR","creditorAgentName":"3528590005069742","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BOS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610408518699521","remittanceInformationUnstructured":"","purposeCode":"ucub","chargeBearer":"SHAR","creditorAgentName":"4026485488775466","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PYG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334339727854628","remittanceInformationUnstructured":"","purposeCode":"vubb","chargeBearer":"SHAR","creditorAgentName":"6304860432450291","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RGJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30031003069084","remittanceInformationUnstructured":"","purposeCode":"bono","chargeBearer":"SHAR","creditorAgentName":"3528031413902604","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AWW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6376104384269927","remittanceInformationUnstructured":"","purposeCode":"tisp","chargeBearer":"SHAR","creditorAgentName":"5610641694052673","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SUY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903422103192478","remittanceInformationUnstructured":"","purposeCode":"tahi","chargeBearer":"SHAR","creditorAgentName":"36752306715750","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AJZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4434871616205482","remittanceInformationUnstructured":"","purposeCode":"ikki","chargeBearer":"SHAR","creditorAgentName":"6376440812655869","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IRN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6376968448062159","remittanceInformationUnstructured":"","purposeCode":"hobu","chargeBearer":"SHAR","creditorAgentName":"30034188035508","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YZF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4377612412595323","remittanceInformationUnstructured":"","purposeCode":"muip","chargeBearer":"SHAR","creditorAgentName":"6377830246853180","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EOK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"344149272608613","remittanceInformationUnstructured":"","purposeCode":"kata","chargeBearer":"SHAR","creditorAgentName":"5018431796551931","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KGX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201452678494857","remittanceInformationUnstructured":"","purposeCode":"abdi","chargeBearer":"SHAR","creditorAgentName":"6304982345574627","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BEP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610901067291286","remittanceInformationUnstructured":"","purposeCode":"caru","chargeBearer":"SHAR","creditorAgentName":"30079199207562","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UAI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6222149887346223","remittanceInformationUnstructured":"","purposeCode":"emav","chargeBearer":"SHAR","creditorAgentName":"6269546634312206","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QVL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528495221634180","remittanceInformationUnstructured":"","purposeCode":"ritu","chargeBearer":"SHAR","creditorAgentName":"4565803173398831","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FZQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5151113464611919","remittanceInformationUnstructured":"","purposeCode":"anpa","chargeBearer":"SHAR","creditorAgentName":"6334865829110261","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SGL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"341579587508491","remittanceInformationUnstructured":"","purposeCode":"binu","chargeBearer":"SHAR","creditorAgentName":"3528505000220579","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UKW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018269908709678","remittanceInformationUnstructured":"","purposeCode":"dopo","chargeBearer":"SHAR","creditorAgentName":"5111684921194821","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NEK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6216315346756934","remittanceInformationUnstructured":"","purposeCode":"sisg","chargeBearer":"SHAR","creditorAgentName":"6304785712053947","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ENT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6227654284576434","remittanceInformationUnstructured":"","purposeCode":"sirw","chargeBearer":"SHAR","creditorAgentName":"6334607302719055","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TAX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30062287266823","remittanceInformationUnstructured":"","purposeCode":"aruf","chargeBearer":"SHAR","creditorAgentName":"6304092083707502","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KIA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903665541372330","remittanceInformationUnstructured":"","purposeCode":"omoo","chargeBearer":"SHAR","creditorAgentName":"36037408593663","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SYZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6208388598778054","remittanceInformationUnstructured":"","purposeCode":"atfi","chargeBearer":"SHAR","creditorAgentName":"201476284656161","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FJO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610826305420969","remittanceInformationUnstructured":"","purposeCode":"tibb","chargeBearer":"SHAR","creditorAgentName":"6011596652916348","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MXY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026300395816610","remittanceInformationUnstructured":"","purposeCode":"vopi","chargeBearer":"SHAR","creditorAgentName":"6304948010353803","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ASD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334202848714438","remittanceInformationUnstructured":"","purposeCode":"imut","chargeBearer":"SHAR","creditorAgentName":"4472638422924868","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FOH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373679328896391","remittanceInformationUnstructured":"","purposeCode":"jimu","chargeBearer":"SHAR","creditorAgentName":"5018576172206193","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OBA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6254593978345670","remittanceInformationUnstructured":"","purposeCode":"piji","chargeBearer":"SHAR","creditorAgentName":"6219572419667870","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QIB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026716954011956","remittanceInformationUnstructured":"","purposeCode":"tezj","chargeBearer":"SHAR","creditorAgentName":"5018850299849155","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RPQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334979092259745","remittanceInformationUnstructured":"","purposeCode":"jefa","chargeBearer":"SHAR","creditorAgentName":"201414213173131","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GPC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018116146567477","remittanceInformationUnstructured":"","purposeCode":"cubp","chargeBearer":"SHAR","creditorAgentName":"30016551541329","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FJF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201403586462536","remittanceInformationUnstructured":"","purposeCode":"hofp","chargeBearer":"SHAR","creditorAgentName":"201493414006878","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XAD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6274880565675973","remittanceInformationUnstructured":"","purposeCode":"dize","chargeBearer":"SHAR","creditorAgentName":"349686204695635","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WUT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610601517679532","remittanceInformationUnstructured":"","purposeCode":"gece","chargeBearer":"SHAR","creditorAgentName":"4347075443156043","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NGX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"348545664012015","remittanceInformationUnstructured":"","purposeCode":"ijce","chargeBearer":"SHAR","creditorAgentName":"5018200314390761","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OUH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5411124027736834","remittanceInformationUnstructured":"","purposeCode":"jobo","chargeBearer":"SHAR","creditorAgentName":"6377402234381838","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SML"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903624424498639","remittanceInformationUnstructured":"","purposeCode":"jivz","chargeBearer":"SHAR","creditorAgentName":"6011618603095376","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UDR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"342633340288997","remittanceInformationUnstructured":"","purposeCode":"inze","chargeBearer":"SHAR","creditorAgentName":"3528619205249786","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DKT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346549707594676","remittanceInformationUnstructured":"","purposeCode":"seun","chargeBearer":"SHAR","creditorAgentName":"6291526311456379","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BZG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026404594463982","remittanceInformationUnstructured":"","purposeCode":"sira","chargeBearer":"SHAR","creditorAgentName":"6374166148939220","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JGX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374891195310534","remittanceInformationUnstructured":"","purposeCode":"rehc","chargeBearer":"SHAR","creditorAgentName":"201455209108250","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HVA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018762421465646","remittanceInformationUnstructured":"","purposeCode":"osvo","chargeBearer":"SHAR","creditorAgentName":"4903938368475928","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QMG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5442259142167714","remittanceInformationUnstructured":"","purposeCode":"wele","chargeBearer":"SHAR","creditorAgentName":"36699349903390","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EXQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5108936886385306","remittanceInformationUnstructured":"","purposeCode":"deho","chargeBearer":"SHAR","creditorAgentName":"342473244486326","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YKF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011196246015564","remittanceInformationUnstructured":"","purposeCode":"omji","chargeBearer":"SHAR","creditorAgentName":"6370711229683033","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JTA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347461546444650","remittanceInformationUnstructured":"","purposeCode":"mefa","chargeBearer":"SHAR","creditorAgentName":"4300359071324056","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WRM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026040009325489","remittanceInformationUnstructured":"","purposeCode":"wapu","chargeBearer":"SHAR","creditorAgentName":"3528925369516096","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SKP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011814033512904","remittanceInformationUnstructured":"","purposeCode":"cele","chargeBearer":"SHAR","creditorAgentName":"4903050288359297","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IBG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4250140894319386","remittanceInformationUnstructured":"","purposeCode":"zive","chargeBearer":"SHAR","creditorAgentName":"3528223875926441","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DPT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011977316567844","remittanceInformationUnstructured":"","purposeCode":"kasm","chargeBearer":"SHAR","creditorAgentName":"6225313627139416","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EVO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30013140346146","remittanceInformationUnstructured":"","purposeCode":"irud","chargeBearer":"SHAR","creditorAgentName":"4026844137501790","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EDW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5120366824070964","remittanceInformationUnstructured":"","purposeCode":"vuki","chargeBearer":"SHAR","creditorAgentName":"345090401813063","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UPN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5444634256243279","remittanceInformationUnstructured":"","purposeCode":"mush","chargeBearer":"SHAR","creditorAgentName":"4026730294268770","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MNF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5184620827354673","remittanceInformationUnstructured":"","purposeCode":"feha","chargeBearer":"SHAR","creditorAgentName":"5430361180587755","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LPV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6292280611179914","remittanceInformationUnstructured":"","purposeCode":"zefe","chargeBearer":"SHAR","creditorAgentName":"6226160589843892","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RJY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018880804543985","remittanceInformationUnstructured":"","purposeCode":"anap","chargeBearer":"SHAR","creditorAgentName":"6304421490589841","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KOF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528803322834072","remittanceInformationUnstructured":"","purposeCode":"uzoo","chargeBearer":"SHAR","creditorAgentName":"36565237918198","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LKI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378921190167195","remittanceInformationUnstructured":"","purposeCode":"ibep","chargeBearer":"SHAR","creditorAgentName":"5610812930858278","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JEZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4219049993018304","remittanceInformationUnstructured":"","purposeCode":"luhf","chargeBearer":"SHAR","creditorAgentName":"201436277959238","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RTD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304517315957939","remittanceInformationUnstructured":"","purposeCode":"papm","chargeBearer":"SHAR","creditorAgentName":"6253344493254026","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YQC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528562397590650","remittanceInformationUnstructured":"","purposeCode":"zujs","chargeBearer":"SHAR","creditorAgentName":"4903889117016093","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UJH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610370202511158","remittanceInformationUnstructured":"","purposeCode":"woig","chargeBearer":"SHAR","creditorAgentName":"5018126623656305","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DPP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340891102779551","remittanceInformationUnstructured":"","purposeCode":"moci","chargeBearer":"SHAR","creditorAgentName":"6304438748707249","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KRJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018976268934361","remittanceInformationUnstructured":"","purposeCode":"riur","chargeBearer":"SHAR","creditorAgentName":"30045752578525","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SOY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018569975511687","remittanceInformationUnstructured":"","purposeCode":"ezom","chargeBearer":"SHAR","creditorAgentName":"6374036339842212","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RUT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4775349756192965","remittanceInformationUnstructured":"","purposeCode":"zibc","chargeBearer":"SHAR","creditorAgentName":"5179540132551168","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZDG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304239073727525","remittanceInformationUnstructured":"","purposeCode":"vehz","chargeBearer":"SHAR","creditorAgentName":"5472107479672249","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LOF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4491866172789689","remittanceInformationUnstructured":"","purposeCode":"bedd","chargeBearer":"SHAR","creditorAgentName":"6220949650582603","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IGM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334214436467592","remittanceInformationUnstructured":"","purposeCode":"zafo","chargeBearer":"SHAR","creditorAgentName":"6334606565349832","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WIR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6285317872466793","remittanceInformationUnstructured":"","purposeCode":"onec","chargeBearer":"SHAR","creditorAgentName":"6374926346908057","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QQK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373479068273640","remittanceInformationUnstructured":"","purposeCode":"jebi","chargeBearer":"SHAR","creditorAgentName":"36244591089737","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FVI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201470274201260","remittanceInformationUnstructured":"","purposeCode":"dipr","chargeBearer":"SHAR","creditorAgentName":"5018661639844248","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DUX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6231851483949610","remittanceInformationUnstructured":"","purposeCode":"zepo","chargeBearer":"SHAR","creditorAgentName":"5481871746594895","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZWU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36846257848519","remittanceInformationUnstructured":"","purposeCode":"puin","chargeBearer":"SHAR","creditorAgentName":"5182581956025223","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RGK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201488204854396","remittanceInformationUnstructured":"","purposeCode":"ikbu","chargeBearer":"SHAR","creditorAgentName":"36537428391550","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CXI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6246480862945545","remittanceInformationUnstructured":"","purposeCode":"vowr","chargeBearer":"SHAR","creditorAgentName":"5414840060355730","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VCC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903844152714300","remittanceInformationUnstructured":"","purposeCode":"cerl","chargeBearer":"SHAR","creditorAgentName":"4297496218237372","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GRU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5104043187320639","remittanceInformationUnstructured":"","purposeCode":"lemv","chargeBearer":"SHAR","creditorAgentName":"4903505532353180","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GXI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018834827986861","remittanceInformationUnstructured":"","purposeCode":"meer","chargeBearer":"SHAR","creditorAgentName":"3528966010290715","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"URH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30060245978026","remittanceInformationUnstructured":"","purposeCode":"dugo","chargeBearer":"SHAR","creditorAgentName":"346431151468998","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IFQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201454320036748","remittanceInformationUnstructured":"","purposeCode":"udnu","chargeBearer":"SHAR","creditorAgentName":"3528238307413586","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SQT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6370351452606052","remittanceInformationUnstructured":"","purposeCode":"gava","chargeBearer":"SHAR","creditorAgentName":"4944253327203283","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GEA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4072544090918642","remittanceInformationUnstructured":"","purposeCode":"curn","chargeBearer":"SHAR","creditorAgentName":"5149818654820915","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MFJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011119628314454","remittanceInformationUnstructured":"","purposeCode":"kupu","chargeBearer":"SHAR","creditorAgentName":"3528206154148886","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NGS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026592305110825","remittanceInformationUnstructured":"","purposeCode":"gupo","chargeBearer":"SHAR","creditorAgentName":"6237544165812024","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PBD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5422739581807411","remittanceInformationUnstructured":"","purposeCode":"omor","chargeBearer":"SHAR","creditorAgentName":"6011620557791034","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ANG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201461022965611","remittanceInformationUnstructured":"","purposeCode":"liwe","chargeBearer":"SHAR","creditorAgentName":"5018370227300239","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LDZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528295655720830","remittanceInformationUnstructured":"","purposeCode":"pusg","chargeBearer":"SHAR","creditorAgentName":"6378891056476628","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HYF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026470143248976","remittanceInformationUnstructured":"","purposeCode":"vege","chargeBearer":"SHAR","creditorAgentName":"5495072781007307","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BRZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5441776705653963","remittanceInformationUnstructured":"","purposeCode":"kadi","chargeBearer":"SHAR","creditorAgentName":"6202339096091058","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QME"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018320042450891","remittanceInformationUnstructured":"","purposeCode":"hunt","chargeBearer":"SHAR","creditorAgentName":"6304899926832424","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OHM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6378757154749986","remittanceInformationUnstructured":"","purposeCode":"woro","chargeBearer":"SHAR","creditorAgentName":"4026462882992278","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RAS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5144328437181036","remittanceInformationUnstructured":"","purposeCode":"sivo","chargeBearer":"SHAR","creditorAgentName":"5610638931432163","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GVW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30058278919107","remittanceInformationUnstructured":"","purposeCode":"nati","chargeBearer":"SHAR","creditorAgentName":"5610711783151486","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UOR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026388418952355","remittanceInformationUnstructured":"","purposeCode":"harc","chargeBearer":"SHAR","creditorAgentName":"6011337539447490","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PNT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"342459416733710","remittanceInformationUnstructured":"","purposeCode":"miom","chargeBearer":"SHAR","creditorAgentName":"4026265988024502","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EEY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903878127488228","remittanceInformationUnstructured":"","purposeCode":"difh","chargeBearer":"SHAR","creditorAgentName":"6304619206286269","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KNG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903669197197157","remittanceInformationUnstructured":"","purposeCode":"aske","chargeBearer":"SHAR","creditorAgentName":"5018790175186159","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FVW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5101395889118999","remittanceInformationUnstructured":"","purposeCode":"lics","chargeBearer":"SHAR","creditorAgentName":"5105215391559181","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PSF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36343530151184","remittanceInformationUnstructured":"","purposeCode":"beuv","chargeBearer":"SHAR","creditorAgentName":"201490918568247","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JIO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610838413632674","remittanceInformationUnstructured":"","purposeCode":"guks","chargeBearer":"SHAR","creditorAgentName":"30066022165109","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"USN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304597809295251","remittanceInformationUnstructured":"","purposeCode":"ihao","chargeBearer":"SHAR","creditorAgentName":"5018911061375587","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SYD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903894702107430","remittanceInformationUnstructured":"","purposeCode":"honu","chargeBearer":"SHAR","creditorAgentName":"5018600266635404","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"STI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610046118129786","remittanceInformationUnstructured":"","purposeCode":"oraj","chargeBearer":"SHAR","creditorAgentName":"5461422542649451","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AXR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5115091176240158","remittanceInformationUnstructured":"","purposeCode":"arri","chargeBearer":"SHAR","creditorAgentName":"342185226585012","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DPN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4865395200738474","remittanceInformationUnstructured":"","purposeCode":"zowv","chargeBearer":"SHAR","creditorAgentName":"4897131002247204","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WEI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610104447325813","remittanceInformationUnstructured":"","purposeCode":"duwb","chargeBearer":"SHAR","creditorAgentName":"6304430030355480","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EJG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5498856303866290","remittanceInformationUnstructured":"","purposeCode":"obea","chargeBearer":"SHAR","creditorAgentName":"6334556853571987","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UDB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201413759988167","remittanceInformationUnstructured":"","purposeCode":"eksu","chargeBearer":"SHAR","creditorAgentName":"6304675358083995","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WNJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903818856281873","remittanceInformationUnstructured":"","purposeCode":"cuvo","chargeBearer":"SHAR","creditorAgentName":"201494594137061","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AIE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903109404025040","remittanceInformationUnstructured":"","purposeCode":"johe","chargeBearer":"SHAR","creditorAgentName":"6370421399984761","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WIM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201420477591959","remittanceInformationUnstructured":"","purposeCode":"pids","chargeBearer":"SHAR","creditorAgentName":"6376853909523719","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WYA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334156669032025","remittanceInformationUnstructured":"","purposeCode":"emuv","chargeBearer":"SHAR","creditorAgentName":"5018059267785678","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TVV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528253757542446","remittanceInformationUnstructured":"","purposeCode":"cuam","chargeBearer":"SHAR","creditorAgentName":"30053423099897","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VFE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6280265876556421","remittanceInformationUnstructured":"","purposeCode":"napc","chargeBearer":"SHAR","creditorAgentName":"201487924018878","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VPF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026262137219851","remittanceInformationUnstructured":"","purposeCode":"mipa","chargeBearer":"SHAR","creditorAgentName":"5111080259501184","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FIM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30028962607375","remittanceInformationUnstructured":"","purposeCode":"udoz","chargeBearer":"SHAR","creditorAgentName":"4903168400503806","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HWG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610217889837374","remittanceInformationUnstructured":"","purposeCode":"dipu","chargeBearer":"SHAR","creditorAgentName":"4903135582315150","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JYU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201434517441273","remittanceInformationUnstructured":"","purposeCode":"ruca","chargeBearer":"SHAR","creditorAgentName":"30037219379621","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HHJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374878485267243","remittanceInformationUnstructured":"","purposeCode":"iwve","chargeBearer":"SHAR","creditorAgentName":"201400355787788","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BAW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5150110676811965","remittanceInformationUnstructured":"","purposeCode":"zomu","chargeBearer":"SHAR","creditorAgentName":"3528076986297148","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RYC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528971287371750","remittanceInformationUnstructured":"","purposeCode":"lama","chargeBearer":"SHAR","creditorAgentName":"5472914673754768","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZIV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018634105836543","remittanceInformationUnstructured":"","purposeCode":"afwo","chargeBearer":"SHAR","creditorAgentName":"3528129383169608","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SRX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6213592896175110","remittanceInformationUnstructured":"","purposeCode":"niil","chargeBearer":"SHAR","creditorAgentName":"4103299274044961","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VSQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334681677903891","remittanceInformationUnstructured":"","purposeCode":"noct","chargeBearer":"SHAR","creditorAgentName":"6304374747630373","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PYM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528164617975744","remittanceInformationUnstructured":"","purposeCode":"dusd","chargeBearer":"SHAR","creditorAgentName":"6011466750552769","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DKM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201455313059233","remittanceInformationUnstructured":"","purposeCode":"neke","chargeBearer":"SHAR","creditorAgentName":"4903362132040258","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TOF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610885126642599","remittanceInformationUnstructured":"","purposeCode":"kusv","chargeBearer":"SHAR","creditorAgentName":"3528242452230241","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FBQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4900072829070632","remittanceInformationUnstructured":"","purposeCode":"rinu","chargeBearer":"SHAR","creditorAgentName":"5160316814938713","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JLW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304142541220125","remittanceInformationUnstructured":"","purposeCode":"afin","chargeBearer":"SHAR","creditorAgentName":"4559324788675164","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WLZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018085809128200","remittanceInformationUnstructured":"","purposeCode":"cefu","chargeBearer":"SHAR","creditorAgentName":"3528579593978711","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IKS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5491768624829617","remittanceInformationUnstructured":"","purposeCode":"kabn","chargeBearer":"SHAR","creditorAgentName":"36200247184728","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JWJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6376937222403202","remittanceInformationUnstructured":"","purposeCode":"teza","chargeBearer":"SHAR","creditorAgentName":"30036198105973","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UBL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5190553186417256","remittanceInformationUnstructured":"","purposeCode":"rask","chargeBearer":"SHAR","creditorAgentName":"6334782972736208","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AHQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903676411398131","remittanceInformationUnstructured":"","purposeCode":"wope","chargeBearer":"SHAR","creditorAgentName":"4650320572850698","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BWF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343984084510461","remittanceInformationUnstructured":"","purposeCode":"vuba","chargeBearer":"SHAR","creditorAgentName":"6304732348708312","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QPC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528352985392796","remittanceInformationUnstructured":"","purposeCode":"fewe","chargeBearer":"SHAR","creditorAgentName":"5610294065845455","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LTG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026855702104125","remittanceInformationUnstructured":"","purposeCode":"nuke","chargeBearer":"SHAR","creditorAgentName":"36855389066023","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QVA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304229515279631","remittanceInformationUnstructured":"","purposeCode":"baed","chargeBearer":"SHAR","creditorAgentName":"6375121417306410","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CJQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011489005275754","remittanceInformationUnstructured":"","purposeCode":"cino","chargeBearer":"SHAR","creditorAgentName":"36648136289976","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AVB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011513604820213","remittanceInformationUnstructured":"","purposeCode":"icit","chargeBearer":"SHAR","creditorAgentName":"340801717622724","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OPX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610755861934735","remittanceInformationUnstructured":"","purposeCode":"kisu","chargeBearer":"SHAR","creditorAgentName":"30019279975118","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BVM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201411601105618","remittanceInformationUnstructured":"","purposeCode":"rezf","chargeBearer":"SHAR","creditorAgentName":"6304059735993194","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VBZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011051860281044","remittanceInformationUnstructured":"","purposeCode":"miza","chargeBearer":"SHAR","creditorAgentName":"6274550015128564","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MPI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334760840182433","remittanceInformationUnstructured":"","purposeCode":"guzu","chargeBearer":"SHAR","creditorAgentName":"6011384606109231","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JRP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011656779760043","remittanceInformationUnstructured":"","purposeCode":"gilo","chargeBearer":"SHAR","creditorAgentName":"3528612514165157","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZTP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304483888659347","remittanceInformationUnstructured":"","purposeCode":"elzo","chargeBearer":"SHAR","creditorAgentName":"5182584503191407","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IML"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6240896391660337","remittanceInformationUnstructured":"","purposeCode":"hioc","chargeBearer":"SHAR","creditorAgentName":"5192397056568592","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OIE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334690019159757","remittanceInformationUnstructured":"","purposeCode":"naer","chargeBearer":"SHAR","creditorAgentName":"5018772176688094","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OQO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011865608389383","remittanceInformationUnstructured":"","purposeCode":"jozz","chargeBearer":"SHAR","creditorAgentName":"6334357077225579","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XJN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5467231934219425","remittanceInformationUnstructured":"","purposeCode":"akni","chargeBearer":"SHAR","creditorAgentName":"4026508380510515","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HTO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610720523272049","remittanceInformationUnstructured":"","purposeCode":"juwo","chargeBearer":"SHAR","creditorAgentName":"6304834832240594","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LHR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026096281834622","remittanceInformationUnstructured":"","purposeCode":"ecug","chargeBearer":"SHAR","creditorAgentName":"348372550290443","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TGW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"344840947907550","remittanceInformationUnstructured":"","purposeCode":"pawe","chargeBearer":"SHAR","creditorAgentName":"5451565262736072","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XZC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346515844527564","remittanceInformationUnstructured":"","purposeCode":"tutr","chargeBearer":"SHAR","creditorAgentName":"6334028783021210","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UKP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610572431481414","remittanceInformationUnstructured":"","purposeCode":"udep","chargeBearer":"SHAR","creditorAgentName":"6250028750201449","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RKH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6379283437612148","remittanceInformationUnstructured":"","purposeCode":"fece","chargeBearer":"SHAR","creditorAgentName":"36149926224638","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MSF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528881324184019","remittanceInformationUnstructured":"","purposeCode":"zisf","chargeBearer":"SHAR","creditorAgentName":"340547474536876","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RFT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5467770191486821","remittanceInformationUnstructured":"","purposeCode":"zewa","chargeBearer":"SHAR","creditorAgentName":"3528695023715679","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LXS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610142935313586","remittanceInformationUnstructured":"","purposeCode":"abor","chargeBearer":"SHAR","creditorAgentName":"6304064941827483","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VMV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304334872329589","remittanceInformationUnstructured":"","purposeCode":"nivc","chargeBearer":"SHAR","creditorAgentName":"4201892119131794","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WOI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343201877892828","remittanceInformationUnstructured":"","purposeCode":"uvmu","chargeBearer":"SHAR","creditorAgentName":"4026113393708337","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NLD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026579294077461","remittanceInformationUnstructured":"","purposeCode":"gode","chargeBearer":"SHAR","creditorAgentName":"4903967857422703","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NOM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304898254902627","remittanceInformationUnstructured":"","purposeCode":"jozm","chargeBearer":"SHAR","creditorAgentName":"6304991438948242","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QHD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4977888078242772","remittanceInformationUnstructured":"","purposeCode":"divk","chargeBearer":"SHAR","creditorAgentName":"6011475491217731","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RTF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36838831961181","remittanceInformationUnstructured":"","purposeCode":"misn","chargeBearer":"SHAR","creditorAgentName":"30089680633861","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QSA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377717365692772","remittanceInformationUnstructured":"","purposeCode":"gidl","chargeBearer":"SHAR","creditorAgentName":"6377778861886367","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HXB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36597682577757","remittanceInformationUnstructured":"","purposeCode":"zomu","chargeBearer":"SHAR","creditorAgentName":"6371332838840754","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FMG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018882646068981","remittanceInformationUnstructured":"","purposeCode":"nohj","chargeBearer":"SHAR","creditorAgentName":"6269397715631316","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SNY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903436858275908","remittanceInformationUnstructured":"","purposeCode":"natu","chargeBearer":"SHAR","creditorAgentName":"6376508056604981","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LQF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5444071859660619","remittanceInformationUnstructured":"","purposeCode":"egpa","chargeBearer":"SHAR","creditorAgentName":"3528277228290186","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FIQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334635039512782","remittanceInformationUnstructured":"","purposeCode":"gijc","chargeBearer":"SHAR","creditorAgentName":"4026326761865105","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WKW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304934750330284","remittanceInformationUnstructured":"","purposeCode":"siiv","chargeBearer":"SHAR","creditorAgentName":"6304717668587107","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YNR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610180616867983","remittanceInformationUnstructured":"","purposeCode":"ibwo","chargeBearer":"SHAR","creditorAgentName":"201453819203488","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AAB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5125306371330275","remittanceInformationUnstructured":"","purposeCode":"tegk","chargeBearer":"SHAR","creditorAgentName":"36232197345827","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ALC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5483871723350608","remittanceInformationUnstructured":"","purposeCode":"epej","chargeBearer":"SHAR","creditorAgentName":"5610855050443199","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LGD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6258554778868416","remittanceInformationUnstructured":"","purposeCode":"rema","chargeBearer":"SHAR","creditorAgentName":"6011470028434917","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LAY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201481089448434","remittanceInformationUnstructured":"","purposeCode":"mivc","chargeBearer":"SHAR","creditorAgentName":"6379079640126250","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BTN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"345893471195851","remittanceInformationUnstructured":"","purposeCode":"denf","chargeBearer":"SHAR","creditorAgentName":"30073805790855","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MMH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610492997473897","remittanceInformationUnstructured":"","purposeCode":"fuzk","chargeBearer":"SHAR","creditorAgentName":"6304149141443130","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YEE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018009830126124","remittanceInformationUnstructured":"","purposeCode":"date","chargeBearer":"SHAR","creditorAgentName":"6304932296214525","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EGU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6231642449951638","remittanceInformationUnstructured":"","purposeCode":"mucj","chargeBearer":"SHAR","creditorAgentName":"5171931892003284","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RWK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5164370031918707","remittanceInformationUnstructured":"","purposeCode":"wuwe","chargeBearer":"SHAR","creditorAgentName":"6011938920858581","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AZZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5473282117366352","remittanceInformationUnstructured":"","purposeCode":"nepe","chargeBearer":"SHAR","creditorAgentName":"4903786240905053","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TWA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026419723881375","remittanceInformationUnstructured":"","purposeCode":"tidb","chargeBearer":"SHAR","creditorAgentName":"36653731063255","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WVG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903926855139420","remittanceInformationUnstructured":"","purposeCode":"hodv","chargeBearer":"SHAR","creditorAgentName":"6334116589621158","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DVL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201478277076936","remittanceInformationUnstructured":"","purposeCode":"jata","chargeBearer":"SHAR","creditorAgentName":"4903787255180947","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HAV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5471814513918378","remittanceInformationUnstructured":"","purposeCode":"vefb","chargeBearer":"SHAR","creditorAgentName":"3528569863639416","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NEA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374001249817621","remittanceInformationUnstructured":"","purposeCode":"waja","chargeBearer":"SHAR","creditorAgentName":"5610442311655505","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JXR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30017095418297","remittanceInformationUnstructured":"","purposeCode":"cale","chargeBearer":"SHAR","creditorAgentName":"4903706313401590","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JRM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011627289283651","remittanceInformationUnstructured":"","purposeCode":"ikle","chargeBearer":"SHAR","creditorAgentName":"4026658902749289","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NOW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304441513695987","remittanceInformationUnstructured":"","purposeCode":"umci","chargeBearer":"SHAR","creditorAgentName":"5187447726537647","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KHS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6207325054941223","remittanceInformationUnstructured":"","purposeCode":"ezwe","chargeBearer":"SHAR","creditorAgentName":"6238813848002660","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GJY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6253696075993010","remittanceInformationUnstructured":"","purposeCode":"morf","chargeBearer":"SHAR","creditorAgentName":"6253766111879307","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KBC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6376059341420775","remittanceInformationUnstructured":"","purposeCode":"azsu","chargeBearer":"SHAR","creditorAgentName":"5131163103794902","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SNZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011499639440401","remittanceInformationUnstructured":"","purposeCode":"abfi","chargeBearer":"SHAR","creditorAgentName":"4275574361327178","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PGW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334481269015174","remittanceInformationUnstructured":"","purposeCode":"mabu","chargeBearer":"SHAR","creditorAgentName":"201438920498952","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GHV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6264264065230534","remittanceInformationUnstructured":"","purposeCode":"guaj","chargeBearer":"SHAR","creditorAgentName":"6371835175091211","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZDW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903735869205121","remittanceInformationUnstructured":"","purposeCode":"woir","chargeBearer":"SHAR","creditorAgentName":"6334497782816971","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EFG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30009799154229","remittanceInformationUnstructured":"","purposeCode":"nidd","chargeBearer":"SHAR","creditorAgentName":"5018976945225647","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MKU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"345904891723048","remittanceInformationUnstructured":"","purposeCode":"gilo","chargeBearer":"SHAR","creditorAgentName":"36552617668254","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XXV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4386047110327399","remittanceInformationUnstructured":"","purposeCode":"cere","chargeBearer":"SHAR","creditorAgentName":"36242122800267","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HVI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334765169024918","remittanceInformationUnstructured":"","purposeCode":"mirs","chargeBearer":"SHAR","creditorAgentName":"201447378459440","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VRO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334918090520427","remittanceInformationUnstructured":"","purposeCode":"meki","chargeBearer":"SHAR","creditorAgentName":"5018192055233930","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NBE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5402386435896416","remittanceInformationUnstructured":"","purposeCode":"tuul","chargeBearer":"SHAR","creditorAgentName":"5190822672114234","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UEL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304322894826567","remittanceInformationUnstructured":"","purposeCode":"osri","chargeBearer":"SHAR","creditorAgentName":"30052314041406","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DAI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018249205440219","remittanceInformationUnstructured":"","purposeCode":"tore","chargeBearer":"SHAR","creditorAgentName":"5488820924736037","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OAI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340112569925706","remittanceInformationUnstructured":"","purposeCode":"gole","chargeBearer":"SHAR","creditorAgentName":"5414770575784324","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VKW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6375623539120801","remittanceInformationUnstructured":"","purposeCode":"alov","chargeBearer":"SHAR","creditorAgentName":"30037218662324","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PRN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340741265395523","remittanceInformationUnstructured":"","purposeCode":"ronl","chargeBearer":"SHAR","creditorAgentName":"4026011016390642","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DBX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4833783896731136","remittanceInformationUnstructured":"","purposeCode":"delo","chargeBearer":"SHAR","creditorAgentName":"36001354663953","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EGH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304503052288704","remittanceInformationUnstructured":"","purposeCode":"birz","chargeBearer":"SHAR","creditorAgentName":"6213108098901102","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MTE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334580615358152","remittanceInformationUnstructured":"","purposeCode":"okuc","chargeBearer":"SHAR","creditorAgentName":"30060604839082","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HMY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334779387624052","remittanceInformationUnstructured":"","purposeCode":"obam","chargeBearer":"SHAR","creditorAgentName":"6374140686161521","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AYR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377542344325264","remittanceInformationUnstructured":"","purposeCode":"loso","chargeBearer":"SHAR","creditorAgentName":"5486257641853617","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LGY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018184150067073","remittanceInformationUnstructured":"","purposeCode":"fuci","chargeBearer":"SHAR","creditorAgentName":"3528130648425322","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DSV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018387421824749","remittanceInformationUnstructured":"","purposeCode":"tubu","chargeBearer":"SHAR","creditorAgentName":"6281915794747622","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HCN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5179810791969369","remittanceInformationUnstructured":"","purposeCode":"wiki","chargeBearer":"SHAR","creditorAgentName":"3528338150862408","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FEY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30062165562095","remittanceInformationUnstructured":"","purposeCode":"meli","chargeBearer":"SHAR","creditorAgentName":"5018641554252577","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OUY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343287776766478","remittanceInformationUnstructured":"","purposeCode":"core","chargeBearer":"SHAR","creditorAgentName":"6334761912945293","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GBM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5461015356202696","remittanceInformationUnstructured":"","purposeCode":"gace","chargeBearer":"SHAR","creditorAgentName":"6334666000711111","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QUV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5189894326058987","remittanceInformationUnstructured":"","purposeCode":"cila","chargeBearer":"SHAR","creditorAgentName":"4903844975115164","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MJL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610204566942412","remittanceInformationUnstructured":"","purposeCode":"nucu","chargeBearer":"SHAR","creditorAgentName":"340183497931157","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QSA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5490733300231232","remittanceInformationUnstructured":"","purposeCode":"feti","chargeBearer":"SHAR","creditorAgentName":"4871234518434033","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QSS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304189549170547","remittanceInformationUnstructured":"","purposeCode":"juzz","chargeBearer":"SHAR","creditorAgentName":"4227530897070590","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZBR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528682454110232","remittanceInformationUnstructured":"","purposeCode":"dovp","chargeBearer":"SHAR","creditorAgentName":"4026538381904102","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CYQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903425403897472","remittanceInformationUnstructured":"","purposeCode":"fakg","chargeBearer":"SHAR","creditorAgentName":"30015692101621","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LUW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5128650891709600","remittanceInformationUnstructured":"","purposeCode":"nojo","chargeBearer":"SHAR","creditorAgentName":"36277583710852","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XHX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201460479501663","remittanceInformationUnstructured":"","purposeCode":"afow","chargeBearer":"SHAR","creditorAgentName":"6266482626807438","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WIS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528652479383510","remittanceInformationUnstructured":"","purposeCode":"rali","chargeBearer":"SHAR","creditorAgentName":"201445928990856","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MBI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011177449876150","remittanceInformationUnstructured":"","purposeCode":"jeef","chargeBearer":"SHAR","creditorAgentName":"4903108154126958","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZTD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30033873354083","remittanceInformationUnstructured":"","purposeCode":"niwd","chargeBearer":"SHAR","creditorAgentName":"4903319781491612","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YYW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6235435808714937","remittanceInformationUnstructured":"","purposeCode":"awpo","chargeBearer":"SHAR","creditorAgentName":"341048340938627","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PKJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374605391515930","remittanceInformationUnstructured":"","purposeCode":"liwo","chargeBearer":"SHAR","creditorAgentName":"6304706636277099","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PBV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610598352971638","remittanceInformationUnstructured":"","purposeCode":"wete","chargeBearer":"SHAR","creditorAgentName":"5140590394309355","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DGH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"349206302527109","remittanceInformationUnstructured":"","purposeCode":"nubi","chargeBearer":"SHAR","creditorAgentName":"348098274916514","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SYQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5185504589080255","remittanceInformationUnstructured":"","purposeCode":"diln","chargeBearer":"SHAR","creditorAgentName":"5499355283068265","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OSC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346325750619789","remittanceInformationUnstructured":"","purposeCode":"odus","chargeBearer":"SHAR","creditorAgentName":"3528461676302293","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WKF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026896082425805","remittanceInformationUnstructured":"","purposeCode":"ibsa","chargeBearer":"SHAR","creditorAgentName":"5018110246349597","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QRP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334993343440749","remittanceInformationUnstructured":"","purposeCode":"wiku","chargeBearer":"SHAR","creditorAgentName":"4026225763600009","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OIS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026100926982331","remittanceInformationUnstructured":"","purposeCode":"rusa","chargeBearer":"SHAR","creditorAgentName":"342436603669568","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MUH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903095945498103","remittanceInformationUnstructured":"","purposeCode":"pume","chargeBearer":"SHAR","creditorAgentName":"6283412601547435","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DPX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340717420824649","remittanceInformationUnstructured":"","purposeCode":"puwk","chargeBearer":"SHAR","creditorAgentName":"346346240758052","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JEW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340134940998244","remittanceInformationUnstructured":"","purposeCode":"nobe","chargeBearer":"SHAR","creditorAgentName":"5018304871036823","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VMM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"341394001963953","remittanceInformationUnstructured":"","purposeCode":"hedi","chargeBearer":"SHAR","creditorAgentName":"5487448078704337","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LNE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528882504883289","remittanceInformationUnstructured":"","purposeCode":"saco","chargeBearer":"SHAR","creditorAgentName":"5174028692029804","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YUV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5497388227328547","remittanceInformationUnstructured":"","purposeCode":"ahva","chargeBearer":"SHAR","creditorAgentName":"5018083809863603","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NZI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011296763584461","remittanceInformationUnstructured":"","purposeCode":"buto","chargeBearer":"SHAR","creditorAgentName":"4028817552136076","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RZY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"343912673106003","remittanceInformationUnstructured":"","purposeCode":"rual","chargeBearer":"SHAR","creditorAgentName":"6011030570071127","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HAG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610050239701697","remittanceInformationUnstructured":"","purposeCode":"eluh","chargeBearer":"SHAR","creditorAgentName":"6011272323722966","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HVJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304602195577336","remittanceInformationUnstructured":"","purposeCode":"wute","chargeBearer":"SHAR","creditorAgentName":"201490826347643","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZZV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201464926871463","remittanceInformationUnstructured":"","purposeCode":"cumu","chargeBearer":"SHAR","creditorAgentName":"5165717474570255","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PTB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30076210105049","remittanceInformationUnstructured":"","purposeCode":"ebup","chargeBearer":"SHAR","creditorAgentName":"36785668734480","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FSN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903349042505629","remittanceInformationUnstructured":"","purposeCode":"hivw","chargeBearer":"SHAR","creditorAgentName":"5610064942324531","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KNR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304798815103790","remittanceInformationUnstructured":"","purposeCode":"mazw","chargeBearer":"SHAR","creditorAgentName":"5478945642736944","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BNI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4751420352853959","remittanceInformationUnstructured":"","purposeCode":"owup","chargeBearer":"SHAR","creditorAgentName":"6267877952277065","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PUA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334797579047916","remittanceInformationUnstructured":"","purposeCode":"hube","chargeBearer":"SHAR","creditorAgentName":"6375293783192086","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CHK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018726364483700","remittanceInformationUnstructured":"","purposeCode":"hazo","chargeBearer":"SHAR","creditorAgentName":"4050281225279584","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KAU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30061211816513","remittanceInformationUnstructured":"","purposeCode":"tigj","chargeBearer":"SHAR","creditorAgentName":"5105852629392066","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ROZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5486885106724681","remittanceInformationUnstructured":"","purposeCode":"itso","chargeBearer":"SHAR","creditorAgentName":"6271215608220359","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TWE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011106863912712","remittanceInformationUnstructured":"","purposeCode":"vuka","chargeBearer":"SHAR","creditorAgentName":"5018318606695570","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MYJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026948886508680","remittanceInformationUnstructured":"","purposeCode":"botp","chargeBearer":"SHAR","creditorAgentName":"201496400620305","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YQG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36238893985337","remittanceInformationUnstructured":"","purposeCode":"tibw","chargeBearer":"SHAR","creditorAgentName":"6304219275033591","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XNX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347946066560521","remittanceInformationUnstructured":"","purposeCode":"pelu","chargeBearer":"SHAR","creditorAgentName":"4461730004744369","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JBL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018831831652299","remittanceInformationUnstructured":"","purposeCode":"pigi","chargeBearer":"SHAR","creditorAgentName":"3528770554789862","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SVT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903604761518959","remittanceInformationUnstructured":"","purposeCode":"dodo","chargeBearer":"SHAR","creditorAgentName":"6372307839694870","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CYF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334881039393985","remittanceInformationUnstructured":"","purposeCode":"mame","chargeBearer":"SHAR","creditorAgentName":"6011502976294420","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SAB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610494041504297","remittanceInformationUnstructured":"","purposeCode":"bimi","chargeBearer":"SHAR","creditorAgentName":"5412240368591189","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RJD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334348829527115","remittanceInformationUnstructured":"","purposeCode":"melg","chargeBearer":"SHAR","creditorAgentName":"3528750019880571","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RKL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304099034566002","remittanceInformationUnstructured":"","purposeCode":"hauw","chargeBearer":"SHAR","creditorAgentName":"5424182535426426","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YYE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4297914126463104","remittanceInformationUnstructured":"","purposeCode":"dipi","chargeBearer":"SHAR","creditorAgentName":"342954387167211","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"REG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610408538894037","remittanceInformationUnstructured":"","purposeCode":"zazo","chargeBearer":"SHAR","creditorAgentName":"30068105525183","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MQQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5434938204997205","remittanceInformationUnstructured":"","purposeCode":"imor","chargeBearer":"SHAR","creditorAgentName":"5176579348579186","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CRO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018944033180983","remittanceInformationUnstructured":"","purposeCode":"mack","chargeBearer":"SHAR","creditorAgentName":"5018061958983455","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OQS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304212063942487","remittanceInformationUnstructured":"","purposeCode":"zovv","chargeBearer":"SHAR","creditorAgentName":"3528617472428075","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JTK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026291603895431","remittanceInformationUnstructured":"","purposeCode":"gugj","chargeBearer":"SHAR","creditorAgentName":"341666723457053","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VCR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4884033513948491","remittanceInformationUnstructured":"","purposeCode":"ezfu","chargeBearer":"SHAR","creditorAgentName":"5018624543203059","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RHH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903430910113330","remittanceInformationUnstructured":"","purposeCode":"jozo","chargeBearer":"SHAR","creditorAgentName":"5018447185936574","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DEE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026369283511161","remittanceInformationUnstructured":"","purposeCode":"tipi","chargeBearer":"SHAR","creditorAgentName":"36179514814243","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KMB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"341240906640784","remittanceInformationUnstructured":"","purposeCode":"ludn","chargeBearer":"SHAR","creditorAgentName":"201434576172553","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QOU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5167504525326780","remittanceInformationUnstructured":"","purposeCode":"gobo","chargeBearer":"SHAR","creditorAgentName":"6304188519562113","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TLQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377403061978688","remittanceInformationUnstructured":"","purposeCode":"napl","chargeBearer":"SHAR","creditorAgentName":"4123876366507587","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DTQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36058190174637","remittanceInformationUnstructured":"","purposeCode":"puco","chargeBearer":"SHAR","creditorAgentName":"5123503687171987","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TAS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011654650127564","remittanceInformationUnstructured":"","purposeCode":"jubd","chargeBearer":"SHAR","creditorAgentName":"6334750754147480","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IWC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4438968553237449","remittanceInformationUnstructured":"","purposeCode":"lunu","chargeBearer":"SHAR","creditorAgentName":"343775070254076","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZHS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30088327690870","remittanceInformationUnstructured":"","purposeCode":"muen","chargeBearer":"SHAR","creditorAgentName":"6011713082110455","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DRA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4447253280614817","remittanceInformationUnstructured":"","purposeCode":"nivs","chargeBearer":"SHAR","creditorAgentName":"6334541208371671","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EEP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5424947653298934","remittanceInformationUnstructured":"","purposeCode":"gace","chargeBearer":"SHAR","creditorAgentName":"6304529259094033","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KNA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610325458132661","remittanceInformationUnstructured":"","purposeCode":"citi","chargeBearer":"SHAR","creditorAgentName":"5018372629074842","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NDR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340876203533247","remittanceInformationUnstructured":"","purposeCode":"ibau","chargeBearer":"SHAR","creditorAgentName":"3528298466050314","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RUW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026737986700614","remittanceInformationUnstructured":"","purposeCode":"rojo","chargeBearer":"SHAR","creditorAgentName":"6011035734897291","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LNS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201418044061688","remittanceInformationUnstructured":"","purposeCode":"udre","chargeBearer":"SHAR","creditorAgentName":"6375774022503217","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DGU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903703788503331","remittanceInformationUnstructured":"","purposeCode":"kage","chargeBearer":"SHAR","creditorAgentName":"5193936330209793","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TFD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377757967045672","remittanceInformationUnstructured":"","purposeCode":"kipk","chargeBearer":"SHAR","creditorAgentName":"341565431009463","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KJR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4934074974345314","remittanceInformationUnstructured":"","purposeCode":"awju","chargeBearer":"SHAR","creditorAgentName":"3528435434290867","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WTO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6272420386564221","remittanceInformationUnstructured":"","purposeCode":"adea","chargeBearer":"SHAR","creditorAgentName":"6374744717811143","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZRA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36628783453489","remittanceInformationUnstructured":"","purposeCode":"bika","chargeBearer":"SHAR","creditorAgentName":"6201246065391743","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BYB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377263051565485","remittanceInformationUnstructured":"","purposeCode":"daul","chargeBearer":"SHAR","creditorAgentName":"348984708197500","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZMX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201400182997261","remittanceInformationUnstructured":"","purposeCode":"lers","chargeBearer":"SHAR","creditorAgentName":"5187923064189175","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LSZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5146158176946077","remittanceInformationUnstructured":"","purposeCode":"hofs","chargeBearer":"SHAR","creditorAgentName":"342906225276810","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TNH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304236076333525","remittanceInformationUnstructured":"","purposeCode":"pulk","chargeBearer":"SHAR","creditorAgentName":"6379273925585534","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AKN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610510598754389","remittanceInformationUnstructured":"","purposeCode":"losc","chargeBearer":"SHAR","creditorAgentName":"5018339168145606","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QIX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36200169626979","remittanceInformationUnstructured":"","purposeCode":"ecot","chargeBearer":"SHAR","creditorAgentName":"5198617874681127","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RQU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334000753437726","remittanceInformationUnstructured":"","purposeCode":"tubu","chargeBearer":"SHAR","creditorAgentName":"30089563416806","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XGR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377405744928675","remittanceInformationUnstructured":"","purposeCode":"povi","chargeBearer":"SHAR","creditorAgentName":"3528286571143264","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LWB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018898005247883","remittanceInformationUnstructured":"","purposeCode":"upon","chargeBearer":"SHAR","creditorAgentName":"6378822324195872","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XKP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528333888707355","remittanceInformationUnstructured":"","purposeCode":"wowm","chargeBearer":"SHAR","creditorAgentName":"5428116943522455","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZHN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011943134535470","remittanceInformationUnstructured":"","purposeCode":"tila","chargeBearer":"SHAR","creditorAgentName":"6011591269354017","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZWA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340046298696610","remittanceInformationUnstructured":"","purposeCode":"pazz","chargeBearer":"SHAR","creditorAgentName":"4903309447241618","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SCR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201418786084542","remittanceInformationUnstructured":"","purposeCode":"dowo","chargeBearer":"SHAR","creditorAgentName":"342580986449948","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CXG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610131365184849","remittanceInformationUnstructured":"","purposeCode":"abma","chargeBearer":"SHAR","creditorAgentName":"4167145447179767","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PQJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5436079862212435","remittanceInformationUnstructured":"","purposeCode":"ulhu","chargeBearer":"SHAR","creditorAgentName":"6271400289795362","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AXO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011694460530524","remittanceInformationUnstructured":"","purposeCode":"egov","chargeBearer":"SHAR","creditorAgentName":"36647979948235","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YVD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347995683854049","remittanceInformationUnstructured":"","purposeCode":"zeig","chargeBearer":"SHAR","creditorAgentName":"6334120193639663","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CBM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011714457003622","remittanceInformationUnstructured":"","purposeCode":"woho","chargeBearer":"SHAR","creditorAgentName":"5448794107027150","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OXO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610825908624662","remittanceInformationUnstructured":"","purposeCode":"ciwd","chargeBearer":"SHAR","creditorAgentName":"5132120128394703","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ODV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36897532088298","remittanceInformationUnstructured":"","purposeCode":"cuga","chargeBearer":"SHAR","creditorAgentName":"5610803091669356","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YRA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4535544698590901","remittanceInformationUnstructured":"","purposeCode":"fese","chargeBearer":"SHAR","creditorAgentName":"6334460854335593","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KFG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201484606448598","remittanceInformationUnstructured":"","purposeCode":"zila","chargeBearer":"SHAR","creditorAgentName":"6334320083550356","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DHJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"342963700298074","remittanceInformationUnstructured":"","purposeCode":"padv","chargeBearer":"SHAR","creditorAgentName":"6304482405994963","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZTR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5181524244330634","remittanceInformationUnstructured":"","purposeCode":"tojo","chargeBearer":"SHAR","creditorAgentName":"201468486493063","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UUV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610014526526480","remittanceInformationUnstructured":"","purposeCode":"vibe","chargeBearer":"SHAR","creditorAgentName":"4903299802321040","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SNA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30013386010158","remittanceInformationUnstructured":"","purposeCode":"ewio","chargeBearer":"SHAR","creditorAgentName":"36318667019461","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XVW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610697835357652","remittanceInformationUnstructured":"","purposeCode":"hare","chargeBearer":"SHAR","creditorAgentName":"5138106054150502","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RJD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6296355335275044","remittanceInformationUnstructured":"","purposeCode":"zohb","chargeBearer":"SHAR","creditorAgentName":"5018199384895966","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VLK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610150103906727","remittanceInformationUnstructured":"","purposeCode":"huhh","chargeBearer":"SHAR","creditorAgentName":"5492488213141907","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EXV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334553555789660","remittanceInformationUnstructured":"","purposeCode":"sotl","chargeBearer":"SHAR","creditorAgentName":"5018938753350347","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CDJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4005235269710553","remittanceInformationUnstructured":"","purposeCode":"doez","chargeBearer":"SHAR","creditorAgentName":"6334215803505088","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VKL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018908056476628","remittanceInformationUnstructured":"","purposeCode":"raco","chargeBearer":"SHAR","creditorAgentName":"5610871989625863","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ITX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6379985940637335","remittanceInformationUnstructured":"","purposeCode":"lurk","chargeBearer":"SHAR","creditorAgentName":"4185481260320065","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DQP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6281115515528126","remittanceInformationUnstructured":"","purposeCode":"koub","chargeBearer":"SHAR","creditorAgentName":"5018061562597931","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OHF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36405882019846","remittanceInformationUnstructured":"","purposeCode":"igme","chargeBearer":"SHAR","creditorAgentName":"30098977929080","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RWV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903187585332955","remittanceInformationUnstructured":"","purposeCode":"ucah","chargeBearer":"SHAR","creditorAgentName":"4903670343733002","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RBA"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528837300490333","remittanceInformationUnstructured":"","purposeCode":"tago","chargeBearer":"SHAR","creditorAgentName":"6378037417979070","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SSV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4653640456228696","remittanceInformationUnstructured":"","purposeCode":"relr","chargeBearer":"SHAR","creditorAgentName":"6334560928528170","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FCZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6377061980221703","remittanceInformationUnstructured":"","purposeCode":"udos","chargeBearer":"SHAR","creditorAgentName":"349738828355136","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VKH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026802743181597","remittanceInformationUnstructured":"","purposeCode":"feut","chargeBearer":"SHAR","creditorAgentName":"5610498238209966","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HLE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"342525170288966","remittanceInformationUnstructured":"","purposeCode":"pied","chargeBearer":"SHAR","creditorAgentName":"5101815539826568","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XFS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304405327717451","remittanceInformationUnstructured":"","purposeCode":"epvi","chargeBearer":"SHAR","creditorAgentName":"5610822216922839","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WNS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201444276709893","remittanceInformationUnstructured":"","purposeCode":"dozi","chargeBearer":"SHAR","creditorAgentName":"5610593109318167","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EOR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36347093679242","remittanceInformationUnstructured":"","purposeCode":"dozv","chargeBearer":"SHAR","creditorAgentName":"36069163793113","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MQF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201439493819095","remittanceInformationUnstructured":"","purposeCode":"lejd","chargeBearer":"SHAR","creditorAgentName":"201469262424371","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AKW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4435609329028133","remittanceInformationUnstructured":"","purposeCode":"luto","chargeBearer":"SHAR","creditorAgentName":"30069883687146","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GVY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"347421428131601","remittanceInformationUnstructured":"","purposeCode":"soag","chargeBearer":"SHAR","creditorAgentName":"201453537078311","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"BBQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026576044633106","remittanceInformationUnstructured":"","purposeCode":"mamd","chargeBearer":"SHAR","creditorAgentName":"5482506253086393","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SEM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36839865581366","remittanceInformationUnstructured":"","purposeCode":"zucl","chargeBearer":"SHAR","creditorAgentName":"30093501575376","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HQB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"340241379105710","remittanceInformationUnstructured":"","purposeCode":"topb","chargeBearer":"SHAR","creditorAgentName":"4903958853483476","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MWW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5415829324165828","remittanceInformationUnstructured":"","purposeCode":"vebe","chargeBearer":"SHAR","creditorAgentName":"36898318446130","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LKJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30006035650143","remittanceInformationUnstructured":"","purposeCode":"kino","chargeBearer":"SHAR","creditorAgentName":"5610387212785135","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GUZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334263229542434","remittanceInformationUnstructured":"","purposeCode":"hija","chargeBearer":"SHAR","creditorAgentName":"5018421711341369","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZNN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026077909954463","remittanceInformationUnstructured":"","purposeCode":"feug","chargeBearer":"SHAR","creditorAgentName":"5159165969396398","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IPD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304900818309198","remittanceInformationUnstructured":"","purposeCode":"ezhe","chargeBearer":"SHAR","creditorAgentName":"5018791713657982","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"UJD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026946942524022","remittanceInformationUnstructured":"","purposeCode":"fuof","chargeBearer":"SHAR","creditorAgentName":"6210851569569725","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IRB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334631336488271","remittanceInformationUnstructured":"","purposeCode":"goiv","chargeBearer":"SHAR","creditorAgentName":"6277463683314473","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EER"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528109834660587","remittanceInformationUnstructured":"","purposeCode":"vetd","chargeBearer":"SHAR","creditorAgentName":"6373240188676728","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CLZ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528676269015636","remittanceInformationUnstructured":"","purposeCode":"cehm","chargeBearer":"SHAR","creditorAgentName":"6304696616770512","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CQC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"344495698832539","remittanceInformationUnstructured":"","purposeCode":"zubs","chargeBearer":"SHAR","creditorAgentName":"5106900606426891","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IHQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610488925120527","remittanceInformationUnstructured":"","purposeCode":"bazw","chargeBearer":"SHAR","creditorAgentName":"5121227798517316","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DCQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"346704247691652","remittanceInformationUnstructured":"","purposeCode":"zips","chargeBearer":"SHAR","creditorAgentName":"6371626638489807","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SFW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026952099026894","remittanceInformationUnstructured":"","purposeCode":"igse","chargeBearer":"SHAR","creditorAgentName":"6011262375632817","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FOV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201498693888128","remittanceInformationUnstructured":"","purposeCode":"arpo","chargeBearer":"SHAR","creditorAgentName":"4903774124008558","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NLU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018433871454460","remittanceInformationUnstructured":"","purposeCode":"fusr","chargeBearer":"SHAR","creditorAgentName":"201448557804521","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LKS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4036678906318301","remittanceInformationUnstructured":"","purposeCode":"guha","chargeBearer":"SHAR","creditorAgentName":"5610620704937891","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XQF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018044052988158","remittanceInformationUnstructured":"","purposeCode":"logv","chargeBearer":"SHAR","creditorAgentName":"6334669423857255","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TDT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018642519113888","remittanceInformationUnstructured":"","purposeCode":"wuwf","chargeBearer":"SHAR","creditorAgentName":"6334254830084064","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FJF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5167230666757282","remittanceInformationUnstructured":"","purposeCode":"pihi","chargeBearer":"SHAR","creditorAgentName":"4500109200652077","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EHL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011973297857536","remittanceInformationUnstructured":"","purposeCode":"amaz","chargeBearer":"SHAR","creditorAgentName":"6304027642490554","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XMI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6374472580890933","remittanceInformationUnstructured":"","purposeCode":"razs","chargeBearer":"SHAR","creditorAgentName":"5018482257550847","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WPO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528498361054979","remittanceInformationUnstructured":"","purposeCode":"iria","chargeBearer":"SHAR","creditorAgentName":"6373254396477548","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EDS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903765473468807","remittanceInformationUnstructured":"","purposeCode":"mapa","chargeBearer":"SHAR","creditorAgentName":"5197389983794727","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HIL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304945098550052","remittanceInformationUnstructured":"","purposeCode":"umuu","chargeBearer":"SHAR","creditorAgentName":"5433440830766659","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PGY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026464753485754","remittanceInformationUnstructured":"","purposeCode":"gode","chargeBearer":"SHAR","creditorAgentName":"30052287451665","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GWM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6221819408979923","remittanceInformationUnstructured":"","purposeCode":"zale","chargeBearer":"SHAR","creditorAgentName":"347631868661194","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LFJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528075379093544","remittanceInformationUnstructured":"","purposeCode":"vowv","chargeBearer":"SHAR","creditorAgentName":"6304091301569728","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"EOD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5440477362001353","remittanceInformationUnstructured":"","purposeCode":"apoj","chargeBearer":"SHAR","creditorAgentName":"5018476121562178","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZKJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201445799596964","remittanceInformationUnstructured":"","purposeCode":"mokw","chargeBearer":"SHAR","creditorAgentName":"6220844535084646","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VCT"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026145428912997","remittanceInformationUnstructured":"","purposeCode":"nufj","chargeBearer":"SHAR","creditorAgentName":"6011075753548391","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZHR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4138620405148950","remittanceInformationUnstructured":"","purposeCode":"koob","chargeBearer":"SHAR","creditorAgentName":"349971392848406","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"DYU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026220471336012","remittanceInformationUnstructured":"","purposeCode":"oluc","chargeBearer":"SHAR","creditorAgentName":"4325574277773903","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KMR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5479455293548910","remittanceInformationUnstructured":"","purposeCode":"obsu","chargeBearer":"SHAR","creditorAgentName":"3528011282946387","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"HRC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528681323883482","remittanceInformationUnstructured":"","purposeCode":"jizo","chargeBearer":"SHAR","creditorAgentName":"5487718916214560","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OIJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334549852952191","remittanceInformationUnstructured":"","purposeCode":"bahu","chargeBearer":"SHAR","creditorAgentName":"5492946213374570","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VAN"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4064567478671483","remittanceInformationUnstructured":"","purposeCode":"vivz","chargeBearer":"SHAR","creditorAgentName":"4600369294734632","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZUM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528479270718045","remittanceInformationUnstructured":"","purposeCode":"tijb","chargeBearer":"SHAR","creditorAgentName":"6298423359224237","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PTM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018561823662515","remittanceInformationUnstructured":"","purposeCode":"pujv","chargeBearer":"SHAR","creditorAgentName":"5157325798996832","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NMH"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903832498435524","remittanceInformationUnstructured":"","purposeCode":"vadi","chargeBearer":"SHAR","creditorAgentName":"6249298949094575","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PAR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"348448684681978","remittanceInformationUnstructured":"","purposeCode":"vove","chargeBearer":"SHAR","creditorAgentName":"342646725319153","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KXM"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903425630187556","remittanceInformationUnstructured":"","purposeCode":"zazg","chargeBearer":"SHAR","creditorAgentName":"30013581671598","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ODE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30022406006005","remittanceInformationUnstructured":"","purposeCode":"apom","chargeBearer":"SHAR","creditorAgentName":"6259524876804646","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CYG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528443473180007","remittanceInformationUnstructured":"","purposeCode":"sice","chargeBearer":"SHAR","creditorAgentName":"201431155315843","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QVU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334863363656542","remittanceInformationUnstructured":"","purposeCode":"rafr","chargeBearer":"SHAR","creditorAgentName":"5018067467092753","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VEW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610994528352599","remittanceInformationUnstructured":"","purposeCode":"joho","chargeBearer":"SHAR","creditorAgentName":"5106161644859177","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NDO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6372258375378628","remittanceInformationUnstructured":"","purposeCode":"maws","chargeBearer":"SHAR","creditorAgentName":"6304688194897387","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KTX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334477607964156","remittanceInformationUnstructured":"","purposeCode":"vosu","chargeBearer":"SHAR","creditorAgentName":"349925670284205","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MQK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6334485778659208","remittanceInformationUnstructured":"","purposeCode":"vorg","chargeBearer":"SHAR","creditorAgentName":"30017253382723","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MJE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304242607679295","remittanceInformationUnstructured":"","purposeCode":"fadh","chargeBearer":"SHAR","creditorAgentName":"349640501452117","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"VZK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4298972528308409","remittanceInformationUnstructured":"","purposeCode":"pazu","chargeBearer":"SHAR","creditorAgentName":"3528631712188225","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KXV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6376627298948616","remittanceInformationUnstructured":"","purposeCode":"awah","chargeBearer":"SHAR","creditorAgentName":"4026403727942946","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"IWJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"3528015596150875","remittanceInformationUnstructured":"","purposeCode":"dahv","chargeBearer":"SHAR","creditorAgentName":"340865751274304","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"TJE"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36020011073885","remittanceInformationUnstructured":"","purposeCode":"vaww","chargeBearer":"SHAR","creditorAgentName":"4903153549161088","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"KBV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304841211778581","remittanceInformationUnstructured":"","purposeCode":"kaak","chargeBearer":"SHAR","creditorAgentName":"4903037342219658","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SHI"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6373092712050718","remittanceInformationUnstructured":"","purposeCode":"bojo","chargeBearer":"SHAR","creditorAgentName":"5018726512079202","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WWF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4270806425344368","remittanceInformationUnstructured":"","purposeCode":"hili","chargeBearer":"SHAR","creditorAgentName":"30008633405805","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XMD"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36173657359835","remittanceInformationUnstructured":"","purposeCode":"gage","chargeBearer":"SHAR","creditorAgentName":"4026500704104091","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LOV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5439118811902691","remittanceInformationUnstructured":"","purposeCode":"temm","chargeBearer":"SHAR","creditorAgentName":"4026999257418819","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PEL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026164965206010","remittanceInformationUnstructured":"","purposeCode":"guja","chargeBearer":"SHAR","creditorAgentName":"36488848633918","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ZMJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4135596699165392","remittanceInformationUnstructured":"","purposeCode":"howo","chargeBearer":"SHAR","creditorAgentName":"6011844935587597","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ATW"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903586577553652","remittanceInformationUnstructured":"","purposeCode":"ojhe","chargeBearer":"SHAR","creditorAgentName":"5414768583543468","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YQU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018222138039853","remittanceInformationUnstructured":"","purposeCode":"runu","chargeBearer":"SHAR","creditorAgentName":"4960595932920217","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OQG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"201420552063841","remittanceInformationUnstructured":"","purposeCode":"weba","chargeBearer":"SHAR","creditorAgentName":"30050284221693","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JUX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"349893554880391","remittanceInformationUnstructured":"","purposeCode":"zudm","chargeBearer":"SHAR","creditorAgentName":"5109643617659418","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"NFC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026792395253580","remittanceInformationUnstructured":"","purposeCode":"sive","chargeBearer":"SHAR","creditorAgentName":"4026110466874111","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"JGP"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6304881083479983","remittanceInformationUnstructured":"","purposeCode":"pimc","chargeBearer":"SHAR","creditorAgentName":"3528199768372143","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WWS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4607056291047182","remittanceInformationUnstructured":"","purposeCode":"niki","chargeBearer":"SHAR","creditorAgentName":"5610885109651385","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MWO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5195789851164139","remittanceInformationUnstructured":"","purposeCode":"ceha","chargeBearer":"SHAR","creditorAgentName":"6334547976330161","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"CBY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026343321625291","remittanceInformationUnstructured":"","purposeCode":"rekv","chargeBearer":"SHAR","creditorAgentName":"346441686184523","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"RQX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011518801297446","remittanceInformationUnstructured":"","purposeCode":"sili","chargeBearer":"SHAR","creditorAgentName":"3528736587152501","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"XLC"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5199868125617639","remittanceInformationUnstructured":"","purposeCode":"poge","chargeBearer":"SHAR","creditorAgentName":"4026326901817669","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"MTJ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018172496784659","remittanceInformationUnstructured":"","purposeCode":"gori","chargeBearer":"SHAR","creditorAgentName":"3528811023508481","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LHR"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026298773318748","remittanceInformationUnstructured":"","purposeCode":"jovb","chargeBearer":"SHAR","creditorAgentName":"5143859979466212","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GXO"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6271206222416481","remittanceInformationUnstructured":"","purposeCode":"luku","chargeBearer":"SHAR","creditorAgentName":"6279730125826506","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YWQ"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"30095742724986","remittanceInformationUnstructured":"","purposeCode":"vejz","chargeBearer":"SHAR","creditorAgentName":"36844707756366","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"WWY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5187930882494299","remittanceInformationUnstructured":"","purposeCode":"wibu","chargeBearer":"SHAR","creditorAgentName":"6334436046170957","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YYV"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4903465628810322","remittanceInformationUnstructured":"","purposeCode":"lanz","chargeBearer":"SHAR","creditorAgentName":"5456405010830163","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"SVB"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5118881769988776","remittanceInformationUnstructured":"","purposeCode":"tudd","chargeBearer":"SHAR","creditorAgentName":"6267637950156954","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"FDU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6371041469680476","remittanceInformationUnstructured":"","purposeCode":"utci","chargeBearer":"SHAR","creditorAgentName":"3528504432779021","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"PFS"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"36755060320139","remittanceInformationUnstructured":"","purposeCode":"paen","chargeBearer":"SHAR","creditorAgentName":"4903670524526340","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YMU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026245816848835","remittanceInformationUnstructured":"","purposeCode":"nijc","chargeBearer":"SHAR","creditorAgentName":"340166667712143","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"OJU"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6288463610643009","remittanceInformationUnstructured":"","purposeCode":"nelf","chargeBearer":"SHAR","creditorAgentName":"6011823628323437","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QGX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4026282181028263","remittanceInformationUnstructured":"","purposeCode":"zair","chargeBearer":"SHAR","creditorAgentName":"201458094280440","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"GEL"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4755582971108689","remittanceInformationUnstructured":"","purposeCode":"hunc","chargeBearer":"SHAR","creditorAgentName":"4903796104301679","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"LBY"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5610126790738706","remittanceInformationUnstructured":"","purposeCode":"rafw","chargeBearer":"SHAR","creditorAgentName":"6214920739508446","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"QTK"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5018488667565481","remittanceInformationUnstructured":"","purposeCode":"atte","chargeBearer":"SHAR","creditorAgentName":"6011821093721127","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"ECX"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"5104324810756872","remittanceInformationUnstructured":"","purposeCode":"wisj","chargeBearer":"SHAR","creditorAgentName":"6304518761101584","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"AVG"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"6011484920376316","remittanceInformationUnstructured":"","purposeCode":"gemc","chargeBearer":"SHAR","creditorAgentName":"6011864090302848","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}},{"instructedAmount":{"currency":"EUR","content":"0"},"endToEndIdentification":"","creditorAccount":{"iban":"PT000","bban":"1","pan":"","maskedPan":"","msisdn":"","currency":"YSF"},"creditorAgent":"ABCDEFABC0A","creditorName":"a","creditorAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""},"creditorClearingCode":"4807767391577567","remittanceInformationUnstructured":"","purposeCode":"turp","chargeBearer":"SHAR","creditorAgentName":"6372277604514738","creditorAgentAddress":{"street":"","buildingNumber":"","city":"","postalCode":"","country":""}}]}'
x
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new(url)
request["X-IBM-Client-Id"] = 'REPLACE_THIS_KEY'
request["TPP-Transaction-ID"] = 'REPLACE_THIS_VALUE'
request["TPP-Request-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID-Type"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID-Type"] = 'REPLACE_THIS_VALUE'
request["PSU-Consent-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Agent"] = 'REPLACE_THIS_VALUE'
request["PSU-IP-Address"] = 'REPLACE_THIS_VALUE'
request["PSU-IP-Port"] = 'REPLACE_THIS_VALUE'
request["PSU-Device-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Device-Fingerprint"] = 'REPLACE_THIS_VALUE'
request["Transaction-SCA-Performed"] = 'REPLACE_THIS_VALUE'
request["PSU-Geo-Location"] = 'GEO:1.111111;-1.111111'
request["TPP-Redirect-URI"] = 'REPLACE_THIS_VALUE'
request["TPP-Delegated-Preferred"] = 'REPLACE_THIS_VALUE'
request["Delegation-ID"] = 'REPLACE_THIS_VALUE'
request["Signature"] = 'REPLACE_THIS_VALUE'
request["TPP-Certificate"] = 'REPLACE_THIS_VALUE'
request["Date"] = 'REPLACE_THIS_VALUE'
request["Digest"] = 'REPLACE_THIS_VALUE'
request["content-type"] = 'application/json'
request["accept"] = 'application/json'
request.body = "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new(url)
request["X-IBM-Client-Id"] = 'REPLACE_THIS_KEY'
request["TPP-Transaction-ID"] = 'REPLACE_THIS_VALUE'
request["TPP-Request-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID-Type"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID-Type"] = 'REPLACE_THIS_VALUE'
request["PSU-Consent-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Agent"] = 'REPLACE_THIS_VALUE'
request["PSU-IP-Address"] = 'REPLACE_THIS_VALUE'
request["PSU-IP-Port"] = 'REPLACE_THIS_VALUE'
request["PSU-Device-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Device-Fingerprint"] = 'REPLACE_THIS_VALUE'
request["Transaction-SCA-Performed"] = 'REPLACE_THIS_VALUE'
request["PSU-Geo-Location"] = 'GEO:1.111111;-1.111111'
request["TPP-Redirect-URI"] = 'REPLACE_THIS_VALUE'
request["TPP-Delegated-Preferred"] = 'REPLACE_THIS_VALUE'
request["Delegation-ID"] = 'REPLACE_THIS_VALUE'
request["Signature"] = 'REPLACE_THIS_VALUE'
request["TPP-Certificate"] = 'REPLACE_THIS_VALUE'
request["Date"] = 'REPLACE_THIS_VALUE'
request["Digest"] = 'REPLACE_THIS_VALUE'
request["content-type"] = 'application/json'
request["accept"] = 'application/json'
request.body = "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528540050673369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jism\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026204005028626\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018771388484995\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5411755248541998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528457986234648\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dajo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5449054197268712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528606398118886\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266495377678436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018152476141799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etuh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610297224926470\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5410065703822060\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5459460276173805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BFI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018267123100475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jenf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334030206173123\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058919510786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nacc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026716251639681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ISN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304979428927888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kogm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903202326462225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334072096645299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bopc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347069896673883\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5158426720078837\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vevo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30051776401355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373061549264354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gaka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528131759956881\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026552417789288\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304366205125094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QKK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903316123839938\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496424860879\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FNU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299438673051982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375991437150547\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36440788980700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5122345751765653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011802443816841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"celo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6295259515204561\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JSE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198105399573078\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610859529530669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777323039282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36382630247096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FAE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610026661009411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345970566472757\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903855001576674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347297679594931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6247039948697030\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lild\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377745284233410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026624327927959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36943491237722\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334114780684364\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6205621851826175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30053207757884\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tilf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36150979295871\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018232473211769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334848177676224\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610883946798105\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"futd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304011193600217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334351602081565\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"salz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375188093656806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018401491192059\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370063866749390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610705634406404\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dupe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334925110859909\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199722370661505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610087920726187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011373368426115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610793382861061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378000685418130\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebop\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334496214674669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903332535980343\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334300477364366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30051975216034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tevi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610076110785574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304084896902925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaid\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334631700968213\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258969660429921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pikd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026112050616965\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30015575272523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ildu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018288976692194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378749546251086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30032315816378\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4844836781323257\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tefm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4087554525336529\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343639982430366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372565085998176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36727366799134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413037263433148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5142239482541044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610230939415109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304555402239159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zake\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610527279690740\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343552189301076\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zoho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30088203040919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349070680157982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"favt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018768939578747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018017118023665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376930782124409\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201459288618817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903231347644636\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026021267410858\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nats\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897158979824301\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304434394913322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dabe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201491398555597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610157158193242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"enbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197233866658627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374715986335824\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"boiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4477912851634099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903858662966507\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wadl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782411910562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348145058775333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jiru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36718090116083\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4299824982579935\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fafg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4271808080411416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304515410216284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sein\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30039833148630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264138817276351\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ufur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026762564721477\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610785994287867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"befo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011482439677562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36107238042304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026853515794828\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5472618146006280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wegr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344100297445705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5157401329492029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473544052497\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5453937136225301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"otsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201426204409050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304498079742793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304458595341983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201469946663022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vami\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4345773764365308\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018446090769708\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hidu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528866442982931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018732753322194\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehgo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36587540158171\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30025498032870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cong\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528632236625809\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5105348177356231\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5170344966746724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825098303630\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011726004035790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304660696128736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aros\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011416714071240\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30075405673639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36182448872774\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528244969546663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493363481585\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011024681829937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"live\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018165332419894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528831685080470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"labr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903695615354005\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528383581531248\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wane\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026082046547519\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026140130657063\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011114388894753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36593176251504\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cogn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661654661303\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610756417742663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozgu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30029192167925\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146601025882654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415509325418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6225434734830141\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uwav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304042513223042\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379100957897232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30023190150975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271762617054592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346981990387270\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011344831763293\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4384204076140371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610235997425031\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201401849948747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026532390106577\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259800059171387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528981463178127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377927706849342\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345856994277423\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36841027377139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NWX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4526140305176860\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377859779269027\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4810419687893655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5146770540755974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128525195545324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fodf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903496405575531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30071181727921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suwa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36978989785279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610564490627144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4678256166430133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5186381754241403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naib\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011729816196560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334718000239559\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zetu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36345619290296\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610878174467969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610982017614959\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334761927084799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gurf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201470236157709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610766758382391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374783498409792\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528782203740915\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201444305722198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481381864499661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30063334953025\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026406630906403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488896671282680\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903237765676380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026298799288271\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011220854057682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528453115577254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026825305594410\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610031147056465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30091820352949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mecb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165056248565758\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370370904563570\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030934408137\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334593188579849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wavh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5408225568898506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379980324375677\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36266507854425\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5435461511763672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hise\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6227322037215276\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5405519110708475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011050889395850\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011913557499652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371523535239312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903224934302411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334757190181510\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6252195539027268\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ataf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073641062709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903075199482128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"simw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610548271456609\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281077690185272\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5485697748372279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304159561808373\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4977778017163231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BCD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445640683086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"viju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201433848151676\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304539610324276\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334263258027851\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018281224403100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4320499797991170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610799207893528\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bavw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4574588423888595\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026147552842149\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udeg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304852095337410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4628640850666881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nakh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026574400028102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304001656754429\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5167258801521206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4714101273505532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pucr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334920696485070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5487954471454347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415948113193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528775329405264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jesa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304787154144705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LIG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076402540839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903607661527558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36571714526744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"belo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528091915388660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058941813992\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"toki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528417931872710\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610796374521049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123840684396294\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334966280413226\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423590560830935\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257045487197388\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492200263427544\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026024446289599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903805787949900\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005505170967\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201402335436445\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347924958166814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4394329603831255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4440823132059499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"masa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5476159159463734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6243880073706664\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"foum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346613664968917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378122122311932\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291754358603600\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483602092963899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269858862251182\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VQR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477257144144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018719773318914\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026425755435949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026277637530417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5414668986298100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ukot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434593242660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187353515533104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334169642300245\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36247944559769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kone\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468343046955\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6294805958137584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5119966072674640\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528165309788584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201409785676974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5488488207651925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334762372346154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903539228013543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"damo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5158175623184784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124947736963549\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660651169265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026927870325939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340790738786867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403289096767034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528267124406176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026961137748617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aciu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026579822017310\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528544617527019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mase\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4894552991866105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374219451337977\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304838429506374\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026711850851613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143176726833226\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OKQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963411636320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lued\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30002527240998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349273008705538\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"capb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334676257050105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286943890069266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304759222469281\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026783955372845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jina\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528641808879728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026190386433503\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528473201271315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429229207145738\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36127520487264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610743633909227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334969556488682\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903533457384774\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tolv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334507399444593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373521111182854\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412102187897637\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6233664128939955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ohia\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018328086706607\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011158498642354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011312583413219\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792310552892\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jupc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345380082611617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011265078423905\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001664074467\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334116089167611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334324169490412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36406332797544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kije\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011530416479566\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304848589291139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tugw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379432115620309\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011363855347650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5406080312758833\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201458978318530\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nebo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304176108018472\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610238462602563\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wirl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4068592242599170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30023167875869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dohe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6265364681130107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347325798078468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903149633874701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ILL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304415096936380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065736632511\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011427454630590\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372129183869621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124418917354122\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5420343194758509\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5408239663943422\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011103054767047\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304829034180127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ifeu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528039952327323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304941694941290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ofwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898764372152\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MOT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5160155846425574\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372501573404344\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610735059859191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334797863777475\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011722635986881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5180456772003195\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201423236257185\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vonr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903564190948385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528698288008665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304555291751413\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36992797272461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487875605410154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061288277961\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4148886272150712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011222888698879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4856233412683645\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"THP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30020964229241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rerg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011156538880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903799780600844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018071408658185\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334399390500809\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610746074319160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104199970064865\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bisn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372030922634799\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403604669716\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6293943994986002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018772649311498\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495102554846\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372289152317976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5150158668868139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IDL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6250581632947704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011836635901516\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377920610875438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903661534954770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903355506828241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vulu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334763710686483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464909106981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sido\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343486656764666\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZXX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610045774289413\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"faho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30031482547402\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610973944785053\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334859578819156\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36990838406742\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011369312852315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SZJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346540437466939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mine\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903253851809017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011719834864976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344924904041155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334970064340639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018678808466504\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6279110548016029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610894284850721\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610021306704294\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ogli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36622749399407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610349834242465\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nokr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36825386959991\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4015343757399869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018360459136120\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374693998701376\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011084827043892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433701798712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sech\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903269642162490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MCJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240930124716106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36049383434698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201485944633841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304070252823961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610237578716994\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610164384722968\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343911905919068\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4007688991161784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429268585831329\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puna\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4885502835597987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433005658711\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165539080084129\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378030660521889\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30095329591717\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4813404818690482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuad\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413800178472778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528130053685675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349757957096535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026122460118361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vome\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110398496535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379400421412075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sike\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473010145023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304821025546853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bipm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4154016542537743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198429228976033\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334563111648896\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346151115589289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304669225362187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304199281940692\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jicc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528546370742537\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4463934994023739\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atuo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431432872491\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6226981790409797\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349060552162004\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201440230207719\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149542944705765\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30054113263736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135478462975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528654259528868\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4334181927666864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342131780638482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ipli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143327631624248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903460961898786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zect\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340040674324830\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MLB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026074376793144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30081676333036\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5455296042832900\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171958378165139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011207965229649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hubw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334345012817345\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018631246750112\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304003726105822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011892426602177\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mepb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018231073135436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299152736288834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334568918054990\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334410388344843\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104724710645507\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201414132783812\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334930237069085\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334490835087583\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zejf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4988308944781678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903410190128331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rawp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304622733690904\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36730629940750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346269475818161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201428509495339\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610451726168988\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4402041354793960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lent\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334953925474458\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528977723602823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"civh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026916977895498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903340313901308\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30086474602532\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374313156656284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304933837118662\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OEU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6205936719207917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rasg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36676301549130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30085697117484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lalu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438813170733254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528583141842049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bule\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610764368217842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018456935630262\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dukv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528405031552498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376547519407046\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gapf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5429393004204989\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6245427165202505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cimb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011679247547040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QWR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345379728142888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341841174568514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334176357363631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236272332331832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026986296162144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lacl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345455439986217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144683770773439\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vesd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269527055798453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RXN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026594017231550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kumo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4285096129108037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118531507085688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104372814991847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30040352129266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065623383822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334654571584737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"locw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201439605105151\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011066470415543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rifa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991018380872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610540679896403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sanu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6263105364241451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30066783169589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kena\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5129922772570503\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343666812875510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341348994980655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334564386588213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018690794581568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201474932209814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tioz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201451162901559\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026791447045895\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030368380653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4502744788882718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"voki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334199744840574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374155716315632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wetj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528056320560781\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30068380935602\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"komf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340311027064534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018090201771573\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rogu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5427595855445923\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011775818678899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6234486516689201\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304676745486800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fero\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348132988867455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BMO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343766949415386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fejo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999399973523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528067859719433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372402827216677\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181090482308575\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiwi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903325038779469\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011935138517074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5400462438850064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36961166215096\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011622547209028\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528192108655764\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wecm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047939505694\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528894507613845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"segp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438792426983907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963148930210\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201462329571482\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470904802800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fomo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903919024430325\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026045714742217\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hife\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334651600883460\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36210380096621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"solb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026350235285773\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30059585713605\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36858479401894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5499352269470631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484082229173\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4793795351826092\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201427968080384\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026975393278960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nafe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123167721193157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334170654101919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuek\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610994697159718\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370639305610309\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018975321878037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026135860993050\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pana\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36324741946026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4369691012330455\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hapw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610861230206175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5110360098981982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4059878985864256\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4960750067978163\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piat\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304076915652747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6275157439742324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011862485911918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349794011379771\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"izus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026235674226026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441042235368303\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5446742450702160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011879957682140\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"banh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304144512033644\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334649103975734\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tett\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903745561388794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5446080673413509\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011403171104243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011410999241586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"affa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018404026624398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403765868364001\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beoh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5118839823454417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341939550399999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lomc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343150571442630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ABT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402959853645075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528808692542593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36226869459320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160934508560542\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610075246018678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6246194136820695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HBT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347302592730214\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484038109222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36613496625458\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4725451346852750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4905980383655579\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wamo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528709356677412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011390555009736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ride\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304720178260934\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XST\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903317028268124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183993514685050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JQD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018533033851741\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528657349062046\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RNQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610962739801704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026452459760943\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018236464273910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cazh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001690962628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903886509613123\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sosv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376352969978855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5469971952915721\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vasi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371121024019681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347427282343554\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vohs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374793306543633\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108600302712754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026248901199940\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610207154429551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mifl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279373124692304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903502408265515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236101662730695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005285981468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344086736764410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903963768158874\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30043547582415\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348643688227444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610572295236763\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36219997744358\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ubal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528593609704326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018868573707071\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"agej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018615589111354\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340361945417926\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6294315973155777\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379817480841904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6280778649210670\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620421643240\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gudp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334444467167866\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334143469913273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6255078056749323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371238243716416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903009643201453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334442866879065\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iriz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018269078220779\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5463268657507127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5474598426931589\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4224517809745081\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"unai\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018235104893426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343466435300206\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"durd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5460641912958603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253455682707531\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"acvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6247264311411930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304112916120366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343563906255297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30002702705526\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903466948732105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011199554665533\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991885845767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5494073290943249\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304304623146533\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064964219897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jotp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903869921444392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5131035701734466\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etiz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5116449079255302\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334789447585714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciij\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026098638710588\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528531370645740\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tols\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36634935381099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304365212712654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"depl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6256697135925353\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375761792030000\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197244238032334\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304731603527755\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kigo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6297467892524133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4761491631802099\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hiso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334375043746056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461579413247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903020924434176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026751597613280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660547330535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528944279530378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348267028870596\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903101664358534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488599906196\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334860412984545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ragu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495670147874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304811236792776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903460842784999\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528888177675704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473643420264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4221544610473193\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528271281220347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4078229682569805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018750489722230\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011355863490969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aduz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903669111288462\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018768066080160\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pofe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379016589949987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348300226907850\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"comw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528307367641483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5106985373608672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903298938063252\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064578116836\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"urlu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018410685382442\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201497653929807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pepj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334869494855655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528227456683156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utuk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026920857250568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DLA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4626729465358760\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183450110552408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36918816311543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"esow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903089707429778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610788206615867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201420491857428\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528545604291691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dibv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378969842044288\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026616750226875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011586877934465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304201527809879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36745505768919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KQW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903946642202562\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bend\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334378598781684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240592673051499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484882464897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342794308617005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ivev\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011629742506140\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488400216184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610194477815684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201492402874735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"retu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304620738841456\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346889359898532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kufa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528423421804643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610164012583444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376160498411243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5123116511405545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4676678919545994\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011819009824555\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"somi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903053193185484\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4083130184978655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"datb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610869353682981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372357475169299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lugu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223907672864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026182407189537\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pure\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026064194767180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36693692404478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kock\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903473540534822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610738099126167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610335605459222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304948922658901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528896547898807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903672069072227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011399913264701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334445551523229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379092177254742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VGA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528042362616491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emeb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903106678798203\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777296504718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334778207242681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253035922256331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018930943158078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334150771216576\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098233708880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304735112553467\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nanf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018352074446521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026782738630776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4904847057116611\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FFZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345497419396876\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muzi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528276682082089\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352532231166\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"giep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903440488063924\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304761696561254\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201475253636766\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481139201464917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36935016869088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BGT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011244240964369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528777115145088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340801396591893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"memw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047950561790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304155694209125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610676544335431\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TBW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528635186661682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wepd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304846029202187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5474820608102833\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423351271432655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4353992286414183\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zicl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431587382874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461628087265\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026944781101572\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304362325224487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304142623808367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378658357011036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304856768198769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903142615238482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026299271317521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30003574325690\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5491022074558395\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018624858403336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"navp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487691491571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610457830166610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irvu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528425128557960\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IIC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334085272700795\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"batu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342406103908972\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334524259373267\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sopp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334343555051885\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257044609861856\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6222946086399824\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373867712827946\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378732288306466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36054975189098\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018782954691160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026966566655175\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304390306216875\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4354913768560839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ocei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374889303890652\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026115723757553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30044105991873\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018035733506484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"canu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013852105987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304402128521091\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"olau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304829615555275\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610255547005703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36545917549075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026457374666737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372638054834282\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6283751190444821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334811136620899\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903211578057120\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528337645142392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011982691997897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334062984074488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018032846386870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36309208808983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334751631281484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewde\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610526840058262\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286816468421822\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"judu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36574021942414\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165281156968766\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hefo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304514225818921\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373251186259474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mica\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5490869458882002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477414794781\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zemu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4526764207051119\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165572081528331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442795206734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304233007019646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"togn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344082867323241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30094358730635\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201497046157686\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4899015315040208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610960303123752\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304771055815134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610810899203627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346241126469116\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201459968242078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375250666430777\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tivk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903313309845888\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5492218205486899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"himu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528590005069742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408518699521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026485488775466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334339727854628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vubb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304860432450291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30031003069084\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bono\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528031413902604\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376104384269927\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tisp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610641694052673\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903422103192478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36752306715750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4434871616205482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376440812655869\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376968448062159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hobu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30034188035508\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YZF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4377612412595323\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377830246853180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344149272608613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018431796551931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201452678494857\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abdi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304982345574627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610901067291286\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30079199207562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6222149887346223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269546634312206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528495221634180\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ritu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4565803173398831\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5151113464611919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334865829110261\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341579587508491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"binu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528505000220579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018269908709678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dopo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111684921194821\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6216315346756934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sisg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304785712053947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ENT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6227654284576434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sirw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334607302719055\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062287266823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aruf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304092083707502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903665541372330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36037408593663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6208388598778054\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201476284656161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610826305420969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011596652916348\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MXY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026300395816610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vopi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304948010353803\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ASD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334202848714438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4472638422924868\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373679328896391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018576172206193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6254593978345670\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6219572419667870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026716954011956\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tezj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018850299849155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334979092259745\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201414213173131\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018116146567477\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cubp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30016551541329\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403586462536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493414006878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6274880565675973\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dize\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349686204695635\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610601517679532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4347075443156043\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348545664012015\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijce\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018200314390761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5411124027736834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377402234381838\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903624424498639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011618603095376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342633340288997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"inze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528619205249786\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346549707594676\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"seun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291526311456379\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026404594463982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sira\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374166148939220\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374891195310534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rehc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201455209108250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018762421465646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903938368475928\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5442259142167714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36699349903390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108936886385306\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342473244486326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011196246015564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370711229683033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347461546444650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4300359071324056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026040009325489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wapu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528925369516096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011814033512904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903050288359297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IBG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4250140894319386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223875926441\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011977316567844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kasm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6225313627139416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EVO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013140346146\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irud\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026844137501790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5120366824070964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345090401813063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444634256243279\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mush\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026730294268770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MNF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620827354673\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5430361180587755\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6292280611179914\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6226160589843892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018880804543985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304421490589841\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528803322834072\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36565237918198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378921190167195\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610812930858278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4219049993018304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luhf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201436277959238\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304517315957939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"papm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253344493254026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528562397590650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zujs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903889117016093\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610370202511158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018126623656305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340891102779551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304438748707249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018976268934361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30045752578525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018569975511687\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374036339842212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4775349756192965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zibc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5179540132551168\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304239073727525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vehz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472107479672249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4491866172789689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bedd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220949650582603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334214436467592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zafo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334606565349832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6285317872466793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onec\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374926346908057\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373479068273640\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jebi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36244591089737\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470274201260\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661639844248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231851483949610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zepo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5481871746594895\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36846257848519\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182581956025223\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488204854396\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36537428391550\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6246480862945545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414840060355730\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903844152714300\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cerl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4297496218237372\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GRU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104043187320639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lemv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903505532353180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018834827986861\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528966010290715\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"URH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30060245978026\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dugo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346431151468998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201454320036748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udnu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528238307413586\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370351452606052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gava\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4944253327203283\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4072544090918642\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"curn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149818654820915\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011119628314454\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528206154148886\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026592305110825\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6237544165812024\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5422739581807411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011620557791034\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461022965611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018370227300239\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LDZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528295655720830\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pusg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378891056476628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026470143248976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5495072781007307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441776705653963\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6202339096091058\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QME\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018320042450891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304899926832424\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378757154749986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026462882992278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144328437181036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sivo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610638931432163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058278919107\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610711783151486\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026388418952355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"harc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011337539447490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342459416733710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026265988024502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903878127488228\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"difh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304619206286269\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903669197197157\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aske\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018790175186159\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5101395889118999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lics\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105215391559181\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36343530151184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490918568247\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610838413632674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guks\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30066022165109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304597809295251\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ihao\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018911061375587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903894702107430\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"honu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018600266635404\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610046118129786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oraj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5461422542649451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5115091176240158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342185226585012\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4865395200738474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897131002247204\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WEI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610104447325813\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"duwb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304430030355480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5498856303866290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334556853571987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201413759988167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eksu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304675358083995\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903818856281873\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201494594137061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903109404025040\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"johe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370421399984761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420477591959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pids\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376853909523719\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334156669032025\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018059267785678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TVV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528253757542446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30053423099897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6280265876556421\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487924018878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026262137219851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111080259501184\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30028962607375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903168400503806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610217889837374\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135582315150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201434517441273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruca\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037219379621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374878485267243\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iwve\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201400355787788\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5150110676811965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528076986297148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528971287371750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lama\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472914673754768\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018634105836543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528129383169608\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6213592896175110\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4103299274044961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334681677903891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"noct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304374747630373\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528164617975744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dusd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011466750552769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201455313059233\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903362132040258\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610885126642599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kusv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528242452230241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4900072829070632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160316814938713\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JLW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304142541220125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4559324788675164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018085809128200\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cefu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528579593978711\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5491768624829617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kabn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36200247184728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376937222403202\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"teza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30036198105973\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5190553186417256\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rask\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782972736208\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903676411398131\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wope\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4650320572850698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343984084510461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304732348708312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352985392796\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fewe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610294065845455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026855702104125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36855389066023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304229515279631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baed\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375121417306410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011489005275754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36648136289976\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011513604820213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icit\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340801717622724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610755861934735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kisu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30019279975118\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201411601105618\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304059735993194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011051860281044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6274550015128564\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334760840182433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011384606109231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011656779760043\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528612514165157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304483888659347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elzo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182584503191407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240896391660337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hioc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5192397056568592\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334690019159757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018772176688094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011865608389383\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334357077225579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467231934219425\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"akni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026508380510515\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610720523272049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304834832240594\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026096281834622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348372550290443\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344840947907550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5451565262736072\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346515844527564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tutr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334028783021210\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610572431481414\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6250028750201449\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379283437612148\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36149926224638\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528881324184019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zisf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340547474536876\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467770191486821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zewa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528695023715679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610142935313586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304064941827483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304334872329589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4201892119131794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343201877892828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvmu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026113393708337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026579294077461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903967857422703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304898254902627\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304991438948242\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4977888078242772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"divk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011475491217731\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36838831961181\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"misn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089680633861\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377717365692772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gidl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377778861886367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36597682577757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371332838840754\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018882646068981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nohj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269397715631316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903436858275908\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"natu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376508056604981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444071859660619\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528277228290186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334635039512782\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326761865105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304934750330284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304717668587107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610180616867983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453819203488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5125306371330275\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tegk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36232197345827\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483871723350608\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610855050443199\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258554778868416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rema\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011470028434917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201481089448434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379079640126250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BTN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345893471195851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073805790855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610492997473897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuzk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304149141443130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018009830126124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"date\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304932296214525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231642449951638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mucj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171931892003284\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5164370031918707\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011938920858581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AZZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5473282117366352\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nepe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903786240905053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026419723881375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tidb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36653731063255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903926855139420\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hodv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334116589621158\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201478277076936\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903787255180947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5471814513918378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528569863639416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374001249817621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"waja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442311655505\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30017095418297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903706313401590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011627289283651\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026658902749289\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304441513695987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187447726537647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6207325054941223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6238813848002660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253696075993010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"morf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253766111879307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376059341420775\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5131163103794902\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011499639440401\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4275574361327178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334481269015174\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mabu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201438920498952\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264264065230534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guaj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371835175091211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903735869205121\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334497782816971\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30009799154229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nidd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018976945225647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345904891723048\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36552617668254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4386047110327399\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36242122800267\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334765169024918\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mirs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201447378459440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334918090520427\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018192055233930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NBE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402386435896416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5190822672114234\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304322894826567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052314041406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018249205440219\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tore\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488820924736037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340112569925706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414770575784324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375623539120801\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037218662324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340741265395523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ronl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026011016390642\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4833783896731136\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36001354663953\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304503052288704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"birz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6213108098901102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334580615358152\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"okuc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30060604839082\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334779387624052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374140686161521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377542344325264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5486257641853617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018184150067073\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528130648425322\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018387421824749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6281915794747622\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HCN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5179810791969369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528338150862408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062165562095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018641554252577\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343287776766478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"core\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334761912945293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5461015356202696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334666000711111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5189894326058987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903844975115164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610204566942412\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nucu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340183497931157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5490733300231232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4871234518434033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304189549170547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juzz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4227530897070590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528682454110232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dovp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026538381904102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425403897472\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fakg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30015692101621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128650891709600\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36277583710852\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XHX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201460479501663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266482626807438\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528652479383510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rali\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201445928990856\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MBI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011177449876150\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jeef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903108154126958\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30033873354083\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903319781491612\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6235435808714937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341048340938627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374605391515930\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304706636277099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610598352971638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wete\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5140590394309355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349206302527109\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348098274916514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5185504589080255\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diln\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5499355283068265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346325750619789\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"odus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528461676302293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026896082425805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibsa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110246349597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334993343440749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026225763600009\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026100926982331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342436603669568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903095945498103\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pume\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6283412601547435\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340717420824649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346346240758052\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340134940998244\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nobe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018304871036823\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341394001963953\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487448078704337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528882504883289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"saco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5174028692029804\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5497388227328547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahva\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018083809863603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011296763584461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4028817552136076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343912673106003\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rual\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011030570071127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610050239701697\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eluh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011272323722966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304602195577336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wute\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490826347643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZZV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201464926871463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cumu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165717474570255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076210105049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36785668734480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903349042505629\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hivw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610064942324531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304798815103790\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5478945642736944\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4751420352853959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"owup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267877952277065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334797579047916\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hube\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375293783192086\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018726364483700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4050281225279584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KAU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061211816513\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tigj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105852629392066\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ROZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5486885106724681\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271215608220359\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011106863912712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018318606695570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026948886508680\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"botp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496400620305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36238893985337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304219275033591\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XNX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347946066560521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pelu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4461730004744369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018831831652299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pigi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528770554789862\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903604761518959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372307839694870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334881039393985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mame\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011502976294420\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610494041504297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bimi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412240368591189\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334348829527115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"melg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528750019880571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304099034566002\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hauw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5424182535426426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4297914126463104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342954387167211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408538894037\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30068105525183\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5434938204997205\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5176579348579186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018944033180983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mack\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061958983455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304212063942487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zovv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528617472428075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026291603895431\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gugj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341666723457053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4884033513948491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezfu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018624543203059\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RHH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903430910113330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018447185936574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026369283511161\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36179514814243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341240906640784\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434576172553\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167504525326780\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304188519562113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377403061978688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4123876366507587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36058190174637\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123503687171987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011654650127564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334750754147480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4438968553237449\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lunu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343775070254076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30088327690870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011713082110455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4447253280614817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334541208371671\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5424947653298934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304529259094033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610325458132661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"citi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018372629074842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340876203533247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528298466050314\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026737986700614\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011035734897291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418044061688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375774022503217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903703788503331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5193936330209793\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377757967045672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341565431009463\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KJR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4934074974345314\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528435434290867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6272420386564221\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"adea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374744717811143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36628783453489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bika\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6201246065391743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377263051565485\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348984708197500\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201400182997261\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187923064189175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146158176946077\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342906225276810\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TNH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236076333525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pulk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379273925585534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610510598754389\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"losc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018339168145606\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36200169626979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5198617874681127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334000753437726\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089563416806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XGR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377405744928675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"povi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528286571143264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LWB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018898005247883\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"upon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378822324195872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528333888707355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wowm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5428116943522455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011943134535470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011591269354017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340046298696610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903309447241618\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418786084542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342580986449948\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610131365184849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4167145447179767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5436079862212435\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ulhu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271400289795362\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011694460530524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36647979948235\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347995683854049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334120193639663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011714457003622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5448794107027150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825908624662\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5132120128394703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36897532088298\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610803091669356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4535544698590901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334460854335593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201484606448598\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334320083550356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342963700298074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"padv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304482405994963\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181524244330634\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468486493063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610014526526480\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vibe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903299802321040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013386010158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewio\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36318667019461\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610697835357652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5138106054150502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6296355335275044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zohb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018199384895966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VLK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610150103906727\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huhh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488213141907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334553555789660\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sotl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018938753350347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4005235269710553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334215803505088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018908056476628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610871989625863\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379985940637335\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lurk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4185481260320065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281115515528126\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061562597931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36405882019846\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igme\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098977929080\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903187585332955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670343733002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528837300490333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tago\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378037417979070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4653640456228696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"relr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334560928528170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FCZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377061980221703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349738828355136\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026802743181597\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610498238209966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HLE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342525170288966\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pied\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5101815539826568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304405327717451\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610822216922839\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201444276709893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610593109318167\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36347093679242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36069163793113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201439493819095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lejd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201469262424371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4435609329028133\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30069883687146\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347421428131601\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"soag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453537078311\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026576044633106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mamd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5482506253086393\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36839865581366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zucl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30093501575376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340241379105710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"topb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903958853483476\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5415829324165828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vebe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898318446130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30006035650143\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610387212785135\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334263229542434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hija\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018421711341369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026077909954463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5159165969396398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304900818309198\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018791713657982\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026946942524022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6210851569569725\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334631336488271\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"goiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6277463683314473\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EER\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528109834660587\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vetd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373240188676728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528676269015636\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cehm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304696616770512\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344495698832539\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zubs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106900606426891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610488925120527\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5121227798517316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DCQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346704247691652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zips\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371626638489807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026952099026894\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011262375632817\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201498693888128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903774124008558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018433871454460\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201448557804521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4036678906318301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610620704937891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018044052988158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"logv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334669423857255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018642519113888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334254830084064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167230666757282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4500109200652077\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011973297857536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"amaz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304027642490554\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374472580890933\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"razs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018482257550847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528498361054979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iria\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373254396477548\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903765473468807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mapa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197389983794727\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HIL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304945098550052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umuu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5433440830766659\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464753485754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052287451665\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6221819408979923\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347631868661194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528075379093544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304091301569728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5440477362001353\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018476121562178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445799596964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mokw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220844535084646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026145428912997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nufj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011075753548391\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4138620405148950\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349971392848406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026220471336012\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oluc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4325574277773903\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5479455293548910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011282946387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528681323883482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487718916214560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334549852952191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bahu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492946213374570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4064567478671483\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4600369294734632\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZUM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528479270718045\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tijb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6298423359224237\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018561823662515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pujv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5157325798996832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903832498435524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6249298949094575\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348448684681978\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342646725319153\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425630187556\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013581671598\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30022406006005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259524876804646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528443473180007\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431155315843\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334863363656542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018067467092753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610994528352599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"joho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106161644859177\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372258375378628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"maws\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304688194897387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KTX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334477607964156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349925670284205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334485778659208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vorg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30017253382723\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304242607679295\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fadh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349640501452117\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4298972528308409\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528631712188225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376627298948616\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026403727942946\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528015596150875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dahv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340865751274304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36020011073885\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vaww\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903153549161088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304841211778581\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903037342219658\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373092712050718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018726512079202\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4270806425344368\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30008633405805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36173657359835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026500704104091\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5439118811902691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999257418819\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026164965206010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36488848633918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4135596699165392\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"howo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011844935587597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903586577553652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414768583543468\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018222138039853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4960595932920217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420552063841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30050284221693\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349893554880391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zudm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5109643617659418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792395253580\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026110466874111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304881083479983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pimc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528199768372143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4607056291047182\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610885109651385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5195789851164139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334547976330161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026343321625291\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rekv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346441686184523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011518801297446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528736587152501\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199868125617639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poge\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326901817669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018172496784659\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528811023508481\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026298773318748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jovb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143859979466212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271206222416481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279730125826506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30095742724986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vejz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36844707756366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187930882494299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334436046170957\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903465628810322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lanz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5456405010830163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118881769988776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267637950156954\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371041469680476\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528504432779021\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36755060320139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670524526340\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YMU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026245816848835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340166667712143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6288463610643009\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nelf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011823628323437\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026282181028263\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zair\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201458094280440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4755582971108689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903796104301679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610126790738706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6214920739508446\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018488667565481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atte\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011821093721127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ECX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104324810756872\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wisj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304518761101584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011484920376316\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gemc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011864090302848\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4807767391577567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372277604514738\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}}]}"
response = http.request(request)
puts response.read_body
x
import http.client
conn = http.client.HTTPSConnection("site1.sibsapimarket.com:8445")
payload = "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NML\"},\"credito
import http.client
conn = http.client.HTTPSConnection("site1.sibsapimarket.com:8445")
payload = "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528540050673369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jism\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026204005028626\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018771388484995\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5411755248541998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528457986234648\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dajo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5449054197268712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528606398118886\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266495377678436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018152476141799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etuh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610297224926470\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5410065703822060\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5459460276173805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BFI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018267123100475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jenf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334030206173123\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058919510786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nacc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026716251639681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ISN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304979428927888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kogm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903202326462225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334072096645299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bopc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347069896673883\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5158426720078837\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vevo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30051776401355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373061549264354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gaka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528131759956881\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026552417789288\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304366205125094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QKK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903316123839938\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496424860879\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FNU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299438673051982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375991437150547\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36440788980700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5122345751765653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011802443816841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"celo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6295259515204561\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JSE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198105399573078\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610859529530669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777323039282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36382630247096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FAE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610026661009411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345970566472757\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903855001576674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347297679594931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6247039948697030\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lild\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377745284233410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026624327927959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36943491237722\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334114780684364\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6205621851826175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30053207757884\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tilf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36150979295871\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018232473211769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334848177676224\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610883946798105\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"futd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304011193600217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334351602081565\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"salz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375188093656806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018401491192059\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370063866749390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610705634406404\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dupe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334925110859909\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199722370661505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610087920726187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011373368426115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610793382861061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378000685418130\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebop\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334496214674669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903332535980343\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334300477364366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30051975216034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tevi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610076110785574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304084896902925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaid\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334631700968213\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258969660429921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pikd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026112050616965\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30015575272523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ildu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018288976692194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378749546251086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30032315816378\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4844836781323257\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tefm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4087554525336529\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343639982430366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372565085998176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36727366799134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413037263433148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5142239482541044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610230939415109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304555402239159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zake\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610527279690740\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343552189301076\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zoho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30088203040919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349070680157982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"favt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018768939578747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018017118023665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376930782124409\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201459288618817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903231347644636\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026021267410858\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nats\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897158979824301\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304434394913322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dabe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201491398555597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610157158193242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"enbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197233866658627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374715986335824\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"boiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4477912851634099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903858662966507\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wadl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782411910562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348145058775333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jiru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36718090116083\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4299824982579935\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fafg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4271808080411416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304515410216284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sein\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30039833148630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264138817276351\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ufur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026762564721477\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610785994287867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"befo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011482439677562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36107238042304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026853515794828\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5472618146006280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wegr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344100297445705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5157401329492029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473544052497\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5453937136225301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"otsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201426204409050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304498079742793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304458595341983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201469946663022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vami\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4345773764365308\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018446090769708\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hidu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528866442982931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018732753322194\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehgo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36587540158171\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30025498032870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cong\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528632236625809\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5105348177356231\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5170344966746724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825098303630\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011726004035790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304660696128736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aros\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011416714071240\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30075405673639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36182448872774\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528244969546663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493363481585\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011024681829937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"live\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018165332419894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528831685080470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"labr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903695615354005\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528383581531248\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wane\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026082046547519\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026140130657063\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011114388894753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36593176251504\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cogn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661654661303\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610756417742663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozgu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30029192167925\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146601025882654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415509325418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6225434734830141\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uwav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304042513223042\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379100957897232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30023190150975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271762617054592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346981990387270\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011344831763293\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4384204076140371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610235997425031\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201401849948747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026532390106577\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259800059171387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528981463178127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377927706849342\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345856994277423\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36841027377139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NWX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4526140305176860\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377859779269027\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4810419687893655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5146770540755974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128525195545324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fodf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903496405575531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30071181727921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suwa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36978989785279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610564490627144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4678256166430133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5186381754241403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naib\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011729816196560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334718000239559\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zetu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36345619290296\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610878174467969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610982017614959\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334761927084799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gurf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201470236157709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610766758382391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374783498409792\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528782203740915\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201444305722198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481381864499661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30063334953025\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026406630906403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488896671282680\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903237765676380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026298799288271\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011220854057682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528453115577254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026825305594410\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610031147056465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30091820352949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mecb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165056248565758\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370370904563570\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030934408137\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334593188579849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wavh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5408225568898506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379980324375677\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36266507854425\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5435461511763672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hise\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6227322037215276\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5405519110708475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011050889395850\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011913557499652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371523535239312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903224934302411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334757190181510\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6252195539027268\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ataf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073641062709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903075199482128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"simw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610548271456609\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281077690185272\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5485697748372279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304159561808373\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4977778017163231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BCD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445640683086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"viju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201433848151676\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304539610324276\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334263258027851\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018281224403100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4320499797991170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610799207893528\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bavw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4574588423888595\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026147552842149\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udeg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304852095337410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4628640850666881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nakh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026574400028102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304001656754429\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5167258801521206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4714101273505532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pucr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334920696485070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5487954471454347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415948113193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528775329405264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jesa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304787154144705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LIG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076402540839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903607661527558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36571714526744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"belo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528091915388660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058941813992\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"toki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528417931872710\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610796374521049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123840684396294\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334966280413226\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423590560830935\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257045487197388\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492200263427544\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026024446289599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903805787949900\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005505170967\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201402335436445\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347924958166814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4394329603831255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4440823132059499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"masa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5476159159463734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6243880073706664\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"foum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346613664968917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378122122311932\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291754358603600\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483602092963899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269858862251182\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VQR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477257144144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018719773318914\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026425755435949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026277637530417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5414668986298100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ukot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434593242660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187353515533104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334169642300245\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36247944559769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kone\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468343046955\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6294805958137584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5119966072674640\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528165309788584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201409785676974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5488488207651925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334762372346154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903539228013543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"damo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5158175623184784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124947736963549\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660651169265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026927870325939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340790738786867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403289096767034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528267124406176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026961137748617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aciu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026579822017310\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528544617527019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mase\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4894552991866105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374219451337977\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304838429506374\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026711850851613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143176726833226\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OKQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963411636320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lued\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30002527240998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349273008705538\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"capb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334676257050105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286943890069266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304759222469281\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026783955372845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jina\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528641808879728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026190386433503\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528473201271315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429229207145738\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36127520487264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610743633909227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334969556488682\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903533457384774\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tolv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334507399444593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373521111182854\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412102187897637\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6233664128939955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ohia\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018328086706607\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011158498642354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011312583413219\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792310552892\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jupc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345380082611617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011265078423905\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001664074467\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334116089167611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334324169490412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36406332797544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kije\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011530416479566\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304848589291139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tugw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379432115620309\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011363855347650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5406080312758833\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201458978318530\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nebo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304176108018472\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610238462602563\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wirl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4068592242599170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30023167875869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dohe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6265364681130107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347325798078468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903149633874701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ILL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304415096936380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065736632511\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011427454630590\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372129183869621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124418917354122\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5420343194758509\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5408239663943422\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011103054767047\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304829034180127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ifeu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528039952327323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304941694941290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ofwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898764372152\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MOT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5160155846425574\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372501573404344\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610735059859191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334797863777475\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011722635986881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5180456772003195\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201423236257185\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vonr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903564190948385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528698288008665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304555291751413\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36992797272461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487875605410154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061288277961\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4148886272150712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011222888698879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4856233412683645\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"THP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30020964229241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rerg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011156538880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903799780600844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018071408658185\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334399390500809\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610746074319160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104199970064865\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bisn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372030922634799\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403604669716\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6293943994986002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018772649311498\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495102554846\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372289152317976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5150158668868139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IDL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6250581632947704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011836635901516\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377920610875438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903661534954770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903355506828241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vulu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334763710686483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464909106981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sido\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343486656764666\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZXX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610045774289413\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"faho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30031482547402\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610973944785053\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334859578819156\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36990838406742\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011369312852315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SZJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346540437466939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mine\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903253851809017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011719834864976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344924904041155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334970064340639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018678808466504\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6279110548016029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610894284850721\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610021306704294\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ogli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36622749399407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610349834242465\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nokr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36825386959991\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4015343757399869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018360459136120\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374693998701376\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011084827043892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433701798712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sech\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903269642162490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MCJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240930124716106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36049383434698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201485944633841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304070252823961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610237578716994\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610164384722968\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343911905919068\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4007688991161784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429268585831329\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puna\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4885502835597987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433005658711\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165539080084129\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378030660521889\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30095329591717\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4813404818690482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuad\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413800178472778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528130053685675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349757957096535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026122460118361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vome\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110398496535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379400421412075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sike\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473010145023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304821025546853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bipm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4154016542537743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198429228976033\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334563111648896\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346151115589289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304669225362187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304199281940692\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jicc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528546370742537\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4463934994023739\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atuo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431432872491\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6226981790409797\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349060552162004\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201440230207719\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149542944705765\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30054113263736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135478462975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528654259528868\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4334181927666864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342131780638482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ipli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143327631624248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903460961898786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zect\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340040674324830\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MLB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026074376793144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30081676333036\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5455296042832900\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171958378165139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011207965229649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hubw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334345012817345\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018631246750112\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304003726105822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011892426602177\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mepb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018231073135436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299152736288834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334568918054990\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334410388344843\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104724710645507\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201414132783812\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334930237069085\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334490835087583\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zejf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4988308944781678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903410190128331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rawp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304622733690904\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36730629940750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346269475818161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201428509495339\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610451726168988\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4402041354793960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lent\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334953925474458\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528977723602823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"civh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026916977895498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903340313901308\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30086474602532\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374313156656284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304933837118662\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OEU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6205936719207917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rasg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36676301549130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30085697117484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lalu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438813170733254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528583141842049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bule\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610764368217842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018456935630262\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dukv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528405031552498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376547519407046\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gapf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5429393004204989\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6245427165202505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cimb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011679247547040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QWR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345379728142888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341841174568514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334176357363631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236272332331832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026986296162144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lacl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345455439986217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144683770773439\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vesd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269527055798453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RXN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026594017231550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kumo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4285096129108037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118531507085688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104372814991847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30040352129266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065623383822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334654571584737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"locw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201439605105151\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011066470415543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rifa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991018380872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610540679896403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sanu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6263105364241451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30066783169589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kena\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5129922772570503\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343666812875510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341348994980655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334564386588213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018690794581568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201474932209814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tioz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201451162901559\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026791447045895\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030368380653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4502744788882718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"voki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334199744840574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374155716315632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wetj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528056320560781\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30068380935602\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"komf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340311027064534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018090201771573\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rogu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5427595855445923\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011775818678899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6234486516689201\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304676745486800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fero\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348132988867455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BMO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343766949415386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fejo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999399973523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528067859719433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372402827216677\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181090482308575\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiwi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903325038779469\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011935138517074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5400462438850064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36961166215096\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011622547209028\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528192108655764\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wecm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047939505694\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528894507613845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"segp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438792426983907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963148930210\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201462329571482\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470904802800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fomo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903919024430325\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026045714742217\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hife\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334651600883460\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36210380096621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"solb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026350235285773\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30059585713605\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36858479401894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5499352269470631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484082229173\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4793795351826092\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201427968080384\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026975393278960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nafe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123167721193157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334170654101919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuek\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610994697159718\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370639305610309\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018975321878037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026135860993050\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pana\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36324741946026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4369691012330455\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hapw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610861230206175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5110360098981982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4059878985864256\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4960750067978163\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piat\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304076915652747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6275157439742324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011862485911918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349794011379771\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"izus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026235674226026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441042235368303\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5446742450702160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011879957682140\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"banh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304144512033644\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334649103975734\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tett\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903745561388794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5446080673413509\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011403171104243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011410999241586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"affa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018404026624398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403765868364001\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beoh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5118839823454417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341939550399999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lomc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343150571442630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ABT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402959853645075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528808692542593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36226869459320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160934508560542\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610075246018678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6246194136820695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HBT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347302592730214\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484038109222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36613496625458\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4725451346852750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4905980383655579\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wamo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528709356677412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011390555009736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ride\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304720178260934\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XST\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903317028268124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183993514685050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JQD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018533033851741\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528657349062046\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RNQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610962739801704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026452459760943\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018236464273910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cazh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001690962628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903886509613123\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sosv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376352969978855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5469971952915721\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vasi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371121024019681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347427282343554\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vohs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374793306543633\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108600302712754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026248901199940\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610207154429551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mifl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279373124692304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903502408265515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236101662730695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005285981468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344086736764410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903963768158874\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30043547582415\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348643688227444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610572295236763\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36219997744358\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ubal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528593609704326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018868573707071\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"agej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018615589111354\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340361945417926\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6294315973155777\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379817480841904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6280778649210670\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620421643240\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gudp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334444467167866\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334143469913273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6255078056749323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371238243716416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903009643201453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334442866879065\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iriz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018269078220779\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5463268657507127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5474598426931589\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4224517809745081\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"unai\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018235104893426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343466435300206\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"durd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5460641912958603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253455682707531\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"acvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6247264311411930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304112916120366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343563906255297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30002702705526\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903466948732105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011199554665533\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991885845767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5494073290943249\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304304623146533\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064964219897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jotp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903869921444392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5131035701734466\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etiz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5116449079255302\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334789447585714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciij\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026098638710588\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528531370645740\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tols\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36634935381099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304365212712654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"depl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6256697135925353\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375761792030000\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197244238032334\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304731603527755\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kigo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6297467892524133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4761491631802099\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hiso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334375043746056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461579413247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903020924434176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026751597613280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660547330535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528944279530378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348267028870596\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903101664358534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488599906196\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334860412984545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ragu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495670147874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304811236792776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903460842784999\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528888177675704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473643420264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4221544610473193\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528271281220347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4078229682569805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018750489722230\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011355863490969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aduz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903669111288462\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018768066080160\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pofe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379016589949987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348300226907850\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"comw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528307367641483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5106985373608672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903298938063252\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064578116836\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"urlu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018410685382442\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201497653929807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pepj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334869494855655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528227456683156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utuk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026920857250568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DLA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4626729465358760\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183450110552408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36918816311543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"esow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903089707429778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610788206615867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201420491857428\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528545604291691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dibv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378969842044288\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026616750226875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011586877934465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304201527809879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36745505768919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KQW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903946642202562\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bend\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334378598781684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240592673051499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484882464897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342794308617005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ivev\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011629742506140\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488400216184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610194477815684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201492402874735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"retu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304620738841456\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346889359898532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kufa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528423421804643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610164012583444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376160498411243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5123116511405545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4676678919545994\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011819009824555\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"somi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903053193185484\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4083130184978655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"datb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610869353682981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372357475169299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lugu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223907672864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026182407189537\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pure\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026064194767180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36693692404478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kock\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903473540534822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610738099126167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610335605459222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304948922658901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528896547898807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903672069072227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011399913264701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334445551523229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379092177254742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VGA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528042362616491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emeb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903106678798203\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777296504718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334778207242681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253035922256331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018930943158078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334150771216576\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098233708880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304735112553467\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nanf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018352074446521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026782738630776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4904847057116611\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FFZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345497419396876\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muzi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528276682082089\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352532231166\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"giep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903440488063924\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304761696561254\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201475253636766\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481139201464917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36935016869088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BGT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011244240964369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528777115145088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340801396591893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"memw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047950561790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304155694209125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610676544335431\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TBW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528635186661682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wepd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304846029202187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5474820608102833\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423351271432655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4353992286414183\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zicl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431587382874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461628087265\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026944781101572\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304362325224487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304142623808367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378658357011036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304856768198769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903142615238482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026299271317521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30003574325690\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5491022074558395\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018624858403336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"navp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487691491571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610457830166610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irvu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528425128557960\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IIC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334085272700795\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"batu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342406103908972\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334524259373267\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sopp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334343555051885\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257044609861856\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6222946086399824\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373867712827946\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378732288306466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36054975189098\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018782954691160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026966566655175\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304390306216875\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4354913768560839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ocei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374889303890652\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026115723757553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30044105991873\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018035733506484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"canu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013852105987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304402128521091\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"olau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304829615555275\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610255547005703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36545917549075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026457374666737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372638054834282\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6283751190444821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334811136620899\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903211578057120\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528337645142392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011982691997897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334062984074488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018032846386870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36309208808983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334751631281484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewde\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610526840058262\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286816468421822\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"judu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36574021942414\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165281156968766\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hefo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304514225818921\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373251186259474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mica\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5490869458882002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477414794781\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zemu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4526764207051119\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165572081528331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442795206734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304233007019646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"togn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344082867323241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30094358730635\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201497046157686\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4899015315040208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610960303123752\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304771055815134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610810899203627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346241126469116\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201459968242078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375250666430777\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tivk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903313309845888\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5492218205486899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"himu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528590005069742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408518699521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026485488775466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334339727854628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vubb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304860432450291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30031003069084\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bono\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528031413902604\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376104384269927\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tisp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610641694052673\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903422103192478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36752306715750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4434871616205482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376440812655869\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376968448062159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hobu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30034188035508\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YZF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4377612412595323\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377830246853180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344149272608613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018431796551931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201452678494857\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abdi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304982345574627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610901067291286\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30079199207562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6222149887346223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269546634312206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528495221634180\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ritu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4565803173398831\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5151113464611919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334865829110261\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341579587508491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"binu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528505000220579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018269908709678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dopo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111684921194821\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6216315346756934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sisg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304785712053947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ENT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6227654284576434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sirw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334607302719055\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062287266823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aruf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304092083707502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903665541372330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36037408593663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6208388598778054\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201476284656161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610826305420969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011596652916348\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MXY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026300395816610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vopi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304948010353803\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ASD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334202848714438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4472638422924868\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373679328896391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018576172206193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6254593978345670\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6219572419667870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026716954011956\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tezj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018850299849155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334979092259745\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201414213173131\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018116146567477\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cubp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30016551541329\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403586462536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493414006878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6274880565675973\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dize\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349686204695635\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610601517679532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4347075443156043\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348545664012015\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijce\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018200314390761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5411124027736834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377402234381838\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903624424498639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011618603095376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342633340288997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"inze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528619205249786\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346549707594676\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"seun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291526311456379\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026404594463982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sira\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374166148939220\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374891195310534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rehc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201455209108250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018762421465646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903938368475928\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5442259142167714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36699349903390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108936886385306\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342473244486326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011196246015564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370711229683033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347461546444650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4300359071324056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026040009325489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wapu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528925369516096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011814033512904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903050288359297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IBG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4250140894319386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223875926441\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011977316567844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kasm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6225313627139416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EVO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013140346146\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irud\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026844137501790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5120366824070964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345090401813063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444634256243279\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mush\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026730294268770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MNF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620827354673\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5430361180587755\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6292280611179914\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6226160589843892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018880804543985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304421490589841\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528803322834072\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36565237918198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378921190167195\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610812930858278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4219049993018304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luhf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201436277959238\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304517315957939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"papm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253344493254026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528562397590650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zujs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903889117016093\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610370202511158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018126623656305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340891102779551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304438748707249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018976268934361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30045752578525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018569975511687\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374036339842212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4775349756192965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zibc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5179540132551168\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304239073727525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vehz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472107479672249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4491866172789689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bedd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220949650582603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334214436467592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zafo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334606565349832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6285317872466793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onec\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374926346908057\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373479068273640\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jebi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36244591089737\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470274201260\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661639844248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231851483949610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zepo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5481871746594895\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36846257848519\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182581956025223\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488204854396\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36537428391550\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6246480862945545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414840060355730\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903844152714300\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cerl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4297496218237372\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GRU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104043187320639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lemv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903505532353180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018834827986861\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528966010290715\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"URH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30060245978026\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dugo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346431151468998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201454320036748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udnu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528238307413586\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370351452606052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gava\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4944253327203283\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4072544090918642\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"curn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149818654820915\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011119628314454\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528206154148886\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026592305110825\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6237544165812024\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5422739581807411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011620557791034\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461022965611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018370227300239\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LDZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528295655720830\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pusg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378891056476628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026470143248976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5495072781007307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441776705653963\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6202339096091058\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QME\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018320042450891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304899926832424\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378757154749986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026462882992278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144328437181036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sivo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610638931432163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058278919107\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610711783151486\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026388418952355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"harc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011337539447490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342459416733710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026265988024502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903878127488228\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"difh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304619206286269\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903669197197157\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aske\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018790175186159\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5101395889118999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lics\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105215391559181\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36343530151184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490918568247\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610838413632674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guks\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30066022165109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304597809295251\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ihao\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018911061375587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903894702107430\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"honu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018600266635404\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610046118129786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oraj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5461422542649451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5115091176240158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342185226585012\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4865395200738474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897131002247204\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WEI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610104447325813\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"duwb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304430030355480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5498856303866290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334556853571987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201413759988167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eksu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304675358083995\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903818856281873\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201494594137061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903109404025040\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"johe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370421399984761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420477591959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pids\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376853909523719\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334156669032025\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018059267785678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TVV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528253757542446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30053423099897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6280265876556421\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487924018878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026262137219851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111080259501184\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30028962607375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903168400503806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610217889837374\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135582315150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201434517441273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruca\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037219379621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374878485267243\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iwve\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201400355787788\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5150110676811965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528076986297148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528971287371750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lama\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472914673754768\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018634105836543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528129383169608\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6213592896175110\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4103299274044961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334681677903891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"noct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304374747630373\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528164617975744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dusd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011466750552769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201455313059233\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903362132040258\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610885126642599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kusv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528242452230241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4900072829070632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160316814938713\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JLW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304142541220125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4559324788675164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018085809128200\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cefu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528579593978711\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5491768624829617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kabn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36200247184728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376937222403202\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"teza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30036198105973\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5190553186417256\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rask\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782972736208\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903676411398131\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wope\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4650320572850698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343984084510461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304732348708312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352985392796\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fewe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610294065845455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026855702104125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36855389066023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304229515279631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baed\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375121417306410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011489005275754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36648136289976\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011513604820213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icit\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340801717622724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610755861934735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kisu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30019279975118\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201411601105618\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304059735993194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011051860281044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6274550015128564\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334760840182433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011384606109231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011656779760043\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528612514165157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304483888659347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elzo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182584503191407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240896391660337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hioc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5192397056568592\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334690019159757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018772176688094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011865608389383\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334357077225579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467231934219425\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"akni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026508380510515\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610720523272049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304834832240594\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026096281834622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348372550290443\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344840947907550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5451565262736072\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346515844527564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tutr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334028783021210\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610572431481414\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6250028750201449\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379283437612148\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36149926224638\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528881324184019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zisf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340547474536876\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467770191486821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zewa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528695023715679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610142935313586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304064941827483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304334872329589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4201892119131794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343201877892828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvmu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026113393708337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026579294077461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903967857422703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304898254902627\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304991438948242\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4977888078242772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"divk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011475491217731\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36838831961181\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"misn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089680633861\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377717365692772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gidl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377778861886367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36597682577757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371332838840754\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018882646068981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nohj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269397715631316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903436858275908\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"natu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376508056604981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444071859660619\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528277228290186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334635039512782\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326761865105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304934750330284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304717668587107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610180616867983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453819203488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5125306371330275\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tegk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36232197345827\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483871723350608\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610855050443199\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258554778868416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rema\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011470028434917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201481089448434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379079640126250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BTN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345893471195851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073805790855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610492997473897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuzk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304149141443130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018009830126124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"date\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304932296214525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231642449951638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mucj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171931892003284\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5164370031918707\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011938920858581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AZZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5473282117366352\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nepe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903786240905053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026419723881375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tidb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36653731063255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903926855139420\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hodv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334116589621158\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201478277076936\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903787255180947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5471814513918378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528569863639416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374001249817621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"waja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442311655505\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30017095418297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903706313401590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011627289283651\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026658902749289\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304441513695987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187447726537647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6207325054941223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6238813848002660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253696075993010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"morf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253766111879307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376059341420775\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5131163103794902\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011499639440401\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4275574361327178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334481269015174\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mabu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201438920498952\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264264065230534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guaj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371835175091211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903735869205121\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334497782816971\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30009799154229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nidd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018976945225647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345904891723048\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36552617668254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4386047110327399\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36242122800267\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334765169024918\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mirs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201447378459440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334918090520427\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018192055233930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NBE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402386435896416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5190822672114234\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304322894826567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052314041406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018249205440219\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tore\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488820924736037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340112569925706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414770575784324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375623539120801\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037218662324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340741265395523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ronl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026011016390642\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4833783896731136\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36001354663953\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304503052288704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"birz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6213108098901102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334580615358152\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"okuc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30060604839082\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334779387624052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374140686161521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377542344325264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5486257641853617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018184150067073\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528130648425322\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018387421824749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6281915794747622\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HCN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5179810791969369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528338150862408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062165562095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018641554252577\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343287776766478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"core\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334761912945293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5461015356202696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334666000711111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5189894326058987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903844975115164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610204566942412\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nucu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340183497931157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5490733300231232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4871234518434033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304189549170547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juzz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4227530897070590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528682454110232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dovp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026538381904102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425403897472\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fakg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30015692101621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128650891709600\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36277583710852\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XHX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201460479501663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266482626807438\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528652479383510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rali\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201445928990856\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MBI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011177449876150\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jeef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903108154126958\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30033873354083\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903319781491612\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6235435808714937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341048340938627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374605391515930\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304706636277099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610598352971638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wete\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5140590394309355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349206302527109\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348098274916514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5185504589080255\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diln\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5499355283068265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346325750619789\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"odus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528461676302293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026896082425805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibsa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110246349597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334993343440749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026225763600009\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026100926982331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342436603669568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903095945498103\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pume\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6283412601547435\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340717420824649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346346240758052\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340134940998244\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nobe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018304871036823\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341394001963953\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487448078704337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528882504883289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"saco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5174028692029804\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5497388227328547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahva\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018083809863603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011296763584461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4028817552136076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343912673106003\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rual\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011030570071127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610050239701697\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eluh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011272323722966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304602195577336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wute\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490826347643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZZV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201464926871463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cumu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165717474570255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076210105049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36785668734480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903349042505629\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hivw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610064942324531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304798815103790\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5478945642736944\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4751420352853959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"owup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267877952277065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334797579047916\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hube\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375293783192086\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018726364483700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4050281225279584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KAU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061211816513\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tigj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105852629392066\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ROZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5486885106724681\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271215608220359\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011106863912712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018318606695570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026948886508680\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"botp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496400620305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36238893985337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304219275033591\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XNX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347946066560521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pelu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4461730004744369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018831831652299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pigi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528770554789862\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903604761518959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372307839694870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334881039393985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mame\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011502976294420\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610494041504297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bimi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412240368591189\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334348829527115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"melg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528750019880571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304099034566002\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hauw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5424182535426426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4297914126463104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342954387167211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408538894037\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30068105525183\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5434938204997205\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5176579348579186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018944033180983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mack\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061958983455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304212063942487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zovv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528617472428075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026291603895431\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gugj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341666723457053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4884033513948491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezfu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018624543203059\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RHH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903430910113330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018447185936574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026369283511161\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36179514814243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341240906640784\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434576172553\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167504525326780\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304188519562113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377403061978688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4123876366507587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36058190174637\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123503687171987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011654650127564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334750754147480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4438968553237449\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lunu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343775070254076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30088327690870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011713082110455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4447253280614817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334541208371671\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5424947653298934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304529259094033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610325458132661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"citi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018372629074842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340876203533247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528298466050314\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026737986700614\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011035734897291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418044061688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375774022503217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903703788503331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5193936330209793\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377757967045672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341565431009463\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KJR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4934074974345314\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528435434290867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6272420386564221\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"adea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374744717811143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36628783453489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bika\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6201246065391743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377263051565485\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348984708197500\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201400182997261\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187923064189175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146158176946077\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342906225276810\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TNH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236076333525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pulk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379273925585534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610510598754389\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"losc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018339168145606\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36200169626979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5198617874681127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334000753437726\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089563416806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XGR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377405744928675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"povi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528286571143264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LWB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018898005247883\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"upon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378822324195872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528333888707355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wowm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5428116943522455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011943134535470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011591269354017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340046298696610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903309447241618\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418786084542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342580986449948\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610131365184849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4167145447179767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5436079862212435\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ulhu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271400289795362\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011694460530524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36647979948235\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347995683854049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334120193639663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011714457003622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5448794107027150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825908624662\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5132120128394703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36897532088298\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610803091669356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4535544698590901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334460854335593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201484606448598\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334320083550356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342963700298074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"padv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304482405994963\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181524244330634\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468486493063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610014526526480\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vibe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903299802321040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013386010158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewio\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36318667019461\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610697835357652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5138106054150502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6296355335275044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zohb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018199384895966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VLK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610150103906727\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huhh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488213141907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334553555789660\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sotl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018938753350347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4005235269710553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334215803505088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018908056476628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610871989625863\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379985940637335\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lurk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4185481260320065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281115515528126\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061562597931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36405882019846\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igme\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098977929080\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903187585332955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670343733002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528837300490333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tago\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378037417979070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4653640456228696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"relr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334560928528170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FCZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377061980221703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349738828355136\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026802743181597\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610498238209966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HLE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342525170288966\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pied\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5101815539826568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304405327717451\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610822216922839\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201444276709893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610593109318167\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36347093679242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36069163793113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201439493819095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lejd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201469262424371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4435609329028133\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30069883687146\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347421428131601\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"soag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453537078311\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026576044633106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mamd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5482506253086393\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36839865581366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zucl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30093501575376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340241379105710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"topb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903958853483476\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5415829324165828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vebe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898318446130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30006035650143\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610387212785135\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334263229542434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hija\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018421711341369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026077909954463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5159165969396398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304900818309198\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018791713657982\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026946942524022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6210851569569725\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334631336488271\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"goiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6277463683314473\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EER\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528109834660587\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vetd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373240188676728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528676269015636\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cehm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304696616770512\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344495698832539\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zubs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106900606426891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610488925120527\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5121227798517316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DCQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346704247691652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zips\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371626638489807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026952099026894\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011262375632817\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201498693888128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903774124008558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018433871454460\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201448557804521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4036678906318301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610620704937891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018044052988158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"logv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334669423857255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018642519113888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334254830084064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167230666757282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4500109200652077\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011973297857536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"amaz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304027642490554\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374472580890933\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"razs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018482257550847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528498361054979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iria\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373254396477548\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903765473468807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mapa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197389983794727\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HIL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304945098550052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umuu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5433440830766659\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464753485754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052287451665\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6221819408979923\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347631868661194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528075379093544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304091301569728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5440477362001353\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018476121562178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445799596964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mokw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220844535084646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026145428912997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nufj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011075753548391\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4138620405148950\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349971392848406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026220471336012\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oluc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4325574277773903\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5479455293548910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011282946387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528681323883482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487718916214560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334549852952191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bahu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492946213374570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4064567478671483\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4600369294734632\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZUM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528479270718045\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tijb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6298423359224237\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018561823662515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pujv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5157325798996832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903832498435524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6249298949094575\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348448684681978\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342646725319153\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425630187556\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013581671598\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30022406006005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259524876804646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528443473180007\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431155315843\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334863363656542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018067467092753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610994528352599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"joho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106161644859177\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372258375378628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"maws\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304688194897387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KTX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334477607964156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349925670284205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334485778659208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vorg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30017253382723\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304242607679295\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fadh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349640501452117\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4298972528308409\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528631712188225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376627298948616\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026403727942946\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528015596150875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dahv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340865751274304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36020011073885\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vaww\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903153549161088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304841211778581\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903037342219658\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373092712050718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018726512079202\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4270806425344368\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30008633405805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36173657359835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026500704104091\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5439118811902691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999257418819\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026164965206010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36488848633918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4135596699165392\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"howo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011844935587597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903586577553652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414768583543468\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018222138039853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4960595932920217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420552063841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30050284221693\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349893554880391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zudm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5109643617659418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792395253580\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026110466874111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304881083479983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pimc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528199768372143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4607056291047182\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610885109651385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5195789851164139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334547976330161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026343321625291\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rekv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346441686184523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011518801297446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528736587152501\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199868125617639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poge\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326901817669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018172496784659\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528811023508481\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026298773318748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jovb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143859979466212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271206222416481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279730125826506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30095742724986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vejz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36844707756366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187930882494299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334436046170957\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903465628810322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lanz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5456405010830163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118881769988776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267637950156954\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371041469680476\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528504432779021\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36755060320139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670524526340\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YMU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026245816848835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340166667712143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6288463610643009\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nelf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011823628323437\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026282181028263\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zair\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201458094280440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4755582971108689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903796104301679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610126790738706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6214920739508446\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018488667565481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atte\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011821093721127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ECX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104324810756872\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wisj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304518761101584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011484920376316\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gemc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011864090302848\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4807767391577567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372277604514738\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}}]}"
headers = {
'X-IBM-Client-Id': "REPLACE_THIS_KEY",
'TPP-Transaction-ID': "REPLACE_THIS_VALUE",
'TPP-Request-ID': "REPLACE_THIS_VALUE",
'PSU-ID': "REPLACE_THIS_VALUE",
'PSU-ID-Type': "REPLACE_THIS_VALUE",
'PSU-Corporate-ID': "REPLACE_THIS_VALUE",
'PSU-Corporate-ID-Type': "REPLACE_THIS_VALUE",
'PSU-Consent-ID': "REPLACE_THIS_VALUE",
'PSU-Agent': "REPLACE_THIS_VALUE",
'PSU-IP-Address': "REPLACE_THIS_VALUE",
'PSU-IP-Port': "REPLACE_THIS_VALUE",
'PSU-Device-ID': "REPLACE_THIS_VALUE",
'PSU-Device-Fingerprint': "REPLACE_THIS_VALUE",
'Transaction-SCA-Performed': "REPLACE_THIS_VALUE",
'PSU-Geo-Location': "GEO:1.111111;-1.111111",
'TPP-Redirect-URI': "REPLACE_THIS_VALUE",
'TPP-Delegated-Preferred': "REPLACE_THIS_VALUE",
'Delegation-ID': "REPLACE_THIS_VALUE",
'Signature': "REPLACE_THIS_VALUE",
'TPP-Certificate': "REPLACE_THIS_VALUE",
'Date': "REPLACE_THIS_VALUE",
'Digest': "REPLACE_THIS_VALUE",
'content-type': "application/json",
'accept': "application/json"
}
conn.request("POST", "/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
x
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8445",
CURLOPT_URL => "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorA
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8445",
CURLOPT_URL => "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528540050673369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jism\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026204005028626\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018771388484995\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5411755248541998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528457986234648\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dajo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5449054197268712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528606398118886\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266495377678436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018152476141799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etuh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610297224926470\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5410065703822060\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5459460276173805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BFI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018267123100475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jenf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334030206173123\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058919510786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nacc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026716251639681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ISN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304979428927888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kogm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903202326462225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334072096645299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bopc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347069896673883\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5158426720078837\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vevo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30051776401355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373061549264354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gaka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528131759956881\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026552417789288\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304366205125094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QKK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903316123839938\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496424860879\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FNU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299438673051982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375991437150547\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36440788980700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5122345751765653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011802443816841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"celo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6295259515204561\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JSE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198105399573078\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610859529530669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777323039282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36382630247096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FAE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610026661009411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345970566472757\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903855001576674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347297679594931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6247039948697030\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lild\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377745284233410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026624327927959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36943491237722\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334114780684364\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6205621851826175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30053207757884\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tilf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36150979295871\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018232473211769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334848177676224\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610883946798105\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"futd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304011193600217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334351602081565\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"salz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375188093656806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018401491192059\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370063866749390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610705634406404\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dupe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334925110859909\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199722370661505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610087920726187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011373368426115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610793382861061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378000685418130\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebop\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334496214674669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903332535980343\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334300477364366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30051975216034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tevi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610076110785574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304084896902925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaid\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334631700968213\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258969660429921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pikd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026112050616965\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30015575272523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ildu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018288976692194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378749546251086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30032315816378\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4844836781323257\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tefm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4087554525336529\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343639982430366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372565085998176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36727366799134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413037263433148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5142239482541044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610230939415109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304555402239159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zake\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610527279690740\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343552189301076\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zoho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30088203040919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349070680157982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"favt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018768939578747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018017118023665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376930782124409\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201459288618817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903231347644636\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026021267410858\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nats\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897158979824301\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304434394913322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dabe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201491398555597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610157158193242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"enbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197233866658627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374715986335824\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"boiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4477912851634099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903858662966507\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wadl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782411910562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348145058775333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jiru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36718090116083\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4299824982579935\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fafg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4271808080411416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304515410216284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sein\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30039833148630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264138817276351\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ufur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026762564721477\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610785994287867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"befo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011482439677562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36107238042304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026853515794828\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5472618146006280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wegr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344100297445705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5157401329492029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473544052497\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5453937136225301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"otsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201426204409050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304498079742793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304458595341983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201469946663022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vami\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4345773764365308\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018446090769708\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hidu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528866442982931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018732753322194\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehgo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36587540158171\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30025498032870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cong\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528632236625809\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5105348177356231\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5170344966746724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825098303630\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011726004035790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304660696128736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aros\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011416714071240\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30075405673639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36182448872774\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528244969546663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493363481585\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011024681829937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"live\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018165332419894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528831685080470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"labr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903695615354005\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528383581531248\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wane\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026082046547519\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026140130657063\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011114388894753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36593176251504\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cogn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661654661303\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610756417742663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozgu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30029192167925\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146601025882654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415509325418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6225434734830141\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uwav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304042513223042\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379100957897232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30023190150975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271762617054592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346981990387270\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011344831763293\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4384204076140371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610235997425031\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201401849948747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026532390106577\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259800059171387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528981463178127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377927706849342\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345856994277423\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36841027377139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NWX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4526140305176860\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377859779269027\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4810419687893655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5146770540755974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128525195545324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fodf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903496405575531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30071181727921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suwa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36978989785279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610564490627144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4678256166430133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5186381754241403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naib\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011729816196560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334718000239559\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zetu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36345619290296\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610878174467969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610982017614959\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334761927084799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gurf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201470236157709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610766758382391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374783498409792\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528782203740915\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201444305722198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481381864499661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30063334953025\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026406630906403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488896671282680\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903237765676380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026298799288271\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011220854057682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528453115577254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026825305594410\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610031147056465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30091820352949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mecb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165056248565758\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370370904563570\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030934408137\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334593188579849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wavh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5408225568898506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379980324375677\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36266507854425\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5435461511763672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hise\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6227322037215276\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5405519110708475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011050889395850\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011913557499652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371523535239312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903224934302411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334757190181510\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6252195539027268\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ataf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073641062709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903075199482128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"simw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610548271456609\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281077690185272\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5485697748372279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304159561808373\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4977778017163231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BCD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445640683086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"viju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201433848151676\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304539610324276\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334263258027851\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018281224403100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4320499797991170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610799207893528\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bavw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4574588423888595\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026147552842149\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udeg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304852095337410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4628640850666881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nakh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026574400028102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304001656754429\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5167258801521206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4714101273505532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pucr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334920696485070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5487954471454347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415948113193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528775329405264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jesa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304787154144705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LIG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076402540839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903607661527558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36571714526744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"belo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528091915388660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058941813992\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"toki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528417931872710\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610796374521049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123840684396294\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334966280413226\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423590560830935\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257045487197388\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492200263427544\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026024446289599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903805787949900\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005505170967\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201402335436445\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347924958166814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4394329603831255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4440823132059499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"masa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5476159159463734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6243880073706664\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"foum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346613664968917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378122122311932\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291754358603600\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483602092963899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269858862251182\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VQR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477257144144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018719773318914\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026425755435949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026277637530417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5414668986298100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ukot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434593242660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187353515533104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334169642300245\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36247944559769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kone\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468343046955\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6294805958137584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5119966072674640\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528165309788584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201409785676974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5488488207651925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334762372346154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903539228013543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"damo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5158175623184784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124947736963549\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660651169265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026927870325939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340790738786867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403289096767034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528267124406176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026961137748617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aciu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026579822017310\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528544617527019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mase\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4894552991866105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374219451337977\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304838429506374\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026711850851613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143176726833226\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OKQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963411636320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lued\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30002527240998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349273008705538\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"capb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334676257050105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286943890069266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304759222469281\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026783955372845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jina\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528641808879728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026190386433503\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528473201271315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429229207145738\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36127520487264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610743633909227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334969556488682\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903533457384774\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tolv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334507399444593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373521111182854\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412102187897637\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6233664128939955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ohia\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018328086706607\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011158498642354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011312583413219\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792310552892\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jupc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345380082611617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011265078423905\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001664074467\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334116089167611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334324169490412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36406332797544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kije\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011530416479566\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304848589291139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tugw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379432115620309\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011363855347650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5406080312758833\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201458978318530\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nebo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304176108018472\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610238462602563\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wirl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4068592242599170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30023167875869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dohe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6265364681130107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347325798078468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903149633874701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ILL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304415096936380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065736632511\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011427454630590\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372129183869621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124418917354122\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5420343194758509\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5408239663943422\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011103054767047\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304829034180127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ifeu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528039952327323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304941694941290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ofwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898764372152\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MOT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5160155846425574\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372501573404344\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610735059859191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334797863777475\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011722635986881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5180456772003195\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201423236257185\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vonr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903564190948385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528698288008665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304555291751413\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36992797272461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487875605410154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061288277961\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4148886272150712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011222888698879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4856233412683645\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"THP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30020964229241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rerg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011156538880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903799780600844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018071408658185\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334399390500809\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610746074319160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104199970064865\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bisn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372030922634799\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403604669716\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6293943994986002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018772649311498\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495102554846\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372289152317976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5150158668868139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IDL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6250581632947704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011836635901516\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377920610875438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903661534954770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903355506828241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vulu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334763710686483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464909106981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sido\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343486656764666\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZXX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610045774289413\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"faho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30031482547402\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610973944785053\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334859578819156\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36990838406742\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011369312852315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SZJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346540437466939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mine\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903253851809017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011719834864976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344924904041155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334970064340639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018678808466504\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6279110548016029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610894284850721\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610021306704294\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ogli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36622749399407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610349834242465\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nokr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36825386959991\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4015343757399869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018360459136120\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374693998701376\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011084827043892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433701798712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sech\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903269642162490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MCJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240930124716106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36049383434698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201485944633841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304070252823961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610237578716994\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610164384722968\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343911905919068\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4007688991161784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429268585831329\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puna\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4885502835597987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433005658711\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165539080084129\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378030660521889\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30095329591717\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4813404818690482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuad\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413800178472778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528130053685675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349757957096535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026122460118361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vome\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110398496535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379400421412075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sike\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473010145023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304821025546853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bipm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4154016542537743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198429228976033\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334563111648896\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346151115589289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304669225362187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304199281940692\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jicc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528546370742537\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4463934994023739\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atuo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431432872491\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6226981790409797\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349060552162004\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201440230207719\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149542944705765\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30054113263736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135478462975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528654259528868\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4334181927666864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342131780638482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ipli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143327631624248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903460961898786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zect\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340040674324830\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MLB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026074376793144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30081676333036\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5455296042832900\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171958378165139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011207965229649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hubw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334345012817345\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018631246750112\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304003726105822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011892426602177\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mepb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018231073135436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299152736288834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334568918054990\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334410388344843\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104724710645507\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201414132783812\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334930237069085\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334490835087583\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zejf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4988308944781678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903410190128331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rawp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304622733690904\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36730629940750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346269475818161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201428509495339\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610451726168988\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4402041354793960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lent\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334953925474458\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528977723602823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"civh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026916977895498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903340313901308\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30086474602532\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374313156656284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304933837118662\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OEU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6205936719207917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rasg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36676301549130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30085697117484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lalu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438813170733254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528583141842049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bule\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610764368217842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018456935630262\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dukv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528405031552498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376547519407046\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gapf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5429393004204989\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6245427165202505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cimb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011679247547040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QWR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345379728142888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341841174568514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334176357363631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236272332331832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026986296162144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lacl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345455439986217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144683770773439\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vesd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269527055798453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RXN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026594017231550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kumo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4285096129108037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118531507085688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104372814991847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30040352129266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065623383822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334654571584737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"locw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201439605105151\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011066470415543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rifa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991018380872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610540679896403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sanu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6263105364241451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30066783169589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kena\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5129922772570503\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343666812875510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341348994980655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334564386588213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018690794581568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201474932209814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tioz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201451162901559\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026791447045895\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030368380653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4502744788882718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"voki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334199744840574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374155716315632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wetj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528056320560781\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30068380935602\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"komf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340311027064534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018090201771573\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rogu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5427595855445923\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011775818678899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6234486516689201\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304676745486800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fero\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348132988867455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BMO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343766949415386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fejo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999399973523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528067859719433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372402827216677\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181090482308575\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiwi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903325038779469\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011935138517074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5400462438850064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36961166215096\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011622547209028\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528192108655764\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wecm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047939505694\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528894507613845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"segp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438792426983907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963148930210\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201462329571482\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470904802800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fomo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903919024430325\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026045714742217\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hife\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334651600883460\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36210380096621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"solb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026350235285773\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30059585713605\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36858479401894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5499352269470631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484082229173\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4793795351826092\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201427968080384\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026975393278960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nafe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123167721193157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334170654101919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuek\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610994697159718\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370639305610309\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018975321878037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026135860993050\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pana\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36324741946026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4369691012330455\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hapw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610861230206175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5110360098981982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4059878985864256\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4960750067978163\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piat\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304076915652747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6275157439742324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011862485911918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349794011379771\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"izus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026235674226026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441042235368303\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5446742450702160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011879957682140\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"banh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304144512033644\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334649103975734\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tett\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903745561388794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5446080673413509\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011403171104243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011410999241586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"affa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018404026624398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403765868364001\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beoh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5118839823454417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341939550399999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lomc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343150571442630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ABT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402959853645075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528808692542593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36226869459320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160934508560542\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610075246018678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6246194136820695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HBT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347302592730214\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484038109222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36613496625458\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4725451346852750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4905980383655579\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wamo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528709356677412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011390555009736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ride\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304720178260934\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XST\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903317028268124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183993514685050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JQD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018533033851741\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528657349062046\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RNQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610962739801704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026452459760943\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018236464273910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cazh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001690962628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903886509613123\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sosv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376352969978855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5469971952915721\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vasi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371121024019681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347427282343554\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vohs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374793306543633\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108600302712754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026248901199940\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610207154429551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mifl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279373124692304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903502408265515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236101662730695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005285981468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344086736764410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903963768158874\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30043547582415\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348643688227444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610572295236763\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36219997744358\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ubal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528593609704326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018868573707071\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"agej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018615589111354\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340361945417926\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6294315973155777\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379817480841904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6280778649210670\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620421643240\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gudp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334444467167866\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334143469913273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6255078056749323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371238243716416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903009643201453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334442866879065\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iriz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018269078220779\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5463268657507127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5474598426931589\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4224517809745081\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"unai\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018235104893426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343466435300206\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"durd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5460641912958603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253455682707531\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"acvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6247264311411930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304112916120366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343563906255297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30002702705526\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903466948732105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011199554665533\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991885845767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5494073290943249\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304304623146533\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064964219897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jotp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903869921444392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5131035701734466\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etiz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5116449079255302\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334789447585714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciij\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026098638710588\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528531370645740\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tols\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36634935381099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304365212712654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"depl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6256697135925353\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375761792030000\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197244238032334\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304731603527755\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kigo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6297467892524133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4761491631802099\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hiso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334375043746056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461579413247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903020924434176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026751597613280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660547330535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528944279530378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348267028870596\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903101664358534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488599906196\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334860412984545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ragu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495670147874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304811236792776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903460842784999\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528888177675704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473643420264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4221544610473193\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528271281220347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4078229682569805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018750489722230\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011355863490969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aduz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903669111288462\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018768066080160\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pofe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379016589949987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348300226907850\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"comw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528307367641483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5106985373608672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903298938063252\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064578116836\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"urlu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018410685382442\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201497653929807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pepj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334869494855655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528227456683156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utuk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026920857250568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DLA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4626729465358760\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183450110552408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36918816311543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"esow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903089707429778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610788206615867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201420491857428\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528545604291691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dibv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378969842044288\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026616750226875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011586877934465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304201527809879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36745505768919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KQW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903946642202562\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bend\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334378598781684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240592673051499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484882464897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342794308617005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ivev\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011629742506140\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488400216184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610194477815684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201492402874735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"retu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304620738841456\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346889359898532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kufa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528423421804643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610164012583444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376160498411243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5123116511405545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4676678919545994\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011819009824555\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"somi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903053193185484\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4083130184978655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"datb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610869353682981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372357475169299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lugu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223907672864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026182407189537\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pure\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026064194767180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36693692404478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kock\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903473540534822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610738099126167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610335605459222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304948922658901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528896547898807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903672069072227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011399913264701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334445551523229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379092177254742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VGA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528042362616491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emeb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903106678798203\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777296504718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334778207242681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253035922256331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018930943158078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334150771216576\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098233708880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304735112553467\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nanf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018352074446521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026782738630776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4904847057116611\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FFZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345497419396876\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muzi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528276682082089\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352532231166\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"giep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903440488063924\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304761696561254\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201475253636766\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481139201464917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36935016869088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BGT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011244240964369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528777115145088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340801396591893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"memw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047950561790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304155694209125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610676544335431\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TBW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528635186661682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wepd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304846029202187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5474820608102833\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423351271432655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4353992286414183\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zicl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431587382874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461628087265\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026944781101572\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304362325224487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304142623808367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378658357011036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304856768198769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903142615238482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026299271317521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30003574325690\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5491022074558395\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018624858403336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"navp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487691491571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610457830166610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irvu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528425128557960\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IIC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334085272700795\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"batu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342406103908972\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334524259373267\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sopp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334343555051885\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257044609861856\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6222946086399824\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373867712827946\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378732288306466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36054975189098\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018782954691160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026966566655175\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304390306216875\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4354913768560839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ocei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374889303890652\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026115723757553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30044105991873\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018035733506484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"canu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013852105987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304402128521091\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"olau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304829615555275\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610255547005703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36545917549075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026457374666737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372638054834282\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6283751190444821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334811136620899\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903211578057120\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528337645142392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011982691997897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334062984074488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018032846386870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36309208808983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334751631281484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewde\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610526840058262\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286816468421822\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"judu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36574021942414\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165281156968766\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hefo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304514225818921\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373251186259474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mica\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5490869458882002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477414794781\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zemu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4526764207051119\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165572081528331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442795206734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304233007019646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"togn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344082867323241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30094358730635\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201497046157686\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4899015315040208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610960303123752\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304771055815134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610810899203627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346241126469116\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201459968242078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375250666430777\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tivk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903313309845888\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5492218205486899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"himu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528590005069742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408518699521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026485488775466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334339727854628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vubb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304860432450291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30031003069084\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bono\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528031413902604\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376104384269927\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tisp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610641694052673\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903422103192478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36752306715750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4434871616205482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376440812655869\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376968448062159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hobu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30034188035508\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YZF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4377612412595323\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377830246853180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344149272608613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018431796551931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201452678494857\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abdi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304982345574627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610901067291286\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30079199207562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6222149887346223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269546634312206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528495221634180\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ritu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4565803173398831\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5151113464611919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334865829110261\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341579587508491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"binu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528505000220579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018269908709678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dopo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111684921194821\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6216315346756934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sisg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304785712053947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ENT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6227654284576434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sirw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334607302719055\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062287266823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aruf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304092083707502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903665541372330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36037408593663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6208388598778054\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201476284656161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610826305420969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011596652916348\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MXY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026300395816610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vopi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304948010353803\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ASD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334202848714438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4472638422924868\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373679328896391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018576172206193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6254593978345670\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6219572419667870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026716954011956\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tezj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018850299849155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334979092259745\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201414213173131\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018116146567477\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cubp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30016551541329\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403586462536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493414006878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6274880565675973\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dize\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349686204695635\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610601517679532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4347075443156043\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348545664012015\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijce\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018200314390761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5411124027736834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377402234381838\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903624424498639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011618603095376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342633340288997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"inze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528619205249786\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346549707594676\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"seun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291526311456379\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026404594463982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sira\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374166148939220\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374891195310534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rehc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201455209108250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018762421465646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903938368475928\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5442259142167714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36699349903390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108936886385306\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342473244486326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011196246015564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370711229683033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347461546444650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4300359071324056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026040009325489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wapu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528925369516096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011814033512904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903050288359297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IBG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4250140894319386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223875926441\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011977316567844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kasm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6225313627139416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EVO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013140346146\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irud\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026844137501790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5120366824070964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345090401813063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444634256243279\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mush\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026730294268770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MNF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620827354673\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5430361180587755\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6292280611179914\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6226160589843892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018880804543985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304421490589841\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528803322834072\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36565237918198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378921190167195\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610812930858278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4219049993018304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luhf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201436277959238\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304517315957939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"papm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253344493254026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528562397590650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zujs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903889117016093\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610370202511158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018126623656305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340891102779551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304438748707249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018976268934361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30045752578525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018569975511687\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374036339842212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4775349756192965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zibc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5179540132551168\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304239073727525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vehz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472107479672249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4491866172789689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bedd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220949650582603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334214436467592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zafo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334606565349832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6285317872466793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onec\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374926346908057\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373479068273640\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jebi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36244591089737\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470274201260\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661639844248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231851483949610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zepo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5481871746594895\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36846257848519\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182581956025223\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488204854396\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36537428391550\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6246480862945545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414840060355730\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903844152714300\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cerl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4297496218237372\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GRU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104043187320639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lemv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903505532353180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018834827986861\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528966010290715\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"URH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30060245978026\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dugo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346431151468998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201454320036748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udnu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528238307413586\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370351452606052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gava\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4944253327203283\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4072544090918642\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"curn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149818654820915\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011119628314454\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528206154148886\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026592305110825\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6237544165812024\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5422739581807411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011620557791034\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461022965611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018370227300239\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LDZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528295655720830\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pusg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378891056476628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026470143248976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5495072781007307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441776705653963\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6202339096091058\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QME\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018320042450891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304899926832424\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378757154749986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026462882992278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144328437181036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sivo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610638931432163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058278919107\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610711783151486\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026388418952355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"harc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011337539447490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342459416733710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026265988024502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903878127488228\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"difh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304619206286269\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903669197197157\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aske\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018790175186159\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5101395889118999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lics\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105215391559181\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36343530151184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490918568247\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610838413632674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guks\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30066022165109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304597809295251\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ihao\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018911061375587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903894702107430\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"honu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018600266635404\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610046118129786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oraj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5461422542649451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5115091176240158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342185226585012\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4865395200738474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897131002247204\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WEI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610104447325813\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"duwb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304430030355480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5498856303866290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334556853571987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201413759988167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eksu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304675358083995\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903818856281873\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201494594137061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903109404025040\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"johe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370421399984761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420477591959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pids\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376853909523719\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334156669032025\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018059267785678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TVV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528253757542446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30053423099897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6280265876556421\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487924018878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026262137219851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111080259501184\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30028962607375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903168400503806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610217889837374\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135582315150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201434517441273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruca\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037219379621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374878485267243\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iwve\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201400355787788\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5150110676811965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528076986297148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528971287371750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lama\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472914673754768\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018634105836543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528129383169608\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6213592896175110\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4103299274044961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334681677903891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"noct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304374747630373\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528164617975744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dusd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011466750552769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201455313059233\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903362132040258\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610885126642599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kusv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528242452230241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4900072829070632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160316814938713\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JLW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304142541220125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4559324788675164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018085809128200\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cefu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528579593978711\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5491768624829617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kabn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36200247184728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376937222403202\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"teza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30036198105973\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5190553186417256\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rask\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782972736208\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903676411398131\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wope\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4650320572850698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343984084510461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304732348708312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352985392796\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fewe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610294065845455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026855702104125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36855389066023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304229515279631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baed\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375121417306410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011489005275754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36648136289976\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011513604820213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icit\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340801717622724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610755861934735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kisu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30019279975118\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201411601105618\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304059735993194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011051860281044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6274550015128564\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334760840182433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011384606109231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011656779760043\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528612514165157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304483888659347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elzo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182584503191407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240896391660337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hioc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5192397056568592\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334690019159757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018772176688094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011865608389383\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334357077225579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467231934219425\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"akni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026508380510515\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610720523272049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304834832240594\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026096281834622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348372550290443\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344840947907550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5451565262736072\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346515844527564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tutr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334028783021210\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610572431481414\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6250028750201449\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379283437612148\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36149926224638\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528881324184019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zisf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340547474536876\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467770191486821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zewa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528695023715679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610142935313586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304064941827483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304334872329589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4201892119131794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343201877892828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvmu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026113393708337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026579294077461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903967857422703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304898254902627\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304991438948242\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4977888078242772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"divk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011475491217731\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36838831961181\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"misn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089680633861\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377717365692772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gidl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377778861886367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36597682577757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371332838840754\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018882646068981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nohj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269397715631316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903436858275908\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"natu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376508056604981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444071859660619\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528277228290186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334635039512782\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326761865105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304934750330284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304717668587107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610180616867983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453819203488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5125306371330275\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tegk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36232197345827\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483871723350608\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610855050443199\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258554778868416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rema\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011470028434917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201481089448434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379079640126250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BTN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345893471195851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073805790855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610492997473897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuzk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304149141443130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018009830126124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"date\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304932296214525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231642449951638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mucj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171931892003284\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5164370031918707\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011938920858581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AZZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5473282117366352\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nepe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903786240905053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026419723881375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tidb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36653731063255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903926855139420\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hodv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334116589621158\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201478277076936\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903787255180947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5471814513918378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528569863639416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374001249817621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"waja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442311655505\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30017095418297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903706313401590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011627289283651\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026658902749289\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304441513695987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187447726537647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6207325054941223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6238813848002660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253696075993010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"morf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253766111879307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376059341420775\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5131163103794902\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011499639440401\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4275574361327178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334481269015174\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mabu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201438920498952\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264264065230534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guaj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371835175091211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903735869205121\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334497782816971\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30009799154229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nidd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018976945225647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345904891723048\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36552617668254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4386047110327399\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36242122800267\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334765169024918\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mirs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201447378459440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334918090520427\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018192055233930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NBE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402386435896416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5190822672114234\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304322894826567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052314041406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018249205440219\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tore\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488820924736037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340112569925706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414770575784324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375623539120801\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037218662324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340741265395523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ronl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026011016390642\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4833783896731136\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36001354663953\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304503052288704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"birz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6213108098901102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334580615358152\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"okuc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30060604839082\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334779387624052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374140686161521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377542344325264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5486257641853617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018184150067073\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528130648425322\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018387421824749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6281915794747622\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HCN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5179810791969369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528338150862408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062165562095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018641554252577\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343287776766478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"core\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334761912945293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5461015356202696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334666000711111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5189894326058987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903844975115164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610204566942412\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nucu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340183497931157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5490733300231232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4871234518434033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304189549170547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juzz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4227530897070590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528682454110232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dovp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026538381904102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425403897472\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fakg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30015692101621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128650891709600\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36277583710852\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XHX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201460479501663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266482626807438\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528652479383510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rali\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201445928990856\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MBI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011177449876150\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jeef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903108154126958\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30033873354083\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903319781491612\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6235435808714937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341048340938627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374605391515930\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304706636277099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610598352971638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wete\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5140590394309355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349206302527109\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348098274916514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5185504589080255\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diln\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5499355283068265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346325750619789\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"odus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528461676302293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026896082425805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibsa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110246349597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334993343440749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026225763600009\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026100926982331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342436603669568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903095945498103\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pume\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6283412601547435\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340717420824649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346346240758052\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340134940998244\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nobe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018304871036823\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341394001963953\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487448078704337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528882504883289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"saco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5174028692029804\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5497388227328547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahva\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018083809863603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011296763584461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4028817552136076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343912673106003\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rual\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011030570071127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610050239701697\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eluh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011272323722966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304602195577336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wute\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490826347643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZZV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201464926871463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cumu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165717474570255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076210105049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36785668734480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903349042505629\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hivw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610064942324531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304798815103790\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5478945642736944\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4751420352853959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"owup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267877952277065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334797579047916\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hube\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375293783192086\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018726364483700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4050281225279584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KAU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061211816513\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tigj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105852629392066\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ROZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5486885106724681\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271215608220359\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011106863912712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018318606695570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026948886508680\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"botp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496400620305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36238893985337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304219275033591\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XNX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347946066560521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pelu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4461730004744369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018831831652299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pigi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528770554789862\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903604761518959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372307839694870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334881039393985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mame\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011502976294420\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610494041504297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bimi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412240368591189\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334348829527115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"melg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528750019880571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304099034566002\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hauw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5424182535426426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4297914126463104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342954387167211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408538894037\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30068105525183\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5434938204997205\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5176579348579186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018944033180983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mack\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061958983455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304212063942487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zovv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528617472428075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026291603895431\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gugj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341666723457053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4884033513948491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezfu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018624543203059\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RHH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903430910113330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018447185936574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026369283511161\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36179514814243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341240906640784\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434576172553\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167504525326780\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304188519562113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377403061978688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4123876366507587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36058190174637\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123503687171987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011654650127564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334750754147480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4438968553237449\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lunu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343775070254076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30088327690870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011713082110455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4447253280614817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334541208371671\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5424947653298934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304529259094033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610325458132661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"citi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018372629074842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340876203533247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528298466050314\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026737986700614\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011035734897291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418044061688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375774022503217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903703788503331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5193936330209793\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377757967045672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341565431009463\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KJR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4934074974345314\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528435434290867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6272420386564221\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"adea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374744717811143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36628783453489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bika\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6201246065391743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377263051565485\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348984708197500\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201400182997261\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187923064189175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146158176946077\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342906225276810\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TNH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236076333525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pulk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379273925585534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610510598754389\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"losc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018339168145606\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36200169626979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5198617874681127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334000753437726\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089563416806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XGR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377405744928675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"povi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528286571143264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LWB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018898005247883\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"upon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378822324195872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528333888707355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wowm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5428116943522455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011943134535470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011591269354017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340046298696610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903309447241618\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418786084542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342580986449948\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610131365184849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4167145447179767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5436079862212435\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ulhu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271400289795362\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011694460530524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36647979948235\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347995683854049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334120193639663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011714457003622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5448794107027150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825908624662\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5132120128394703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36897532088298\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610803091669356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4535544698590901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334460854335593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201484606448598\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334320083550356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342963700298074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"padv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304482405994963\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181524244330634\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468486493063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610014526526480\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vibe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903299802321040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013386010158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewio\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36318667019461\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610697835357652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5138106054150502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6296355335275044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zohb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018199384895966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VLK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610150103906727\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huhh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488213141907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334553555789660\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sotl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018938753350347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4005235269710553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334215803505088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018908056476628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610871989625863\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379985940637335\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lurk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4185481260320065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281115515528126\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061562597931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36405882019846\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igme\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098977929080\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903187585332955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670343733002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528837300490333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tago\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378037417979070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4653640456228696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"relr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334560928528170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FCZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377061980221703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349738828355136\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026802743181597\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610498238209966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HLE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342525170288966\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pied\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5101815539826568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304405327717451\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610822216922839\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201444276709893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610593109318167\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36347093679242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36069163793113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201439493819095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lejd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201469262424371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4435609329028133\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30069883687146\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347421428131601\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"soag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453537078311\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026576044633106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mamd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5482506253086393\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36839865581366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zucl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30093501575376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340241379105710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"topb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903958853483476\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5415829324165828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vebe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898318446130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30006035650143\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610387212785135\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334263229542434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hija\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018421711341369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026077909954463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5159165969396398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304900818309198\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018791713657982\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026946942524022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6210851569569725\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334631336488271\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"goiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6277463683314473\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EER\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528109834660587\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vetd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373240188676728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528676269015636\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cehm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304696616770512\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344495698832539\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zubs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106900606426891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610488925120527\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5121227798517316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DCQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346704247691652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zips\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371626638489807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026952099026894\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011262375632817\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201498693888128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903774124008558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018433871454460\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201448557804521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4036678906318301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610620704937891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018044052988158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"logv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334669423857255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018642519113888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334254830084064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167230666757282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4500109200652077\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011973297857536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"amaz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304027642490554\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374472580890933\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"razs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018482257550847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528498361054979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iria\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373254396477548\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903765473468807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mapa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197389983794727\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HIL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304945098550052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umuu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5433440830766659\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464753485754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052287451665\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6221819408979923\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347631868661194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528075379093544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304091301569728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5440477362001353\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018476121562178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445799596964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mokw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220844535084646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026145428912997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nufj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011075753548391\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4138620405148950\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349971392848406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026220471336012\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oluc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4325574277773903\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5479455293548910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011282946387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528681323883482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487718916214560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334549852952191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bahu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492946213374570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4064567478671483\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4600369294734632\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZUM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528479270718045\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tijb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6298423359224237\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018561823662515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pujv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5157325798996832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903832498435524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6249298949094575\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348448684681978\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342646725319153\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425630187556\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013581671598\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30022406006005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259524876804646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528443473180007\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431155315843\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334863363656542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018067467092753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610994528352599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"joho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106161644859177\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372258375378628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"maws\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304688194897387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KTX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334477607964156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349925670284205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334485778659208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vorg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30017253382723\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304242607679295\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fadh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349640501452117\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4298972528308409\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528631712188225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376627298948616\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026403727942946\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528015596150875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dahv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340865751274304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36020011073885\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vaww\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903153549161088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304841211778581\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903037342219658\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373092712050718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018726512079202\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4270806425344368\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30008633405805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36173657359835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026500704104091\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5439118811902691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999257418819\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026164965206010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36488848633918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4135596699165392\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"howo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011844935587597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903586577553652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414768583543468\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018222138039853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4960595932920217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420552063841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30050284221693\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349893554880391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zudm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5109643617659418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792395253580\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026110466874111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304881083479983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pimc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528199768372143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4607056291047182\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610885109651385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5195789851164139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334547976330161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026343321625291\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rekv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346441686184523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011518801297446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528736587152501\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199868125617639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poge\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326901817669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018172496784659\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528811023508481\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026298773318748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jovb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143859979466212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271206222416481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279730125826506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30095742724986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vejz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36844707756366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187930882494299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334436046170957\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903465628810322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lanz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5456405010830163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118881769988776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267637950156954\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371041469680476\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528504432779021\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36755060320139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670524526340\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YMU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026245816848835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340166667712143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6288463610643009\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nelf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011823628323437\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026282181028263\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zair\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201458094280440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4755582971108689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903796104301679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610126790738706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6214920739508446\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018488667565481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atte\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011821093721127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ECX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104324810756872\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wisj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304518761101584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011484920376316\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gemc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011864090302848\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4807767391577567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372277604514738\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}}]}",
CURLOPT_HTTPHEADER => [
"Date: REPLACE_THIS_VALUE",
"Delegation-ID: REPLACE_THIS_VALUE",
"Digest: REPLACE_THIS_VALUE",
"PSU-Agent: REPLACE_THIS_VALUE",
"PSU-Consent-ID: REPLACE_THIS_VALUE",
"PSU-Corporate-ID: REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type: REPLACE_THIS_VALUE",
"PSU-Device-Fingerprint: REPLACE_THIS_VALUE",
"PSU-Device-ID: REPLACE_THIS_VALUE",
"PSU-Geo-Location: GEO:1.111111;-1.111111",
"PSU-ID: REPLACE_THIS_VALUE",
"PSU-ID-Type: REPLACE_THIS_VALUE",
"PSU-IP-Address: REPLACE_THIS_VALUE",
"PSU-IP-Port: REPLACE_THIS_VALUE",
"Signature: REPLACE_THIS_VALUE",
"TPP-Certificate: REPLACE_THIS_VALUE",
"TPP-Delegated-Preferred: REPLACE_THIS_VALUE",
"TPP-Redirect-URI: REPLACE_THIS_VALUE",
"TPP-Request-ID: REPLACE_THIS_VALUE",
"TPP-Transaction-ID: REPLACE_THIS_VALUE",
"Transaction-SCA-Performed: REPLACE_THIS_VALUE",
"X-IBM-Client-Id: REPLACE_THIS_KEY",
"accept: application/json",
"content-type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
x
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\"
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528540050673369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jism\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026204005028626\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018771388484995\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5411755248541998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528457986234648\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dajo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5449054197268712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528606398118886\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266495377678436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018152476141799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etuh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610297224926470\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5410065703822060\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5459460276173805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BFI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018267123100475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jenf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334030206173123\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058919510786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nacc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026716251639681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ISN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304979428927888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kogm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903202326462225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334072096645299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bopc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347069896673883\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5158426720078837\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vevo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30051776401355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373061549264354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gaka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528131759956881\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026552417789288\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304366205125094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QKK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903316123839938\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496424860879\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FNU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299438673051982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375991437150547\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36440788980700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5122345751765653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011802443816841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"celo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6295259515204561\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JSE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198105399573078\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610859529530669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777323039282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36382630247096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FAE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610026661009411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345970566472757\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903855001576674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347297679594931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6247039948697030\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lild\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377745284233410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026624327927959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36943491237722\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334114780684364\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6205621851826175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30053207757884\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tilf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36150979295871\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018232473211769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334848177676224\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610883946798105\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"futd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304011193600217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334351602081565\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"salz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375188093656806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018401491192059\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370063866749390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610705634406404\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dupe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334925110859909\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199722370661505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610087920726187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011373368426115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610793382861061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378000685418130\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebop\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334496214674669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903332535980343\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334300477364366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30051975216034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tevi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610076110785574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304084896902925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaid\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334631700968213\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258969660429921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pikd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026112050616965\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30015575272523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ildu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018288976692194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378749546251086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30032315816378\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4844836781323257\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tefm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4087554525336529\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343639982430366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372565085998176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36727366799134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413037263433148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5142239482541044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610230939415109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304555402239159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zake\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610527279690740\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343552189301076\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zoho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30088203040919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349070680157982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"favt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018768939578747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018017118023665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376930782124409\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201459288618817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903231347644636\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026021267410858\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nats\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897158979824301\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304434394913322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dabe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201491398555597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610157158193242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"enbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197233866658627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374715986335824\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"boiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4477912851634099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903858662966507\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wadl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782411910562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348145058775333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jiru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36718090116083\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4299824982579935\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fafg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4271808080411416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304515410216284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sein\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30039833148630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264138817276351\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ufur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026762564721477\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610785994287867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"befo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011482439677562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36107238042304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026853515794828\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5472618146006280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wegr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344100297445705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5157401329492029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473544052497\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5453937136225301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"otsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201426204409050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304498079742793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304458595341983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201469946663022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vami\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4345773764365308\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018446090769708\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hidu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528866442982931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018732753322194\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehgo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36587540158171\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30025498032870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cong\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528632236625809\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5105348177356231\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5170344966746724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825098303630\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011726004035790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304660696128736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aros\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011416714071240\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30075405673639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36182448872774\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528244969546663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493363481585\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011024681829937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"live\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018165332419894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528831685080470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"labr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903695615354005\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528383581531248\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wane\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026082046547519\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026140130657063\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011114388894753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36593176251504\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cogn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661654661303\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610756417742663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozgu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30029192167925\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146601025882654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415509325418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6225434734830141\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uwav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304042513223042\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379100957897232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30023190150975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271762617054592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346981990387270\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011344831763293\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4384204076140371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610235997425031\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201401849948747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026532390106577\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259800059171387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528981463178127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377927706849342\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345856994277423\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36841027377139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NWX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4526140305176860\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377859779269027\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4810419687893655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5146770540755974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128525195545324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fodf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903496405575531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30071181727921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suwa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36978989785279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610564490627144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4678256166430133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5186381754241403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naib\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011729816196560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334718000239559\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zetu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36345619290296\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610878174467969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610982017614959\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334761927084799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gurf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201470236157709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610766758382391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374783498409792\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528782203740915\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201444305722198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481381864499661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30063334953025\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026406630906403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488896671282680\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903237765676380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026298799288271\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011220854057682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528453115577254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026825305594410\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610031147056465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30091820352949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mecb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165056248565758\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370370904563570\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030934408137\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334593188579849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wavh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5408225568898506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379980324375677\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36266507854425\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5435461511763672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hise\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6227322037215276\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5405519110708475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011050889395850\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011913557499652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371523535239312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903224934302411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334757190181510\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6252195539027268\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ataf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073641062709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903075199482128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"simw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610548271456609\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281077690185272\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5485697748372279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304159561808373\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4977778017163231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BCD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445640683086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"viju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201433848151676\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304539610324276\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334263258027851\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018281224403100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4320499797991170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610799207893528\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bavw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4574588423888595\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026147552842149\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udeg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304852095337410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4628640850666881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nakh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026574400028102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304001656754429\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5167258801521206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4714101273505532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pucr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334920696485070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5487954471454347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415948113193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528775329405264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jesa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304787154144705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LIG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076402540839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903607661527558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36571714526744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"belo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528091915388660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058941813992\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"toki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528417931872710\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610796374521049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123840684396294\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334966280413226\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423590560830935\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257045487197388\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492200263427544\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026024446289599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903805787949900\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005505170967\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201402335436445\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347924958166814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4394329603831255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4440823132059499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"masa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5476159159463734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6243880073706664\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"foum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346613664968917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378122122311932\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291754358603600\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483602092963899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269858862251182\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VQR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477257144144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018719773318914\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026425755435949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026277637530417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5414668986298100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ukot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434593242660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187353515533104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334169642300245\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36247944559769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kone\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468343046955\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6294805958137584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5119966072674640\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528165309788584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201409785676974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5488488207651925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334762372346154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903539228013543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"damo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5158175623184784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124947736963549\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660651169265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026927870325939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340790738786867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403289096767034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528267124406176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026961137748617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aciu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026579822017310\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528544617527019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mase\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4894552991866105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374219451337977\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304838429506374\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026711850851613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143176726833226\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OKQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963411636320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lued\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30002527240998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349273008705538\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"capb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334676257050105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286943890069266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304759222469281\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026783955372845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jina\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528641808879728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026190386433503\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528473201271315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429229207145738\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36127520487264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610743633909227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334969556488682\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903533457384774\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tolv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334507399444593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373521111182854\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412102187897637\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6233664128939955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ohia\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018328086706607\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011158498642354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011312583413219\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792310552892\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jupc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345380082611617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011265078423905\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001664074467\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334116089167611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334324169490412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36406332797544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kije\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011530416479566\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304848589291139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tugw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379432115620309\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011363855347650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5406080312758833\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201458978318530\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nebo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304176108018472\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610238462602563\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wirl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4068592242599170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30023167875869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dohe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6265364681130107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347325798078468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903149633874701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ILL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304415096936380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065736632511\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011427454630590\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372129183869621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124418917354122\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5420343194758509\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5408239663943422\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011103054767047\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304829034180127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ifeu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528039952327323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304941694941290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ofwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898764372152\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MOT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5160155846425574\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372501573404344\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610735059859191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334797863777475\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011722635986881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5180456772003195\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201423236257185\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vonr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903564190948385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528698288008665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304555291751413\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36992797272461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487875605410154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061288277961\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4148886272150712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011222888698879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4856233412683645\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"THP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30020964229241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rerg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011156538880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903799780600844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018071408658185\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334399390500809\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610746074319160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104199970064865\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bisn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372030922634799\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403604669716\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6293943994986002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018772649311498\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495102554846\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372289152317976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5150158668868139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IDL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6250581632947704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011836635901516\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377920610875438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903661534954770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903355506828241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vulu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334763710686483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464909106981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sido\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343486656764666\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZXX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610045774289413\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"faho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30031482547402\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610973944785053\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334859578819156\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36990838406742\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011369312852315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SZJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346540437466939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mine\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903253851809017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011719834864976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344924904041155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334970064340639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018678808466504\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6279110548016029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610894284850721\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610021306704294\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ogli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36622749399407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610349834242465\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nokr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36825386959991\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4015343757399869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018360459136120\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374693998701376\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011084827043892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433701798712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sech\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903269642162490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MCJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240930124716106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36049383434698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201485944633841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304070252823961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610237578716994\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610164384722968\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343911905919068\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4007688991161784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429268585831329\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puna\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4885502835597987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433005658711\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165539080084129\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378030660521889\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30095329591717\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4813404818690482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuad\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413800178472778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528130053685675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349757957096535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026122460118361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vome\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110398496535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379400421412075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sike\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473010145023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304821025546853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bipm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4154016542537743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198429228976033\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334563111648896\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346151115589289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304669225362187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304199281940692\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jicc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528546370742537\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4463934994023739\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atuo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431432872491\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6226981790409797\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349060552162004\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201440230207719\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149542944705765\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30054113263736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135478462975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528654259528868\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4334181927666864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342131780638482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ipli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143327631624248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903460961898786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zect\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340040674324830\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MLB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026074376793144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30081676333036\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5455296042832900\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171958378165139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011207965229649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hubw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334345012817345\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018631246750112\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304003726105822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011892426602177\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mepb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018231073135436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299152736288834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334568918054990\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334410388344843\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104724710645507\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201414132783812\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334930237069085\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334490835087583\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zejf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4988308944781678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903410190128331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rawp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304622733690904\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36730629940750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346269475818161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201428509495339\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610451726168988\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4402041354793960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lent\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334953925474458\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528977723602823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"civh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026916977895498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903340313901308\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30086474602532\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374313156656284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304933837118662\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OEU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6205936719207917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rasg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36676301549130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30085697117484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lalu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438813170733254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528583141842049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bule\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610764368217842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018456935630262\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dukv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528405031552498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376547519407046\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gapf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5429393004204989\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6245427165202505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cimb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011679247547040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QWR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345379728142888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341841174568514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334176357363631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236272332331832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026986296162144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lacl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345455439986217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144683770773439\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vesd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269527055798453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RXN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026594017231550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kumo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4285096129108037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118531507085688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104372814991847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30040352129266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065623383822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334654571584737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"locw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201439605105151\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011066470415543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rifa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991018380872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610540679896403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sanu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6263105364241451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30066783169589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kena\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5129922772570503\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343666812875510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341348994980655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334564386588213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018690794581568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201474932209814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tioz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201451162901559\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026791447045895\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030368380653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4502744788882718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"voki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334199744840574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374155716315632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wetj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528056320560781\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30068380935602\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"komf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340311027064534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018090201771573\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rogu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5427595855445923\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011775818678899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6234486516689201\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304676745486800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fero\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348132988867455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BMO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343766949415386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fejo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999399973523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528067859719433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372402827216677\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181090482308575\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiwi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903325038779469\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011935138517074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5400462438850064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36961166215096\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011622547209028\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528192108655764\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wecm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047939505694\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528894507613845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"segp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438792426983907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963148930210\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201462329571482\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470904802800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fomo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903919024430325\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026045714742217\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hife\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334651600883460\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36210380096621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"solb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026350235285773\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30059585713605\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36858479401894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5499352269470631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484082229173\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4793795351826092\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201427968080384\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026975393278960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nafe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123167721193157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334170654101919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuek\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610994697159718\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370639305610309\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018975321878037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026135860993050\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pana\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36324741946026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4369691012330455\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hapw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610861230206175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5110360098981982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4059878985864256\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4960750067978163\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piat\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304076915652747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6275157439742324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011862485911918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349794011379771\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"izus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026235674226026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441042235368303\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5446742450702160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011879957682140\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"banh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304144512033644\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334649103975734\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tett\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903745561388794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5446080673413509\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011403171104243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011410999241586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"affa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018404026624398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403765868364001\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beoh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5118839823454417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341939550399999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lomc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343150571442630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ABT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402959853645075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528808692542593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36226869459320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160934508560542\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610075246018678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6246194136820695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HBT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347302592730214\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484038109222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36613496625458\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4725451346852750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4905980383655579\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wamo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528709356677412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011390555009736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ride\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304720178260934\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XST\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903317028268124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183993514685050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JQD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018533033851741\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528657349062046\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RNQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610962739801704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026452459760943\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018236464273910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cazh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001690962628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903886509613123\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sosv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376352969978855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5469971952915721\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vasi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371121024019681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347427282343554\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vohs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374793306543633\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108600302712754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026248901199940\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610207154429551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mifl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279373124692304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903502408265515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236101662730695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005285981468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344086736764410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903963768158874\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30043547582415\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348643688227444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610572295236763\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36219997744358\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ubal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528593609704326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018868573707071\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"agej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018615589111354\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340361945417926\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6294315973155777\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379817480841904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6280778649210670\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620421643240\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gudp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334444467167866\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334143469913273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6255078056749323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371238243716416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903009643201453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334442866879065\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iriz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018269078220779\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5463268657507127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5474598426931589\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4224517809745081\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"unai\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018235104893426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343466435300206\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"durd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5460641912958603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253455682707531\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"acvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6247264311411930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304112916120366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343563906255297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30002702705526\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903466948732105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011199554665533\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991885845767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5494073290943249\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304304623146533\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064964219897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jotp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903869921444392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5131035701734466\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etiz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5116449079255302\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334789447585714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciij\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026098638710588\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528531370645740\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tols\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36634935381099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304365212712654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"depl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6256697135925353\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375761792030000\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197244238032334\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304731603527755\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kigo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6297467892524133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4761491631802099\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hiso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334375043746056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461579413247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903020924434176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026751597613280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660547330535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528944279530378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348267028870596\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903101664358534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488599906196\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334860412984545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ragu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495670147874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304811236792776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903460842784999\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528888177675704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473643420264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4221544610473193\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528271281220347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4078229682569805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018750489722230\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011355863490969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aduz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903669111288462\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018768066080160\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pofe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379016589949987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348300226907850\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"comw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528307367641483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5106985373608672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903298938063252\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064578116836\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"urlu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018410685382442\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201497653929807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pepj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334869494855655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528227456683156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utuk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026920857250568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DLA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4626729465358760\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183450110552408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36918816311543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"esow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903089707429778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610788206615867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201420491857428\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528545604291691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dibv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378969842044288\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026616750226875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011586877934465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304201527809879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36745505768919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KQW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903946642202562\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bend\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334378598781684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240592673051499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484882464897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342794308617005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ivev\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011629742506140\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488400216184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610194477815684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201492402874735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"retu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304620738841456\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346889359898532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kufa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528423421804643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610164012583444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376160498411243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5123116511405545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4676678919545994\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011819009824555\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"somi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903053193185484\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4083130184978655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"datb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610869353682981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372357475169299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lugu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223907672864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026182407189537\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pure\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026064194767180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36693692404478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kock\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903473540534822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610738099126167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610335605459222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304948922658901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528896547898807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903672069072227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011399913264701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334445551523229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379092177254742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VGA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528042362616491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emeb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903106678798203\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777296504718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334778207242681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253035922256331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018930943158078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334150771216576\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098233708880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304735112553467\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nanf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018352074446521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026782738630776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4904847057116611\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FFZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345497419396876\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muzi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528276682082089\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352532231166\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"giep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903440488063924\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304761696561254\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201475253636766\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481139201464917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36935016869088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BGT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011244240964369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528777115145088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340801396591893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"memw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047950561790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304155694209125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610676544335431\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TBW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528635186661682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wepd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304846029202187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5474820608102833\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423351271432655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4353992286414183\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zicl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431587382874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461628087265\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026944781101572\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304362325224487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304142623808367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378658357011036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304856768198769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903142615238482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026299271317521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30003574325690\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5491022074558395\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018624858403336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"navp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487691491571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610457830166610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irvu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528425128557960\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IIC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334085272700795\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"batu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342406103908972\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334524259373267\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sopp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334343555051885\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257044609861856\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6222946086399824\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373867712827946\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378732288306466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36054975189098\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018782954691160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026966566655175\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304390306216875\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4354913768560839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ocei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374889303890652\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026115723757553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30044105991873\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018035733506484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"canu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013852105987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304402128521091\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"olau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304829615555275\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610255547005703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36545917549075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026457374666737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372638054834282\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6283751190444821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334811136620899\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903211578057120\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528337645142392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011982691997897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334062984074488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018032846386870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36309208808983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334751631281484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewde\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610526840058262\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286816468421822\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"judu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36574021942414\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165281156968766\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hefo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304514225818921\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373251186259474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mica\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5490869458882002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477414794781\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zemu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4526764207051119\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165572081528331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442795206734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304233007019646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"togn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344082867323241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30094358730635\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201497046157686\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4899015315040208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610960303123752\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304771055815134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610810899203627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346241126469116\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201459968242078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375250666430777\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tivk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903313309845888\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5492218205486899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"himu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528590005069742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408518699521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026485488775466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334339727854628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vubb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304860432450291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30031003069084\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bono\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528031413902604\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376104384269927\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tisp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610641694052673\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903422103192478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36752306715750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4434871616205482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376440812655869\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376968448062159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hobu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30034188035508\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YZF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4377612412595323\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377830246853180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344149272608613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018431796551931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201452678494857\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abdi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304982345574627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610901067291286\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30079199207562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6222149887346223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269546634312206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528495221634180\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ritu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4565803173398831\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5151113464611919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334865829110261\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341579587508491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"binu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528505000220579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018269908709678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dopo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111684921194821\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6216315346756934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sisg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304785712053947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ENT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6227654284576434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sirw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334607302719055\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062287266823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aruf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304092083707502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903665541372330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36037408593663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6208388598778054\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201476284656161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610826305420969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011596652916348\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MXY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026300395816610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vopi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304948010353803\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ASD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334202848714438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4472638422924868\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373679328896391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018576172206193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6254593978345670\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6219572419667870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026716954011956\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tezj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018850299849155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334979092259745\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201414213173131\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018116146567477\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cubp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30016551541329\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403586462536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493414006878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6274880565675973\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dize\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349686204695635\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610601517679532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4347075443156043\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348545664012015\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijce\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018200314390761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5411124027736834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377402234381838\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903624424498639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011618603095376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342633340288997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"inze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528619205249786\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346549707594676\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"seun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291526311456379\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026404594463982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sira\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374166148939220\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374891195310534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rehc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201455209108250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018762421465646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903938368475928\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5442259142167714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36699349903390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108936886385306\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342473244486326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011196246015564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370711229683033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347461546444650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4300359071324056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026040009325489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wapu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528925369516096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011814033512904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903050288359297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IBG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4250140894319386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223875926441\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011977316567844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kasm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6225313627139416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EVO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013140346146\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irud\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026844137501790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5120366824070964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345090401813063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444634256243279\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mush\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026730294268770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MNF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620827354673\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5430361180587755\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6292280611179914\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6226160589843892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018880804543985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304421490589841\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528803322834072\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36565237918198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378921190167195\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610812930858278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4219049993018304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luhf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201436277959238\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304517315957939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"papm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253344493254026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528562397590650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zujs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903889117016093\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610370202511158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018126623656305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340891102779551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304438748707249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018976268934361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30045752578525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018569975511687\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374036339842212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4775349756192965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zibc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5179540132551168\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304239073727525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vehz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472107479672249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4491866172789689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bedd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220949650582603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334214436467592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zafo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334606565349832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6285317872466793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onec\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374926346908057\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373479068273640\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jebi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36244591089737\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470274201260\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661639844248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231851483949610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zepo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5481871746594895\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36846257848519\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182581956025223\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488204854396\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36537428391550\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6246480862945545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414840060355730\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903844152714300\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cerl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4297496218237372\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GRU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104043187320639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lemv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903505532353180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018834827986861\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528966010290715\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"URH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30060245978026\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dugo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346431151468998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201454320036748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udnu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528238307413586\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370351452606052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gava\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4944253327203283\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4072544090918642\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"curn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149818654820915\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011119628314454\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528206154148886\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026592305110825\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6237544165812024\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5422739581807411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011620557791034\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461022965611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018370227300239\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LDZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528295655720830\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pusg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378891056476628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026470143248976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5495072781007307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441776705653963\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6202339096091058\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QME\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018320042450891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304899926832424\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378757154749986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026462882992278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144328437181036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sivo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610638931432163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058278919107\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610711783151486\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026388418952355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"harc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011337539447490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342459416733710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026265988024502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903878127488228\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"difh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304619206286269\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903669197197157\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aske\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018790175186159\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5101395889118999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lics\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105215391559181\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36343530151184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490918568247\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610838413632674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guks\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30066022165109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304597809295251\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ihao\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018911061375587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903894702107430\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"honu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018600266635404\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610046118129786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oraj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5461422542649451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5115091176240158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342185226585012\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4865395200738474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897131002247204\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WEI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610104447325813\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"duwb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304430030355480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5498856303866290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334556853571987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201413759988167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eksu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304675358083995\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903818856281873\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201494594137061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903109404025040\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"johe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370421399984761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420477591959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pids\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376853909523719\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334156669032025\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018059267785678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TVV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528253757542446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30053423099897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6280265876556421\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487924018878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026262137219851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111080259501184\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30028962607375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903168400503806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610217889837374\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135582315150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201434517441273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruca\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037219379621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374878485267243\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iwve\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201400355787788\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5150110676811965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528076986297148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528971287371750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lama\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472914673754768\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018634105836543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528129383169608\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6213592896175110\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4103299274044961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334681677903891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"noct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304374747630373\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528164617975744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dusd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011466750552769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201455313059233\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903362132040258\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610885126642599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kusv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528242452230241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4900072829070632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160316814938713\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JLW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304142541220125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4559324788675164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018085809128200\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cefu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528579593978711\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5491768624829617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kabn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36200247184728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376937222403202\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"teza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30036198105973\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5190553186417256\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rask\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782972736208\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903676411398131\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wope\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4650320572850698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343984084510461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304732348708312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352985392796\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fewe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610294065845455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026855702104125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36855389066023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304229515279631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baed\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375121417306410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011489005275754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36648136289976\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011513604820213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icit\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340801717622724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610755861934735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kisu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30019279975118\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201411601105618\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304059735993194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011051860281044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6274550015128564\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334760840182433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011384606109231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011656779760043\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528612514165157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304483888659347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elzo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182584503191407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240896391660337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hioc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5192397056568592\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334690019159757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018772176688094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011865608389383\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334357077225579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467231934219425\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"akni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026508380510515\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610720523272049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304834832240594\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026096281834622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348372550290443\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344840947907550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5451565262736072\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346515844527564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tutr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334028783021210\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610572431481414\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6250028750201449\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379283437612148\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36149926224638\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528881324184019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zisf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340547474536876\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467770191486821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zewa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528695023715679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610142935313586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304064941827483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304334872329589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4201892119131794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343201877892828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvmu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026113393708337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026579294077461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903967857422703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304898254902627\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304991438948242\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4977888078242772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"divk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011475491217731\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36838831961181\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"misn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089680633861\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377717365692772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gidl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377778861886367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36597682577757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371332838840754\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018882646068981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nohj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269397715631316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903436858275908\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"natu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376508056604981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444071859660619\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528277228290186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334635039512782\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326761865105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304934750330284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304717668587107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610180616867983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453819203488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5125306371330275\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tegk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36232197345827\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483871723350608\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610855050443199\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258554778868416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rema\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011470028434917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201481089448434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379079640126250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BTN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345893471195851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073805790855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610492997473897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuzk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304149141443130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018009830126124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"date\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304932296214525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231642449951638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mucj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171931892003284\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5164370031918707\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011938920858581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AZZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5473282117366352\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nepe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903786240905053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026419723881375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tidb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36653731063255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903926855139420\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hodv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334116589621158\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201478277076936\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903787255180947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5471814513918378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528569863639416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374001249817621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"waja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442311655505\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30017095418297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903706313401590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011627289283651\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026658902749289\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304441513695987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187447726537647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6207325054941223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6238813848002660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253696075993010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"morf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253766111879307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376059341420775\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5131163103794902\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011499639440401\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4275574361327178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334481269015174\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mabu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201438920498952\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264264065230534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guaj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371835175091211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903735869205121\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334497782816971\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30009799154229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nidd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018976945225647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345904891723048\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36552617668254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4386047110327399\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36242122800267\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334765169024918\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mirs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201447378459440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334918090520427\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018192055233930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NBE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402386435896416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5190822672114234\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304322894826567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052314041406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018249205440219\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tore\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488820924736037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340112569925706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414770575784324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375623539120801\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037218662324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340741265395523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ronl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026011016390642\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4833783896731136\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36001354663953\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304503052288704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"birz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6213108098901102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334580615358152\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"okuc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30060604839082\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334779387624052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374140686161521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377542344325264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5486257641853617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018184150067073\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528130648425322\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018387421824749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6281915794747622\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HCN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5179810791969369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528338150862408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062165562095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018641554252577\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343287776766478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"core\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334761912945293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5461015356202696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334666000711111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5189894326058987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903844975115164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610204566942412\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nucu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340183497931157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5490733300231232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4871234518434033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304189549170547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juzz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4227530897070590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528682454110232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dovp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026538381904102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425403897472\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fakg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30015692101621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128650891709600\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36277583710852\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XHX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201460479501663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266482626807438\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528652479383510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rali\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201445928990856\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MBI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011177449876150\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jeef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903108154126958\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30033873354083\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903319781491612\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6235435808714937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341048340938627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374605391515930\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304706636277099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610598352971638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wete\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5140590394309355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349206302527109\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348098274916514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5185504589080255\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diln\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5499355283068265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346325750619789\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"odus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528461676302293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026896082425805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibsa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110246349597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334993343440749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026225763600009\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026100926982331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342436603669568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903095945498103\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pume\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6283412601547435\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340717420824649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346346240758052\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340134940998244\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nobe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018304871036823\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341394001963953\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487448078704337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528882504883289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"saco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5174028692029804\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5497388227328547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahva\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018083809863603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011296763584461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4028817552136076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343912673106003\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rual\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011030570071127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610050239701697\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eluh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011272323722966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304602195577336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wute\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490826347643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZZV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201464926871463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cumu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165717474570255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076210105049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36785668734480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903349042505629\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hivw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610064942324531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304798815103790\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5478945642736944\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4751420352853959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"owup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267877952277065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334797579047916\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hube\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375293783192086\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018726364483700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4050281225279584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KAU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061211816513\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tigj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105852629392066\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ROZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5486885106724681\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271215608220359\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011106863912712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018318606695570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026948886508680\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"botp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496400620305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36238893985337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304219275033591\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XNX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347946066560521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pelu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4461730004744369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018831831652299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pigi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528770554789862\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903604761518959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372307839694870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334881039393985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mame\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011502976294420\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610494041504297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bimi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412240368591189\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334348829527115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"melg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528750019880571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304099034566002\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hauw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5424182535426426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4297914126463104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342954387167211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408538894037\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30068105525183\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5434938204997205\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5176579348579186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018944033180983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mack\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061958983455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304212063942487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zovv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528617472428075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026291603895431\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gugj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341666723457053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4884033513948491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezfu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018624543203059\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RHH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903430910113330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018447185936574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026369283511161\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36179514814243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341240906640784\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434576172553\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167504525326780\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304188519562113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377403061978688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4123876366507587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36058190174637\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123503687171987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011654650127564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334750754147480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4438968553237449\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lunu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343775070254076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30088327690870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011713082110455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4447253280614817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334541208371671\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5424947653298934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304529259094033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610325458132661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"citi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018372629074842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340876203533247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528298466050314\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026737986700614\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011035734897291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418044061688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375774022503217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903703788503331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5193936330209793\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377757967045672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341565431009463\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KJR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4934074974345314\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528435434290867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6272420386564221\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"adea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374744717811143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36628783453489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bika\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6201246065391743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377263051565485\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348984708197500\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201400182997261\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187923064189175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146158176946077\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342906225276810\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TNH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236076333525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pulk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379273925585534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610510598754389\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"losc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018339168145606\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36200169626979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5198617874681127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334000753437726\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089563416806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XGR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377405744928675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"povi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528286571143264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LWB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018898005247883\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"upon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378822324195872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528333888707355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wowm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5428116943522455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011943134535470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011591269354017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340046298696610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903309447241618\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418786084542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342580986449948\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610131365184849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4167145447179767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5436079862212435\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ulhu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271400289795362\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011694460530524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36647979948235\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347995683854049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334120193639663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011714457003622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5448794107027150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825908624662\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5132120128394703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36897532088298\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610803091669356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4535544698590901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334460854335593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201484606448598\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334320083550356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342963700298074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"padv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304482405994963\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181524244330634\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468486493063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610014526526480\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vibe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903299802321040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013386010158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewio\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36318667019461\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610697835357652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5138106054150502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6296355335275044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zohb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018199384895966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VLK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610150103906727\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huhh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488213141907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334553555789660\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sotl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018938753350347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4005235269710553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334215803505088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018908056476628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610871989625863\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379985940637335\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lurk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4185481260320065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281115515528126\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061562597931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36405882019846\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igme\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098977929080\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903187585332955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670343733002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528837300490333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tago\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378037417979070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4653640456228696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"relr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334560928528170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FCZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377061980221703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349738828355136\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026802743181597\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610498238209966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HLE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342525170288966\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pied\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5101815539826568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304405327717451\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610822216922839\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201444276709893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610593109318167\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36347093679242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36069163793113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201439493819095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lejd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201469262424371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4435609329028133\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30069883687146\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347421428131601\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"soag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453537078311\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026576044633106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mamd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5482506253086393\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36839865581366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zucl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30093501575376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340241379105710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"topb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903958853483476\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5415829324165828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vebe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898318446130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30006035650143\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610387212785135\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334263229542434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hija\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018421711341369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026077909954463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5159165969396398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304900818309198\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018791713657982\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026946942524022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6210851569569725\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334631336488271\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"goiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6277463683314473\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EER\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528109834660587\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vetd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373240188676728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528676269015636\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cehm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304696616770512\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344495698832539\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zubs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106900606426891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610488925120527\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5121227798517316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DCQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346704247691652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zips\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371626638489807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026952099026894\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011262375632817\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201498693888128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903774124008558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018433871454460\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201448557804521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4036678906318301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610620704937891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018044052988158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"logv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334669423857255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018642519113888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334254830084064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167230666757282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4500109200652077\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011973297857536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"amaz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304027642490554\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374472580890933\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"razs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018482257550847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528498361054979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iria\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373254396477548\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903765473468807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mapa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197389983794727\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HIL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304945098550052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umuu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5433440830766659\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464753485754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052287451665\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6221819408979923\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347631868661194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528075379093544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304091301569728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5440477362001353\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018476121562178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445799596964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mokw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220844535084646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026145428912997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nufj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011075753548391\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4138620405148950\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349971392848406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026220471336012\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oluc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4325574277773903\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5479455293548910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011282946387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528681323883482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487718916214560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334549852952191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bahu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492946213374570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4064567478671483\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4600369294734632\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZUM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528479270718045\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tijb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6298423359224237\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018561823662515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pujv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5157325798996832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903832498435524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6249298949094575\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348448684681978\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342646725319153\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425630187556\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013581671598\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30022406006005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259524876804646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528443473180007\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431155315843\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334863363656542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018067467092753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610994528352599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"joho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106161644859177\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372258375378628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"maws\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304688194897387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KTX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334477607964156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349925670284205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334485778659208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vorg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30017253382723\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304242607679295\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fadh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349640501452117\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4298972528308409\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528631712188225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376627298948616\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026403727942946\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528015596150875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dahv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340865751274304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36020011073885\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vaww\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903153549161088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304841211778581\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903037342219658\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373092712050718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018726512079202\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4270806425344368\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30008633405805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36173657359835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026500704104091\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5439118811902691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999257418819\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026164965206010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36488848633918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4135596699165392\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"howo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011844935587597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903586577553652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414768583543468\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018222138039853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4960595932920217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420552063841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30050284221693\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349893554880391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zudm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5109643617659418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792395253580\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026110466874111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304881083479983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pimc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528199768372143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4607056291047182\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610885109651385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5195789851164139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334547976330161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026343321625291\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rekv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346441686184523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011518801297446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528736587152501\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199868125617639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poge\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326901817669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018172496784659\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528811023508481\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026298773318748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jovb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143859979466212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271206222416481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279730125826506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30095742724986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vejz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36844707756366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187930882494299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334436046170957\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903465628810322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lanz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5456405010830163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118881769988776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267637950156954\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371041469680476\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528504432779021\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36755060320139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670524526340\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YMU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026245816848835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340166667712143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6288463610643009\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nelf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011823628323437\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026282181028263\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zair\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201458094280440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4755582971108689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903796104301679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610126790738706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6214920739508446\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018488667565481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atte\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011821093721127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ECX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104324810756872\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wisj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304518761101584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011484920376316\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gemc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011864090302848\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4807767391577567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372277604514738\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}}]}");
Request request = new Request.Builder()
.url("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE")
.post(body)
.addHeader("X-IBM-Client-Id", "REPLACE_THIS_KEY")
.addHeader("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
.addHeader("TPP-Request-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-ID-Type", "REPLACE_THIS_VALUE")
.addHeader("PSU-Corporate-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-Corporate-ID-Type", "REPLACE_THIS_VALUE")
.addHeader("PSU-Consent-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-Agent", "REPLACE_THIS_VALUE")
.addHeader("PSU-IP-Address", "REPLACE_THIS_VALUE")
.addHeader("PSU-IP-Port", "REPLACE_THIS_VALUE")
.addHeader("PSU-Device-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-Device-Fingerprint", "REPLACE_THIS_VALUE")
.addHeader("Transaction-SCA-Performed", "REPLACE_THIS_VALUE")
.addHeader("PSU-Geo-Location", "GEO:1.111111;-1.111111")
.addHeader("TPP-Redirect-URI", "REPLACE_THIS_VALUE")
.addHeader("TPP-Delegated-Preferred", "REPLACE_THIS_VALUE")
.addHeader("Delegation-ID", "REPLACE_THIS_VALUE")
.addHeader("Signature", "REPLACE_THIS_VALUE")
.addHeader("TPP-Certificate", "REPLACE_THIS_VALUE")
.addHeader("Date", "REPLACE_THIS_VALUE")
.addHeader("Digest", "REPLACE_THIS_VALUE")
.addHeader("content-type", "application/json")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
x
const request = require('request');
const options = {
method: 'POST',
url: 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers',
qs: {tppRedirectPreferred: 'REPLACE_THIS_VALUE'},
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'TPP-Transaction-ID': 'REPLACE_THIS_VALUE',
'TPP-Request-ID': 'REPLACE_THIS_VALUE',
'PSU-ID': 'REPLACE_THIS_VALUE',
'PSU-ID-Type': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID-Type': 'REPLACE_THIS_VALUE',
'PSU-Consent-ID': 'REPLACE_THIS_VALUE',
'PSU-Agent': 'REPLACE_THIS_VALUE',
'PSU-IP-Address': 'REPLACE_THIS_VALUE',
'PSU-IP-Port': 'REPLACE_THIS_VALUE',
'PSU-Device-ID': 'REPLACE_THIS_VALUE',
'PSU-Device-Fingerprint': 'REPLACE_THIS_VALUE',
'Transaction-SCA-Performed': 'REPLACE_THIS_VALUE',
'PSU-Geo-Location': 'GEO:1.111111;-1.111111',
'TPP-Redirect-URI': 'REPLACE_THIS_VALUE',
'TPP-Delegated-Preferred': 'REPLACE_THIS_VALUE',
'Delegation-ID': 'REPLACE_THIS_VALUE',
Signature: 'REPLACE_THIS_VALUE',
'TPP-Certificate': 'REPLACE_THIS_VALUE',
Date: 'REPLACE_THIS_VALUE',
Digest: 'REPLACE_THIS_VALUE',
'content-type': 'application/json',
accept: 'application/json'
},
body: {
debtorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SXR'},
debtorName: 'Lucas Sparks',
batchBookingPreferred: false,
paymentInformationId: '3565709980336128',
requestedExecutionDate: '2001-01-05',
payments: [
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OWI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903448233
const request = require('request');
const options = {
method: 'POST',
url: 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers',
qs: {tppRedirectPreferred: 'REPLACE_THIS_VALUE'},
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'TPP-Transaction-ID': 'REPLACE_THIS_VALUE',
'TPP-Request-ID': 'REPLACE_THIS_VALUE',
'PSU-ID': 'REPLACE_THIS_VALUE',
'PSU-ID-Type': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID-Type': 'REPLACE_THIS_VALUE',
'PSU-Consent-ID': 'REPLACE_THIS_VALUE',
'PSU-Agent': 'REPLACE_THIS_VALUE',
'PSU-IP-Address': 'REPLACE_THIS_VALUE',
'PSU-IP-Port': 'REPLACE_THIS_VALUE',
'PSU-Device-ID': 'REPLACE_THIS_VALUE',
'PSU-Device-Fingerprint': 'REPLACE_THIS_VALUE',
'Transaction-SCA-Performed': 'REPLACE_THIS_VALUE',
'PSU-Geo-Location': 'GEO:1.111111;-1.111111',
'TPP-Redirect-URI': 'REPLACE_THIS_VALUE',
'TPP-Delegated-Preferred': 'REPLACE_THIS_VALUE',
'Delegation-ID': 'REPLACE_THIS_VALUE',
Signature: 'REPLACE_THIS_VALUE',
'TPP-Certificate': 'REPLACE_THIS_VALUE',
Date: 'REPLACE_THIS_VALUE',
Digest: 'REPLACE_THIS_VALUE',
'content-type': 'application/json',
accept: 'application/json'
},
body: {
debtorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SXR'},
debtorName: 'Lucas Sparks',
batchBookingPreferred: false,
paymentInformationId: '3565709980336128',
requestedExecutionDate: '2001-01-05',
payments: [
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OWI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903448233539106',
remittanceInformationUnstructured: '',
purposeCode: 'icol',
chargeBearer: 'SHAR',
creditorAgentName: '30074838931581',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CKN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304236509352134',
remittanceInformationUnstructured: '',
purposeCode: 'dufo',
chargeBearer: 'SHAR',
creditorAgentName: '5497962127109205',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NML'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528540050673369',
remittanceInformationUnstructured: '',
purposeCode: 'jism',
chargeBearer: 'SHAR',
creditorAgentName: '4026204005028626',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HSB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018771388484995',
remittanceInformationUnstructured: '',
purposeCode: 'weba',
chargeBearer: 'SHAR',
creditorAgentName: '5411755248541998',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LNN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528457986234648',
remittanceInformationUnstructured: '',
purposeCode: 'dajo',
chargeBearer: 'SHAR',
creditorAgentName: '5449054197268712',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ARX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528606398118886',
remittanceInformationUnstructured: '',
purposeCode: 'ludg',
chargeBearer: 'SHAR',
creditorAgentName: '6266495377678436',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BWI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018152476141799',
remittanceInformationUnstructured: '',
purposeCode: 'etuh',
chargeBearer: 'SHAR',
creditorAgentName: '5610297224926470',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LSD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5410065703822060',
remittanceInformationUnstructured: '',
purposeCode: 'taon',
chargeBearer: 'SHAR',
creditorAgentName: '5459460276173805',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BFI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018267123100475',
remittanceInformationUnstructured: '',
purposeCode: 'jenf',
chargeBearer: 'SHAR',
creditorAgentName: '6334030206173123',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GCE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30058919510786',
remittanceInformationUnstructured: '',
purposeCode: 'nacc',
chargeBearer: 'SHAR',
creditorAgentName: '4026716251639681',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ISN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304979428927888',
remittanceInformationUnstructured: '',
purposeCode: 'kogm',
chargeBearer: 'SHAR',
creditorAgentName: '4903202326462225',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RLJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334072096645299',
remittanceInformationUnstructured: '',
purposeCode: 'bopc',
chargeBearer: 'SHAR',
creditorAgentName: '347069896673883',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IUW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5158426720078837',
remittanceInformationUnstructured: '',
purposeCode: 'vevo',
chargeBearer: 'SHAR',
creditorAgentName: '30051776401355',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GVL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373061549264354',
remittanceInformationUnstructured: '',
purposeCode: 'gaka',
chargeBearer: 'SHAR',
creditorAgentName: '3528131759956881',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GPH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026552417789288',
remittanceInformationUnstructured: '',
purposeCode: 'rege',
chargeBearer: 'SHAR',
creditorAgentName: '6304366205125094',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QKK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903316123839938',
remittanceInformationUnstructured: '',
purposeCode: 'atei',
chargeBearer: 'SHAR',
creditorAgentName: '201496424860879',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FNU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6299438673051982',
remittanceInformationUnstructured: '',
purposeCode: 'icji',
chargeBearer: 'SHAR',
creditorAgentName: '6375991437150547',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZWT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36440788980700',
remittanceInformationUnstructured: '',
purposeCode: 'zuci',
chargeBearer: 'SHAR',
creditorAgentName: '5122345751765653',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PVX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011802443816841',
remittanceInformationUnstructured: '',
purposeCode: 'celo',
chargeBearer: 'SHAR',
creditorAgentName: '6295259515204561',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JSE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5198105399573078',
remittanceInformationUnstructured: '',
purposeCode: 'huov',
chargeBearer: 'SHAR',
creditorAgentName: '5610859529530669',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XEV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903777323039282',
remittanceInformationUnstructured: '',
purposeCode: 'japu',
chargeBearer: 'SHAR',
creditorAgentName: '36382630247096',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FAE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610026661009411',
remittanceInformationUnstructured: '',
purposeCode: 'kubi',
chargeBearer: 'SHAR',
creditorAgentName: '345970566472757',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LAN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903855001576674',
remittanceInformationUnstructured: '',
purposeCode: 'suju',
chargeBearer: 'SHAR',
creditorAgentName: '347297679594931',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TWU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6247039948697030',
remittanceInformationUnstructured: '',
purposeCode: 'lild',
chargeBearer: 'SHAR',
creditorAgentName: '6377745284233410',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NSO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026624327927959',
remittanceInformationUnstructured: '',
purposeCode: 'reda',
chargeBearer: 'SHAR',
creditorAgentName: '36943491237722',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FYJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334114780684364',
remittanceInformationUnstructured: '',
purposeCode: 'cejr',
chargeBearer: 'SHAR',
creditorAgentName: '6205621851826175',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LTS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30053207757884',
remittanceInformationUnstructured: '',
purposeCode: 'tilf',
chargeBearer: 'SHAR',
creditorAgentName: '36150979295871',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PWS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018232473211769',
remittanceInformationUnstructured: '',
purposeCode: 'vobp',
chargeBearer: 'SHAR',
creditorAgentName: '6334848177676224',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DOS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610883946798105',
remittanceInformationUnstructured: '',
purposeCode: 'futd',
chargeBearer: 'SHAR',
creditorAgentName: '6304011193600217',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GDG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334351602081565',
remittanceInformationUnstructured: '',
purposeCode: 'salz',
chargeBearer: 'SHAR',
creditorAgentName: '6375188093656806',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PLO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018401491192059',
remittanceInformationUnstructured: '',
purposeCode: 'cezf',
chargeBearer: 'SHAR',
creditorAgentName: '6370063866749390',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ODG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610705634406404',
remittanceInformationUnstructured: '',
purposeCode: 'dupe',
chargeBearer: 'SHAR',
creditorAgentName: '6334925110859909',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GIJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5199722370661505',
remittanceInformationUnstructured: '',
purposeCode: 'nige',
chargeBearer: 'SHAR',
creditorAgentName: '5610087920726187',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GFJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011373368426115',
remittanceInformationUnstructured: '',
purposeCode: 'mazf',
chargeBearer: 'SHAR',
creditorAgentName: '5610793382861061',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YGD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378000685418130',
remittanceInformationUnstructured: '',
purposeCode: 'ebop',
chargeBearer: 'SHAR',
creditorAgentName: '6334496214674669',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LJO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903332535980343',
remittanceInformationUnstructured: '',
purposeCode: 'denk',
chargeBearer: 'SHAR',
creditorAgentName: '6334300477364366',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XAB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30051975216034',
remittanceInformationUnstructured: '',
purposeCode: 'tevi',
chargeBearer: 'SHAR',
creditorAgentName: '5610076110785574',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UFG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304084896902925',
remittanceInformationUnstructured: '',
purposeCode: 'kaid',
chargeBearer: 'SHAR',
creditorAgentName: '6334631700968213',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HJY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6258969660429921',
remittanceInformationUnstructured: '',
purposeCode: 'pikd',
chargeBearer: 'SHAR',
creditorAgentName: '4026112050616965',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TTJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30015575272523',
remittanceInformationUnstructured: '',
purposeCode: 'ildu',
chargeBearer: 'SHAR',
creditorAgentName: '5018288976692194',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MDR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378749546251086',
remittanceInformationUnstructured: '',
purposeCode: 'wude',
chargeBearer: 'SHAR',
creditorAgentName: '30032315816378',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RKI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4844836781323257',
remittanceInformationUnstructured: '',
purposeCode: 'tefm',
chargeBearer: 'SHAR',
creditorAgentName: '4087554525336529',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UFU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343639982430366',
remittanceInformationUnstructured: '',
purposeCode: 'turr',
chargeBearer: 'SHAR',
creditorAgentName: '6372565085998176',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JUS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36727366799134',
remittanceInformationUnstructured: '',
purposeCode: 'zeta',
chargeBearer: 'SHAR',
creditorAgentName: '5413037263433148',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WMG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5142239482541044',
remittanceInformationUnstructured: '',
purposeCode: 'jawi',
chargeBearer: 'SHAR',
creditorAgentName: '5610230939415109',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CNT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304555402239159',
remittanceInformationUnstructured: '',
purposeCode: 'zake',
chargeBearer: 'SHAR',
creditorAgentName: '5610527279690740',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KPK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343552189301076',
remittanceInformationUnstructured: '',
purposeCode: 'zoho',
chargeBearer: 'SHAR',
creditorAgentName: '30088203040919',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RDW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '349070680157982',
remittanceInformationUnstructured: '',
purposeCode: 'favt',
chargeBearer: 'SHAR',
creditorAgentName: '5018768939578747',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XKD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018017118023665',
remittanceInformationUnstructured: '',
purposeCode: 'deef',
chargeBearer: 'SHAR',
creditorAgentName: '6376930782124409',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OZL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201459288618817',
remittanceInformationUnstructured: '',
purposeCode: 'zefp',
chargeBearer: 'SHAR',
creditorAgentName: '4903231347644636',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XIW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026021267410858',
remittanceInformationUnstructured: '',
purposeCode: 'nats',
chargeBearer: 'SHAR',
creditorAgentName: '4897158979824301',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DFA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304434394913322',
remittanceInformationUnstructured: '',
purposeCode: 'dabe',
chargeBearer: 'SHAR',
creditorAgentName: '201491398555597',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YUC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610157158193242',
remittanceInformationUnstructured: '',
purposeCode: 'enbu',
chargeBearer: 'SHAR',
creditorAgentName: '5197233866658627',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VHR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374715986335824',
remittanceInformationUnstructured: '',
purposeCode: 'boiv',
chargeBearer: 'SHAR',
creditorAgentName: '4477912851634099',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FZU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903858662966507',
remittanceInformationUnstructured: '',
purposeCode: 'wadl',
chargeBearer: 'SHAR',
creditorAgentName: '6334782411910562',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BVT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '348145058775333',
remittanceInformationUnstructured: '',
purposeCode: 'jiru',
chargeBearer: 'SHAR',
creditorAgentName: '36718090116083',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JGI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4299824982579935',
remittanceInformationUnstructured: '',
purposeCode: 'fafg',
chargeBearer: 'SHAR',
creditorAgentName: '4271808080411416',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MDA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304515410216284',
remittanceInformationUnstructured: '',
purposeCode: 'sein',
chargeBearer: 'SHAR',
creditorAgentName: '30039833148630',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BJM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6264138817276351',
remittanceInformationUnstructured: '',
purposeCode: 'ufur',
chargeBearer: 'SHAR',
creditorAgentName: '4026762564721477',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JUF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610785994287867',
remittanceInformationUnstructured: '',
purposeCode: 'befo',
chargeBearer: 'SHAR',
creditorAgentName: '6011482439677562',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UNJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36107238042304',
remittanceInformationUnstructured: '',
purposeCode: 'ikki',
chargeBearer: 'SHAR',
creditorAgentName: '4026853515794828',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PFQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5472618146006280',
remittanceInformationUnstructured: '',
purposeCode: 'wegr',
chargeBearer: 'SHAR',
creditorAgentName: '344100297445705',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZWV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5157401329492029',
remittanceInformationUnstructured: '',
purposeCode: 'siku',
chargeBearer: 'SHAR',
creditorAgentName: '201473544052497',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HSB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5453937136225301',
remittanceInformationUnstructured: '',
purposeCode: 'otsu',
chargeBearer: 'SHAR',
creditorAgentName: '201426204409050',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FZQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304498079742793',
remittanceInformationUnstructured: '',
purposeCode: 'ruka',
chargeBearer: 'SHAR',
creditorAgentName: '6304458595341983',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YFN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201469946663022',
remittanceInformationUnstructured: '',
purposeCode: 'vami',
chargeBearer: 'SHAR',
creditorAgentName: '4345773764365308',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZWH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018446090769708',
remittanceInformationUnstructured: '',
purposeCode: 'hidu',
chargeBearer: 'SHAR',
creditorAgentName: '3528866442982931',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BPT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018732753322194',
remittanceInformationUnstructured: '',
purposeCode: 'ehgo',
chargeBearer: 'SHAR',
creditorAgentName: '36587540158171',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'REB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30025498032870',
remittanceInformationUnstructured: '',
purposeCode: 'cong',
chargeBearer: 'SHAR',
creditorAgentName: '3528632236625809',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NRH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5105348177356231',
remittanceInformationUnstructured: '',
purposeCode: 'kati',
chargeBearer: 'SHAR',
creditorAgentName: '5170344966746724',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LJL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610825098303630',
remittanceInformationUnstructured: '',
purposeCode: 'fifu',
chargeBearer: 'SHAR',
creditorAgentName: '6011726004035790',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DOC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304660696128736',
remittanceInformationUnstructured: '',
purposeCode: 'aros',
chargeBearer: 'SHAR',
creditorAgentName: '6011416714071240',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TYO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30075405673639',
remittanceInformationUnstructured: '',
purposeCode: 'nimu',
chargeBearer: 'SHAR',
creditorAgentName: '36182448872774',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EHA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528244969546663',
remittanceInformationUnstructured: '',
purposeCode: 'poza',
chargeBearer: 'SHAR',
creditorAgentName: '201493363481585',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DQK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011024681829937',
remittanceInformationUnstructured: '',
purposeCode: 'live',
chargeBearer: 'SHAR',
creditorAgentName: '5018165332419894',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JCX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528831685080470',
remittanceInformationUnstructured: '',
purposeCode: 'labr',
chargeBearer: 'SHAR',
creditorAgentName: '4903695615354005',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SSZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528383581531248',
remittanceInformationUnstructured: '',
purposeCode: 'wane',
chargeBearer: 'SHAR',
creditorAgentName: '4026082046547519',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AGP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026140130657063',
remittanceInformationUnstructured: '',
purposeCode: 'ahob',
chargeBearer: 'SHAR',
creditorAgentName: '6011114388894753',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VYW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36593176251504',
remittanceInformationUnstructured: '',
purposeCode: 'cogn',
chargeBearer: 'SHAR',
creditorAgentName: '5018661654661303',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PIB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610756417742663',
remittanceInformationUnstructured: '',
purposeCode: 'ozgu',
chargeBearer: 'SHAR',
creditorAgentName: '30029192167925',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DBZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5146601025882654',
remittanceInformationUnstructured: '',
purposeCode: 'ozaf',
chargeBearer: 'SHAR',
creditorAgentName: '201415509325418',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ARW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6225434734830141',
remittanceInformationUnstructured: '',
purposeCode: 'uwav',
chargeBearer: 'SHAR',
creditorAgentName: '6304042513223042',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NRC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6379100957897232',
remittanceInformationUnstructured: '',
purposeCode: 'caze',
chargeBearer: 'SHAR',
creditorAgentName: '30023190150975',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FDM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6271762617054592',
remittanceInformationUnstructured: '',
purposeCode: 'hipa',
chargeBearer: 'SHAR',
creditorAgentName: '346981990387270',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WCR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011344831763293',
remittanceInformationUnstructured: '',
purposeCode: 'juwh',
chargeBearer: 'SHAR',
creditorAgentName: '4384204076140371',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YRX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610235997425031',
remittanceInformationUnstructured: '',
purposeCode: 'huwm',
chargeBearer: 'SHAR',
creditorAgentName: '201401849948747',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZDC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026532390106577',
remittanceInformationUnstructured: '',
purposeCode: 'zice',
chargeBearer: 'SHAR',
creditorAgentName: '6259800059171387',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GCO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528981463178127',
remittanceInformationUnstructured: '',
purposeCode: 'luom',
chargeBearer: 'SHAR',
creditorAgentName: '6377927706849342',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CIZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '345856994277423',
remittanceInformationUnstructured: '',
purposeCode: 'wuku',
chargeBearer: 'SHAR',
creditorAgentName: '36841027377139',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NWX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4526140305176860',
remittanceInformationUnstructured: '',
purposeCode: 'bers',
chargeBearer: 'SHAR',
creditorAgentName: '6377859779269027',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EMW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4810419687893655',
remittanceInformationUnstructured: '',
purposeCode: 'ojfi',
chargeBearer: 'SHAR',
creditorAgentName: '5146770540755974',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XLO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5128525195545324',
remittanceInformationUnstructured: '',
purposeCode: 'fodf',
chargeBearer: 'SHAR',
creditorAgentName: '4903496405575531',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CXS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30071181727921',
remittanceInformationUnstructured: '',
purposeCode: 'suwa',
chargeBearer: 'SHAR',
creditorAgentName: '36978989785279',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DXD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610564490627144',
remittanceInformationUnstructured: '',
purposeCode: 'emoj',
chargeBearer: 'SHAR',
creditorAgentName: '4678256166430133',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GHM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5186381754241403',
remittanceInformationUnstructured: '',
purposeCode: 'naib',
chargeBearer: 'SHAR',
creditorAgentName: '6011729816196560',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PGO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334718000239559',
remittanceInformationUnstructured: '',
purposeCode: 'zetu',
chargeBearer: 'SHAR',
creditorAgentName: '36345619290296',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KLZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610878174467969',
remittanceInformationUnstructured: '',
purposeCode: 'cesf',
chargeBearer: 'SHAR',
creditorAgentName: '5610982017614959',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QIU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334761927084799',
remittanceInformationUnstructured: '',
purposeCode: 'gurf',
chargeBearer: 'SHAR',
creditorAgentName: '201470236157709',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VMQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610766758382391',
remittanceInformationUnstructured: '',
purposeCode: 'ziso',
chargeBearer: 'SHAR',
creditorAgentName: '6374783498409792',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GDC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528782203740915',
remittanceInformationUnstructured: '',
purposeCode: 'wuar',
chargeBearer: 'SHAR',
creditorAgentName: '201444305722198',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WYJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5481381864499661',
remittanceInformationUnstructured: '',
purposeCode: 'zuvi',
chargeBearer: 'SHAR',
creditorAgentName: '30063334953025',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HEP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026406630906403',
remittanceInformationUnstructured: '',
purposeCode: 'udle',
chargeBearer: 'SHAR',
creditorAgentName: '5488896671282680',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'USH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903237765676380',
remittanceInformationUnstructured: '',
purposeCode: 'rizd',
chargeBearer: 'SHAR',
creditorAgentName: '4026298799288271',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XIO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011220854057682',
remittanceInformationUnstructured: '',
purposeCode: 'guzu',
chargeBearer: 'SHAR',
creditorAgentName: '3528453115577254',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RUS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026825305594410',
remittanceInformationUnstructured: '',
purposeCode: 'obbo',
chargeBearer: 'SHAR',
creditorAgentName: '5610031147056465',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GWI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30091820352949',
remittanceInformationUnstructured: '',
purposeCode: 'mecb',
chargeBearer: 'SHAR',
creditorAgentName: '5165056248565758',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IWQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6370370904563570',
remittanceInformationUnstructured: '',
purposeCode: 'avoo',
chargeBearer: 'SHAR',
creditorAgentName: '5610030934408137',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WUY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334593188579849',
remittanceInformationUnstructured: '',
purposeCode: 'wavh',
chargeBearer: 'SHAR',
creditorAgentName: '5408225568898506',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HPM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6379980324375677',
remittanceInformationUnstructured: '',
purposeCode: 'hazz',
chargeBearer: 'SHAR',
creditorAgentName: '36266507854425',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BZH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5435461511763672',
remittanceInformationUnstructured: '',
purposeCode: 'hise',
chargeBearer: 'SHAR',
creditorAgentName: '6227322037215276',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OLI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5405519110708475',
remittanceInformationUnstructured: '',
purposeCode: 'rode',
chargeBearer: 'SHAR',
creditorAgentName: '6011050889395850',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZBN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011913557499652',
remittanceInformationUnstructured: '',
purposeCode: 'kaez',
chargeBearer: 'SHAR',
creditorAgentName: '6371523535239312',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GGW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903224934302411',
remittanceInformationUnstructured: '',
purposeCode: 'zare',
chargeBearer: 'SHAR',
creditorAgentName: '6334757190181510',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VJJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6252195539027268',
remittanceInformationUnstructured: '',
purposeCode: 'ataf',
chargeBearer: 'SHAR',
creditorAgentName: '30073641062709',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VZH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903075199482128',
remittanceInformationUnstructured: '',
purposeCode: 'simw',
chargeBearer: 'SHAR',
creditorAgentName: '5610548271456609',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GXB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6281077690185272',
remittanceInformationUnstructured: '',
purposeCode: 'ujar',
chargeBearer: 'SHAR',
creditorAgentName: '5485697748372279',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OAW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304159561808373',
remittanceInformationUnstructured: '',
purposeCode: 'meru',
chargeBearer: 'SHAR',
creditorAgentName: '4977778017163231',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BCD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201445640683086',
remittanceInformationUnstructured: '',
purposeCode: 'viju',
chargeBearer: 'SHAR',
creditorAgentName: '201433848151676',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VZO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304539610324276',
remittanceInformationUnstructured: '',
purposeCode: 'gamv',
chargeBearer: 'SHAR',
creditorAgentName: '6334263258027851',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QTL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018281224403100',
remittanceInformationUnstructured: '',
purposeCode: 'etar',
chargeBearer: 'SHAR',
creditorAgentName: '4320499797991170',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WVT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610799207893528',
remittanceInformationUnstructured: '',
purposeCode: 'bavw',
chargeBearer: 'SHAR',
creditorAgentName: '4574588423888595',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EIV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026147552842149',
remittanceInformationUnstructured: '',
purposeCode: 'udeg',
chargeBearer: 'SHAR',
creditorAgentName: '6304852095337410',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KHV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4628640850666881',
remittanceInformationUnstructured: '',
purposeCode: 'nakh',
chargeBearer: 'SHAR',
creditorAgentName: '4026574400028102',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MYY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304001656754429',
remittanceInformationUnstructured: '',
purposeCode: 'ovot',
chargeBearer: 'SHAR',
creditorAgentName: '5167258801521206',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DQQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4714101273505532',
remittanceInformationUnstructured: '',
purposeCode: 'pucr',
chargeBearer: 'SHAR',
creditorAgentName: '6334920696485070',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UYB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5487954471454347',
remittanceInformationUnstructured: '',
purposeCode: 'wuga',
chargeBearer: 'SHAR',
creditorAgentName: '201415948113193',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LQJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528775329405264',
remittanceInformationUnstructured: '',
purposeCode: 'jesa',
chargeBearer: 'SHAR',
creditorAgentName: '6304787154144705',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LIG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30076402540839',
remittanceInformationUnstructured: '',
purposeCode: 'kavo',
chargeBearer: 'SHAR',
creditorAgentName: '4903607661527558',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GTR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36571714526744',
remittanceInformationUnstructured: '',
purposeCode: 'belo',
chargeBearer: 'SHAR',
creditorAgentName: '3528091915388660',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HHL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30058941813992',
remittanceInformationUnstructured: '',
purposeCode: 'toki',
chargeBearer: 'SHAR',
creditorAgentName: '3528417931872710',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WYP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610796374521049',
remittanceInformationUnstructured: '',
purposeCode: 'ceso',
chargeBearer: 'SHAR',
creditorAgentName: '5123840684396294',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KUW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334966280413226',
remittanceInformationUnstructured: '',
purposeCode: 'rata',
chargeBearer: 'SHAR',
creditorAgentName: '5423590560830935',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PWV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6257045487197388',
remittanceInformationUnstructured: '',
purposeCode: 'wuwh',
chargeBearer: 'SHAR',
creditorAgentName: '5492200263427544',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WNV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026024446289599',
remittanceInformationUnstructured: '',
purposeCode: 'kosu',
chargeBearer: 'SHAR',
creditorAgentName: '4903805787949900',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PSM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018005505170967',
remittanceInformationUnstructured: '',
purposeCode: 'nimz',
chargeBearer: 'SHAR',
creditorAgentName: '201402335436445',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HSK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347924958166814',
remittanceInformationUnstructured: '',
purposeCode: 'ecoz',
chargeBearer: 'SHAR',
creditorAgentName: '4394329603831255',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BKF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4440823132059499',
remittanceInformationUnstructured: '',
purposeCode: 'masa',
chargeBearer: 'SHAR',
creditorAgentName: '5476159159463734',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OAZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6243880073706664',
remittanceInformationUnstructured: '',
purposeCode: 'foum',
chargeBearer: 'SHAR',
creditorAgentName: '346613664968917',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FPV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378122122311932',
remittanceInformationUnstructured: '',
purposeCode: 'nuof',
chargeBearer: 'SHAR',
creditorAgentName: '6291754358603600',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UBH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5483602092963899',
remittanceInformationUnstructured: '',
purposeCode: 'pesn',
chargeBearer: 'SHAR',
creditorAgentName: '6269858862251182',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VQR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201477257144144',
remittanceInformationUnstructured: '',
purposeCode: 'delu',
chargeBearer: 'SHAR',
creditorAgentName: '5018719773318914',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WMP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026425755435949',
remittanceInformationUnstructured: '',
purposeCode: 'reji',
chargeBearer: 'SHAR',
creditorAgentName: '4026277637530417',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AKA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5414668986298100',
remittanceInformationUnstructured: '',
purposeCode: 'ukot',
chargeBearer: 'SHAR',
creditorAgentName: '201434593242660',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UFK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5187353515533104',
remittanceInformationUnstructured: '',
purposeCode: 'alaf',
chargeBearer: 'SHAR',
creditorAgentName: '6334169642300245',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SHK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36247944559769',
remittanceInformationUnstructured: '',
purposeCode: 'kone',
chargeBearer: 'SHAR',
creditorAgentName: '201468343046955',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DEJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6294805958137584',
remittanceInformationUnstructured: '',
purposeCode: 'baut',
chargeBearer: 'SHAR',
creditorAgentName: '5119966072674640',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GGM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528165309788584',
remittanceInformationUnstructured: '',
purposeCode: 'bodu',
chargeBearer: 'SHAR',
creditorAgentName: '201409785676974',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XPW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5488488207651925',
remittanceInformationUnstructured: '',
purposeCode: 'nojg',
chargeBearer: 'SHAR',
creditorAgentName: '6334762372346154',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MGW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903539228013543',
remittanceInformationUnstructured: '',
purposeCode: 'damo',
chargeBearer: 'SHAR',
creditorAgentName: '5158175623184784',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TWN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5124947736963549',
remittanceInformationUnstructured: '',
purposeCode: 'vewd',
chargeBearer: 'SHAR',
creditorAgentName: '6334660651169265',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TDG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026927870325939',
remittanceInformationUnstructured: '',
purposeCode: 'doro',
chargeBearer: 'SHAR',
creditorAgentName: '340790738786867',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HUX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5403289096767034',
remittanceInformationUnstructured: '',
purposeCode: 'coku',
chargeBearer: 'SHAR',
creditorAgentName: '3528267124406176',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TUV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026961137748617',
remittanceInformationUnstructured: '',
purposeCode: 'aciu',
chargeBearer: 'SHAR',
creditorAgentName: '4026579822017310',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RKW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528544617527019',
remittanceInformationUnstructured: '',
purposeCode: 'mase',
chargeBearer: 'SHAR',
creditorAgentName: '4894552991866105',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VYN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374219451337977',
remittanceInformationUnstructured: '',
purposeCode: 'vusa',
chargeBearer: 'SHAR',
creditorAgentName: '6304838429506374',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KXB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026711850851613',
remittanceInformationUnstructured: '',
purposeCode: 'kiga',
chargeBearer: 'SHAR',
creditorAgentName: '5143176726833226',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OKQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334963411636320',
remittanceInformationUnstructured: '',
purposeCode: 'lued',
chargeBearer: 'SHAR',
creditorAgentName: '30002527240998',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FMH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '349273008705538',
remittanceInformationUnstructured: '',
purposeCode: 'capb',
chargeBearer: 'SHAR',
creditorAgentName: '6334676257050105',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AQB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6286943890069266',
remittanceInformationUnstructured: '',
purposeCode: 'onju',
chargeBearer: 'SHAR',
creditorAgentName: '6304759222469281',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JCH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026783955372845',
remittanceInformationUnstructured: '',
purposeCode: 'jina',
chargeBearer: 'SHAR',
creditorAgentName: '3528641808879728',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GBF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026190386433503',
remittanceInformationUnstructured: '',
purposeCode: 'taiv',
chargeBearer: 'SHAR',
creditorAgentName: '3528473201271315',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YIZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5429229207145738',
remittanceInformationUnstructured: '',
purposeCode: 'vavo',
chargeBearer: 'SHAR',
creditorAgentName: '36127520487264',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AGP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610743633909227',
remittanceInformationUnstructured: '',
purposeCode: 'hini',
chargeBearer: 'SHAR',
creditorAgentName: '6334969556488682',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UVC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903533457384774',
remittanceInformationUnstructured: '',
purposeCode: 'tolv',
chargeBearer: 'SHAR',
creditorAgentName: '6334507399444593',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WRO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373521111182854',
remittanceInformationUnstructured: '',
purposeCode: 'hunz',
chargeBearer: 'SHAR',
creditorAgentName: '5412102187897637',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SRQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6233664128939955',
remittanceInformationUnstructured: '',
purposeCode: 'ohia',
chargeBearer: 'SHAR',
creditorAgentName: '5018328086706607',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BWQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011158498642354',
remittanceInformationUnstructured: '',
purposeCode: 'hedc',
chargeBearer: 'SHAR',
creditorAgentName: '6011312583413219',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FUS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026792310552892',
remittanceInformationUnstructured: '',
purposeCode: 'jupc',
chargeBearer: 'SHAR',
creditorAgentName: '345380082611617',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GCI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011265078423905',
remittanceInformationUnstructured: '',
purposeCode: 'ajne',
chargeBearer: 'SHAR',
creditorAgentName: '30001664074467',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UEX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334116089167611',
remittanceInformationUnstructured: '',
purposeCode: 'egbo',
chargeBearer: 'SHAR',
creditorAgentName: '6334324169490412',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TLU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36406332797544',
remittanceInformationUnstructured: '',
purposeCode: 'kije',
chargeBearer: 'SHAR',
creditorAgentName: '6011530416479566',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JWK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304848589291139',
remittanceInformationUnstructured: '',
purposeCode: 'tugw',
chargeBearer: 'SHAR',
creditorAgentName: '6379432115620309',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VRO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011363855347650',
remittanceInformationUnstructured: '',
purposeCode: 'puwo',
chargeBearer: 'SHAR',
creditorAgentName: '5406080312758833',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WKZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201458978318530',
remittanceInformationUnstructured: '',
purposeCode: 'nebo',
chargeBearer: 'SHAR',
creditorAgentName: '6304176108018472',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OBN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610238462602563',
remittanceInformationUnstructured: '',
purposeCode: 'wirl',
chargeBearer: 'SHAR',
creditorAgentName: '4068592242599170',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FZU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30023167875869',
remittanceInformationUnstructured: '',
purposeCode: 'dohe',
chargeBearer: 'SHAR',
creditorAgentName: '6265364681130107',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PTR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347325798078468',
remittanceInformationUnstructured: '',
purposeCode: 'kaso',
chargeBearer: 'SHAR',
creditorAgentName: '4903149633874701',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ILL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304415096936380',
remittanceInformationUnstructured: '',
purposeCode: 'neta',
chargeBearer: 'SHAR',
creditorAgentName: '30065736632511',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XOB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011427454630590',
remittanceInformationUnstructured: '',
purposeCode: 'pesi',
chargeBearer: 'SHAR',
creditorAgentName: '6372129183869621',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZEK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5124418917354122',
remittanceInformationUnstructured: '',
purposeCode: 'uzos',
chargeBearer: 'SHAR',
creditorAgentName: '5420343194758509',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SIW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5408239663943422',
remittanceInformationUnstructured: '',
purposeCode: 'baik',
chargeBearer: 'SHAR',
creditorAgentName: '6011103054767047',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YFA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304829034180127',
remittanceInformationUnstructured: '',
purposeCode: 'ifeu',
chargeBearer: 'SHAR',
creditorAgentName: '3528039952327323',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GUU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304941694941290',
remittanceInformationUnstructured: '',
purposeCode: 'ofwo',
chargeBearer: 'SHAR',
creditorAgentName: '36898764372152',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MOT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5160155846425574',
remittanceInformationUnstructured: '',
purposeCode: 'tuct',
chargeBearer: 'SHAR',
creditorAgentName: '6372501573404344',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HAC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610735059859191',
remittanceInformationUnstructured: '',
purposeCode: 'cejk',
chargeBearer: 'SHAR',
creditorAgentName: '6334797863777475',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NRC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011722635986881',
remittanceInformationUnstructured: '',
purposeCode: 'jige',
chargeBearer: 'SHAR',
creditorAgentName: '5180456772003195',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IXB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201423236257185',
remittanceInformationUnstructured: '',
purposeCode: 'vonr',
chargeBearer: 'SHAR',
creditorAgentName: '4903564190948385',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SFC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528698288008665',
remittanceInformationUnstructured: '',
purposeCode: 'haul',
chargeBearer: 'SHAR',
creditorAgentName: '6304555291751413',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WRD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36992797272461',
remittanceInformationUnstructured: '',
purposeCode: 'vefe',
chargeBearer: 'SHAR',
creditorAgentName: '5487875605410154',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WUW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30061288277961',
remittanceInformationUnstructured: '',
purposeCode: 'feri',
chargeBearer: 'SHAR',
creditorAgentName: '4148886272150712',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WPX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011222888698879',
remittanceInformationUnstructured: '',
purposeCode: 'sozi',
chargeBearer: 'SHAR',
creditorAgentName: '4856233412683645',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'THP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30020964229241',
remittanceInformationUnstructured: '',
purposeCode: 'rerg',
chargeBearer: 'SHAR',
creditorAgentName: '3528011156538880',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OZM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903799780600844',
remittanceInformationUnstructured: '',
purposeCode: 'bifu',
chargeBearer: 'SHAR',
creditorAgentName: '5018071408658185',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JYU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334399390500809',
remittanceInformationUnstructured: '',
purposeCode: 'cipa',
chargeBearer: 'SHAR',
creditorAgentName: '5610746074319160',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FRM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5104199970064865',
remittanceInformationUnstructured: '',
purposeCode: 'bisn',
chargeBearer: 'SHAR',
creditorAgentName: '6372030922634799',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RDA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201403604669716',
remittanceInformationUnstructured: '',
purposeCode: 'miga',
chargeBearer: 'SHAR',
creditorAgentName: '6293943994986002',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MTB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018772649311498',
remittanceInformationUnstructured: '',
purposeCode: 'pini',
chargeBearer: 'SHAR',
creditorAgentName: '201495102554846',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PVT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6372289152317976',
remittanceInformationUnstructured: '',
purposeCode: 'rubd',
chargeBearer: 'SHAR',
creditorAgentName: '5150158668868139',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IDL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6250581632947704',
remittanceInformationUnstructured: '',
purposeCode: 'haco',
chargeBearer: 'SHAR',
creditorAgentName: '6011836635901516',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UXQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377920610875438',
remittanceInformationUnstructured: '',
purposeCode: 'mupo',
chargeBearer: 'SHAR',
creditorAgentName: '4903661534954770',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'STP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903355506828241',
remittanceInformationUnstructured: '',
purposeCode: 'vulu',
chargeBearer: 'SHAR',
creditorAgentName: '6334763710686483',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CMV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026464909106981',
remittanceInformationUnstructured: '',
purposeCode: 'sido',
chargeBearer: 'SHAR',
creditorAgentName: '343486656764666',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZXX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610045774289413',
remittanceInformationUnstructured: '',
purposeCode: 'faho',
chargeBearer: 'SHAR',
creditorAgentName: '30031482547402',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EHT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610973944785053',
remittanceInformationUnstructured: '',
purposeCode: 'kahe',
chargeBearer: 'SHAR',
creditorAgentName: '6334859578819156',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WVN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36990838406742',
remittanceInformationUnstructured: '',
purposeCode: 'sole',
chargeBearer: 'SHAR',
creditorAgentName: '6011369312852315',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SZJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346540437466939',
remittanceInformationUnstructured: '',
purposeCode: 'mine',
chargeBearer: 'SHAR',
creditorAgentName: '4903253851809017',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KRH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011719834864976',
remittanceInformationUnstructured: '',
purposeCode: 'coun',
chargeBearer: 'SHAR',
creditorAgentName: '344924904041155',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PMQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334970064340639',
remittanceInformationUnstructured: '',
purposeCode: 'baah',
chargeBearer: 'SHAR',
creditorAgentName: '5018678808466504',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MTZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6279110548016029',
remittanceInformationUnstructured: '',
purposeCode: 'ajfe',
chargeBearer: 'SHAR',
creditorAgentName: '5610894284850721',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SJA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610021306704294',
remittanceInformationUnstructured: '',
purposeCode: 'ogli',
chargeBearer: 'SHAR',
creditorAgentName: '36622749399407',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GCE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610349834242465',
remittanceInformationUnstructured: '',
purposeCode: 'nokr',
chargeBearer: 'SHAR',
creditorAgentName: '36825386959991',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VDF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4015343757399869',
remittanceInformationUnstructured: '',
purposeCode: 'caez',
chargeBearer: 'SHAR',
creditorAgentName: '5018360459136120',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BUF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374693998701376',
remittanceInformationUnstructured: '',
purposeCode: 'epli',
chargeBearer: 'SHAR',
creditorAgentName: '6011084827043892',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ANV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201433701798712',
remittanceInformationUnstructured: '',
purposeCode: 'sech',
chargeBearer: 'SHAR',
creditorAgentName: '4903269642162490',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MCJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6240930124716106',
remittanceInformationUnstructured: '',
purposeCode: 'doro',
chargeBearer: 'SHAR',
creditorAgentName: '36049383434698',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VZU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201485944633841',
remittanceInformationUnstructured: '',
purposeCode: 'usag',
chargeBearer: 'SHAR',
creditorAgentName: '6304070252823961',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TEP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610237578716994',
remittanceInformationUnstructured: '',
purposeCode: 'fice',
chargeBearer: 'SHAR',
creditorAgentName: '5610164384722968',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CXU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343911905919068',
remittanceInformationUnstructured: '',
purposeCode: 'ecki',
chargeBearer: 'SHAR',
creditorAgentName: '4007688991161784',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ALL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5429268585831329',
remittanceInformationUnstructured: '',
purposeCode: 'puna',
chargeBearer: 'SHAR',
creditorAgentName: '4885502835597987',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DXB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201433005658711',
remittanceInformationUnstructured: '',
purposeCode: 'koti',
chargeBearer: 'SHAR',
creditorAgentName: '5165539080084129',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VIU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378030660521889',
remittanceInformationUnstructured: '',
purposeCode: 'wuro',
chargeBearer: 'SHAR',
creditorAgentName: '30095329591717',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AYK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4813404818690482',
remittanceInformationUnstructured: '',
purposeCode: 'nuad',
chargeBearer: 'SHAR',
creditorAgentName: '5413800178472778',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XOS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528130053685675',
remittanceInformationUnstructured: '',
purposeCode: 'gesi',
chargeBearer: 'SHAR',
creditorAgentName: '349757957096535',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WPV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026122460118361',
remittanceInformationUnstructured: '',
purposeCode: 'vome',
chargeBearer: 'SHAR',
creditorAgentName: '5018110398496535',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OZO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6379400421412075',
remittanceInformationUnstructured: '',
purposeCode: 'sike',
chargeBearer: 'SHAR',
creditorAgentName: '201473010145023',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DNI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304821025546853',
remittanceInformationUnstructured: '',
purposeCode: 'bipm',
chargeBearer: 'SHAR',
creditorAgentName: '4154016542537743',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DTL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5198429228976033',
remittanceInformationUnstructured: '',
purposeCode: 'diba',
chargeBearer: 'SHAR',
creditorAgentName: '6334563111648896',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JKR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346151115589289',
remittanceInformationUnstructured: '',
purposeCode: 'azow',
chargeBearer: 'SHAR',
creditorAgentName: '6304669225362187',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DIW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304199281940692',
remittanceInformationUnstructured: '',
purposeCode: 'jicc',
chargeBearer: 'SHAR',
creditorAgentName: '3528546370742537',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TPA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4463934994023739',
remittanceInformationUnstructured: '',
purposeCode: 'atuo',
chargeBearer: 'SHAR',
creditorAgentName: '201431432872491',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PTQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6226981790409797',
remittanceInformationUnstructured: '',
purposeCode: 'onap',
chargeBearer: 'SHAR',
creditorAgentName: '349060552162004',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HPA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201440230207719',
remittanceInformationUnstructured: '',
purposeCode: 'tojl',
chargeBearer: 'SHAR',
creditorAgentName: '5149542944705765',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SGG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30054113263736',
remittanceInformationUnstructured: '',
purposeCode: 'loma',
chargeBearer: 'SHAR',
creditorAgentName: '4903135478462975',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YQV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528654259528868',
remittanceInformationUnstructured: '',
purposeCode: 'zobi',
chargeBearer: 'SHAR',
creditorAgentName: '4334181927666864',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QUB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '342131780638482',
remittanceInformationUnstructured: '',
purposeCode: 'ipli',
chargeBearer: 'SHAR',
creditorAgentName: '5143327631624248',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LAS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903460961898786',
remittanceInformationUnstructured: '',
purposeCode: 'zect',
chargeBearer: 'SHAR',
creditorAgentName: '340040674324830',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MLB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026074376793144',
remittanceInformationUnstructured: '',
purposeCode: 'etak',
chargeBearer: 'SHAR',
creditorAgentName: '30081676333036',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GBS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5455296042832900',
remittanceInformationUnstructured: '',
purposeCode: 'kere',
chargeBearer: 'SHAR',
creditorAgentName: '5171958378165139',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GAB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011207965229649',
remittanceInformationUnstructured: '',
purposeCode: 'hubw',
chargeBearer: 'SHAR',
creditorAgentName: '6334345012817345',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FKR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018631246750112',
remittanceInformationUnstructured: '',
purposeCode: 'huci',
chargeBearer: 'SHAR',
creditorAgentName: '6304003726105822',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MMI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011892426602177',
remittanceInformationUnstructured: '',
purposeCode: 'mepb',
chargeBearer: 'SHAR',
creditorAgentName: '5018231073135436',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TDF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6299152736288834',
remittanceInformationUnstructured: '',
purposeCode: 'hofd',
chargeBearer: 'SHAR',
creditorAgentName: '6334568918054990',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AJM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334410388344843',
remittanceInformationUnstructured: '',
purposeCode: 'moon',
chargeBearer: 'SHAR',
creditorAgentName: '5104724710645507',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NDJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201414132783812',
remittanceInformationUnstructured: '',
purposeCode: 'vori',
chargeBearer: 'SHAR',
creditorAgentName: '6334930237069085',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PUC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334490835087583',
remittanceInformationUnstructured: '',
purposeCode: 'zejf',
chargeBearer: 'SHAR',
creditorAgentName: '4988308944781678',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VSP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903410190128331',
remittanceInformationUnstructured: '',
purposeCode: 'rawp',
chargeBearer: 'SHAR',
creditorAgentName: '6304622733690904',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RZI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36730629940750',
remittanceInformationUnstructured: '',
purposeCode: 'lahj',
chargeBearer: 'SHAR',
creditorAgentName: '346269475818161',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RLG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201428509495339',
remittanceInformationUnstructured: '',
purposeCode: 'jipk',
chargeBearer: 'SHAR',
creditorAgentName: '5610451726168988',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SQZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4402041354793960',
remittanceInformationUnstructured: '',
purposeCode: 'lent',
chargeBearer: 'SHAR',
creditorAgentName: '6334953925474458',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MVK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528977723602823',
remittanceInformationUnstructured: '',
purposeCode: 'civh',
chargeBearer: 'SHAR',
creditorAgentName: '4026916977895498',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OSF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903340313901308',
remittanceInformationUnstructured: '',
purposeCode: 'baih',
chargeBearer: 'SHAR',
creditorAgentName: '30086474602532',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PCE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374313156656284',
remittanceInformationUnstructured: '',
purposeCode: 'vobi',
chargeBearer: 'SHAR',
creditorAgentName: '6304933837118662',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OEU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6205936719207917',
remittanceInformationUnstructured: '',
purposeCode: 'rasg',
chargeBearer: 'SHAR',
creditorAgentName: '36676301549130',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JYT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30085697117484',
remittanceInformationUnstructured: '',
purposeCode: 'lalu',
chargeBearer: 'SHAR',
creditorAgentName: '5438813170733254',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TTL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528583141842049',
remittanceInformationUnstructured: '',
purposeCode: 'bule',
chargeBearer: 'SHAR',
creditorAgentName: '5610764368217842',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PUR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018456935630262',
remittanceInformationUnstructured: '',
purposeCode: 'dukv',
chargeBearer: 'SHAR',
creditorAgentName: '3528405031552498',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UHS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6376547519407046',
remittanceInformationUnstructured: '',
purposeCode: 'gapf',
chargeBearer: 'SHAR',
creditorAgentName: '5429393004204989',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GFE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6245427165202505',
remittanceInformationUnstructured: '',
purposeCode: 'cimb',
chargeBearer: 'SHAR',
creditorAgentName: '6011679247547040',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QWR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '345379728142888',
remittanceInformationUnstructured: '',
purposeCode: 'etav',
chargeBearer: 'SHAR',
creditorAgentName: '341841174568514',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YVR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334176357363631',
remittanceInformationUnstructured: '',
purposeCode: 'emti',
chargeBearer: 'SHAR',
creditorAgentName: '6236272332331832',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OLL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026986296162144',
remittanceInformationUnstructured: '',
purposeCode: 'lacl',
chargeBearer: 'SHAR',
creditorAgentName: '345455439986217',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YXB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5144683770773439',
remittanceInformationUnstructured: '',
purposeCode: 'vesd',
chargeBearer: 'SHAR',
creditorAgentName: '6269527055798453',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RXN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026594017231550',
remittanceInformationUnstructured: '',
purposeCode: 'kumo',
chargeBearer: 'SHAR',
creditorAgentName: '4285096129108037',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FLI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5118531507085688',
remittanceInformationUnstructured: '',
purposeCode: 'pobi',
chargeBearer: 'SHAR',
creditorAgentName: '5104372814991847',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BEJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30040352129266',
remittanceInformationUnstructured: '',
purposeCode: 'fasu',
chargeBearer: 'SHAR',
creditorAgentName: '30065623383822',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ELT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334654571584737',
remittanceInformationUnstructured: '',
purposeCode: 'locw',
chargeBearer: 'SHAR',
creditorAgentName: '201439605105151',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UFS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011066470415543',
remittanceInformationUnstructured: '',
purposeCode: 'rifa',
chargeBearer: 'SHAR',
creditorAgentName: '5018991018380872',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MAX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610540679896403',
remittanceInformationUnstructured: '',
purposeCode: 'sanu',
chargeBearer: 'SHAR',
creditorAgentName: '6263105364241451',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CAL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30066783169589',
remittanceInformationUnstructured: '',
purposeCode: 'kena',
chargeBearer: 'SHAR',
creditorAgentName: '5129922772570503',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FWK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343666812875510',
remittanceInformationUnstructured: '',
purposeCode: 'jimo',
chargeBearer: 'SHAR',
creditorAgentName: '341348994980655',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HJY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334564386588213',
remittanceInformationUnstructured: '',
purposeCode: 'jodo',
chargeBearer: 'SHAR',
creditorAgentName: '5018690794581568',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OXL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201474932209814',
remittanceInformationUnstructured: '',
purposeCode: 'tioz',
chargeBearer: 'SHAR',
creditorAgentName: '201451162901559',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CRN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026791447045895',
remittanceInformationUnstructured: '',
purposeCode: 'muda',
chargeBearer: 'SHAR',
creditorAgentName: '5610030368380653',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OUN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4502744788882718',
remittanceInformationUnstructured: '',
purposeCode: 'voki',
chargeBearer: 'SHAR',
creditorAgentName: '6334199744840574',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JAH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374155716315632',
remittanceInformationUnstructured: '',
purposeCode: 'wetj',
chargeBearer: 'SHAR',
creditorAgentName: '3528056320560781',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KIB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30068380935602',
remittanceInformationUnstructured: '',
purposeCode: 'komf',
chargeBearer: 'SHAR',
creditorAgentName: '340311027064534',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VIK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018090201771573',
remittanceInformationUnstructured: '',
purposeCode: 'rogu',
chargeBearer: 'SHAR',
creditorAgentName: '5427595855445923',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UPF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011775818678899',
remittanceInformationUnstructured: '',
purposeCode: 'lawe',
chargeBearer: 'SHAR',
creditorAgentName: '6234486516689201',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MAV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304676745486800',
remittanceInformationUnstructured: '',
purposeCode: 'fero',
chargeBearer: 'SHAR',
creditorAgentName: '348132988867455',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BMO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343766949415386',
remittanceInformationUnstructured: '',
purposeCode: 'fejo',
chargeBearer: 'SHAR',
creditorAgentName: '4026999399973523',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MSM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528067859719433',
remittanceInformationUnstructured: '',
purposeCode: 'nupu',
chargeBearer: 'SHAR',
creditorAgentName: '6372402827216677',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LPP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5181090482308575',
remittanceInformationUnstructured: '',
purposeCode: 'kiwi',
chargeBearer: 'SHAR',
creditorAgentName: '4903325038779469',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LML'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011935138517074',
remittanceInformationUnstructured: '',
purposeCode: 'pihl',
chargeBearer: 'SHAR',
creditorAgentName: '5400462438850064',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LBR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36961166215096',
remittanceInformationUnstructured: '',
purposeCode: 'bace',
chargeBearer: 'SHAR',
creditorAgentName: '6011622547209028',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ACX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528192108655764',
remittanceInformationUnstructured: '',
purposeCode: 'wecm',
chargeBearer: 'SHAR',
creditorAgentName: '30047939505694',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DAW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528894507613845',
remittanceInformationUnstructured: '',
purposeCode: 'segp',
chargeBearer: 'SHAR',
creditorAgentName: '5438792426983907',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JFY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334963148930210',
remittanceInformationUnstructured: '',
purposeCode: 'etap',
chargeBearer: 'SHAR',
creditorAgentName: '201462329571482',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UVZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201470904802800',
remittanceInformationUnstructured: '',
purposeCode: 'fomo',
chargeBearer: 'SHAR',
creditorAgentName: '4903919024430325',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YLL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026045714742217',
remittanceInformationUnstructured: '',
purposeCode: 'hife',
chargeBearer: 'SHAR',
creditorAgentName: '6334651600883460',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MJE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36210380096621',
remittanceInformationUnstructured: '',
purposeCode: 'solb',
chargeBearer: 'SHAR',
creditorAgentName: '4026350235285773',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MZW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30059585713605',
remittanceInformationUnstructured: '',
purposeCode: 'japk',
chargeBearer: 'SHAR',
creditorAgentName: '36858479401894',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DQE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5499352269470631',
remittanceInformationUnstructured: '',
purposeCode: 'lahk',
chargeBearer: 'SHAR',
creditorAgentName: '201484082229173',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ARC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4793795351826092',
remittanceInformationUnstructured: '',
purposeCode: 'pude',
chargeBearer: 'SHAR',
creditorAgentName: '201427968080384',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RYT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026975393278960',
remittanceInformationUnstructured: '',
purposeCode: 'nafe',
chargeBearer: 'SHAR',
creditorAgentName: '5123167721193157',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JYQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334170654101919',
remittanceInformationUnstructured: '',
purposeCode: 'wuek',
chargeBearer: 'SHAR',
creditorAgentName: '5610994697159718',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZWM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6370639305610309',
remittanceInformationUnstructured: '',
purposeCode: 'igir',
chargeBearer: 'SHAR',
creditorAgentName: '5018975321878037',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EJU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026135860993050',
remittanceInformationUnstructured: '',
purposeCode: 'pana',
chargeBearer: 'SHAR',
creditorAgentName: '36324741946026',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NYC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4369691012330455',
remittanceInformationUnstructured: '',
purposeCode: 'hapw',
chargeBearer: 'SHAR',
creditorAgentName: '5610861230206175',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AGU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5110360098981982',
remittanceInformationUnstructured: '',
purposeCode: 'itof',
chargeBearer: 'SHAR',
creditorAgentName: '4059878985864256',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UJJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4960750067978163',
remittanceInformationUnstructured: '',
purposeCode: 'piat',
chargeBearer: 'SHAR',
creditorAgentName: '6304076915652747',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KRP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6275157439742324',
remittanceInformationUnstructured: '',
purposeCode: 'ujfi',
chargeBearer: 'SHAR',
creditorAgentName: '6011862485911918',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AHG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '349794011379771',
remittanceInformationUnstructured: '',
purposeCode: 'izus',
chargeBearer: 'SHAR',
creditorAgentName: '4026235674226026',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GOY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5441042235368303',
remittanceInformationUnstructured: '',
purposeCode: 'sale',
chargeBearer: 'SHAR',
creditorAgentName: '5446742450702160',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QPR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011879957682140',
remittanceInformationUnstructured: '',
purposeCode: 'banh',
chargeBearer: 'SHAR',
creditorAgentName: '6304144512033644',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KRS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334649103975734',
remittanceInformationUnstructured: '',
purposeCode: 'tett',
chargeBearer: 'SHAR',
creditorAgentName: '4903745561388794',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TMR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5446080673413509',
remittanceInformationUnstructured: '',
purposeCode: 'rizo',
chargeBearer: 'SHAR',
creditorAgentName: '6011403171104243',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GWM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011410999241586',
remittanceInformationUnstructured: '',
purposeCode: 'affa',
chargeBearer: 'SHAR',
creditorAgentName: '5018404026624398',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OOF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5403765868364001',
remittanceInformationUnstructured: '',
purposeCode: 'beoh',
chargeBearer: 'SHAR',
creditorAgentName: '5118839823454417',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JTO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '341939550399999',
remittanceInformationUnstructured: '',
purposeCode: 'lomc',
chargeBearer: 'SHAR',
creditorAgentName: '343150571442630',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ABT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5402959853645075',
remittanceInformationUnstructured: '',
purposeCode: 'koni',
chargeBearer: 'SHAR',
creditorAgentName: '3528808692542593',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VPS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36226869459320',
remittanceInformationUnstructured: '',
purposeCode: 'mivu',
chargeBearer: 'SHAR',
creditorAgentName: '5160934508560542',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RWT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610075246018678',
remittanceInformationUnstructured: '',
purposeCode: 'ewni',
chargeBearer: 'SHAR',
creditorAgentName: '6246194136820695',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HBT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347302592730214',
remittanceInformationUnstructured: '',
purposeCode: 'vuwm',
chargeBearer: 'SHAR',
creditorAgentName: '201484038109222',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EMS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36613496625458',
remittanceInformationUnstructured: '',
purposeCode: 'vewl',
chargeBearer: 'SHAR',
creditorAgentName: '4725451346852750',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GXQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4905980383655579',
remittanceInformationUnstructured: '',
purposeCode: 'wamo',
chargeBearer: 'SHAR',
creditorAgentName: '3528709356677412',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AQX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011390555009736',
remittanceInformationUnstructured: '',
purposeCode: 'ride',
chargeBearer: 'SHAR',
creditorAgentName: '6304720178260934',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XST'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903317028268124',
remittanceInformationUnstructured: '',
purposeCode: 'imne',
chargeBearer: 'SHAR',
creditorAgentName: '5183993514685050',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JQD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018533033851741',
remittanceInformationUnstructured: '',
purposeCode: 'guba',
chargeBearer: 'SHAR',
creditorAgentName: '3528657349062046',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RNQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610962739801704',
remittanceInformationUnstructured: '',
purposeCode: 'emip',
chargeBearer: 'SHAR',
creditorAgentName: '4026452459760943',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GKZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018236464273910',
remittanceInformationUnstructured: '',
purposeCode: 'cazh',
chargeBearer: 'SHAR',
creditorAgentName: '30001690962628',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QDM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903886509613123',
remittanceInformationUnstructured: '',
purposeCode: 'sosv',
chargeBearer: 'SHAR',
creditorAgentName: '6376352969978855',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JDN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5469971952915721',
remittanceInformationUnstructured: '',
purposeCode: 'vasi',
chargeBearer: 'SHAR',
creditorAgentName: '6371121024019681',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ETT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347427282343554',
remittanceInformationUnstructured: '',
purposeCode: 'vohs',
chargeBearer: 'SHAR',
creditorAgentName: '6374793306543633',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JIA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5108600302712754',
remittanceInformationUnstructured: '',
purposeCode: 'udoa',
chargeBearer: 'SHAR',
creditorAgentName: '4026248901199940',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RKO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610207154429551',
remittanceInformationUnstructured: '',
purposeCode: 'mifl',
chargeBearer: 'SHAR',
creditorAgentName: '6279373124692304',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TLS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903502408265515',
remittanceInformationUnstructured: '',
purposeCode: 'kadj',
chargeBearer: 'SHAR',
creditorAgentName: '6236101662730695',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ITP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018005285981468',
remittanceInformationUnstructured: '',
purposeCode: 'hove',
chargeBearer: 'SHAR',
creditorAgentName: '344086736764410',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QOI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903963768158874',
remittanceInformationUnstructured: '',
purposeCode: 'ovil',
chargeBearer: 'SHAR',
creditorAgentName: '30043547582415',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ACZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '348643688227444',
remittanceInformationUnstructured: '',
purposeCode: 'gikm',
chargeBearer: 'SHAR',
creditorAgentName: '5610572295236763',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TRJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36219997744358',
remittanceInformationUnstructured: '',
purposeCode: 'ubal',
chargeBearer: 'SHAR',
creditorAgentName: '3528593609704326',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'REH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018868573707071',
remittanceInformationUnstructured: '',
purposeCode: 'agej',
chargeBearer: 'SHAR',
creditorAgentName: '5018615589111354',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NEW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340361945417926',
remittanceInformationUnstructured: '',
purposeCode: 'buti',
chargeBearer: 'SHAR',
creditorAgentName: '6294315973155777',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CLG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6379817480841904',
remittanceInformationUnstructured: '',
purposeCode: 'buum',
chargeBearer: 'SHAR',
creditorAgentName: '6280778649210670',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FPA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5184620421643240',
remittanceInformationUnstructured: '',
purposeCode: 'gudp',
chargeBearer: 'SHAR',
creditorAgentName: '6334444467167866',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QUA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334143469913273',
remittanceInformationUnstructured: '',
purposeCode: 'fego',
chargeBearer: 'SHAR',
creditorAgentName: '6255078056749323',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PRL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6371238243716416',
remittanceInformationUnstructured: '',
purposeCode: 'daos',
chargeBearer: 'SHAR',
creditorAgentName: '4903009643201453',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QHZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334442866879065',
remittanceInformationUnstructured: '',
purposeCode: 'iriz',
chargeBearer: 'SHAR',
creditorAgentName: '5018269078220779',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ODU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5463268657507127',
remittanceInformationUnstructured: '',
purposeCode: 'bibu',
chargeBearer: 'SHAR',
creditorAgentName: '5474598426931589',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PKN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4224517809745081',
remittanceInformationUnstructured: '',
purposeCode: 'unai',
chargeBearer: 'SHAR',
creditorAgentName: '5018235104893426',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JAK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343466435300206',
remittanceInformationUnstructured: '',
purposeCode: 'durd',
chargeBearer: 'SHAR',
creditorAgentName: '5460641912958603',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DJQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6253455682707531',
remittanceInformationUnstructured: '',
purposeCode: 'acvi',
chargeBearer: 'SHAR',
creditorAgentName: '6247264311411930',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RGC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304112916120366',
remittanceInformationUnstructured: '',
purposeCode: 'miku',
chargeBearer: 'SHAR',
creditorAgentName: '343563906255297',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HEW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30002702705526',
remittanceInformationUnstructured: '',
purposeCode: 'zobi',
chargeBearer: 'SHAR',
creditorAgentName: '4903466948732105',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AHC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011199554665533',
remittanceInformationUnstructured: '',
purposeCode: 'elju',
chargeBearer: 'SHAR',
creditorAgentName: '5018991885845767',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VZP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5494073290943249',
remittanceInformationUnstructured: '',
purposeCode: 'igre',
chargeBearer: 'SHAR',
creditorAgentName: '6304304623146533',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DPR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36064964219897',
remittanceInformationUnstructured: '',
purposeCode: 'jotp',
chargeBearer: 'SHAR',
creditorAgentName: '4903869921444392',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AGM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5131035701734466',
remittanceInformationUnstructured: '',
purposeCode: 'etiz',
chargeBearer: 'SHAR',
creditorAgentName: '5116449079255302',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YXJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334789447585714',
remittanceInformationUnstructured: '',
purposeCode: 'ciij',
chargeBearer: 'SHAR',
creditorAgentName: '4026098638710588',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TFY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528531370645740',
remittanceInformationUnstructured: '',
purposeCode: 'tols',
chargeBearer: 'SHAR',
creditorAgentName: '36634935381099',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NUS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304365212712654',
remittanceInformationUnstructured: '',
purposeCode: 'depl',
chargeBearer: 'SHAR',
creditorAgentName: '6256697135925353',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WFD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6375761792030000',
remittanceInformationUnstructured: '',
purposeCode: 'temj',
chargeBearer: 'SHAR',
creditorAgentName: '5197244238032334',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HQH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304731603527755',
remittanceInformationUnstructured: '',
purposeCode: 'kigo',
chargeBearer: 'SHAR',
creditorAgentName: '6297467892524133',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SPD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4761491631802099',
remittanceInformationUnstructured: '',
purposeCode: 'hiso',
chargeBearer: 'SHAR',
creditorAgentName: '6334375043746056',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XEL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201461579413247',
remittanceInformationUnstructured: '',
purposeCode: 'sodu',
chargeBearer: 'SHAR',
creditorAgentName: '4903020924434176',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HNK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026751597613280',
remittanceInformationUnstructured: '',
purposeCode: 'cuhe',
chargeBearer: 'SHAR',
creditorAgentName: '6334660547330535',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GKG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528944279530378',
remittanceInformationUnstructured: '',
purposeCode: 'huju',
chargeBearer: 'SHAR',
creditorAgentName: '348267028870596',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VYB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903101664358534',
remittanceInformationUnstructured: '',
purposeCode: 'mimu',
chargeBearer: 'SHAR',
creditorAgentName: '5492488599906196',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ETF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334860412984545',
remittanceInformationUnstructured: '',
purposeCode: 'ragu',
chargeBearer: 'SHAR',
creditorAgentName: '201495670147874',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NSL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304811236792776',
remittanceInformationUnstructured: '',
purposeCode: 'fikm',
chargeBearer: 'SHAR',
creditorAgentName: '4903460842784999',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZEN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528888177675704',
remittanceInformationUnstructured: '',
purposeCode: 'jawa',
chargeBearer: 'SHAR',
creditorAgentName: '201473643420264',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XJC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4221544610473193',
remittanceInformationUnstructured: '',
purposeCode: 'delt',
chargeBearer: 'SHAR',
creditorAgentName: '3528271281220347',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DRG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4078229682569805',
remittanceInformationUnstructured: '',
purposeCode: 'raal',
chargeBearer: 'SHAR',
creditorAgentName: '5018750489722230',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MVI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011355863490969',
remittanceInformationUnstructured: '',
purposeCode: 'aduz',
chargeBearer: 'SHAR',
creditorAgentName: '4903669111288462',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YNB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018768066080160',
remittanceInformationUnstructured: '',
purposeCode: 'pofe',
chargeBearer: 'SHAR',
creditorAgentName: '6379016589949987',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FDC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '348300226907850',
remittanceInformationUnstructured: '',
purposeCode: 'comw',
chargeBearer: 'SHAR',
creditorAgentName: '3528307367641483',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AJN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5106985373608672',
remittanceInformationUnstructured: '',
purposeCode: 'uvez',
chargeBearer: 'SHAR',
creditorAgentName: '4903298938063252',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BYO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36064578116836',
remittanceInformationUnstructured: '',
purposeCode: 'urlu',
chargeBearer: 'SHAR',
creditorAgentName: '5018410685382442',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZHA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201497653929807',
remittanceInformationUnstructured: '',
purposeCode: 'pepj',
chargeBearer: 'SHAR',
creditorAgentName: '6334869494855655',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UXK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528227456683156',
remittanceInformationUnstructured: '',
purposeCode: 'utuk',
chargeBearer: 'SHAR',
creditorAgentName: '4026920857250568',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DLA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4626729465358760',
remittanceInformationUnstructured: '',
purposeCode: 'ovje',
chargeBearer: 'SHAR',
creditorAgentName: '5183450110552408',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ACL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36918816311543',
remittanceInformationUnstructured: '',
purposeCode: 'esow',
chargeBearer: 'SHAR',
creditorAgentName: '4903089707429778',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BUU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610788206615867',
remittanceInformationUnstructured: '',
purposeCode: 'zinu',
chargeBearer: 'SHAR',
creditorAgentName: '201420491857428',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JDR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528545604291691',
remittanceInformationUnstructured: '',
purposeCode: 'dibv',
chargeBearer: 'SHAR',
creditorAgentName: '6378969842044288',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NAL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026616750226875',
remittanceInformationUnstructured: '',
purposeCode: 'ziob',
chargeBearer: 'SHAR',
creditorAgentName: '6011586877934465',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ELO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304201527809879',
remittanceInformationUnstructured: '',
purposeCode: 'vuni',
chargeBearer: 'SHAR',
creditorAgentName: '36745505768919',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KQW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903946642202562',
remittanceInformationUnstructured: '',
purposeCode: 'bend',
chargeBearer: 'SHAR',
creditorAgentName: '6334378598781684',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AEZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6240592673051499',
remittanceInformationUnstructured: '',
purposeCode: 'umav',
chargeBearer: 'SHAR',
creditorAgentName: '201484882464897',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MUD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '342794308617005',
remittanceInformationUnstructured: '',
purposeCode: 'ivev',
chargeBearer: 'SHAR',
creditorAgentName: '6011629742506140',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PAL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201488400216184',
remittanceInformationUnstructured: '',
purposeCode: 'riun',
chargeBearer: 'SHAR',
creditorAgentName: '5610194477815684',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ITF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201492402874735',
remittanceInformationUnstructured: '',
purposeCode: 'retu',
chargeBearer: 'SHAR',
creditorAgentName: '6304620738841456',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HKD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346889359898532',
remittanceInformationUnstructured: '',
purposeCode: 'kufa',
chargeBearer: 'SHAR',
creditorAgentName: '3528423421804643',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MPT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610164012583444',
remittanceInformationUnstructured: '',
purposeCode: 'avus',
chargeBearer: 'SHAR',
creditorAgentName: '6376160498411243',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GYV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5123116511405545',
remittanceInformationUnstructured: '',
purposeCode: 'gego',
chargeBearer: 'SHAR',
creditorAgentName: '4676678919545994',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ATR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011819009824555',
remittanceInformationUnstructured: '',
purposeCode: 'somi',
chargeBearer: 'SHAR',
creditorAgentName: '4903053193185484',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EWY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4083130184978655',
remittanceInformationUnstructured: '',
purposeCode: 'datb',
chargeBearer: 'SHAR',
creditorAgentName: '5610869353682981',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NPK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6372357475169299',
remittanceInformationUnstructured: '',
purposeCode: 'lugu',
chargeBearer: 'SHAR',
creditorAgentName: '3528223907672864',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EAM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026182407189537',
remittanceInformationUnstructured: '',
purposeCode: 'pure',
chargeBearer: 'SHAR',
creditorAgentName: '4026064194767180',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PWM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36693692404478',
remittanceInformationUnstructured: '',
purposeCode: 'kock',
chargeBearer: 'SHAR',
creditorAgentName: '4903473540534822',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AYW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610738099126167',
remittanceInformationUnstructured: '',
purposeCode: 'ucik',
chargeBearer: 'SHAR',
creditorAgentName: '5610335605459222',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AVJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304948922658901',
remittanceInformationUnstructured: '',
purposeCode: 'poih',
chargeBearer: 'SHAR',
creditorAgentName: '3528896547898807',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XXF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903672069072227',
remittanceInformationUnstructured: '',
purposeCode: 'ijuv',
chargeBearer: 'SHAR',
creditorAgentName: '6011399913264701',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OSN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334445551523229',
remittanceInformationUnstructured: '',
purposeCode: 'zata',
chargeBearer: 'SHAR',
creditorAgentName: '6379092177254742',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VGA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528042362616491',
remittanceInformationUnstructured: '',
purposeCode: 'emeb',
chargeBearer: 'SHAR',
creditorAgentName: '4903106678798203',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YFU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903777296504718',
remittanceInformationUnstructured: '',
purposeCode: 'irez',
chargeBearer: 'SHAR',
creditorAgentName: '6334778207242681',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GQG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6253035922256331',
remittanceInformationUnstructured: '',
purposeCode: 'dowa',
chargeBearer: 'SHAR',
creditorAgentName: '5018930943158078',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CRZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334150771216576',
remittanceInformationUnstructured: '',
purposeCode: 'geak',
chargeBearer: 'SHAR',
creditorAgentName: '30098233708880',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NYD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304735112553467',
remittanceInformationUnstructured: '',
purposeCode: 'nanf',
chargeBearer: 'SHAR',
creditorAgentName: '5018352074446521',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HNV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026782738630776',
remittanceInformationUnstructured: '',
purposeCode: 'cala',
chargeBearer: 'SHAR',
creditorAgentName: '4904847057116611',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FFZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '345497419396876',
remittanceInformationUnstructured: '',
purposeCode: 'muzi',
chargeBearer: 'SHAR',
creditorAgentName: '3528276682082089',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SEW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528352532231166',
remittanceInformationUnstructured: '',
purposeCode: 'giep',
chargeBearer: 'SHAR',
creditorAgentName: '4903440488063924',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XXU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304761696561254',
remittanceInformationUnstructured: '',
purposeCode: 'umje',
chargeBearer: 'SHAR',
creditorAgentName: '201475253636766',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TAO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5481139201464917',
remittanceInformationUnstructured: '',
purposeCode: 'fuza',
chargeBearer: 'SHAR',
creditorAgentName: '36935016869088',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BGT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011244240964369',
remittanceInformationUnstructured: '',
purposeCode: 'ehir',
chargeBearer: 'SHAR',
creditorAgentName: '3528777115145088',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LYM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340801396591893',
remittanceInformationUnstructured: '',
purposeCode: 'memw',
chargeBearer: 'SHAR',
creditorAgentName: '30047950561790',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WAM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304155694209125',
remittanceInformationUnstructured: '',
purposeCode: 'ajfo',
chargeBearer: 'SHAR',
creditorAgentName: '5610676544335431',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TBW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528635186661682',
remittanceInformationUnstructured: '',
purposeCode: 'wepd',
chargeBearer: 'SHAR',
creditorAgentName: '6304846029202187',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CHU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5474820608102833',
remittanceInformationUnstructured: '',
purposeCode: 'umef',
chargeBearer: 'SHAR',
creditorAgentName: '5423351271432655',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XVT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4353992286414183',
remittanceInformationUnstructured: '',
purposeCode: 'zicl',
chargeBearer: 'SHAR',
creditorAgentName: '201431587382874',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KEX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201461628087265',
remittanceInformationUnstructured: '',
purposeCode: 'tahe',
chargeBearer: 'SHAR',
creditorAgentName: '4026944781101572',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XZX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304362325224487',
remittanceInformationUnstructured: '',
purposeCode: 'cuvc',
chargeBearer: 'SHAR',
creditorAgentName: '6304142623808367',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AHU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378658357011036',
remittanceInformationUnstructured: '',
purposeCode: 'geav',
chargeBearer: 'SHAR',
creditorAgentName: '6304856768198769',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KLN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903142615238482',
remittanceInformationUnstructured: '',
purposeCode: 'pale',
chargeBearer: 'SHAR',
creditorAgentName: '4026299271317521',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PHS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30003574325690',
remittanceInformationUnstructured: '',
purposeCode: 'kudd',
chargeBearer: 'SHAR',
creditorAgentName: '5491022074558395',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DJZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018624858403336',
remittanceInformationUnstructured: '',
purposeCode: 'navp',
chargeBearer: 'SHAR',
creditorAgentName: '201487691491571',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AIN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610457830166610',
remittanceInformationUnstructured: '',
purposeCode: 'irvu',
chargeBearer: 'SHAR',
creditorAgentName: '3528425128557960',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IIC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334085272700795',
remittanceInformationUnstructured: '',
purposeCode: 'batu',
chargeBearer: 'SHAR',
creditorAgentName: '342406103908972',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PGL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334524259373267',
remittanceInformationUnstructured: '',
purposeCode: 'sopp',
chargeBearer: 'SHAR',
creditorAgentName: '6334343555051885',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HWT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6257044609861856',
remittanceInformationUnstructured: '',
purposeCode: 'haco',
chargeBearer: 'SHAR',
creditorAgentName: '6222946086399824',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TZO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373867712827946',
remittanceInformationUnstructured: '',
purposeCode: 'geag',
chargeBearer: 'SHAR',
creditorAgentName: '6378732288306466',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SHW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36054975189098',
remittanceInformationUnstructured: '',
purposeCode: 'nese',
chargeBearer: 'SHAR',
creditorAgentName: '5018782954691160',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YGE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026966566655175',
remittanceInformationUnstructured: '',
purposeCode: 'cesc',
chargeBearer: 'SHAR',
creditorAgentName: '6304390306216875',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SFK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4354913768560839',
remittanceInformationUnstructured: '',
purposeCode: 'ocei',
chargeBearer: 'SHAR',
creditorAgentName: '6374889303890652',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XPR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026115723757553',
remittanceInformationUnstructured: '',
purposeCode: 'paza',
chargeBearer: 'SHAR',
creditorAgentName: '30044105991873',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VTS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018035733506484',
remittanceInformationUnstructured: '',
purposeCode: 'canu',
chargeBearer: 'SHAR',
creditorAgentName: '30013852105987',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WKE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304402128521091',
remittanceInformationUnstructured: '',
purposeCode: 'olau',
chargeBearer: 'SHAR',
creditorAgentName: '6304829615555275',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LPV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610255547005703',
remittanceInformationUnstructured: '',
purposeCode: 'jasu',
chargeBearer: 'SHAR',
creditorAgentName: '36545917549075',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KHM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026457374666737',
remittanceInformationUnstructured: '',
purposeCode: 'wala',
chargeBearer: 'SHAR',
creditorAgentName: '6372638054834282',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UMX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6283751190444821',
remittanceInformationUnstructured: '',
purposeCode: 'usku',
chargeBearer: 'SHAR',
creditorAgentName: '6334811136620899',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RFV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903211578057120',
remittanceInformationUnstructured: '',
purposeCode: 'gare',
chargeBearer: 'SHAR',
creditorAgentName: '3528337645142392',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MVK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011982691997897',
remittanceInformationUnstructured: '',
purposeCode: 'juze',
chargeBearer: 'SHAR',
creditorAgentName: '6334062984074488',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BAY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018032846386870',
remittanceInformationUnstructured: '',
purposeCode: 'gamh',
chargeBearer: 'SHAR',
creditorAgentName: '36309208808983',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QDI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334751631281484',
remittanceInformationUnstructured: '',
purposeCode: 'ewde',
chargeBearer: 'SHAR',
creditorAgentName: '5610526840058262',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WGM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6286816468421822',
remittanceInformationUnstructured: '',
purposeCode: 'judu',
chargeBearer: 'SHAR',
creditorAgentName: '36574021942414',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NRB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5165281156968766',
remittanceInformationUnstructured: '',
purposeCode: 'hefo',
chargeBearer: 'SHAR',
creditorAgentName: '6304514225818921',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IPQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373251186259474',
remittanceInformationUnstructured: '',
purposeCode: 'mica',
chargeBearer: 'SHAR',
creditorAgentName: '5490869458882002',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UXF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201477414794781',
remittanceInformationUnstructured: '',
purposeCode: 'zemu',
chargeBearer: 'SHAR',
creditorAgentName: '4526764207051119',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MZY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5165572081528331',
remittanceInformationUnstructured: '',
purposeCode: 'mimo',
chargeBearer: 'SHAR',
creditorAgentName: '5610442795206734',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SJG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304233007019646',
remittanceInformationUnstructured: '',
purposeCode: 'togn',
chargeBearer: 'SHAR',
creditorAgentName: '344082867323241',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IMY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30094358730635',
remittanceInformationUnstructured: '',
purposeCode: 'runf',
chargeBearer: 'SHAR',
creditorAgentName: '201497046157686',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QPU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4899015315040208',
remittanceInformationUnstructured: '',
purposeCode: 'jubn',
chargeBearer: 'SHAR',
creditorAgentName: '5610960303123752',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OOZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304771055815134',
remittanceInformationUnstructured: '',
purposeCode: 'fusm',
chargeBearer: 'SHAR',
creditorAgentName: '5610810899203627',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IVL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346241126469116',
remittanceInformationUnstructured: '',
purposeCode: 'luse',
chargeBearer: 'SHAR',
creditorAgentName: '201459968242078',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DYB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6375250666430777',
remittanceInformationUnstructured: '',
purposeCode: 'tivk',
chargeBearer: 'SHAR',
creditorAgentName: '4903313309845888',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MKD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5492218205486899',
remittanceInformationUnstructured: '',
purposeCode: 'himu',
chargeBearer: 'SHAR',
creditorAgentName: '3528590005069742',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BOS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610408518699521',
remittanceInformationUnstructured: '',
purposeCode: 'ucub',
chargeBearer: 'SHAR',
creditorAgentName: '4026485488775466',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PYG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334339727854628',
remittanceInformationUnstructured: '',
purposeCode: 'vubb',
chargeBearer: 'SHAR',
creditorAgentName: '6304860432450291',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RGJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30031003069084',
remittanceInformationUnstructured: '',
purposeCode: 'bono',
chargeBearer: 'SHAR',
creditorAgentName: '3528031413902604',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AWW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6376104384269927',
remittanceInformationUnstructured: '',
purposeCode: 'tisp',
chargeBearer: 'SHAR',
creditorAgentName: '5610641694052673',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SUY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903422103192478',
remittanceInformationUnstructured: '',
purposeCode: 'tahi',
chargeBearer: 'SHAR',
creditorAgentName: '36752306715750',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AJZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4434871616205482',
remittanceInformationUnstructured: '',
purposeCode: 'ikki',
chargeBearer: 'SHAR',
creditorAgentName: '6376440812655869',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IRN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6376968448062159',
remittanceInformationUnstructured: '',
purposeCode: 'hobu',
chargeBearer: 'SHAR',
creditorAgentName: '30034188035508',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YZF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4377612412595323',
remittanceInformationUnstructured: '',
purposeCode: 'muip',
chargeBearer: 'SHAR',
creditorAgentName: '6377830246853180',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EOK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '344149272608613',
remittanceInformationUnstructured: '',
purposeCode: 'kata',
chargeBearer: 'SHAR',
creditorAgentName: '5018431796551931',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KGX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201452678494857',
remittanceInformationUnstructured: '',
purposeCode: 'abdi',
chargeBearer: 'SHAR',
creditorAgentName: '6304982345574627',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BEP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610901067291286',
remittanceInformationUnstructured: '',
purposeCode: 'caru',
chargeBearer: 'SHAR',
creditorAgentName: '30079199207562',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UAI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6222149887346223',
remittanceInformationUnstructured: '',
purposeCode: 'emav',
chargeBearer: 'SHAR',
creditorAgentName: '6269546634312206',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QVL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528495221634180',
remittanceInformationUnstructured: '',
purposeCode: 'ritu',
chargeBearer: 'SHAR',
creditorAgentName: '4565803173398831',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FZQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5151113464611919',
remittanceInformationUnstructured: '',
purposeCode: 'anpa',
chargeBearer: 'SHAR',
creditorAgentName: '6334865829110261',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SGL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '341579587508491',
remittanceInformationUnstructured: '',
purposeCode: 'binu',
chargeBearer: 'SHAR',
creditorAgentName: '3528505000220579',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UKW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018269908709678',
remittanceInformationUnstructured: '',
purposeCode: 'dopo',
chargeBearer: 'SHAR',
creditorAgentName: '5111684921194821',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NEK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6216315346756934',
remittanceInformationUnstructured: '',
purposeCode: 'sisg',
chargeBearer: 'SHAR',
creditorAgentName: '6304785712053947',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ENT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6227654284576434',
remittanceInformationUnstructured: '',
purposeCode: 'sirw',
chargeBearer: 'SHAR',
creditorAgentName: '6334607302719055',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TAX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30062287266823',
remittanceInformationUnstructured: '',
purposeCode: 'aruf',
chargeBearer: 'SHAR',
creditorAgentName: '6304092083707502',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KIA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903665541372330',
remittanceInformationUnstructured: '',
purposeCode: 'omoo',
chargeBearer: 'SHAR',
creditorAgentName: '36037408593663',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SYZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6208388598778054',
remittanceInformationUnstructured: '',
purposeCode: 'atfi',
chargeBearer: 'SHAR',
creditorAgentName: '201476284656161',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FJO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610826305420969',
remittanceInformationUnstructured: '',
purposeCode: 'tibb',
chargeBearer: 'SHAR',
creditorAgentName: '6011596652916348',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MXY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026300395816610',
remittanceInformationUnstructured: '',
purposeCode: 'vopi',
chargeBearer: 'SHAR',
creditorAgentName: '6304948010353803',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ASD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334202848714438',
remittanceInformationUnstructured: '',
purposeCode: 'imut',
chargeBearer: 'SHAR',
creditorAgentName: '4472638422924868',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FOH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373679328896391',
remittanceInformationUnstructured: '',
purposeCode: 'jimu',
chargeBearer: 'SHAR',
creditorAgentName: '5018576172206193',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OBA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6254593978345670',
remittanceInformationUnstructured: '',
purposeCode: 'piji',
chargeBearer: 'SHAR',
creditorAgentName: '6219572419667870',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QIB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026716954011956',
remittanceInformationUnstructured: '',
purposeCode: 'tezj',
chargeBearer: 'SHAR',
creditorAgentName: '5018850299849155',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RPQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334979092259745',
remittanceInformationUnstructured: '',
purposeCode: 'jefa',
chargeBearer: 'SHAR',
creditorAgentName: '201414213173131',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GPC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018116146567477',
remittanceInformationUnstructured: '',
purposeCode: 'cubp',
chargeBearer: 'SHAR',
creditorAgentName: '30016551541329',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FJF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201403586462536',
remittanceInformationUnstructured: '',
purposeCode: 'hofp',
chargeBearer: 'SHAR',
creditorAgentName: '201493414006878',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XAD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6274880565675973',
remittanceInformationUnstructured: '',
purposeCode: 'dize',
chargeBearer: 'SHAR',
creditorAgentName: '349686204695635',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WUT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610601517679532',
remittanceInformationUnstructured: '',
purposeCode: 'gece',
chargeBearer: 'SHAR',
creditorAgentName: '4347075443156043',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NGX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '348545664012015',
remittanceInformationUnstructured: '',
purposeCode: 'ijce',
chargeBearer: 'SHAR',
creditorAgentName: '5018200314390761',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OUH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5411124027736834',
remittanceInformationUnstructured: '',
purposeCode: 'jobo',
chargeBearer: 'SHAR',
creditorAgentName: '6377402234381838',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SML'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903624424498639',
remittanceInformationUnstructured: '',
purposeCode: 'jivz',
chargeBearer: 'SHAR',
creditorAgentName: '6011618603095376',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UDR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '342633340288997',
remittanceInformationUnstructured: '',
purposeCode: 'inze',
chargeBearer: 'SHAR',
creditorAgentName: '3528619205249786',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DKT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346549707594676',
remittanceInformationUnstructured: '',
purposeCode: 'seun',
chargeBearer: 'SHAR',
creditorAgentName: '6291526311456379',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BZG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026404594463982',
remittanceInformationUnstructured: '',
purposeCode: 'sira',
chargeBearer: 'SHAR',
creditorAgentName: '6374166148939220',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JGX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374891195310534',
remittanceInformationUnstructured: '',
purposeCode: 'rehc',
chargeBearer: 'SHAR',
creditorAgentName: '201455209108250',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HVA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018762421465646',
remittanceInformationUnstructured: '',
purposeCode: 'osvo',
chargeBearer: 'SHAR',
creditorAgentName: '4903938368475928',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QMG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5442259142167714',
remittanceInformationUnstructured: '',
purposeCode: 'wele',
chargeBearer: 'SHAR',
creditorAgentName: '36699349903390',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EXQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5108936886385306',
remittanceInformationUnstructured: '',
purposeCode: 'deho',
chargeBearer: 'SHAR',
creditorAgentName: '342473244486326',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YKF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011196246015564',
remittanceInformationUnstructured: '',
purposeCode: 'omji',
chargeBearer: 'SHAR',
creditorAgentName: '6370711229683033',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JTA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347461546444650',
remittanceInformationUnstructured: '',
purposeCode: 'mefa',
chargeBearer: 'SHAR',
creditorAgentName: '4300359071324056',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WRM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026040009325489',
remittanceInformationUnstructured: '',
purposeCode: 'wapu',
chargeBearer: 'SHAR',
creditorAgentName: '3528925369516096',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SKP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011814033512904',
remittanceInformationUnstructured: '',
purposeCode: 'cele',
chargeBearer: 'SHAR',
creditorAgentName: '4903050288359297',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IBG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4250140894319386',
remittanceInformationUnstructured: '',
purposeCode: 'zive',
chargeBearer: 'SHAR',
creditorAgentName: '3528223875926441',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DPT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011977316567844',
remittanceInformationUnstructured: '',
purposeCode: 'kasm',
chargeBearer: 'SHAR',
creditorAgentName: '6225313627139416',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EVO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30013140346146',
remittanceInformationUnstructured: '',
purposeCode: 'irud',
chargeBearer: 'SHAR',
creditorAgentName: '4026844137501790',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EDW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5120366824070964',
remittanceInformationUnstructured: '',
purposeCode: 'vuki',
chargeBearer: 'SHAR',
creditorAgentName: '345090401813063',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UPN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5444634256243279',
remittanceInformationUnstructured: '',
purposeCode: 'mush',
chargeBearer: 'SHAR',
creditorAgentName: '4026730294268770',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MNF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5184620827354673',
remittanceInformationUnstructured: '',
purposeCode: 'feha',
chargeBearer: 'SHAR',
creditorAgentName: '5430361180587755',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LPV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6292280611179914',
remittanceInformationUnstructured: '',
purposeCode: 'zefe',
chargeBearer: 'SHAR',
creditorAgentName: '6226160589843892',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RJY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018880804543985',
remittanceInformationUnstructured: '',
purposeCode: 'anap',
chargeBearer: 'SHAR',
creditorAgentName: '6304421490589841',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KOF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528803322834072',
remittanceInformationUnstructured: '',
purposeCode: 'uzoo',
chargeBearer: 'SHAR',
creditorAgentName: '36565237918198',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LKI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378921190167195',
remittanceInformationUnstructured: '',
purposeCode: 'ibep',
chargeBearer: 'SHAR',
creditorAgentName: '5610812930858278',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JEZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4219049993018304',
remittanceInformationUnstructured: '',
purposeCode: 'luhf',
chargeBearer: 'SHAR',
creditorAgentName: '201436277959238',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RTD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304517315957939',
remittanceInformationUnstructured: '',
purposeCode: 'papm',
chargeBearer: 'SHAR',
creditorAgentName: '6253344493254026',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YQC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528562397590650',
remittanceInformationUnstructured: '',
purposeCode: 'zujs',
chargeBearer: 'SHAR',
creditorAgentName: '4903889117016093',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UJH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610370202511158',
remittanceInformationUnstructured: '',
purposeCode: 'woig',
chargeBearer: 'SHAR',
creditorAgentName: '5018126623656305',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DPP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340891102779551',
remittanceInformationUnstructured: '',
purposeCode: 'moci',
chargeBearer: 'SHAR',
creditorAgentName: '6304438748707249',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KRJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018976268934361',
remittanceInformationUnstructured: '',
purposeCode: 'riur',
chargeBearer: 'SHAR',
creditorAgentName: '30045752578525',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SOY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018569975511687',
remittanceInformationUnstructured: '',
purposeCode: 'ezom',
chargeBearer: 'SHAR',
creditorAgentName: '6374036339842212',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RUT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4775349756192965',
remittanceInformationUnstructured: '',
purposeCode: 'zibc',
chargeBearer: 'SHAR',
creditorAgentName: '5179540132551168',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZDG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304239073727525',
remittanceInformationUnstructured: '',
purposeCode: 'vehz',
chargeBearer: 'SHAR',
creditorAgentName: '5472107479672249',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LOF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4491866172789689',
remittanceInformationUnstructured: '',
purposeCode: 'bedd',
chargeBearer: 'SHAR',
creditorAgentName: '6220949650582603',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IGM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334214436467592',
remittanceInformationUnstructured: '',
purposeCode: 'zafo',
chargeBearer: 'SHAR',
creditorAgentName: '6334606565349832',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WIR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6285317872466793',
remittanceInformationUnstructured: '',
purposeCode: 'onec',
chargeBearer: 'SHAR',
creditorAgentName: '6374926346908057',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QQK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373479068273640',
remittanceInformationUnstructured: '',
purposeCode: 'jebi',
chargeBearer: 'SHAR',
creditorAgentName: '36244591089737',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FVI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201470274201260',
remittanceInformationUnstructured: '',
purposeCode: 'dipr',
chargeBearer: 'SHAR',
creditorAgentName: '5018661639844248',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DUX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6231851483949610',
remittanceInformationUnstructured: '',
purposeCode: 'zepo',
chargeBearer: 'SHAR',
creditorAgentName: '5481871746594895',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZWU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36846257848519',
remittanceInformationUnstructured: '',
purposeCode: 'puin',
chargeBearer: 'SHAR',
creditorAgentName: '5182581956025223',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RGK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201488204854396',
remittanceInformationUnstructured: '',
purposeCode: 'ikbu',
chargeBearer: 'SHAR',
creditorAgentName: '36537428391550',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CXI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6246480862945545',
remittanceInformationUnstructured: '',
purposeCode: 'vowr',
chargeBearer: 'SHAR',
creditorAgentName: '5414840060355730',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VCC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903844152714300',
remittanceInformationUnstructured: '',
purposeCode: 'cerl',
chargeBearer: 'SHAR',
creditorAgentName: '4297496218237372',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GRU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5104043187320639',
remittanceInformationUnstructured: '',
purposeCode: 'lemv',
chargeBearer: 'SHAR',
creditorAgentName: '4903505532353180',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GXI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018834827986861',
remittanceInformationUnstructured: '',
purposeCode: 'meer',
chargeBearer: 'SHAR',
creditorAgentName: '3528966010290715',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'URH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30060245978026',
remittanceInformationUnstructured: '',
purposeCode: 'dugo',
chargeBearer: 'SHAR',
creditorAgentName: '346431151468998',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IFQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201454320036748',
remittanceInformationUnstructured: '',
purposeCode: 'udnu',
chargeBearer: 'SHAR',
creditorAgentName: '3528238307413586',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SQT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6370351452606052',
remittanceInformationUnstructured: '',
purposeCode: 'gava',
chargeBearer: 'SHAR',
creditorAgentName: '4944253327203283',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GEA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4072544090918642',
remittanceInformationUnstructured: '',
purposeCode: 'curn',
chargeBearer: 'SHAR',
creditorAgentName: '5149818654820915',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MFJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011119628314454',
remittanceInformationUnstructured: '',
purposeCode: 'kupu',
chargeBearer: 'SHAR',
creditorAgentName: '3528206154148886',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NGS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026592305110825',
remittanceInformationUnstructured: '',
purposeCode: 'gupo',
chargeBearer: 'SHAR',
creditorAgentName: '6237544165812024',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PBD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5422739581807411',
remittanceInformationUnstructured: '',
purposeCode: 'omor',
chargeBearer: 'SHAR',
creditorAgentName: '6011620557791034',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ANG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201461022965611',
remittanceInformationUnstructured: '',
purposeCode: 'liwe',
chargeBearer: 'SHAR',
creditorAgentName: '5018370227300239',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LDZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528295655720830',
remittanceInformationUnstructured: '',
purposeCode: 'pusg',
chargeBearer: 'SHAR',
creditorAgentName: '6378891056476628',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HYF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026470143248976',
remittanceInformationUnstructured: '',
purposeCode: 'vege',
chargeBearer: 'SHAR',
creditorAgentName: '5495072781007307',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BRZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5441776705653963',
remittanceInformationUnstructured: '',
purposeCode: 'kadi',
chargeBearer: 'SHAR',
creditorAgentName: '6202339096091058',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QME'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018320042450891',
remittanceInformationUnstructured: '',
purposeCode: 'hunt',
chargeBearer: 'SHAR',
creditorAgentName: '6304899926832424',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OHM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6378757154749986',
remittanceInformationUnstructured: '',
purposeCode: 'woro',
chargeBearer: 'SHAR',
creditorAgentName: '4026462882992278',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RAS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5144328437181036',
remittanceInformationUnstructured: '',
purposeCode: 'sivo',
chargeBearer: 'SHAR',
creditorAgentName: '5610638931432163',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GVW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30058278919107',
remittanceInformationUnstructured: '',
purposeCode: 'nati',
chargeBearer: 'SHAR',
creditorAgentName: '5610711783151486',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UOR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026388418952355',
remittanceInformationUnstructured: '',
purposeCode: 'harc',
chargeBearer: 'SHAR',
creditorAgentName: '6011337539447490',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PNT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '342459416733710',
remittanceInformationUnstructured: '',
purposeCode: 'miom',
chargeBearer: 'SHAR',
creditorAgentName: '4026265988024502',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EEY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903878127488228',
remittanceInformationUnstructured: '',
purposeCode: 'difh',
chargeBearer: 'SHAR',
creditorAgentName: '6304619206286269',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KNG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903669197197157',
remittanceInformationUnstructured: '',
purposeCode: 'aske',
chargeBearer: 'SHAR',
creditorAgentName: '5018790175186159',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FVW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5101395889118999',
remittanceInformationUnstructured: '',
purposeCode: 'lics',
chargeBearer: 'SHAR',
creditorAgentName: '5105215391559181',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PSF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36343530151184',
remittanceInformationUnstructured: '',
purposeCode: 'beuv',
chargeBearer: 'SHAR',
creditorAgentName: '201490918568247',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JIO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610838413632674',
remittanceInformationUnstructured: '',
purposeCode: 'guks',
chargeBearer: 'SHAR',
creditorAgentName: '30066022165109',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'USN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304597809295251',
remittanceInformationUnstructured: '',
purposeCode: 'ihao',
chargeBearer: 'SHAR',
creditorAgentName: '5018911061375587',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SYD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903894702107430',
remittanceInformationUnstructured: '',
purposeCode: 'honu',
chargeBearer: 'SHAR',
creditorAgentName: '5018600266635404',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'STI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610046118129786',
remittanceInformationUnstructured: '',
purposeCode: 'oraj',
chargeBearer: 'SHAR',
creditorAgentName: '5461422542649451',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AXR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5115091176240158',
remittanceInformationUnstructured: '',
purposeCode: 'arri',
chargeBearer: 'SHAR',
creditorAgentName: '342185226585012',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DPN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4865395200738474',
remittanceInformationUnstructured: '',
purposeCode: 'zowv',
chargeBearer: 'SHAR',
creditorAgentName: '4897131002247204',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WEI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610104447325813',
remittanceInformationUnstructured: '',
purposeCode: 'duwb',
chargeBearer: 'SHAR',
creditorAgentName: '6304430030355480',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EJG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5498856303866290',
remittanceInformationUnstructured: '',
purposeCode: 'obea',
chargeBearer: 'SHAR',
creditorAgentName: '6334556853571987',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UDB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201413759988167',
remittanceInformationUnstructured: '',
purposeCode: 'eksu',
chargeBearer: 'SHAR',
creditorAgentName: '6304675358083995',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WNJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903818856281873',
remittanceInformationUnstructured: '',
purposeCode: 'cuvo',
chargeBearer: 'SHAR',
creditorAgentName: '201494594137061',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AIE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903109404025040',
remittanceInformationUnstructured: '',
purposeCode: 'johe',
chargeBearer: 'SHAR',
creditorAgentName: '6370421399984761',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WIM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201420477591959',
remittanceInformationUnstructured: '',
purposeCode: 'pids',
chargeBearer: 'SHAR',
creditorAgentName: '6376853909523719',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WYA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334156669032025',
remittanceInformationUnstructured: '',
purposeCode: 'emuv',
chargeBearer: 'SHAR',
creditorAgentName: '5018059267785678',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TVV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528253757542446',
remittanceInformationUnstructured: '',
purposeCode: 'cuam',
chargeBearer: 'SHAR',
creditorAgentName: '30053423099897',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VFE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6280265876556421',
remittanceInformationUnstructured: '',
purposeCode: 'napc',
chargeBearer: 'SHAR',
creditorAgentName: '201487924018878',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VPF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026262137219851',
remittanceInformationUnstructured: '',
purposeCode: 'mipa',
chargeBearer: 'SHAR',
creditorAgentName: '5111080259501184',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FIM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30028962607375',
remittanceInformationUnstructured: '',
purposeCode: 'udoz',
chargeBearer: 'SHAR',
creditorAgentName: '4903168400503806',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HWG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610217889837374',
remittanceInformationUnstructured: '',
purposeCode: 'dipu',
chargeBearer: 'SHAR',
creditorAgentName: '4903135582315150',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JYU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201434517441273',
remittanceInformationUnstructured: '',
purposeCode: 'ruca',
chargeBearer: 'SHAR',
creditorAgentName: '30037219379621',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HHJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374878485267243',
remittanceInformationUnstructured: '',
purposeCode: 'iwve',
chargeBearer: 'SHAR',
creditorAgentName: '201400355787788',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BAW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5150110676811965',
remittanceInformationUnstructured: '',
purposeCode: 'zomu',
chargeBearer: 'SHAR',
creditorAgentName: '3528076986297148',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RYC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528971287371750',
remittanceInformationUnstructured: '',
purposeCode: 'lama',
chargeBearer: 'SHAR',
creditorAgentName: '5472914673754768',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZIV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018634105836543',
remittanceInformationUnstructured: '',
purposeCode: 'afwo',
chargeBearer: 'SHAR',
creditorAgentName: '3528129383169608',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SRX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6213592896175110',
remittanceInformationUnstructured: '',
purposeCode: 'niil',
chargeBearer: 'SHAR',
creditorAgentName: '4103299274044961',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VSQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334681677903891',
remittanceInformationUnstructured: '',
purposeCode: 'noct',
chargeBearer: 'SHAR',
creditorAgentName: '6304374747630373',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PYM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528164617975744',
remittanceInformationUnstructured: '',
purposeCode: 'dusd',
chargeBearer: 'SHAR',
creditorAgentName: '6011466750552769',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DKM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201455313059233',
remittanceInformationUnstructured: '',
purposeCode: 'neke',
chargeBearer: 'SHAR',
creditorAgentName: '4903362132040258',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TOF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610885126642599',
remittanceInformationUnstructured: '',
purposeCode: 'kusv',
chargeBearer: 'SHAR',
creditorAgentName: '3528242452230241',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FBQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4900072829070632',
remittanceInformationUnstructured: '',
purposeCode: 'rinu',
chargeBearer: 'SHAR',
creditorAgentName: '5160316814938713',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JLW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304142541220125',
remittanceInformationUnstructured: '',
purposeCode: 'afin',
chargeBearer: 'SHAR',
creditorAgentName: '4559324788675164',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WLZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018085809128200',
remittanceInformationUnstructured: '',
purposeCode: 'cefu',
chargeBearer: 'SHAR',
creditorAgentName: '3528579593978711',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IKS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5491768624829617',
remittanceInformationUnstructured: '',
purposeCode: 'kabn',
chargeBearer: 'SHAR',
creditorAgentName: '36200247184728',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JWJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6376937222403202',
remittanceInformationUnstructured: '',
purposeCode: 'teza',
chargeBearer: 'SHAR',
creditorAgentName: '30036198105973',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UBL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5190553186417256',
remittanceInformationUnstructured: '',
purposeCode: 'rask',
chargeBearer: 'SHAR',
creditorAgentName: '6334782972736208',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AHQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903676411398131',
remittanceInformationUnstructured: '',
purposeCode: 'wope',
chargeBearer: 'SHAR',
creditorAgentName: '4650320572850698',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BWF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343984084510461',
remittanceInformationUnstructured: '',
purposeCode: 'vuba',
chargeBearer: 'SHAR',
creditorAgentName: '6304732348708312',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QPC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528352985392796',
remittanceInformationUnstructured: '',
purposeCode: 'fewe',
chargeBearer: 'SHAR',
creditorAgentName: '5610294065845455',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LTG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026855702104125',
remittanceInformationUnstructured: '',
purposeCode: 'nuke',
chargeBearer: 'SHAR',
creditorAgentName: '36855389066023',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QVA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304229515279631',
remittanceInformationUnstructured: '',
purposeCode: 'baed',
chargeBearer: 'SHAR',
creditorAgentName: '6375121417306410',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CJQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011489005275754',
remittanceInformationUnstructured: '',
purposeCode: 'cino',
chargeBearer: 'SHAR',
creditorAgentName: '36648136289976',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AVB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011513604820213',
remittanceInformationUnstructured: '',
purposeCode: 'icit',
chargeBearer: 'SHAR',
creditorAgentName: '340801717622724',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OPX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610755861934735',
remittanceInformationUnstructured: '',
purposeCode: 'kisu',
chargeBearer: 'SHAR',
creditorAgentName: '30019279975118',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BVM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201411601105618',
remittanceInformationUnstructured: '',
purposeCode: 'rezf',
chargeBearer: 'SHAR',
creditorAgentName: '6304059735993194',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VBZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011051860281044',
remittanceInformationUnstructured: '',
purposeCode: 'miza',
chargeBearer: 'SHAR',
creditorAgentName: '6274550015128564',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MPI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334760840182433',
remittanceInformationUnstructured: '',
purposeCode: 'guzu',
chargeBearer: 'SHAR',
creditorAgentName: '6011384606109231',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JRP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011656779760043',
remittanceInformationUnstructured: '',
purposeCode: 'gilo',
chargeBearer: 'SHAR',
creditorAgentName: '3528612514165157',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZTP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304483888659347',
remittanceInformationUnstructured: '',
purposeCode: 'elzo',
chargeBearer: 'SHAR',
creditorAgentName: '5182584503191407',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IML'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6240896391660337',
remittanceInformationUnstructured: '',
purposeCode: 'hioc',
chargeBearer: 'SHAR',
creditorAgentName: '5192397056568592',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OIE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334690019159757',
remittanceInformationUnstructured: '',
purposeCode: 'naer',
chargeBearer: 'SHAR',
creditorAgentName: '5018772176688094',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OQO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011865608389383',
remittanceInformationUnstructured: '',
purposeCode: 'jozz',
chargeBearer: 'SHAR',
creditorAgentName: '6334357077225579',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XJN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5467231934219425',
remittanceInformationUnstructured: '',
purposeCode: 'akni',
chargeBearer: 'SHAR',
creditorAgentName: '4026508380510515',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HTO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610720523272049',
remittanceInformationUnstructured: '',
purposeCode: 'juwo',
chargeBearer: 'SHAR',
creditorAgentName: '6304834832240594',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LHR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026096281834622',
remittanceInformationUnstructured: '',
purposeCode: 'ecug',
chargeBearer: 'SHAR',
creditorAgentName: '348372550290443',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TGW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '344840947907550',
remittanceInformationUnstructured: '',
purposeCode: 'pawe',
chargeBearer: 'SHAR',
creditorAgentName: '5451565262736072',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XZC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346515844527564',
remittanceInformationUnstructured: '',
purposeCode: 'tutr',
chargeBearer: 'SHAR',
creditorAgentName: '6334028783021210',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UKP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610572431481414',
remittanceInformationUnstructured: '',
purposeCode: 'udep',
chargeBearer: 'SHAR',
creditorAgentName: '6250028750201449',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RKH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6379283437612148',
remittanceInformationUnstructured: '',
purposeCode: 'fece',
chargeBearer: 'SHAR',
creditorAgentName: '36149926224638',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MSF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528881324184019',
remittanceInformationUnstructured: '',
purposeCode: 'zisf',
chargeBearer: 'SHAR',
creditorAgentName: '340547474536876',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RFT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5467770191486821',
remittanceInformationUnstructured: '',
purposeCode: 'zewa',
chargeBearer: 'SHAR',
creditorAgentName: '3528695023715679',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LXS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610142935313586',
remittanceInformationUnstructured: '',
purposeCode: 'abor',
chargeBearer: 'SHAR',
creditorAgentName: '6304064941827483',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VMV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304334872329589',
remittanceInformationUnstructured: '',
purposeCode: 'nivc',
chargeBearer: 'SHAR',
creditorAgentName: '4201892119131794',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WOI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343201877892828',
remittanceInformationUnstructured: '',
purposeCode: 'uvmu',
chargeBearer: 'SHAR',
creditorAgentName: '4026113393708337',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NLD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026579294077461',
remittanceInformationUnstructured: '',
purposeCode: 'gode',
chargeBearer: 'SHAR',
creditorAgentName: '4903967857422703',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NOM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304898254902627',
remittanceInformationUnstructured: '',
purposeCode: 'jozm',
chargeBearer: 'SHAR',
creditorAgentName: '6304991438948242',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QHD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4977888078242772',
remittanceInformationUnstructured: '',
purposeCode: 'divk',
chargeBearer: 'SHAR',
creditorAgentName: '6011475491217731',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RTF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36838831961181',
remittanceInformationUnstructured: '',
purposeCode: 'misn',
chargeBearer: 'SHAR',
creditorAgentName: '30089680633861',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QSA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377717365692772',
remittanceInformationUnstructured: '',
purposeCode: 'gidl',
chargeBearer: 'SHAR',
creditorAgentName: '6377778861886367',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HXB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36597682577757',
remittanceInformationUnstructured: '',
purposeCode: 'zomu',
chargeBearer: 'SHAR',
creditorAgentName: '6371332838840754',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FMG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018882646068981',
remittanceInformationUnstructured: '',
purposeCode: 'nohj',
chargeBearer: 'SHAR',
creditorAgentName: '6269397715631316',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SNY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903436858275908',
remittanceInformationUnstructured: '',
purposeCode: 'natu',
chargeBearer: 'SHAR',
creditorAgentName: '6376508056604981',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LQF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5444071859660619',
remittanceInformationUnstructured: '',
purposeCode: 'egpa',
chargeBearer: 'SHAR',
creditorAgentName: '3528277228290186',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FIQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334635039512782',
remittanceInformationUnstructured: '',
purposeCode: 'gijc',
chargeBearer: 'SHAR',
creditorAgentName: '4026326761865105',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WKW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304934750330284',
remittanceInformationUnstructured: '',
purposeCode: 'siiv',
chargeBearer: 'SHAR',
creditorAgentName: '6304717668587107',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YNR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610180616867983',
remittanceInformationUnstructured: '',
purposeCode: 'ibwo',
chargeBearer: 'SHAR',
creditorAgentName: '201453819203488',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AAB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5125306371330275',
remittanceInformationUnstructured: '',
purposeCode: 'tegk',
chargeBearer: 'SHAR',
creditorAgentName: '36232197345827',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ALC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5483871723350608',
remittanceInformationUnstructured: '',
purposeCode: 'epej',
chargeBearer: 'SHAR',
creditorAgentName: '5610855050443199',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LGD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6258554778868416',
remittanceInformationUnstructured: '',
purposeCode: 'rema',
chargeBearer: 'SHAR',
creditorAgentName: '6011470028434917',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LAY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201481089448434',
remittanceInformationUnstructured: '',
purposeCode: 'mivc',
chargeBearer: 'SHAR',
creditorAgentName: '6379079640126250',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BTN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '345893471195851',
remittanceInformationUnstructured: '',
purposeCode: 'denf',
chargeBearer: 'SHAR',
creditorAgentName: '30073805790855',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MMH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610492997473897',
remittanceInformationUnstructured: '',
purposeCode: 'fuzk',
chargeBearer: 'SHAR',
creditorAgentName: '6304149141443130',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YEE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018009830126124',
remittanceInformationUnstructured: '',
purposeCode: 'date',
chargeBearer: 'SHAR',
creditorAgentName: '6304932296214525',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EGU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6231642449951638',
remittanceInformationUnstructured: '',
purposeCode: 'mucj',
chargeBearer: 'SHAR',
creditorAgentName: '5171931892003284',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RWK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5164370031918707',
remittanceInformationUnstructured: '',
purposeCode: 'wuwe',
chargeBearer: 'SHAR',
creditorAgentName: '6011938920858581',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AZZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5473282117366352',
remittanceInformationUnstructured: '',
purposeCode: 'nepe',
chargeBearer: 'SHAR',
creditorAgentName: '4903786240905053',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TWA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026419723881375',
remittanceInformationUnstructured: '',
purposeCode: 'tidb',
chargeBearer: 'SHAR',
creditorAgentName: '36653731063255',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WVG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903926855139420',
remittanceInformationUnstructured: '',
purposeCode: 'hodv',
chargeBearer: 'SHAR',
creditorAgentName: '6334116589621158',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DVL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201478277076936',
remittanceInformationUnstructured: '',
purposeCode: 'jata',
chargeBearer: 'SHAR',
creditorAgentName: '4903787255180947',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HAV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5471814513918378',
remittanceInformationUnstructured: '',
purposeCode: 'vefb',
chargeBearer: 'SHAR',
creditorAgentName: '3528569863639416',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NEA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374001249817621',
remittanceInformationUnstructured: '',
purposeCode: 'waja',
chargeBearer: 'SHAR',
creditorAgentName: '5610442311655505',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JXR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30017095418297',
remittanceInformationUnstructured: '',
purposeCode: 'cale',
chargeBearer: 'SHAR',
creditorAgentName: '4903706313401590',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JRM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011627289283651',
remittanceInformationUnstructured: '',
purposeCode: 'ikle',
chargeBearer: 'SHAR',
creditorAgentName: '4026658902749289',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NOW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304441513695987',
remittanceInformationUnstructured: '',
purposeCode: 'umci',
chargeBearer: 'SHAR',
creditorAgentName: '5187447726537647',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KHS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6207325054941223',
remittanceInformationUnstructured: '',
purposeCode: 'ezwe',
chargeBearer: 'SHAR',
creditorAgentName: '6238813848002660',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GJY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6253696075993010',
remittanceInformationUnstructured: '',
purposeCode: 'morf',
chargeBearer: 'SHAR',
creditorAgentName: '6253766111879307',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KBC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6376059341420775',
remittanceInformationUnstructured: '',
purposeCode: 'azsu',
chargeBearer: 'SHAR',
creditorAgentName: '5131163103794902',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SNZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011499639440401',
remittanceInformationUnstructured: '',
purposeCode: 'abfi',
chargeBearer: 'SHAR',
creditorAgentName: '4275574361327178',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PGW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334481269015174',
remittanceInformationUnstructured: '',
purposeCode: 'mabu',
chargeBearer: 'SHAR',
creditorAgentName: '201438920498952',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GHV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6264264065230534',
remittanceInformationUnstructured: '',
purposeCode: 'guaj',
chargeBearer: 'SHAR',
creditorAgentName: '6371835175091211',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZDW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903735869205121',
remittanceInformationUnstructured: '',
purposeCode: 'woir',
chargeBearer: 'SHAR',
creditorAgentName: '6334497782816971',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EFG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30009799154229',
remittanceInformationUnstructured: '',
purposeCode: 'nidd',
chargeBearer: 'SHAR',
creditorAgentName: '5018976945225647',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MKU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '345904891723048',
remittanceInformationUnstructured: '',
purposeCode: 'gilo',
chargeBearer: 'SHAR',
creditorAgentName: '36552617668254',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XXV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4386047110327399',
remittanceInformationUnstructured: '',
purposeCode: 'cere',
chargeBearer: 'SHAR',
creditorAgentName: '36242122800267',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HVI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334765169024918',
remittanceInformationUnstructured: '',
purposeCode: 'mirs',
chargeBearer: 'SHAR',
creditorAgentName: '201447378459440',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VRO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334918090520427',
remittanceInformationUnstructured: '',
purposeCode: 'meki',
chargeBearer: 'SHAR',
creditorAgentName: '5018192055233930',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NBE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5402386435896416',
remittanceInformationUnstructured: '',
purposeCode: 'tuul',
chargeBearer: 'SHAR',
creditorAgentName: '5190822672114234',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UEL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304322894826567',
remittanceInformationUnstructured: '',
purposeCode: 'osri',
chargeBearer: 'SHAR',
creditorAgentName: '30052314041406',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DAI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018249205440219',
remittanceInformationUnstructured: '',
purposeCode: 'tore',
chargeBearer: 'SHAR',
creditorAgentName: '5488820924736037',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OAI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340112569925706',
remittanceInformationUnstructured: '',
purposeCode: 'gole',
chargeBearer: 'SHAR',
creditorAgentName: '5414770575784324',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VKW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6375623539120801',
remittanceInformationUnstructured: '',
purposeCode: 'alov',
chargeBearer: 'SHAR',
creditorAgentName: '30037218662324',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PRN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340741265395523',
remittanceInformationUnstructured: '',
purposeCode: 'ronl',
chargeBearer: 'SHAR',
creditorAgentName: '4026011016390642',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DBX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4833783896731136',
remittanceInformationUnstructured: '',
purposeCode: 'delo',
chargeBearer: 'SHAR',
creditorAgentName: '36001354663953',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EGH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304503052288704',
remittanceInformationUnstructured: '',
purposeCode: 'birz',
chargeBearer: 'SHAR',
creditorAgentName: '6213108098901102',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MTE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334580615358152',
remittanceInformationUnstructured: '',
purposeCode: 'okuc',
chargeBearer: 'SHAR',
creditorAgentName: '30060604839082',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HMY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334779387624052',
remittanceInformationUnstructured: '',
purposeCode: 'obam',
chargeBearer: 'SHAR',
creditorAgentName: '6374140686161521',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AYR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377542344325264',
remittanceInformationUnstructured: '',
purposeCode: 'loso',
chargeBearer: 'SHAR',
creditorAgentName: '5486257641853617',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LGY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018184150067073',
remittanceInformationUnstructured: '',
purposeCode: 'fuci',
chargeBearer: 'SHAR',
creditorAgentName: '3528130648425322',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DSV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018387421824749',
remittanceInformationUnstructured: '',
purposeCode: 'tubu',
chargeBearer: 'SHAR',
creditorAgentName: '6281915794747622',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HCN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5179810791969369',
remittanceInformationUnstructured: '',
purposeCode: 'wiki',
chargeBearer: 'SHAR',
creditorAgentName: '3528338150862408',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FEY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30062165562095',
remittanceInformationUnstructured: '',
purposeCode: 'meli',
chargeBearer: 'SHAR',
creditorAgentName: '5018641554252577',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OUY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343287776766478',
remittanceInformationUnstructured: '',
purposeCode: 'core',
chargeBearer: 'SHAR',
creditorAgentName: '6334761912945293',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GBM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5461015356202696',
remittanceInformationUnstructured: '',
purposeCode: 'gace',
chargeBearer: 'SHAR',
creditorAgentName: '6334666000711111',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QUV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5189894326058987',
remittanceInformationUnstructured: '',
purposeCode: 'cila',
chargeBearer: 'SHAR',
creditorAgentName: '4903844975115164',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MJL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610204566942412',
remittanceInformationUnstructured: '',
purposeCode: 'nucu',
chargeBearer: 'SHAR',
creditorAgentName: '340183497931157',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QSA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5490733300231232',
remittanceInformationUnstructured: '',
purposeCode: 'feti',
chargeBearer: 'SHAR',
creditorAgentName: '4871234518434033',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QSS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304189549170547',
remittanceInformationUnstructured: '',
purposeCode: 'juzz',
chargeBearer: 'SHAR',
creditorAgentName: '4227530897070590',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZBR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528682454110232',
remittanceInformationUnstructured: '',
purposeCode: 'dovp',
chargeBearer: 'SHAR',
creditorAgentName: '4026538381904102',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CYQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903425403897472',
remittanceInformationUnstructured: '',
purposeCode: 'fakg',
chargeBearer: 'SHAR',
creditorAgentName: '30015692101621',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LUW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5128650891709600',
remittanceInformationUnstructured: '',
purposeCode: 'nojo',
chargeBearer: 'SHAR',
creditorAgentName: '36277583710852',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XHX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201460479501663',
remittanceInformationUnstructured: '',
purposeCode: 'afow',
chargeBearer: 'SHAR',
creditorAgentName: '6266482626807438',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WIS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528652479383510',
remittanceInformationUnstructured: '',
purposeCode: 'rali',
chargeBearer: 'SHAR',
creditorAgentName: '201445928990856',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MBI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011177449876150',
remittanceInformationUnstructured: '',
purposeCode: 'jeef',
chargeBearer: 'SHAR',
creditorAgentName: '4903108154126958',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZTD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30033873354083',
remittanceInformationUnstructured: '',
purposeCode: 'niwd',
chargeBearer: 'SHAR',
creditorAgentName: '4903319781491612',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YYW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6235435808714937',
remittanceInformationUnstructured: '',
purposeCode: 'awpo',
chargeBearer: 'SHAR',
creditorAgentName: '341048340938627',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PKJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374605391515930',
remittanceInformationUnstructured: '',
purposeCode: 'liwo',
chargeBearer: 'SHAR',
creditorAgentName: '6304706636277099',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PBV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610598352971638',
remittanceInformationUnstructured: '',
purposeCode: 'wete',
chargeBearer: 'SHAR',
creditorAgentName: '5140590394309355',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DGH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '349206302527109',
remittanceInformationUnstructured: '',
purposeCode: 'nubi',
chargeBearer: 'SHAR',
creditorAgentName: '348098274916514',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SYQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5185504589080255',
remittanceInformationUnstructured: '',
purposeCode: 'diln',
chargeBearer: 'SHAR',
creditorAgentName: '5499355283068265',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OSC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346325750619789',
remittanceInformationUnstructured: '',
purposeCode: 'odus',
chargeBearer: 'SHAR',
creditorAgentName: '3528461676302293',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WKF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026896082425805',
remittanceInformationUnstructured: '',
purposeCode: 'ibsa',
chargeBearer: 'SHAR',
creditorAgentName: '5018110246349597',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QRP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334993343440749',
remittanceInformationUnstructured: '',
purposeCode: 'wiku',
chargeBearer: 'SHAR',
creditorAgentName: '4026225763600009',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OIS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026100926982331',
remittanceInformationUnstructured: '',
purposeCode: 'rusa',
chargeBearer: 'SHAR',
creditorAgentName: '342436603669568',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MUH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903095945498103',
remittanceInformationUnstructured: '',
purposeCode: 'pume',
chargeBearer: 'SHAR',
creditorAgentName: '6283412601547435',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DPX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340717420824649',
remittanceInformationUnstructured: '',
purposeCode: 'puwk',
chargeBearer: 'SHAR',
creditorAgentName: '346346240758052',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JEW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340134940998244',
remittanceInformationUnstructured: '',
purposeCode: 'nobe',
chargeBearer: 'SHAR',
creditorAgentName: '5018304871036823',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VMM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '341394001963953',
remittanceInformationUnstructured: '',
purposeCode: 'hedi',
chargeBearer: 'SHAR',
creditorAgentName: '5487448078704337',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LNE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528882504883289',
remittanceInformationUnstructured: '',
purposeCode: 'saco',
chargeBearer: 'SHAR',
creditorAgentName: '5174028692029804',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YUV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5497388227328547',
remittanceInformationUnstructured: '',
purposeCode: 'ahva',
chargeBearer: 'SHAR',
creditorAgentName: '5018083809863603',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NZI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011296763584461',
remittanceInformationUnstructured: '',
purposeCode: 'buto',
chargeBearer: 'SHAR',
creditorAgentName: '4028817552136076',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RZY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '343912673106003',
remittanceInformationUnstructured: '',
purposeCode: 'rual',
chargeBearer: 'SHAR',
creditorAgentName: '6011030570071127',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HAG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610050239701697',
remittanceInformationUnstructured: '',
purposeCode: 'eluh',
chargeBearer: 'SHAR',
creditorAgentName: '6011272323722966',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HVJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304602195577336',
remittanceInformationUnstructured: '',
purposeCode: 'wute',
chargeBearer: 'SHAR',
creditorAgentName: '201490826347643',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZZV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201464926871463',
remittanceInformationUnstructured: '',
purposeCode: 'cumu',
chargeBearer: 'SHAR',
creditorAgentName: '5165717474570255',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PTB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30076210105049',
remittanceInformationUnstructured: '',
purposeCode: 'ebup',
chargeBearer: 'SHAR',
creditorAgentName: '36785668734480',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FSN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903349042505629',
remittanceInformationUnstructured: '',
purposeCode: 'hivw',
chargeBearer: 'SHAR',
creditorAgentName: '5610064942324531',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KNR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304798815103790',
remittanceInformationUnstructured: '',
purposeCode: 'mazw',
chargeBearer: 'SHAR',
creditorAgentName: '5478945642736944',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BNI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4751420352853959',
remittanceInformationUnstructured: '',
purposeCode: 'owup',
chargeBearer: 'SHAR',
creditorAgentName: '6267877952277065',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PUA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334797579047916',
remittanceInformationUnstructured: '',
purposeCode: 'hube',
chargeBearer: 'SHAR',
creditorAgentName: '6375293783192086',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CHK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018726364483700',
remittanceInformationUnstructured: '',
purposeCode: 'hazo',
chargeBearer: 'SHAR',
creditorAgentName: '4050281225279584',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KAU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30061211816513',
remittanceInformationUnstructured: '',
purposeCode: 'tigj',
chargeBearer: 'SHAR',
creditorAgentName: '5105852629392066',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ROZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5486885106724681',
remittanceInformationUnstructured: '',
purposeCode: 'itso',
chargeBearer: 'SHAR',
creditorAgentName: '6271215608220359',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TWE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011106863912712',
remittanceInformationUnstructured: '',
purposeCode: 'vuka',
chargeBearer: 'SHAR',
creditorAgentName: '5018318606695570',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MYJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026948886508680',
remittanceInformationUnstructured: '',
purposeCode: 'botp',
chargeBearer: 'SHAR',
creditorAgentName: '201496400620305',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YQG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36238893985337',
remittanceInformationUnstructured: '',
purposeCode: 'tibw',
chargeBearer: 'SHAR',
creditorAgentName: '6304219275033591',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XNX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347946066560521',
remittanceInformationUnstructured: '',
purposeCode: 'pelu',
chargeBearer: 'SHAR',
creditorAgentName: '4461730004744369',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JBL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018831831652299',
remittanceInformationUnstructured: '',
purposeCode: 'pigi',
chargeBearer: 'SHAR',
creditorAgentName: '3528770554789862',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SVT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903604761518959',
remittanceInformationUnstructured: '',
purposeCode: 'dodo',
chargeBearer: 'SHAR',
creditorAgentName: '6372307839694870',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CYF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334881039393985',
remittanceInformationUnstructured: '',
purposeCode: 'mame',
chargeBearer: 'SHAR',
creditorAgentName: '6011502976294420',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SAB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610494041504297',
remittanceInformationUnstructured: '',
purposeCode: 'bimi',
chargeBearer: 'SHAR',
creditorAgentName: '5412240368591189',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RJD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334348829527115',
remittanceInformationUnstructured: '',
purposeCode: 'melg',
chargeBearer: 'SHAR',
creditorAgentName: '3528750019880571',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RKL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304099034566002',
remittanceInformationUnstructured: '',
purposeCode: 'hauw',
chargeBearer: 'SHAR',
creditorAgentName: '5424182535426426',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YYE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4297914126463104',
remittanceInformationUnstructured: '',
purposeCode: 'dipi',
chargeBearer: 'SHAR',
creditorAgentName: '342954387167211',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'REG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610408538894037',
remittanceInformationUnstructured: '',
purposeCode: 'zazo',
chargeBearer: 'SHAR',
creditorAgentName: '30068105525183',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MQQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5434938204997205',
remittanceInformationUnstructured: '',
purposeCode: 'imor',
chargeBearer: 'SHAR',
creditorAgentName: '5176579348579186',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CRO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018944033180983',
remittanceInformationUnstructured: '',
purposeCode: 'mack',
chargeBearer: 'SHAR',
creditorAgentName: '5018061958983455',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OQS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304212063942487',
remittanceInformationUnstructured: '',
purposeCode: 'zovv',
chargeBearer: 'SHAR',
creditorAgentName: '3528617472428075',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JTK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026291603895431',
remittanceInformationUnstructured: '',
purposeCode: 'gugj',
chargeBearer: 'SHAR',
creditorAgentName: '341666723457053',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VCR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4884033513948491',
remittanceInformationUnstructured: '',
purposeCode: 'ezfu',
chargeBearer: 'SHAR',
creditorAgentName: '5018624543203059',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RHH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903430910113330',
remittanceInformationUnstructured: '',
purposeCode: 'jozo',
chargeBearer: 'SHAR',
creditorAgentName: '5018447185936574',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DEE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026369283511161',
remittanceInformationUnstructured: '',
purposeCode: 'tipi',
chargeBearer: 'SHAR',
creditorAgentName: '36179514814243',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KMB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '341240906640784',
remittanceInformationUnstructured: '',
purposeCode: 'ludn',
chargeBearer: 'SHAR',
creditorAgentName: '201434576172553',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QOU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5167504525326780',
remittanceInformationUnstructured: '',
purposeCode: 'gobo',
chargeBearer: 'SHAR',
creditorAgentName: '6304188519562113',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TLQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377403061978688',
remittanceInformationUnstructured: '',
purposeCode: 'napl',
chargeBearer: 'SHAR',
creditorAgentName: '4123876366507587',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DTQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36058190174637',
remittanceInformationUnstructured: '',
purposeCode: 'puco',
chargeBearer: 'SHAR',
creditorAgentName: '5123503687171987',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TAS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011654650127564',
remittanceInformationUnstructured: '',
purposeCode: 'jubd',
chargeBearer: 'SHAR',
creditorAgentName: '6334750754147480',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IWC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4438968553237449',
remittanceInformationUnstructured: '',
purposeCode: 'lunu',
chargeBearer: 'SHAR',
creditorAgentName: '343775070254076',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZHS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30088327690870',
remittanceInformationUnstructured: '',
purposeCode: 'muen',
chargeBearer: 'SHAR',
creditorAgentName: '6011713082110455',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DRA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4447253280614817',
remittanceInformationUnstructured: '',
purposeCode: 'nivs',
chargeBearer: 'SHAR',
creditorAgentName: '6334541208371671',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EEP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5424947653298934',
remittanceInformationUnstructured: '',
purposeCode: 'gace',
chargeBearer: 'SHAR',
creditorAgentName: '6304529259094033',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KNA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610325458132661',
remittanceInformationUnstructured: '',
purposeCode: 'citi',
chargeBearer: 'SHAR',
creditorAgentName: '5018372629074842',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NDR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340876203533247',
remittanceInformationUnstructured: '',
purposeCode: 'ibau',
chargeBearer: 'SHAR',
creditorAgentName: '3528298466050314',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RUW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026737986700614',
remittanceInformationUnstructured: '',
purposeCode: 'rojo',
chargeBearer: 'SHAR',
creditorAgentName: '6011035734897291',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LNS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201418044061688',
remittanceInformationUnstructured: '',
purposeCode: 'udre',
chargeBearer: 'SHAR',
creditorAgentName: '6375774022503217',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DGU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903703788503331',
remittanceInformationUnstructured: '',
purposeCode: 'kage',
chargeBearer: 'SHAR',
creditorAgentName: '5193936330209793',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TFD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377757967045672',
remittanceInformationUnstructured: '',
purposeCode: 'kipk',
chargeBearer: 'SHAR',
creditorAgentName: '341565431009463',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KJR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4934074974345314',
remittanceInformationUnstructured: '',
purposeCode: 'awju',
chargeBearer: 'SHAR',
creditorAgentName: '3528435434290867',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WTO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6272420386564221',
remittanceInformationUnstructured: '',
purposeCode: 'adea',
chargeBearer: 'SHAR',
creditorAgentName: '6374744717811143',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZRA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36628783453489',
remittanceInformationUnstructured: '',
purposeCode: 'bika',
chargeBearer: 'SHAR',
creditorAgentName: '6201246065391743',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BYB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377263051565485',
remittanceInformationUnstructured: '',
purposeCode: 'daul',
chargeBearer: 'SHAR',
creditorAgentName: '348984708197500',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZMX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201400182997261',
remittanceInformationUnstructured: '',
purposeCode: 'lers',
chargeBearer: 'SHAR',
creditorAgentName: '5187923064189175',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LSZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5146158176946077',
remittanceInformationUnstructured: '',
purposeCode: 'hofs',
chargeBearer: 'SHAR',
creditorAgentName: '342906225276810',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TNH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304236076333525',
remittanceInformationUnstructured: '',
purposeCode: 'pulk',
chargeBearer: 'SHAR',
creditorAgentName: '6379273925585534',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AKN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610510598754389',
remittanceInformationUnstructured: '',
purposeCode: 'losc',
chargeBearer: 'SHAR',
creditorAgentName: '5018339168145606',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QIX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36200169626979',
remittanceInformationUnstructured: '',
purposeCode: 'ecot',
chargeBearer: 'SHAR',
creditorAgentName: '5198617874681127',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RQU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334000753437726',
remittanceInformationUnstructured: '',
purposeCode: 'tubu',
chargeBearer: 'SHAR',
creditorAgentName: '30089563416806',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XGR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377405744928675',
remittanceInformationUnstructured: '',
purposeCode: 'povi',
chargeBearer: 'SHAR',
creditorAgentName: '3528286571143264',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LWB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018898005247883',
remittanceInformationUnstructured: '',
purposeCode: 'upon',
chargeBearer: 'SHAR',
creditorAgentName: '6378822324195872',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XKP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528333888707355',
remittanceInformationUnstructured: '',
purposeCode: 'wowm',
chargeBearer: 'SHAR',
creditorAgentName: '5428116943522455',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZHN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011943134535470',
remittanceInformationUnstructured: '',
purposeCode: 'tila',
chargeBearer: 'SHAR',
creditorAgentName: '6011591269354017',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZWA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340046298696610',
remittanceInformationUnstructured: '',
purposeCode: 'pazz',
chargeBearer: 'SHAR',
creditorAgentName: '4903309447241618',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SCR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201418786084542',
remittanceInformationUnstructured: '',
purposeCode: 'dowo',
chargeBearer: 'SHAR',
creditorAgentName: '342580986449948',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CXG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610131365184849',
remittanceInformationUnstructured: '',
purposeCode: 'abma',
chargeBearer: 'SHAR',
creditorAgentName: '4167145447179767',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PQJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5436079862212435',
remittanceInformationUnstructured: '',
purposeCode: 'ulhu',
chargeBearer: 'SHAR',
creditorAgentName: '6271400289795362',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AXO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011694460530524',
remittanceInformationUnstructured: '',
purposeCode: 'egov',
chargeBearer: 'SHAR',
creditorAgentName: '36647979948235',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YVD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347995683854049',
remittanceInformationUnstructured: '',
purposeCode: 'zeig',
chargeBearer: 'SHAR',
creditorAgentName: '6334120193639663',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CBM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011714457003622',
remittanceInformationUnstructured: '',
purposeCode: 'woho',
chargeBearer: 'SHAR',
creditorAgentName: '5448794107027150',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OXO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610825908624662',
remittanceInformationUnstructured: '',
purposeCode: 'ciwd',
chargeBearer: 'SHAR',
creditorAgentName: '5132120128394703',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ODV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36897532088298',
remittanceInformationUnstructured: '',
purposeCode: 'cuga',
chargeBearer: 'SHAR',
creditorAgentName: '5610803091669356',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YRA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4535544698590901',
remittanceInformationUnstructured: '',
purposeCode: 'fese',
chargeBearer: 'SHAR',
creditorAgentName: '6334460854335593',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KFG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201484606448598',
remittanceInformationUnstructured: '',
purposeCode: 'zila',
chargeBearer: 'SHAR',
creditorAgentName: '6334320083550356',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DHJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '342963700298074',
remittanceInformationUnstructured: '',
purposeCode: 'padv',
chargeBearer: 'SHAR',
creditorAgentName: '6304482405994963',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZTR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5181524244330634',
remittanceInformationUnstructured: '',
purposeCode: 'tojo',
chargeBearer: 'SHAR',
creditorAgentName: '201468486493063',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UUV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610014526526480',
remittanceInformationUnstructured: '',
purposeCode: 'vibe',
chargeBearer: 'SHAR',
creditorAgentName: '4903299802321040',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SNA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30013386010158',
remittanceInformationUnstructured: '',
purposeCode: 'ewio',
chargeBearer: 'SHAR',
creditorAgentName: '36318667019461',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XVW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610697835357652',
remittanceInformationUnstructured: '',
purposeCode: 'hare',
chargeBearer: 'SHAR',
creditorAgentName: '5138106054150502',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RJD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6296355335275044',
remittanceInformationUnstructured: '',
purposeCode: 'zohb',
chargeBearer: 'SHAR',
creditorAgentName: '5018199384895966',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VLK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610150103906727',
remittanceInformationUnstructured: '',
purposeCode: 'huhh',
chargeBearer: 'SHAR',
creditorAgentName: '5492488213141907',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EXV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334553555789660',
remittanceInformationUnstructured: '',
purposeCode: 'sotl',
chargeBearer: 'SHAR',
creditorAgentName: '5018938753350347',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CDJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4005235269710553',
remittanceInformationUnstructured: '',
purposeCode: 'doez',
chargeBearer: 'SHAR',
creditorAgentName: '6334215803505088',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VKL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018908056476628',
remittanceInformationUnstructured: '',
purposeCode: 'raco',
chargeBearer: 'SHAR',
creditorAgentName: '5610871989625863',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ITX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6379985940637335',
remittanceInformationUnstructured: '',
purposeCode: 'lurk',
chargeBearer: 'SHAR',
creditorAgentName: '4185481260320065',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DQP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6281115515528126',
remittanceInformationUnstructured: '',
purposeCode: 'koub',
chargeBearer: 'SHAR',
creditorAgentName: '5018061562597931',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OHF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36405882019846',
remittanceInformationUnstructured: '',
purposeCode: 'igme',
chargeBearer: 'SHAR',
creditorAgentName: '30098977929080',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RWV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903187585332955',
remittanceInformationUnstructured: '',
purposeCode: 'ucah',
chargeBearer: 'SHAR',
creditorAgentName: '4903670343733002',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RBA'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528837300490333',
remittanceInformationUnstructured: '',
purposeCode: 'tago',
chargeBearer: 'SHAR',
creditorAgentName: '6378037417979070',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SSV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4653640456228696',
remittanceInformationUnstructured: '',
purposeCode: 'relr',
chargeBearer: 'SHAR',
creditorAgentName: '6334560928528170',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FCZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6377061980221703',
remittanceInformationUnstructured: '',
purposeCode: 'udos',
chargeBearer: 'SHAR',
creditorAgentName: '349738828355136',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VKH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026802743181597',
remittanceInformationUnstructured: '',
purposeCode: 'feut',
chargeBearer: 'SHAR',
creditorAgentName: '5610498238209966',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HLE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '342525170288966',
remittanceInformationUnstructured: '',
purposeCode: 'pied',
chargeBearer: 'SHAR',
creditorAgentName: '5101815539826568',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XFS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304405327717451',
remittanceInformationUnstructured: '',
purposeCode: 'epvi',
chargeBearer: 'SHAR',
creditorAgentName: '5610822216922839',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WNS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201444276709893',
remittanceInformationUnstructured: '',
purposeCode: 'dozi',
chargeBearer: 'SHAR',
creditorAgentName: '5610593109318167',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EOR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36347093679242',
remittanceInformationUnstructured: '',
purposeCode: 'dozv',
chargeBearer: 'SHAR',
creditorAgentName: '36069163793113',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MQF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201439493819095',
remittanceInformationUnstructured: '',
purposeCode: 'lejd',
chargeBearer: 'SHAR',
creditorAgentName: '201469262424371',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AKW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4435609329028133',
remittanceInformationUnstructured: '',
purposeCode: 'luto',
chargeBearer: 'SHAR',
creditorAgentName: '30069883687146',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GVY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '347421428131601',
remittanceInformationUnstructured: '',
purposeCode: 'soag',
chargeBearer: 'SHAR',
creditorAgentName: '201453537078311',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'BBQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026576044633106',
remittanceInformationUnstructured: '',
purposeCode: 'mamd',
chargeBearer: 'SHAR',
creditorAgentName: '5482506253086393',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SEM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36839865581366',
remittanceInformationUnstructured: '',
purposeCode: 'zucl',
chargeBearer: 'SHAR',
creditorAgentName: '30093501575376',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HQB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '340241379105710',
remittanceInformationUnstructured: '',
purposeCode: 'topb',
chargeBearer: 'SHAR',
creditorAgentName: '4903958853483476',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MWW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5415829324165828',
remittanceInformationUnstructured: '',
purposeCode: 'vebe',
chargeBearer: 'SHAR',
creditorAgentName: '36898318446130',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LKJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30006035650143',
remittanceInformationUnstructured: '',
purposeCode: 'kino',
chargeBearer: 'SHAR',
creditorAgentName: '5610387212785135',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GUZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334263229542434',
remittanceInformationUnstructured: '',
purposeCode: 'hija',
chargeBearer: 'SHAR',
creditorAgentName: '5018421711341369',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZNN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026077909954463',
remittanceInformationUnstructured: '',
purposeCode: 'feug',
chargeBearer: 'SHAR',
creditorAgentName: '5159165969396398',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IPD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304900818309198',
remittanceInformationUnstructured: '',
purposeCode: 'ezhe',
chargeBearer: 'SHAR',
creditorAgentName: '5018791713657982',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'UJD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026946942524022',
remittanceInformationUnstructured: '',
purposeCode: 'fuof',
chargeBearer: 'SHAR',
creditorAgentName: '6210851569569725',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IRB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334631336488271',
remittanceInformationUnstructured: '',
purposeCode: 'goiv',
chargeBearer: 'SHAR',
creditorAgentName: '6277463683314473',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EER'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528109834660587',
remittanceInformationUnstructured: '',
purposeCode: 'vetd',
chargeBearer: 'SHAR',
creditorAgentName: '6373240188676728',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CLZ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528676269015636',
remittanceInformationUnstructured: '',
purposeCode: 'cehm',
chargeBearer: 'SHAR',
creditorAgentName: '6304696616770512',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CQC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '344495698832539',
remittanceInformationUnstructured: '',
purposeCode: 'zubs',
chargeBearer: 'SHAR',
creditorAgentName: '5106900606426891',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IHQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610488925120527',
remittanceInformationUnstructured: '',
purposeCode: 'bazw',
chargeBearer: 'SHAR',
creditorAgentName: '5121227798517316',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DCQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '346704247691652',
remittanceInformationUnstructured: '',
purposeCode: 'zips',
chargeBearer: 'SHAR',
creditorAgentName: '6371626638489807',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SFW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026952099026894',
remittanceInformationUnstructured: '',
purposeCode: 'igse',
chargeBearer: 'SHAR',
creditorAgentName: '6011262375632817',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FOV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201498693888128',
remittanceInformationUnstructured: '',
purposeCode: 'arpo',
chargeBearer: 'SHAR',
creditorAgentName: '4903774124008558',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NLU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018433871454460',
remittanceInformationUnstructured: '',
purposeCode: 'fusr',
chargeBearer: 'SHAR',
creditorAgentName: '201448557804521',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LKS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4036678906318301',
remittanceInformationUnstructured: '',
purposeCode: 'guha',
chargeBearer: 'SHAR',
creditorAgentName: '5610620704937891',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XQF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018044052988158',
remittanceInformationUnstructured: '',
purposeCode: 'logv',
chargeBearer: 'SHAR',
creditorAgentName: '6334669423857255',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TDT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018642519113888',
remittanceInformationUnstructured: '',
purposeCode: 'wuwf',
chargeBearer: 'SHAR',
creditorAgentName: '6334254830084064',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FJF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5167230666757282',
remittanceInformationUnstructured: '',
purposeCode: 'pihi',
chargeBearer: 'SHAR',
creditorAgentName: '4500109200652077',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EHL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011973297857536',
remittanceInformationUnstructured: '',
purposeCode: 'amaz',
chargeBearer: 'SHAR',
creditorAgentName: '6304027642490554',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XMI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6374472580890933',
remittanceInformationUnstructured: '',
purposeCode: 'razs',
chargeBearer: 'SHAR',
creditorAgentName: '5018482257550847',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WPO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528498361054979',
remittanceInformationUnstructured: '',
purposeCode: 'iria',
chargeBearer: 'SHAR',
creditorAgentName: '6373254396477548',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EDS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903765473468807',
remittanceInformationUnstructured: '',
purposeCode: 'mapa',
chargeBearer: 'SHAR',
creditorAgentName: '5197389983794727',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HIL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304945098550052',
remittanceInformationUnstructured: '',
purposeCode: 'umuu',
chargeBearer: 'SHAR',
creditorAgentName: '5433440830766659',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PGY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026464753485754',
remittanceInformationUnstructured: '',
purposeCode: 'gode',
chargeBearer: 'SHAR',
creditorAgentName: '30052287451665',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GWM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6221819408979923',
remittanceInformationUnstructured: '',
purposeCode: 'zale',
chargeBearer: 'SHAR',
creditorAgentName: '347631868661194',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LFJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528075379093544',
remittanceInformationUnstructured: '',
purposeCode: 'vowv',
chargeBearer: 'SHAR',
creditorAgentName: '6304091301569728',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'EOD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5440477362001353',
remittanceInformationUnstructured: '',
purposeCode: 'apoj',
chargeBearer: 'SHAR',
creditorAgentName: '5018476121562178',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZKJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201445799596964',
remittanceInformationUnstructured: '',
purposeCode: 'mokw',
chargeBearer: 'SHAR',
creditorAgentName: '6220844535084646',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VCT'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026145428912997',
remittanceInformationUnstructured: '',
purposeCode: 'nufj',
chargeBearer: 'SHAR',
creditorAgentName: '6011075753548391',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZHR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4138620405148950',
remittanceInformationUnstructured: '',
purposeCode: 'koob',
chargeBearer: 'SHAR',
creditorAgentName: '349971392848406',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'DYU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026220471336012',
remittanceInformationUnstructured: '',
purposeCode: 'oluc',
chargeBearer: 'SHAR',
creditorAgentName: '4325574277773903',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KMR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5479455293548910',
remittanceInformationUnstructured: '',
purposeCode: 'obsu',
chargeBearer: 'SHAR',
creditorAgentName: '3528011282946387',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'HRC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528681323883482',
remittanceInformationUnstructured: '',
purposeCode: 'jizo',
chargeBearer: 'SHAR',
creditorAgentName: '5487718916214560',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OIJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334549852952191',
remittanceInformationUnstructured: '',
purposeCode: 'bahu',
chargeBearer: 'SHAR',
creditorAgentName: '5492946213374570',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VAN'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4064567478671483',
remittanceInformationUnstructured: '',
purposeCode: 'vivz',
chargeBearer: 'SHAR',
creditorAgentName: '4600369294734632',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZUM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528479270718045',
remittanceInformationUnstructured: '',
purposeCode: 'tijb',
chargeBearer: 'SHAR',
creditorAgentName: '6298423359224237',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PTM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018561823662515',
remittanceInformationUnstructured: '',
purposeCode: 'pujv',
chargeBearer: 'SHAR',
creditorAgentName: '5157325798996832',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NMH'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903832498435524',
remittanceInformationUnstructured: '',
purposeCode: 'vadi',
chargeBearer: 'SHAR',
creditorAgentName: '6249298949094575',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PAR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '348448684681978',
remittanceInformationUnstructured: '',
purposeCode: 'vove',
chargeBearer: 'SHAR',
creditorAgentName: '342646725319153',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KXM'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903425630187556',
remittanceInformationUnstructured: '',
purposeCode: 'zazg',
chargeBearer: 'SHAR',
creditorAgentName: '30013581671598',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ODE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30022406006005',
remittanceInformationUnstructured: '',
purposeCode: 'apom',
chargeBearer: 'SHAR',
creditorAgentName: '6259524876804646',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CYG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528443473180007',
remittanceInformationUnstructured: '',
purposeCode: 'sice',
chargeBearer: 'SHAR',
creditorAgentName: '201431155315843',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QVU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334863363656542',
remittanceInformationUnstructured: '',
purposeCode: 'rafr',
chargeBearer: 'SHAR',
creditorAgentName: '5018067467092753',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VEW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610994528352599',
remittanceInformationUnstructured: '',
purposeCode: 'joho',
chargeBearer: 'SHAR',
creditorAgentName: '5106161644859177',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NDO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6372258375378628',
remittanceInformationUnstructured: '',
purposeCode: 'maws',
chargeBearer: 'SHAR',
creditorAgentName: '6304688194897387',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KTX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334477607964156',
remittanceInformationUnstructured: '',
purposeCode: 'vosu',
chargeBearer: 'SHAR',
creditorAgentName: '349925670284205',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MQK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6334485778659208',
remittanceInformationUnstructured: '',
purposeCode: 'vorg',
chargeBearer: 'SHAR',
creditorAgentName: '30017253382723',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MJE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304242607679295',
remittanceInformationUnstructured: '',
purposeCode: 'fadh',
chargeBearer: 'SHAR',
creditorAgentName: '349640501452117',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'VZK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4298972528308409',
remittanceInformationUnstructured: '',
purposeCode: 'pazu',
chargeBearer: 'SHAR',
creditorAgentName: '3528631712188225',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KXV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6376627298948616',
remittanceInformationUnstructured: '',
purposeCode: 'awah',
chargeBearer: 'SHAR',
creditorAgentName: '4026403727942946',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'IWJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '3528015596150875',
remittanceInformationUnstructured: '',
purposeCode: 'dahv',
chargeBearer: 'SHAR',
creditorAgentName: '340865751274304',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'TJE'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36020011073885',
remittanceInformationUnstructured: '',
purposeCode: 'vaww',
chargeBearer: 'SHAR',
creditorAgentName: '4903153549161088',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'KBV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304841211778581',
remittanceInformationUnstructured: '',
purposeCode: 'kaak',
chargeBearer: 'SHAR',
creditorAgentName: '4903037342219658',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SHI'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6373092712050718',
remittanceInformationUnstructured: '',
purposeCode: 'bojo',
chargeBearer: 'SHAR',
creditorAgentName: '5018726512079202',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WWF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4270806425344368',
remittanceInformationUnstructured: '',
purposeCode: 'hili',
chargeBearer: 'SHAR',
creditorAgentName: '30008633405805',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XMD'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36173657359835',
remittanceInformationUnstructured: '',
purposeCode: 'gage',
chargeBearer: 'SHAR',
creditorAgentName: '4026500704104091',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LOV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5439118811902691',
remittanceInformationUnstructured: '',
purposeCode: 'temm',
chargeBearer: 'SHAR',
creditorAgentName: '4026999257418819',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PEL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026164965206010',
remittanceInformationUnstructured: '',
purposeCode: 'guja',
chargeBearer: 'SHAR',
creditorAgentName: '36488848633918',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ZMJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4135596699165392',
remittanceInformationUnstructured: '',
purposeCode: 'howo',
chargeBearer: 'SHAR',
creditorAgentName: '6011844935587597',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ATW'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903586577553652',
remittanceInformationUnstructured: '',
purposeCode: 'ojhe',
chargeBearer: 'SHAR',
creditorAgentName: '5414768583543468',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YQU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018222138039853',
remittanceInformationUnstructured: '',
purposeCode: 'runu',
chargeBearer: 'SHAR',
creditorAgentName: '4960595932920217',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OQG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '201420552063841',
remittanceInformationUnstructured: '',
purposeCode: 'weba',
chargeBearer: 'SHAR',
creditorAgentName: '30050284221693',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JUX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '349893554880391',
remittanceInformationUnstructured: '',
purposeCode: 'zudm',
chargeBearer: 'SHAR',
creditorAgentName: '5109643617659418',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'NFC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026792395253580',
remittanceInformationUnstructured: '',
purposeCode: 'sive',
chargeBearer: 'SHAR',
creditorAgentName: '4026110466874111',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'JGP'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6304881083479983',
remittanceInformationUnstructured: '',
purposeCode: 'pimc',
chargeBearer: 'SHAR',
creditorAgentName: '3528199768372143',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WWS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4607056291047182',
remittanceInformationUnstructured: '',
purposeCode: 'niki',
chargeBearer: 'SHAR',
creditorAgentName: '5610885109651385',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MWO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5195789851164139',
remittanceInformationUnstructured: '',
purposeCode: 'ceha',
chargeBearer: 'SHAR',
creditorAgentName: '6334547976330161',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'CBY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026343321625291',
remittanceInformationUnstructured: '',
purposeCode: 'rekv',
chargeBearer: 'SHAR',
creditorAgentName: '346441686184523',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'RQX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011518801297446',
remittanceInformationUnstructured: '',
purposeCode: 'sili',
chargeBearer: 'SHAR',
creditorAgentName: '3528736587152501',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'XLC'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5199868125617639',
remittanceInformationUnstructured: '',
purposeCode: 'poge',
chargeBearer: 'SHAR',
creditorAgentName: '4026326901817669',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'MTJ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018172496784659',
remittanceInformationUnstructured: '',
purposeCode: 'gori',
chargeBearer: 'SHAR',
creditorAgentName: '3528811023508481',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LHR'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026298773318748',
remittanceInformationUnstructured: '',
purposeCode: 'jovb',
chargeBearer: 'SHAR',
creditorAgentName: '5143859979466212',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GXO'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6271206222416481',
remittanceInformationUnstructured: '',
purposeCode: 'luku',
chargeBearer: 'SHAR',
creditorAgentName: '6279730125826506',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YWQ'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '30095742724986',
remittanceInformationUnstructured: '',
purposeCode: 'vejz',
chargeBearer: 'SHAR',
creditorAgentName: '36844707756366',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'WWY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5187930882494299',
remittanceInformationUnstructured: '',
purposeCode: 'wibu',
chargeBearer: 'SHAR',
creditorAgentName: '6334436046170957',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YYV'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4903465628810322',
remittanceInformationUnstructured: '',
purposeCode: 'lanz',
chargeBearer: 'SHAR',
creditorAgentName: '5456405010830163',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'SVB'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5118881769988776',
remittanceInformationUnstructured: '',
purposeCode: 'tudd',
chargeBearer: 'SHAR',
creditorAgentName: '6267637950156954',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'FDU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6371041469680476',
remittanceInformationUnstructured: '',
purposeCode: 'utci',
chargeBearer: 'SHAR',
creditorAgentName: '3528504432779021',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'PFS'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '36755060320139',
remittanceInformationUnstructured: '',
purposeCode: 'paen',
chargeBearer: 'SHAR',
creditorAgentName: '4903670524526340',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YMU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026245816848835',
remittanceInformationUnstructured: '',
purposeCode: 'nijc',
chargeBearer: 'SHAR',
creditorAgentName: '340166667712143',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'OJU'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6288463610643009',
remittanceInformationUnstructured: '',
purposeCode: 'nelf',
chargeBearer: 'SHAR',
creditorAgentName: '6011823628323437',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QGX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4026282181028263',
remittanceInformationUnstructured: '',
purposeCode: 'zair',
chargeBearer: 'SHAR',
creditorAgentName: '201458094280440',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'GEL'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4755582971108689',
remittanceInformationUnstructured: '',
purposeCode: 'hunc',
chargeBearer: 'SHAR',
creditorAgentName: '4903796104301679',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'LBY'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5610126790738706',
remittanceInformationUnstructured: '',
purposeCode: 'rafw',
chargeBearer: 'SHAR',
creditorAgentName: '6214920739508446',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'QTK'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5018488667565481',
remittanceInformationUnstructured: '',
purposeCode: 'atte',
chargeBearer: 'SHAR',
creditorAgentName: '6011821093721127',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'ECX'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '5104324810756872',
remittanceInformationUnstructured: '',
purposeCode: 'wisj',
chargeBearer: 'SHAR',
creditorAgentName: '6304518761101584',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'AVG'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '6011484920376316',
remittanceInformationUnstructured: '',
purposeCode: 'gemc',
chargeBearer: 'SHAR',
creditorAgentName: '6011864090302848',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
},
{
instructedAmount: {currency: 'EUR', content: '0'},
endToEndIdentification: '',
creditorAccount: {iban: 'PT000', bban: '1', pan: '', maskedPan: '', msisdn: '', currency: 'YSF'},
creditorAgent: 'ABCDEFABC0A',
creditorName: 'a',
creditorAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''},
creditorClearingCode: '4807767391577567',
remittanceInformationUnstructured: '',
purposeCode: 'turp',
chargeBearer: 'SHAR',
creditorAgentName: '6372277604514738',
creditorAgentAddress: {street: '', buildingNumber: '', city: '', postalCode: '', country: ''}
}
]
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
x
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE"
payload := strings.NewReader("{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE"
payload := strings.NewReader("{\"debtorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SXR\"},\"debtorName\":\"Lucas Sparks\",\"batchBookingPreferred\":false,\"paymentInformationId\":\"3565709980336128\",\"requestedExecutionDate\":\"2001-01-05\",\"payments\":[{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903448233539106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icol\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30074838931581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236509352134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dufo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5497962127109205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528540050673369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jism\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026204005028626\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018771388484995\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5411755248541998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528457986234648\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dajo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5449054197268712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528606398118886\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266495377678436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018152476141799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etuh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610297224926470\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5410065703822060\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5459460276173805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BFI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018267123100475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jenf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334030206173123\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058919510786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nacc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026716251639681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ISN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304979428927888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kogm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903202326462225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334072096645299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bopc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347069896673883\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5158426720078837\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vevo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30051776401355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373061549264354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gaka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528131759956881\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026552417789288\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304366205125094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QKK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903316123839938\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496424860879\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FNU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299438673051982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375991437150547\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36440788980700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5122345751765653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011802443816841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"celo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6295259515204561\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JSE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198105399573078\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610859529530669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777323039282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36382630247096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FAE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610026661009411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345970566472757\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903855001576674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347297679594931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6247039948697030\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lild\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377745284233410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026624327927959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36943491237722\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334114780684364\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6205621851826175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30053207757884\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tilf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36150979295871\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018232473211769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334848177676224\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610883946798105\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"futd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304011193600217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334351602081565\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"salz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375188093656806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018401491192059\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370063866749390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610705634406404\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dupe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334925110859909\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199722370661505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610087920726187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011373368426115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610793382861061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378000685418130\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebop\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334496214674669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903332535980343\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334300477364366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30051975216034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tevi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610076110785574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304084896902925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaid\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334631700968213\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258969660429921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pikd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026112050616965\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30015575272523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ildu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018288976692194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378749546251086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30032315816378\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4844836781323257\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tefm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4087554525336529\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343639982430366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372565085998176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36727366799134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413037263433148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5142239482541044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610230939415109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304555402239159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zake\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610527279690740\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343552189301076\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zoho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30088203040919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349070680157982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"favt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018768939578747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018017118023665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376930782124409\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201459288618817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903231347644636\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026021267410858\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nats\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897158979824301\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304434394913322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dabe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201491398555597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610157158193242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"enbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197233866658627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374715986335824\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"boiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4477912851634099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903858662966507\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wadl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782411910562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348145058775333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jiru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36718090116083\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4299824982579935\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fafg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4271808080411416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304515410216284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sein\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30039833148630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264138817276351\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ufur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026762564721477\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610785994287867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"befo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011482439677562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36107238042304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026853515794828\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5472618146006280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wegr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344100297445705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5157401329492029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473544052497\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5453937136225301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"otsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201426204409050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304498079742793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304458595341983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201469946663022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vami\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4345773764365308\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018446090769708\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hidu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528866442982931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018732753322194\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehgo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36587540158171\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30025498032870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cong\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528632236625809\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5105348177356231\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5170344966746724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825098303630\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011726004035790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DOC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304660696128736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aros\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011416714071240\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30075405673639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36182448872774\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528244969546663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493363481585\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011024681829937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"live\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018165332419894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528831685080470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"labr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903695615354005\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528383581531248\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wane\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026082046547519\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026140130657063\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011114388894753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36593176251504\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cogn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661654661303\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610756417742663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozgu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30029192167925\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146601025882654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ozaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415509325418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6225434734830141\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uwav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304042513223042\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379100957897232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30023190150975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271762617054592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346981990387270\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011344831763293\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4384204076140371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610235997425031\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201401849948747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026532390106577\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259800059171387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528981463178127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377927706849342\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345856994277423\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36841027377139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NWX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4526140305176860\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377859779269027\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4810419687893655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5146770540755974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128525195545324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fodf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903496405575531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30071181727921\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"suwa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36978989785279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610564490627144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4678256166430133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5186381754241403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naib\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011729816196560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334718000239559\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zetu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36345619290296\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610878174467969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610982017614959\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334761927084799\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gurf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201470236157709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610766758382391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374783498409792\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528782203740915\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201444305722198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481381864499661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zuvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30063334953025\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026406630906403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488896671282680\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903237765676380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026298799288271\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011220854057682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528453115577254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026825305594410\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610031147056465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30091820352949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mecb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165056248565758\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370370904563570\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030934408137\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334593188579849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wavh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5408225568898506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379980324375677\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36266507854425\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5435461511763672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hise\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6227322037215276\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5405519110708475\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011050889395850\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011913557499652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371523535239312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903224934302411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334757190181510\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6252195539027268\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ataf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073641062709\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903075199482128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"simw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610548271456609\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281077690185272\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5485697748372279\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304159561808373\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4977778017163231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BCD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445640683086\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"viju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201433848151676\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304539610324276\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334263258027851\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018281224403100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etar\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4320499797991170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610799207893528\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bavw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4574588423888595\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026147552842149\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udeg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304852095337410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4628640850666881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nakh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026574400028102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304001656754429\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5167258801521206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4714101273505532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pucr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334920696485070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5487954471454347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201415948113193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528775329405264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jesa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304787154144705\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LIG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076402540839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903607661527558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36571714526744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"belo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528091915388660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058941813992\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"toki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528417931872710\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610796374521049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123840684396294\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334966280413226\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423590560830935\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257045487197388\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492200263427544\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026024446289599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903805787949900\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005505170967\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nimz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201402335436445\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HSK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347924958166814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4394329603831255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4440823132059499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"masa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5476159159463734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6243880073706664\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"foum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346613664968917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378122122311932\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291754358603600\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483602092963899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269858862251182\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VQR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477257144144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018719773318914\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WMP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026425755435949\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"reji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026277637530417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5414668986298100\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ukot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434593242660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187353515533104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alaf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334169642300245\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36247944559769\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kone\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468343046955\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6294805958137584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5119966072674640\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528165309788584\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201409785676974\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5488488207651925\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334762372346154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903539228013543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"damo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5158175623184784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124947736963549\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660651169265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026927870325939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340790738786867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403289096767034\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528267124406176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026961137748617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aciu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026579822017310\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528544617527019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mase\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4894552991866105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374219451337977\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304838429506374\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026711850851613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143176726833226\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OKQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963411636320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lued\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30002527240998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349273008705538\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"capb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334676257050105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286943890069266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304759222469281\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JCH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026783955372845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jina\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528641808879728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026190386433503\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"taiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528473201271315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YIZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429229207145738\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vavo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36127520487264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610743633909227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334969556488682\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903533457384774\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tolv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334507399444593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373521111182854\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412102187897637\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6233664128939955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ohia\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018328086706607\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011158498642354\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011312583413219\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792310552892\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jupc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345380082611617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011265078423905\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001664074467\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334116089167611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egbo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334324169490412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36406332797544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kije\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011530416479566\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304848589291139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tugw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379432115620309\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011363855347650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5406080312758833\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201458978318530\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nebo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304176108018472\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610238462602563\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wirl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4068592242599170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30023167875869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dohe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6265364681130107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347325798078468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903149633874701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ILL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304415096936380\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neta\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065736632511\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011427454630590\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372129183869621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5124418917354122\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5420343194758509\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5408239663943422\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011103054767047\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304829034180127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ifeu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528039952327323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304941694941290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ofwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898764372152\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MOT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5160155846425574\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372501573404344\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610735059859191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cejk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334797863777475\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011722635986881\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jige\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5180456772003195\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201423236257185\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vonr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903564190948385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528698288008665\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304555291751413\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36992797272461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487875605410154\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061288277961\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4148886272150712\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011222888698879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4856233412683645\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"THP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30020964229241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rerg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011156538880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903799780600844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bifu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018071408658185\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334399390500809\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610746074319160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104199970064865\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bisn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372030922634799\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RDA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403604669716\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6293943994986002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018772649311498\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pini\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495102554846\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372289152317976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5150158668868139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IDL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6250581632947704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011836635901516\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377920610875438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903661534954770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903355506828241\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vulu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334763710686483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464909106981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sido\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343486656764666\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZXX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610045774289413\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"faho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30031482547402\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610973944785053\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334859578819156\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36990838406742\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011369312852315\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SZJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346540437466939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mine\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903253851809017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011719834864976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"coun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344924904041155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PMQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334970064340639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018678808466504\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6279110548016029\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610894284850721\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610021306704294\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ogli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36622749399407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610349834242465\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nokr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36825386959991\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4015343757399869\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018360459136120\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374693998701376\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011084827043892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433701798712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sech\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903269642162490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MCJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240930124716106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36049383434698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201485944633841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304070252823961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610237578716994\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610164384722968\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343911905919068\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4007688991161784\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5429268585831329\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puna\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4885502835597987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201433005658711\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165539080084129\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378030660521889\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30095329591717\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4813404818690482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuad\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5413800178472778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528130053685675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gesi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349757957096535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026122460118361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vome\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110398496535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379400421412075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sike\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473010145023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304821025546853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bipm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4154016542537743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5198429228976033\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334563111648896\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346151115589289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304669225362187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DIW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304199281940692\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jicc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528546370742537\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4463934994023739\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atuo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431432872491\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6226981790409797\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349060552162004\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201440230207719\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149542944705765\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30054113263736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135478462975\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528654259528868\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4334181927666864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342131780638482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ipli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143327631624248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903460961898786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zect\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340040674324830\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MLB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026074376793144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30081676333036\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5455296042832900\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171958378165139\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011207965229649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hubw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334345012817345\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FKR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018631246750112\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304003726105822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011892426602177\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mepb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018231073135436\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6299152736288834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334568918054990\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334410388344843\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104724710645507\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201414132783812\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334930237069085\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334490835087583\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zejf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4988308944781678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903410190128331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rawp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304622733690904\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36730629940750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346269475818161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201428509495339\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610451726168988\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4402041354793960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lent\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334953925474458\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528977723602823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"civh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026916977895498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903340313901308\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30086474602532\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PCE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374313156656284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304933837118662\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OEU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6205936719207917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rasg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36676301549130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30085697117484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lalu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438813170733254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TTL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528583141842049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bule\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610764368217842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018456935630262\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dukv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528405031552498\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376547519407046\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gapf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5429393004204989\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6245427165202505\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cimb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011679247547040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QWR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345379728142888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341841174568514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334176357363631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236272332331832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026986296162144\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lacl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345455439986217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144683770773439\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vesd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269527055798453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RXN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026594017231550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kumo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4285096129108037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FLI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118531507085688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5104372814991847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30040352129266\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30065623383822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334654571584737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"locw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201439605105151\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011066470415543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rifa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991018380872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610540679896403\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sanu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6263105364241451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30066783169589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kena\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5129922772570503\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343666812875510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341348994980655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334564386588213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018690794581568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201474932209814\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tioz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201451162901559\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026791447045895\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muda\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610030368380653\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4502744788882718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"voki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334199744840574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374155716315632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wetj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528056320560781\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30068380935602\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"komf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340311027064534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VIK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018090201771573\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rogu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5427595855445923\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011775818678899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6234486516689201\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304676745486800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fero\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348132988867455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BMO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343766949415386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fejo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999399973523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528067859719433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372402827216677\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181090482308575\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kiwi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903325038779469\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011935138517074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5400462438850064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36961166215096\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011622547209028\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528192108655764\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wecm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047939505694\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528894507613845\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"segp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5438792426983907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334963148930210\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201462329571482\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UVZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470904802800\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fomo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903919024430325\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YLL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026045714742217\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hife\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334651600883460\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36210380096621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"solb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026350235285773\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30059585713605\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"japk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36858479401894\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5499352269470631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lahk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484082229173\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ARC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4793795351826092\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pude\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201427968080384\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026975393278960\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nafe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123167721193157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334170654101919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuek\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610994697159718\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370639305610309\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018975321878037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026135860993050\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pana\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36324741946026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4369691012330455\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hapw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610861230206175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5110360098981982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4059878985864256\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4960750067978163\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piat\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304076915652747\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6275157439742324\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ujfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011862485911918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349794011379771\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"izus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026235674226026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441042235368303\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5446742450702160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011879957682140\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"banh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304144512033644\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334649103975734\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tett\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903745561388794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5446080673413509\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011403171104243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011410999241586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"affa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018404026624398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5403765868364001\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beoh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5118839823454417\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341939550399999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lomc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343150571442630\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ABT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402959853645075\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528808692542593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36226869459320\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160934508560542\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610075246018678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6246194136820695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HBT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347302592730214\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuwm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484038109222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EMS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36613496625458\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vewl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4725451346852750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4905980383655579\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wamo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528709356677412\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011390555009736\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ride\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304720178260934\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XST\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903317028268124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imne\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183993514685050\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JQD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018533033851741\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528657349062046\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RNQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610962739801704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026452459760943\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018236464273910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cazh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30001690962628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903886509613123\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sosv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376352969978855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5469971952915721\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vasi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371121024019681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347427282343554\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vohs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374793306543633\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108600302712754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026248901199940\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610207154429551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mifl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279373124692304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903502408265515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6236101662730695\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018005285981468\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344086736764410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903963768158874\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30043547582415\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348643688227444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610572295236763\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36219997744358\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ubal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528593609704326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018868573707071\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"agej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018615589111354\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340361945417926\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6294315973155777\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379817480841904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buum\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6280778649210670\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FPA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620421643240\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gudp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334444467167866\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334143469913273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6255078056749323\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371238243716416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903009643201453\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334442866879065\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iriz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018269078220779\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5463268657507127\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5474598426931589\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4224517809745081\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"unai\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018235104893426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JAK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343466435300206\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"durd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5460641912958603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253455682707531\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"acvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6247264311411930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304112916120366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343563906255297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30002702705526\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zobi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903466948732105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011199554665533\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018991885845767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5494073290943249\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304304623146533\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064964219897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jotp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903869921444392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5131035701734466\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"etiz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5116449079255302\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YXJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334789447585714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciij\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026098638710588\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528531370645740\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tols\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36634935381099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NUS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304365212712654\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"depl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6256697135925353\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375761792030000\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197244238032334\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304731603527755\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kigo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6297467892524133\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4761491631802099\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hiso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334375043746056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461579413247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sodu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903020924434176\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026751597613280\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334660547330535\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GKG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528944279530378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348267028870596\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903101664358534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488599906196\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ETF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334860412984545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ragu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201495670147874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NSL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304811236792776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fikm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903460842784999\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZEN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528888177675704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jawa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201473643420264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4221544610473193\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528271281220347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4078229682569805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raal\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018750489722230\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011355863490969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aduz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903669111288462\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018768066080160\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pofe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379016589949987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348300226907850\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"comw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528307367641483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5106985373608672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903298938063252\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36064578116836\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"urlu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018410685382442\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201497653929807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pepj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334869494855655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528227456683156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utuk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026920857250568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DLA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4626729465358760\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ovje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5183450110552408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ACL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36918816311543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"esow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903089707429778\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BUU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610788206615867\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201420491857428\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528545604291691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dibv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378969842044288\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026616750226875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ziob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011586877934465\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ELO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304201527809879\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36745505768919\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KQW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903946642202562\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bend\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334378598781684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240592673051499\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201484882464897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342794308617005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ivev\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011629742506140\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488400216184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610194477815684\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201492402874735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"retu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304620738841456\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346889359898532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kufa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528423421804643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610164012583444\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"avus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376160498411243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5123116511405545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gego\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4676678919545994\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011819009824555\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"somi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903053193185484\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4083130184978655\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"datb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610869353682981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NPK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372357475169299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lugu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223907672864\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026182407189537\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pure\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026064194767180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36693692404478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kock\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903473540534822\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610738099126167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucik\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610335605459222\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304948922658901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poih\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528896547898807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903672069072227\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011399913264701\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334445551523229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379092177254742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VGA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528042362616491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emeb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903106678798203\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YFU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903777296504718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334778207242681\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253035922256331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018930943158078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334150771216576\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098233708880\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304735112553467\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nanf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018352074446521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HNV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026782738630776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4904847057116611\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FFZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345497419396876\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muzi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528276682082089\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352532231166\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"giep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903440488063924\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304761696561254\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umje\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201475253636766\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5481139201464917\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36935016869088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BGT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011244240964369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ehir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528777115145088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340801396591893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"memw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30047950561790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WAM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304155694209125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ajfo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610676544335431\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TBW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528635186661682\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wepd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304846029202187\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5474820608102833\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5423351271432655\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4353992286414183\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zicl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431587382874\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KEX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461628087265\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026944781101572\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304362325224487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304142623808367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378658357011036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304856768198769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KLN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903142615238482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026299271317521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30003574325690\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5491022074558395\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018624858403336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"navp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487691491571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610457830166610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irvu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528425128557960\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IIC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334085272700795\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"batu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342406103908972\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334524259373267\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sopp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334343555051885\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6257044609861856\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"haco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6222946086399824\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TZO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373867712827946\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"geag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378732288306466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36054975189098\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018782954691160\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YGE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026966566655175\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cesc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304390306216875\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4354913768560839\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ocei\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374889303890652\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XPR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026115723757553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30044105991873\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VTS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018035733506484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"canu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013852105987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304402128521091\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"olau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304829615555275\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610255547005703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jasu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36545917549075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026457374666737\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wala\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372638054834282\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6283751190444821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"usku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334811136620899\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903211578057120\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528337645142392\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MVK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011982691997897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334062984074488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018032846386870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gamh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36309208808983\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QDI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334751631281484\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewde\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610526840058262\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6286816468421822\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"judu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36574021942414\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165281156968766\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hefo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304514225818921\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373251186259474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mica\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5490869458882002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UXF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201477414794781\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zemu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4526764207051119\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5165572081528331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mimo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442795206734\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304233007019646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"togn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"344082867323241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30094358730635\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201497046157686\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4899015315040208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610960303123752\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OOZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304771055815134\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610810899203627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346241126469116\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201459968242078\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375250666430777\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tivk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903313309845888\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5492218205486899\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"himu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528590005069742\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BOS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408518699521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026485488775466\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334339727854628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vubb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304860432450291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30031003069084\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bono\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528031413902604\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376104384269927\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tisp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610641694052673\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903422103192478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tahi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36752306715750\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AJZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4434871616205482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376440812655869\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376968448062159\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hobu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30034188035508\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YZF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4377612412595323\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muip\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377830246853180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344149272608613\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018431796551931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201452678494857\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abdi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304982345574627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610901067291286\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"caru\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30079199207562\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6222149887346223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emav\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269546634312206\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528495221634180\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ritu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4565803173398831\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FZQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5151113464611919\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334865829110261\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SGL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341579587508491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"binu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528505000220579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018269908709678\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dopo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111684921194821\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6216315346756934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sisg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304785712053947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ENT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6227654284576434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sirw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334607302719055\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062287266823\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aruf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304092083707502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KIA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903665541372330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36037408593663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6208388598778054\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201476284656161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610826305420969\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011596652916348\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MXY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026300395816610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vopi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304948010353803\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ASD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334202848714438\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4472638422924868\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373679328896391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jimu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018576172206193\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6254593978345670\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"piji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6219572419667870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026716954011956\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tezj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018850299849155\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RPQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334979092259745\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201414213173131\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018116146567477\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cubp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30016551541329\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201403586462536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201493414006878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XAD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6274880565675973\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dize\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349686204695635\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610601517679532\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4347075443156043\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348545664012015\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ijce\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018200314390761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5411124027736834\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377402234381838\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903624424498639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011618603095376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342633340288997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"inze\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528619205249786\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346549707594676\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"seun\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6291526311456379\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BZG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026404594463982\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sira\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374166148939220\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374891195310534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rehc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201455209108250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018762421465646\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903938368475928\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5442259142167714\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36699349903390\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5108936886385306\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"deho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342473244486326\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011196246015564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omji\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370711229683033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347461546444650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mefa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4300359071324056\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026040009325489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wapu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528925369516096\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011814033512904\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cele\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903050288359297\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IBG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4250140894319386\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528223875926441\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011977316567844\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kasm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6225313627139416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EVO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013140346146\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"irud\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026844137501790\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5120366824070964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"345090401813063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444634256243279\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mush\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026730294268770\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MNF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5184620827354673\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5430361180587755\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LPV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6292280611179914\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zefe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6226160589843892\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018880804543985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"anap\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304421490589841\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528803322834072\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uzoo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36565237918198\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378921190167195\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610812930858278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4219049993018304\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luhf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201436277959238\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304517315957939\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"papm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253344493254026\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528562397590650\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zujs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903889117016093\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610370202511158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018126623656305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340891102779551\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"moci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304438748707249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KRJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018976268934361\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"riur\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30045752578525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SOY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018569975511687\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374036339842212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4775349756192965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zibc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5179540132551168\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304239073727525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vehz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472107479672249\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4491866172789689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bedd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220949650582603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IGM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334214436467592\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zafo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334606565349832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6285317872466793\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"onec\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374926346908057\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373479068273640\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jebi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36244591089737\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201470274201260\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018661639844248\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231851483949610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zepo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5481871746594895\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36846257848519\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182581956025223\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RGK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201488204854396\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikbu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36537428391550\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6246480862945545\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414840060355730\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903844152714300\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cerl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4297496218237372\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GRU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104043187320639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lemv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903505532353180\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018834827986861\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528966010290715\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"URH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30060245978026\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dugo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346431151468998\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IFQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201454320036748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udnu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528238307413586\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SQT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6370351452606052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gava\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4944253327203283\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4072544090918642\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"curn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5149818654820915\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011119628314454\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kupu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528206154148886\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NGS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026592305110825\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gupo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6237544165812024\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5422739581807411\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"omor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011620557791034\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ANG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201461022965611\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018370227300239\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LDZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528295655720830\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pusg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378891056476628\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026470143248976\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vege\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5495072781007307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BRZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5441776705653963\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6202339096091058\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QME\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018320042450891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunt\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304899926832424\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6378757154749986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woro\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026462882992278\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5144328437181036\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sivo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610638931432163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30058278919107\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nati\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610711783151486\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026388418952355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"harc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011337539447490\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PNT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342459416733710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026265988024502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903878127488228\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"difh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304619206286269\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903669197197157\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"aske\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018790175186159\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5101395889118999\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lics\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105215391559181\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36343530151184\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"beuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490918568247\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JIO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610838413632674\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guks\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30066022165109\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"USN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304597809295251\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ihao\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018911061375587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903894702107430\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"honu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018600266635404\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"STI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610046118129786\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oraj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5461422542649451\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5115091176240158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342185226585012\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4865395200738474\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4897131002247204\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WEI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610104447325813\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"duwb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304430030355480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EJG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5498856303866290\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334556853571987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UDB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201413759988167\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eksu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304675358083995\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903818856281873\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuvo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201494594137061\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903109404025040\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"johe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6370421399984761\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420477591959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pids\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376853909523719\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WYA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334156669032025\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"emuv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018059267785678\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TVV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528253757542446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30053423099897\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VFE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6280265876556421\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201487924018878\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VPF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026262137219851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mipa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5111080259501184\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30028962607375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udoz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903168400503806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HWG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610217889837374\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903135582315150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201434517441273\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ruca\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037219379621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374878485267243\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iwve\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201400355787788\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BAW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5150110676811965\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528076986297148\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RYC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528971287371750\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lama\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5472914673754768\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZIV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018634105836543\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528129383169608\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SRX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6213592896175110\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niil\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4103299274044961\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VSQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334681677903891\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"noct\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304374747630373\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PYM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528164617975744\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dusd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011466750552769\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DKM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201455313059233\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"neke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903362132040258\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TOF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610885126642599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kusv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528242452230241\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4900072829070632\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rinu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5160316814938713\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JLW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304142541220125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afin\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4559324788675164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018085809128200\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cefu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528579593978711\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5491768624829617\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kabn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36200247184728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376937222403202\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"teza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30036198105973\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5190553186417256\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rask\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334782972736208\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903676411398131\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wope\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4650320572850698\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343984084510461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304732348708312\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QPC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528352985392796\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fewe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610294065845455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LTG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026855702104125\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nuke\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36855389066023\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304229515279631\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"baed\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375121417306410\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CJQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011489005275754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36648136289976\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011513604820213\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"icit\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340801717622724\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610755861934735\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kisu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30019279975118\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BVM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201411601105618\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rezf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304059735993194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VBZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011051860281044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"miza\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6274550015128564\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MPI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334760840182433\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guzu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011384606109231\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011656779760043\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528612514165157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304483888659347\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"elzo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5182584503191407\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IML\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6240896391660337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hioc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5192397056568592\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334690019159757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"naer\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018772176688094\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011865608389383\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334357077225579\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XJN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467231934219425\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"akni\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026508380510515\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610720523272049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304834832240594\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026096281834622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348372550290443\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344840947907550\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pawe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5451565262736072\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XZC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346515844527564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tutr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334028783021210\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610572431481414\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udep\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6250028750201449\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379283437612148\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fece\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36149926224638\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528881324184019\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zisf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340547474536876\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RFT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5467770191486821\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zewa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528695023715679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LXS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610142935313586\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304064941827483\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304334872329589\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4201892119131794\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WOI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343201877892828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"uvmu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026113393708337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026579294077461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903967857422703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304898254902627\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304991438948242\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QHD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4977888078242772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"divk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011475491217731\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RTF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36838831961181\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"misn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089680633861\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377717365692772\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gidl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6377778861886367\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HXB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36597682577757\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zomu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371332838840754\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FMG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018882646068981\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nohj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6269397715631316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903436858275908\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"natu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6376508056604981\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5444071859660619\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egpa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528277228290186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FIQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334635039512782\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326761865105\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304934750330284\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"siiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304717668587107\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610180616867983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453819203488\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5125306371330275\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tegk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36232197345827\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ALC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5483871723350608\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epej\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610855050443199\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6258554778868416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rema\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011470028434917\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LAY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201481089448434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mivc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379079640126250\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BTN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345893471195851\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"denf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30073805790855\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610492997473897\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuzk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304149141443130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018009830126124\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"date\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304932296214525\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6231642449951638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mucj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5171931892003284\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5164370031918707\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011938920858581\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AZZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5473282117366352\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nepe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903786240905053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026419723881375\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tidb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36653731063255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903926855139420\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hodv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334116589621158\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DVL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201478277076936\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jata\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903787255180947\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5471814513918378\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vefb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528569863639416\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NEA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374001249817621\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"waja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610442311655505\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JXR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30017095418297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903706313401590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JRM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011627289283651\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ikle\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026658902749289\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NOW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304441513695987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187447726537647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6207325054941223\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezwe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6238813848002660\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GJY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6253696075993010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"morf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6253766111879307\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376059341420775\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"azsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5131163103794902\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011499639440401\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abfi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4275574361327178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334481269015174\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mabu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201438920498952\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GHV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6264264065230534\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guaj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371835175091211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZDW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903735869205121\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woir\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334497782816971\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30009799154229\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nidd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018976945225647\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MKU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"345904891723048\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gilo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36552617668254\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4386047110327399\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cere\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36242122800267\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334765169024918\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mirs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201447378459440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334918090520427\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018192055233930\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NBE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5402386435896416\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tuul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5190822672114234\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304322894826567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"osri\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052314041406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018249205440219\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tore\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5488820924736037\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OAI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340112569925706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gole\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414770575784324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6375623539120801\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"alov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30037218662324\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PRN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340741265395523\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ronl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026011016390642\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DBX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4833783896731136\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"delo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36001354663953\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304503052288704\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"birz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6213108098901102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334580615358152\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"okuc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30060604839082\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HMY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334779387624052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obam\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374140686161521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AYR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377542344325264\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"loso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5486257641853617\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018184150067073\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528130648425322\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018387421824749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6281915794747622\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HCN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5179810791969369\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528338150862408\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FEY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30062165562095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"meli\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018641554252577\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OUY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343287776766478\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"core\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334761912945293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5461015356202696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334666000711111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5189894326058987\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903844975115164\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610204566942412\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nucu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340183497931157\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5490733300231232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feti\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4871234518434033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QSS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304189549170547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"juzz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4227530897070590\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZBR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528682454110232\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dovp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026538381904102\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425403897472\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fakg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30015692101621\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5128650891709600\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36277583710852\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XHX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201460479501663\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"afow\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6266482626807438\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528652479383510\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rali\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201445928990856\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MBI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011177449876150\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jeef\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903108154126958\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30033873354083\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903319781491612\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6235435808714937\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341048340938627\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374605391515930\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"liwo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304706636277099\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610598352971638\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wete\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5140590394309355\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349206302527109\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nubi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348098274916514\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SYQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5185504589080255\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"diln\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5499355283068265\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OSC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346325750619789\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"odus\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528461676302293\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WKF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026896082425805\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibsa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018110246349597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QRP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334993343440749\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wiku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026225763600009\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026100926982331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rusa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342436603669568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MUH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903095945498103\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pume\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6283412601547435\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DPX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340717420824649\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puwk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346346240758052\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340134940998244\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nobe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018304871036823\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VMM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341394001963953\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hedi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487448078704337\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528882504883289\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"saco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5174028692029804\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5497388227328547\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ahva\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018083809863603\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NZI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011296763584461\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"buto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4028817552136076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RZY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"343912673106003\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rual\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011030570071127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HAG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610050239701697\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"eluh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011272323722966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HVJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304602195577336\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wute\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201490826347643\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZZV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201464926871463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cumu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5165717474570255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30076210105049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ebup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36785668734480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FSN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903349042505629\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hivw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610064942324531\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304798815103790\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5478945642736944\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BNI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4751420352853959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"owup\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267877952277065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PUA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334797579047916\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hube\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375293783192086\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CHK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018726364483700\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4050281225279584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KAU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30061211816513\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tigj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5105852629392066\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ROZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5486885106724681\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"itso\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271215608220359\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TWE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011106863912712\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vuka\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018318606695570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MYJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026948886508680\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"botp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201496400620305\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36238893985337\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tibw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304219275033591\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XNX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347946066560521\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pelu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4461730004744369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JBL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018831831652299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pigi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528770554789862\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903604761518959\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dodo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372307839694870\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334881039393985\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mame\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011502976294420\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SAB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610494041504297\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bimi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5412240368591189\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334348829527115\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"melg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528750019880571\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304099034566002\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hauw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5424182535426426\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4297914126463104\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342954387167211\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"REG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610408538894037\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30068105525183\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5434938204997205\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"imor\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5176579348579186\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CRO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018944033180983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mack\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061958983455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304212063942487\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zovv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528617472428075\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026291603895431\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gugj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341666723457053\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4884033513948491\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezfu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018624543203059\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RHH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903430910113330\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jozo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018447185936574\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DEE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026369283511161\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tipi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36179514814243\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"341240906640784\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ludn\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201434576172553\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QOU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167504525326780\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gobo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304188519562113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TLQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377403061978688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"napl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4123876366507587\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DTQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36058190174637\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"puco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5123503687171987\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TAS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011654650127564\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jubd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334750754147480\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4438968553237449\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lunu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"343775070254076\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30088327690870\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"muen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011713082110455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4447253280614817\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nivs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334541208371671\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EEP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5424947653298934\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gace\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304529259094033\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610325458132661\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"citi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018372629074842\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340876203533247\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ibau\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528298466050314\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RUW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026737986700614\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011035734897291\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418044061688\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udre\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6375774022503217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DGU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903703788503331\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5193936330209793\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TFD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377757967045672\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kipk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"341565431009463\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KJR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4934074974345314\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awju\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528435434290867\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WTO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6272420386564221\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"adea\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6374744717811143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36628783453489\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bika\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6201246065391743\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BYB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377263051565485\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"daul\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"348984708197500\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201400182997261\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lers\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5187923064189175\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LSZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5146158176946077\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hofs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342906225276810\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TNH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304236076333525\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pulk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6379273925585534\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610510598754389\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"losc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018339168145606\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QIX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36200169626979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ecot\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5198617874681127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334000753437726\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tubu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30089563416806\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XGR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377405744928675\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"povi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528286571143264\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LWB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018898005247883\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"upon\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378822324195872\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XKP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528333888707355\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wowm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5428116943522455\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011943134535470\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011591269354017\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZWA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340046298696610\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903309447241618\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SCR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201418786084542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dowo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342580986449948\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CXG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610131365184849\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"abma\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4167145447179767\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PQJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5436079862212435\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ulhu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6271400289795362\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011694460530524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"egov\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36647979948235\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YVD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347995683854049\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zeig\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334120193639663\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011714457003622\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"woho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5448794107027150\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610825908624662\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ciwd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5132120128394703\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36897532088298\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cuga\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610803091669356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YRA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4535544698590901\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fese\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334460854335593\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KFG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201484606448598\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zila\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334320083550356\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DHJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342963700298074\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"padv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304482405994963\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZTR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5181524244330634\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201468486493063\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UUV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610014526526480\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vibe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903299802321040\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SNA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30013386010158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ewio\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36318667019461\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XVW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610697835357652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hare\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5138106054150502\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6296355335275044\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zohb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018199384895966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VLK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610150103906727\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"huhh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492488213141907\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334553555789660\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sotl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018938753350347\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CDJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4005235269710553\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"doez\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334215803505088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018908056476628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"raco\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610871989625863\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ITX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6379985940637335\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lurk\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4185481260320065\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DQP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6281115515528126\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koub\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018061562597931\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OHF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36405882019846\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igme\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30098977929080\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RWV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903187585332955\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ucah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670343733002\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RBA\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528837300490333\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tago\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6378037417979070\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SSV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4653640456228696\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"relr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334560928528170\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FCZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6377061980221703\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"udos\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349738828355136\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VKH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026802743181597\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feut\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610498238209966\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HLE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"342525170288966\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pied\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5101815539826568\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304405327717451\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"epvi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610822216922839\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WNS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201444276709893\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610593109318167\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36347093679242\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dozv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36069163793113\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201439493819095\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lejd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201469262424371\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AKW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4435609329028133\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luto\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30069883687146\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GVY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"347421428131601\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"soag\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201453537078311\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"BBQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026576044633106\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mamd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5482506253086393\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SEM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36839865581366\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zucl\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30093501575376\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HQB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"340241379105710\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"topb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903958853483476\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5415829324165828\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vebe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36898318446130\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30006035650143\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kino\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610387212785135\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GUZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334263229542434\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hija\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018421711341369\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZNN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026077909954463\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"feug\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5159165969396398\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IPD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304900818309198\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ezhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018791713657982\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"UJD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026946942524022\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fuof\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6210851569569725\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IRB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334631336488271\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"goiv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6277463683314473\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EER\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528109834660587\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vetd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373240188676728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CLZ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528676269015636\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"cehm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304696616770512\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CQC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"344495698832539\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zubs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106900606426891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IHQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610488925120527\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bazw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5121227798517316\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DCQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"346704247691652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zips\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6371626638489807\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SFW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026952099026894\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"igse\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011262375632817\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201498693888128\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"arpo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903774124008558\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NLU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018433871454460\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fusr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201448557804521\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LKS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4036678906318301\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610620704937891\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XQF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018044052988158\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"logv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334669423857255\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TDT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018642519113888\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wuwf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334254830084064\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FJF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5167230666757282\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pihi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4500109200652077\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EHL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011973297857536\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"amaz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304027642490554\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6374472580890933\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"razs\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018482257550847\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WPO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528498361054979\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"iria\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6373254396477548\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EDS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903765473468807\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mapa\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5197389983794727\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HIL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304945098550052\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"umuu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5433440830766659\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PGY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026464753485754\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gode\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30052287451665\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GWM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6221819408979923\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zale\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"347631868661194\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LFJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528075379093544\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vowv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304091301569728\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"EOD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5440477362001353\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apoj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018476121562178\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZKJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201445799596964\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"mokw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6220844535084646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VCT\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026145428912997\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nufj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011075753548391\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4138620405148950\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"koob\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349971392848406\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"DYU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026220471336012\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"oluc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4325574277773903\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KMR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5479455293548910\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"obsu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528011282946387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"HRC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528681323883482\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jizo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5487718916214560\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OIJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334549852952191\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bahu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5492946213374570\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VAN\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4064567478671483\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vivz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4600369294734632\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZUM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528479270718045\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tijb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6298423359224237\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PTM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018561823662515\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pujv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5157325798996832\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NMH\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903832498435524\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vadi\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6249298949094575\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PAR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"348448684681978\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vove\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"342646725319153\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXM\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903425630187556\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zazg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30013581671598\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ODE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30022406006005\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"apom\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6259524876804646\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CYG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528443473180007\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sice\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201431155315843\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QVU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334863363656542\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafr\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018067467092753\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VEW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610994528352599\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"joho\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5106161644859177\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NDO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6372258375378628\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"maws\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304688194897387\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KTX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334477607964156\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vosu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349925670284205\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MQK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6334485778659208\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vorg\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30017253382723\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304242607679295\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"fadh\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"349640501452117\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"VZK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4298972528308409\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pazu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528631712188225\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KXV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6376627298948616\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"awah\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026403727942946\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"IWJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"3528015596150875\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"dahv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340865751274304\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"TJE\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36020011073885\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vaww\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903153549161088\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"KBV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304841211778581\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"kaak\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903037342219658\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SHI\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6373092712050718\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"bojo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5018726512079202\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4270806425344368\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30008633405805\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XMD\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36173657359835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gage\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026500704104091\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LOV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5439118811902691\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"temm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026999257418819\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026164965206010\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"guja\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36488848633918\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ZMJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4135596699165392\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"howo\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011844935587597\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ATW\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903586577553652\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ojhe\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5414768583543468\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YQU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018222138039853\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"runu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4960595932920217\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OQG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"201420552063841\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"weba\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"30050284221693\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JUX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"349893554880391\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zudm\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5109643617659418\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"NFC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026792395253580\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sive\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026110466874111\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"JGP\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6304881083479983\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"pimc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528199768372143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4607056291047182\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"niki\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5610885109651385\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MWO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5195789851164139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"ceha\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334547976330161\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"CBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026343321625291\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rekv\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"346441686184523\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"RQX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011518801297446\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"sili\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528736587152501\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"XLC\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5199868125617639\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"poge\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4026326901817669\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"MTJ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018172496784659\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gori\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528811023508481\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LHR\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026298773318748\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"jovb\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5143859979466212\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GXO\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6271206222416481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"luku\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6279730125826506\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YWQ\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"30095742724986\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"vejz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"36844707756366\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"WWY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5187930882494299\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wibu\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6334436046170957\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YYV\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4903465628810322\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"lanz\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"5456405010830163\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"SVB\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5118881769988776\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"tudd\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6267637950156954\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"FDU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6371041469680476\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"utci\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"3528504432779021\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"PFS\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"36755060320139\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"paen\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903670524526340\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YMU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026245816848835\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nijc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"340166667712143\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"OJU\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6288463610643009\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"nelf\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011823628323437\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QGX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4026282181028263\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"zair\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"201458094280440\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"GEL\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4755582971108689\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"hunc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"4903796104301679\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"LBY\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5610126790738706\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"rafw\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6214920739508446\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"QTK\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5018488667565481\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"atte\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011821093721127\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"ECX\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"5104324810756872\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"wisj\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6304518761101584\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"AVG\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"6011484920376316\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"gemc\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6011864090302848\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}},{\"instructedAmount\":{\"currency\":\"EUR\",\"content\":\"0\"},\"endToEndIdentification\":\"\",\"creditorAccount\":{\"iban\":\"PT000\",\"bban\":\"1\",\"pan\":\"\",\"maskedPan\":\"\",\"msisdn\":\"\",\"currency\":\"YSF\"},\"creditorAgent\":\"ABCDEFABC0A\",\"creditorName\":\"a\",\"creditorAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"},\"creditorClearingCode\":\"4807767391577567\",\"remittanceInformationUnstructured\":\"\",\"purposeCode\":\"turp\",\"chargeBearer\":\"SHAR\",\"creditorAgentName\":\"6372277604514738\",\"creditorAgentAddress\":{\"street\":\"\",\"buildingNumber\":\"\",\"city\":\"\",\"postalCode\":\"\",\"country\":\"\"}}]}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-IBM-Client-Id", "REPLACE_THIS_KEY")
req.Header.Add("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Request-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-ID-Type", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Corporate-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Corporate-ID-Type", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Consent-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Agent", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-IP-Address", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-IP-Port", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Device-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Device-Fingerprint", "REPLACE_THIS_VALUE")
req.Header.Add("Transaction-SCA-Performed", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Geo-Location", "GEO:1.111111;-1.111111")
req.Header.Add("TPP-Redirect-URI", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Delegated-Preferred", "REPLACE_THIS_VALUE")
req.Header.Add("Delegation-ID", "REPLACE_THIS_VALUE")
req.Header.Add("Signature", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Certificate", "REPLACE_THIS_VALUE")
req.Header.Add("Date", "REPLACE_THIS_VALUE")
req.Header.Add("Digest", "REPLACE_THIS_VALUE")
req.Header.Add("content-type", "application/json")
req.Header.Add("accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
x
import Foundation
let headers = [
"X-IBM-Client-Id": "REPLACE_THIS_KEY",
"TPP-Transaction-ID": "REPLACE_THIS_VALUE",
"TPP-Request-ID": "REPLACE_THIS_VALUE",
"PSU-ID": "REPLACE_THIS_VALUE",
"PSU-ID-Type": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type": "REPLACE_THIS_VALUE",
"PSU-Consent-ID": "REPLACE_THIS_VALUE",
"PSU-Agent": "REPLACE_THIS_VALUE",
"PSU-IP-Address": "REPLACE_THIS_VALUE",
"PSU-IP-Port": "REPLACE_THIS_VALUE",
"PSU-Device-ID": "REPLACE_THIS_VALUE",
"PSU-Device-Fingerprint": "REPLACE_THIS_VALUE",
"Transaction-SCA-Performed": "REPLACE_THIS_VALUE",
"PSU-Geo-Location": "GEO:1.111111;-1.111111",
"TPP-Redirect-URI": "REPLACE_THIS_VALUE",
"TPP-Delegated-Preferred": "REPLACE_THIS_VALUE",
"Delegation-ID": "REPLACE_THIS_VALUE",
"Signature": "REPLACE_THIS_VALUE",
"TPP-Certificate": "REPLACE_THIS_VALUE",
"Date": "REPLACE_THIS_VALUE",
"Digest": "REPLACE_THIS_VALUE",
"content-type": "application/json",
"accept": "application/json"
]
let parameters = [
"debtorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SXR"
],
"debtorName": "Lucas Sparks",
"batchBookingPreferred": false,
"paymentInformationId": "3565709980336128",
"requestedExecutionDate": "2001-01-05",
"payments": [
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OWI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903448233539106",
"remittanceInformationUnstructured": "",
"purposeC
import Foundation
let headers = [
"X-IBM-Client-Id": "REPLACE_THIS_KEY",
"TPP-Transaction-ID": "REPLACE_THIS_VALUE",
"TPP-Request-ID": "REPLACE_THIS_VALUE",
"PSU-ID": "REPLACE_THIS_VALUE",
"PSU-ID-Type": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type": "REPLACE_THIS_VALUE",
"PSU-Consent-ID": "REPLACE_THIS_VALUE",
"PSU-Agent": "REPLACE_THIS_VALUE",
"PSU-IP-Address": "REPLACE_THIS_VALUE",
"PSU-IP-Port": "REPLACE_THIS_VALUE",
"PSU-Device-ID": "REPLACE_THIS_VALUE",
"PSU-Device-Fingerprint": "REPLACE_THIS_VALUE",
"Transaction-SCA-Performed": "REPLACE_THIS_VALUE",
"PSU-Geo-Location": "GEO:1.111111;-1.111111",
"TPP-Redirect-URI": "REPLACE_THIS_VALUE",
"TPP-Delegated-Preferred": "REPLACE_THIS_VALUE",
"Delegation-ID": "REPLACE_THIS_VALUE",
"Signature": "REPLACE_THIS_VALUE",
"TPP-Certificate": "REPLACE_THIS_VALUE",
"Date": "REPLACE_THIS_VALUE",
"Digest": "REPLACE_THIS_VALUE",
"content-type": "application/json",
"accept": "application/json"
]
let parameters = [
"debtorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SXR"
],
"debtorName": "Lucas Sparks",
"batchBookingPreferred": false,
"paymentInformationId": "3565709980336128",
"requestedExecutionDate": "2001-01-05",
"payments": [
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OWI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903448233539106",
"remittanceInformationUnstructured": "",
"purposeCode": "icol",
"chargeBearer": "SHAR",
"creditorAgentName": "30074838931581",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CKN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304236509352134",
"remittanceInformationUnstructured": "",
"purposeCode": "dufo",
"chargeBearer": "SHAR",
"creditorAgentName": "5497962127109205",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NML"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528540050673369",
"remittanceInformationUnstructured": "",
"purposeCode": "jism",
"chargeBearer": "SHAR",
"creditorAgentName": "4026204005028626",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HSB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018771388484995",
"remittanceInformationUnstructured": "",
"purposeCode": "weba",
"chargeBearer": "SHAR",
"creditorAgentName": "5411755248541998",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LNN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528457986234648",
"remittanceInformationUnstructured": "",
"purposeCode": "dajo",
"chargeBearer": "SHAR",
"creditorAgentName": "5449054197268712",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ARX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528606398118886",
"remittanceInformationUnstructured": "",
"purposeCode": "ludg",
"chargeBearer": "SHAR",
"creditorAgentName": "6266495377678436",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BWI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018152476141799",
"remittanceInformationUnstructured": "",
"purposeCode": "etuh",
"chargeBearer": "SHAR",
"creditorAgentName": "5610297224926470",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LSD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5410065703822060",
"remittanceInformationUnstructured": "",
"purposeCode": "taon",
"chargeBearer": "SHAR",
"creditorAgentName": "5459460276173805",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BFI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018267123100475",
"remittanceInformationUnstructured": "",
"purposeCode": "jenf",
"chargeBearer": "SHAR",
"creditorAgentName": "6334030206173123",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GCE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30058919510786",
"remittanceInformationUnstructured": "",
"purposeCode": "nacc",
"chargeBearer": "SHAR",
"creditorAgentName": "4026716251639681",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ISN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304979428927888",
"remittanceInformationUnstructured": "",
"purposeCode": "kogm",
"chargeBearer": "SHAR",
"creditorAgentName": "4903202326462225",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RLJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334072096645299",
"remittanceInformationUnstructured": "",
"purposeCode": "bopc",
"chargeBearer": "SHAR",
"creditorAgentName": "347069896673883",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IUW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5158426720078837",
"remittanceInformationUnstructured": "",
"purposeCode": "vevo",
"chargeBearer": "SHAR",
"creditorAgentName": "30051776401355",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GVL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373061549264354",
"remittanceInformationUnstructured": "",
"purposeCode": "gaka",
"chargeBearer": "SHAR",
"creditorAgentName": "3528131759956881",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GPH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026552417789288",
"remittanceInformationUnstructured": "",
"purposeCode": "rege",
"chargeBearer": "SHAR",
"creditorAgentName": "6304366205125094",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QKK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903316123839938",
"remittanceInformationUnstructured": "",
"purposeCode": "atei",
"chargeBearer": "SHAR",
"creditorAgentName": "201496424860879",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FNU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6299438673051982",
"remittanceInformationUnstructured": "",
"purposeCode": "icji",
"chargeBearer": "SHAR",
"creditorAgentName": "6375991437150547",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZWT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36440788980700",
"remittanceInformationUnstructured": "",
"purposeCode": "zuci",
"chargeBearer": "SHAR",
"creditorAgentName": "5122345751765653",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PVX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011802443816841",
"remittanceInformationUnstructured": "",
"purposeCode": "celo",
"chargeBearer": "SHAR",
"creditorAgentName": "6295259515204561",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JSE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5198105399573078",
"remittanceInformationUnstructured": "",
"purposeCode": "huov",
"chargeBearer": "SHAR",
"creditorAgentName": "5610859529530669",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XEV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903777323039282",
"remittanceInformationUnstructured": "",
"purposeCode": "japu",
"chargeBearer": "SHAR",
"creditorAgentName": "36382630247096",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FAE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610026661009411",
"remittanceInformationUnstructured": "",
"purposeCode": "kubi",
"chargeBearer": "SHAR",
"creditorAgentName": "345970566472757",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LAN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903855001576674",
"remittanceInformationUnstructured": "",
"purposeCode": "suju",
"chargeBearer": "SHAR",
"creditorAgentName": "347297679594931",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TWU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6247039948697030",
"remittanceInformationUnstructured": "",
"purposeCode": "lild",
"chargeBearer": "SHAR",
"creditorAgentName": "6377745284233410",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NSO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026624327927959",
"remittanceInformationUnstructured": "",
"purposeCode": "reda",
"chargeBearer": "SHAR",
"creditorAgentName": "36943491237722",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FYJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334114780684364",
"remittanceInformationUnstructured": "",
"purposeCode": "cejr",
"chargeBearer": "SHAR",
"creditorAgentName": "6205621851826175",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LTS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30053207757884",
"remittanceInformationUnstructured": "",
"purposeCode": "tilf",
"chargeBearer": "SHAR",
"creditorAgentName": "36150979295871",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PWS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018232473211769",
"remittanceInformationUnstructured": "",
"purposeCode": "vobp",
"chargeBearer": "SHAR",
"creditorAgentName": "6334848177676224",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DOS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610883946798105",
"remittanceInformationUnstructured": "",
"purposeCode": "futd",
"chargeBearer": "SHAR",
"creditorAgentName": "6304011193600217",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GDG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334351602081565",
"remittanceInformationUnstructured": "",
"purposeCode": "salz",
"chargeBearer": "SHAR",
"creditorAgentName": "6375188093656806",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PLO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018401491192059",
"remittanceInformationUnstructured": "",
"purposeCode": "cezf",
"chargeBearer": "SHAR",
"creditorAgentName": "6370063866749390",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ODG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610705634406404",
"remittanceInformationUnstructured": "",
"purposeCode": "dupe",
"chargeBearer": "SHAR",
"creditorAgentName": "6334925110859909",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GIJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5199722370661505",
"remittanceInformationUnstructured": "",
"purposeCode": "nige",
"chargeBearer": "SHAR",
"creditorAgentName": "5610087920726187",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GFJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011373368426115",
"remittanceInformationUnstructured": "",
"purposeCode": "mazf",
"chargeBearer": "SHAR",
"creditorAgentName": "5610793382861061",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YGD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378000685418130",
"remittanceInformationUnstructured": "",
"purposeCode": "ebop",
"chargeBearer": "SHAR",
"creditorAgentName": "6334496214674669",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LJO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903332535980343",
"remittanceInformationUnstructured": "",
"purposeCode": "denk",
"chargeBearer": "SHAR",
"creditorAgentName": "6334300477364366",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XAB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30051975216034",
"remittanceInformationUnstructured": "",
"purposeCode": "tevi",
"chargeBearer": "SHAR",
"creditorAgentName": "5610076110785574",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UFG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304084896902925",
"remittanceInformationUnstructured": "",
"purposeCode": "kaid",
"chargeBearer": "SHAR",
"creditorAgentName": "6334631700968213",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HJY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6258969660429921",
"remittanceInformationUnstructured": "",
"purposeCode": "pikd",
"chargeBearer": "SHAR",
"creditorAgentName": "4026112050616965",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TTJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30015575272523",
"remittanceInformationUnstructured": "",
"purposeCode": "ildu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018288976692194",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MDR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378749546251086",
"remittanceInformationUnstructured": "",
"purposeCode": "wude",
"chargeBearer": "SHAR",
"creditorAgentName": "30032315816378",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RKI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4844836781323257",
"remittanceInformationUnstructured": "",
"purposeCode": "tefm",
"chargeBearer": "SHAR",
"creditorAgentName": "4087554525336529",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UFU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343639982430366",
"remittanceInformationUnstructured": "",
"purposeCode": "turr",
"chargeBearer": "SHAR",
"creditorAgentName": "6372565085998176",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JUS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36727366799134",
"remittanceInformationUnstructured": "",
"purposeCode": "zeta",
"chargeBearer": "SHAR",
"creditorAgentName": "5413037263433148",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WMG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5142239482541044",
"remittanceInformationUnstructured": "",
"purposeCode": "jawi",
"chargeBearer": "SHAR",
"creditorAgentName": "5610230939415109",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CNT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304555402239159",
"remittanceInformationUnstructured": "",
"purposeCode": "zake",
"chargeBearer": "SHAR",
"creditorAgentName": "5610527279690740",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KPK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343552189301076",
"remittanceInformationUnstructured": "",
"purposeCode": "zoho",
"chargeBearer": "SHAR",
"creditorAgentName": "30088203040919",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RDW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "349070680157982",
"remittanceInformationUnstructured": "",
"purposeCode": "favt",
"chargeBearer": "SHAR",
"creditorAgentName": "5018768939578747",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XKD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018017118023665",
"remittanceInformationUnstructured": "",
"purposeCode": "deef",
"chargeBearer": "SHAR",
"creditorAgentName": "6376930782124409",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OZL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201459288618817",
"remittanceInformationUnstructured": "",
"purposeCode": "zefp",
"chargeBearer": "SHAR",
"creditorAgentName": "4903231347644636",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XIW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026021267410858",
"remittanceInformationUnstructured": "",
"purposeCode": "nats",
"chargeBearer": "SHAR",
"creditorAgentName": "4897158979824301",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DFA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304434394913322",
"remittanceInformationUnstructured": "",
"purposeCode": "dabe",
"chargeBearer": "SHAR",
"creditorAgentName": "201491398555597",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YUC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610157158193242",
"remittanceInformationUnstructured": "",
"purposeCode": "enbu",
"chargeBearer": "SHAR",
"creditorAgentName": "5197233866658627",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VHR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374715986335824",
"remittanceInformationUnstructured": "",
"purposeCode": "boiv",
"chargeBearer": "SHAR",
"creditorAgentName": "4477912851634099",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FZU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903858662966507",
"remittanceInformationUnstructured": "",
"purposeCode": "wadl",
"chargeBearer": "SHAR",
"creditorAgentName": "6334782411910562",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BVT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "348145058775333",
"remittanceInformationUnstructured": "",
"purposeCode": "jiru",
"chargeBearer": "SHAR",
"creditorAgentName": "36718090116083",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JGI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4299824982579935",
"remittanceInformationUnstructured": "",
"purposeCode": "fafg",
"chargeBearer": "SHAR",
"creditorAgentName": "4271808080411416",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MDA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304515410216284",
"remittanceInformationUnstructured": "",
"purposeCode": "sein",
"chargeBearer": "SHAR",
"creditorAgentName": "30039833148630",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BJM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6264138817276351",
"remittanceInformationUnstructured": "",
"purposeCode": "ufur",
"chargeBearer": "SHAR",
"creditorAgentName": "4026762564721477",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JUF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610785994287867",
"remittanceInformationUnstructured": "",
"purposeCode": "befo",
"chargeBearer": "SHAR",
"creditorAgentName": "6011482439677562",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UNJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36107238042304",
"remittanceInformationUnstructured": "",
"purposeCode": "ikki",
"chargeBearer": "SHAR",
"creditorAgentName": "4026853515794828",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PFQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5472618146006280",
"remittanceInformationUnstructured": "",
"purposeCode": "wegr",
"chargeBearer": "SHAR",
"creditorAgentName": "344100297445705",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZWV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5157401329492029",
"remittanceInformationUnstructured": "",
"purposeCode": "siku",
"chargeBearer": "SHAR",
"creditorAgentName": "201473544052497",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HSB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5453937136225301",
"remittanceInformationUnstructured": "",
"purposeCode": "otsu",
"chargeBearer": "SHAR",
"creditorAgentName": "201426204409050",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FZQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304498079742793",
"remittanceInformationUnstructured": "",
"purposeCode": "ruka",
"chargeBearer": "SHAR",
"creditorAgentName": "6304458595341983",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YFN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201469946663022",
"remittanceInformationUnstructured": "",
"purposeCode": "vami",
"chargeBearer": "SHAR",
"creditorAgentName": "4345773764365308",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZWH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018446090769708",
"remittanceInformationUnstructured": "",
"purposeCode": "hidu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528866442982931",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BPT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018732753322194",
"remittanceInformationUnstructured": "",
"purposeCode": "ehgo",
"chargeBearer": "SHAR",
"creditorAgentName": "36587540158171",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "REB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30025498032870",
"remittanceInformationUnstructured": "",
"purposeCode": "cong",
"chargeBearer": "SHAR",
"creditorAgentName": "3528632236625809",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NRH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5105348177356231",
"remittanceInformationUnstructured": "",
"purposeCode": "kati",
"chargeBearer": "SHAR",
"creditorAgentName": "5170344966746724",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LJL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610825098303630",
"remittanceInformationUnstructured": "",
"purposeCode": "fifu",
"chargeBearer": "SHAR",
"creditorAgentName": "6011726004035790",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DOC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304660696128736",
"remittanceInformationUnstructured": "",
"purposeCode": "aros",
"chargeBearer": "SHAR",
"creditorAgentName": "6011416714071240",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TYO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30075405673639",
"remittanceInformationUnstructured": "",
"purposeCode": "nimu",
"chargeBearer": "SHAR",
"creditorAgentName": "36182448872774",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EHA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528244969546663",
"remittanceInformationUnstructured": "",
"purposeCode": "poza",
"chargeBearer": "SHAR",
"creditorAgentName": "201493363481585",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DQK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011024681829937",
"remittanceInformationUnstructured": "",
"purposeCode": "live",
"chargeBearer": "SHAR",
"creditorAgentName": "5018165332419894",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JCX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528831685080470",
"remittanceInformationUnstructured": "",
"purposeCode": "labr",
"chargeBearer": "SHAR",
"creditorAgentName": "4903695615354005",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SSZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528383581531248",
"remittanceInformationUnstructured": "",
"purposeCode": "wane",
"chargeBearer": "SHAR",
"creditorAgentName": "4026082046547519",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AGP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026140130657063",
"remittanceInformationUnstructured": "",
"purposeCode": "ahob",
"chargeBearer": "SHAR",
"creditorAgentName": "6011114388894753",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VYW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36593176251504",
"remittanceInformationUnstructured": "",
"purposeCode": "cogn",
"chargeBearer": "SHAR",
"creditorAgentName": "5018661654661303",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PIB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610756417742663",
"remittanceInformationUnstructured": "",
"purposeCode": "ozgu",
"chargeBearer": "SHAR",
"creditorAgentName": "30029192167925",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DBZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5146601025882654",
"remittanceInformationUnstructured": "",
"purposeCode": "ozaf",
"chargeBearer": "SHAR",
"creditorAgentName": "201415509325418",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ARW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6225434734830141",
"remittanceInformationUnstructured": "",
"purposeCode": "uwav",
"chargeBearer": "SHAR",
"creditorAgentName": "6304042513223042",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NRC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6379100957897232",
"remittanceInformationUnstructured": "",
"purposeCode": "caze",
"chargeBearer": "SHAR",
"creditorAgentName": "30023190150975",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FDM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6271762617054592",
"remittanceInformationUnstructured": "",
"purposeCode": "hipa",
"chargeBearer": "SHAR",
"creditorAgentName": "346981990387270",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WCR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011344831763293",
"remittanceInformationUnstructured": "",
"purposeCode": "juwh",
"chargeBearer": "SHAR",
"creditorAgentName": "4384204076140371",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YRX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610235997425031",
"remittanceInformationUnstructured": "",
"purposeCode": "huwm",
"chargeBearer": "SHAR",
"creditorAgentName": "201401849948747",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZDC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026532390106577",
"remittanceInformationUnstructured": "",
"purposeCode": "zice",
"chargeBearer": "SHAR",
"creditorAgentName": "6259800059171387",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GCO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528981463178127",
"remittanceInformationUnstructured": "",
"purposeCode": "luom",
"chargeBearer": "SHAR",
"creditorAgentName": "6377927706849342",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CIZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "345856994277423",
"remittanceInformationUnstructured": "",
"purposeCode": "wuku",
"chargeBearer": "SHAR",
"creditorAgentName": "36841027377139",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NWX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4526140305176860",
"remittanceInformationUnstructured": "",
"purposeCode": "bers",
"chargeBearer": "SHAR",
"creditorAgentName": "6377859779269027",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EMW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4810419687893655",
"remittanceInformationUnstructured": "",
"purposeCode": "ojfi",
"chargeBearer": "SHAR",
"creditorAgentName": "5146770540755974",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XLO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5128525195545324",
"remittanceInformationUnstructured": "",
"purposeCode": "fodf",
"chargeBearer": "SHAR",
"creditorAgentName": "4903496405575531",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CXS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30071181727921",
"remittanceInformationUnstructured": "",
"purposeCode": "suwa",
"chargeBearer": "SHAR",
"creditorAgentName": "36978989785279",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DXD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610564490627144",
"remittanceInformationUnstructured": "",
"purposeCode": "emoj",
"chargeBearer": "SHAR",
"creditorAgentName": "4678256166430133",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GHM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5186381754241403",
"remittanceInformationUnstructured": "",
"purposeCode": "naib",
"chargeBearer": "SHAR",
"creditorAgentName": "6011729816196560",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PGO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334718000239559",
"remittanceInformationUnstructured": "",
"purposeCode": "zetu",
"chargeBearer": "SHAR",
"creditorAgentName": "36345619290296",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KLZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610878174467969",
"remittanceInformationUnstructured": "",
"purposeCode": "cesf",
"chargeBearer": "SHAR",
"creditorAgentName": "5610982017614959",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QIU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334761927084799",
"remittanceInformationUnstructured": "",
"purposeCode": "gurf",
"chargeBearer": "SHAR",
"creditorAgentName": "201470236157709",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VMQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610766758382391",
"remittanceInformationUnstructured": "",
"purposeCode": "ziso",
"chargeBearer": "SHAR",
"creditorAgentName": "6374783498409792",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GDC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528782203740915",
"remittanceInformationUnstructured": "",
"purposeCode": "wuar",
"chargeBearer": "SHAR",
"creditorAgentName": "201444305722198",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WYJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5481381864499661",
"remittanceInformationUnstructured": "",
"purposeCode": "zuvi",
"chargeBearer": "SHAR",
"creditorAgentName": "30063334953025",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HEP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026406630906403",
"remittanceInformationUnstructured": "",
"purposeCode": "udle",
"chargeBearer": "SHAR",
"creditorAgentName": "5488896671282680",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "USH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903237765676380",
"remittanceInformationUnstructured": "",
"purposeCode": "rizd",
"chargeBearer": "SHAR",
"creditorAgentName": "4026298799288271",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XIO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011220854057682",
"remittanceInformationUnstructured": "",
"purposeCode": "guzu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528453115577254",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RUS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026825305594410",
"remittanceInformationUnstructured": "",
"purposeCode": "obbo",
"chargeBearer": "SHAR",
"creditorAgentName": "5610031147056465",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GWI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30091820352949",
"remittanceInformationUnstructured": "",
"purposeCode": "mecb",
"chargeBearer": "SHAR",
"creditorAgentName": "5165056248565758",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IWQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6370370904563570",
"remittanceInformationUnstructured": "",
"purposeCode": "avoo",
"chargeBearer": "SHAR",
"creditorAgentName": "5610030934408137",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WUY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334593188579849",
"remittanceInformationUnstructured": "",
"purposeCode": "wavh",
"chargeBearer": "SHAR",
"creditorAgentName": "5408225568898506",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HPM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6379980324375677",
"remittanceInformationUnstructured": "",
"purposeCode": "hazz",
"chargeBearer": "SHAR",
"creditorAgentName": "36266507854425",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BZH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5435461511763672",
"remittanceInformationUnstructured": "",
"purposeCode": "hise",
"chargeBearer": "SHAR",
"creditorAgentName": "6227322037215276",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OLI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5405519110708475",
"remittanceInformationUnstructured": "",
"purposeCode": "rode",
"chargeBearer": "SHAR",
"creditorAgentName": "6011050889395850",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZBN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011913557499652",
"remittanceInformationUnstructured": "",
"purposeCode": "kaez",
"chargeBearer": "SHAR",
"creditorAgentName": "6371523535239312",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GGW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903224934302411",
"remittanceInformationUnstructured": "",
"purposeCode": "zare",
"chargeBearer": "SHAR",
"creditorAgentName": "6334757190181510",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VJJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6252195539027268",
"remittanceInformationUnstructured": "",
"purposeCode": "ataf",
"chargeBearer": "SHAR",
"creditorAgentName": "30073641062709",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VZH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903075199482128",
"remittanceInformationUnstructured": "",
"purposeCode": "simw",
"chargeBearer": "SHAR",
"creditorAgentName": "5610548271456609",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GXB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6281077690185272",
"remittanceInformationUnstructured": "",
"purposeCode": "ujar",
"chargeBearer": "SHAR",
"creditorAgentName": "5485697748372279",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OAW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304159561808373",
"remittanceInformationUnstructured": "",
"purposeCode": "meru",
"chargeBearer": "SHAR",
"creditorAgentName": "4977778017163231",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BCD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201445640683086",
"remittanceInformationUnstructured": "",
"purposeCode": "viju",
"chargeBearer": "SHAR",
"creditorAgentName": "201433848151676",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VZO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304539610324276",
"remittanceInformationUnstructured": "",
"purposeCode": "gamv",
"chargeBearer": "SHAR",
"creditorAgentName": "6334263258027851",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QTL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018281224403100",
"remittanceInformationUnstructured": "",
"purposeCode": "etar",
"chargeBearer": "SHAR",
"creditorAgentName": "4320499797991170",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WVT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610799207893528",
"remittanceInformationUnstructured": "",
"purposeCode": "bavw",
"chargeBearer": "SHAR",
"creditorAgentName": "4574588423888595",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EIV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026147552842149",
"remittanceInformationUnstructured": "",
"purposeCode": "udeg",
"chargeBearer": "SHAR",
"creditorAgentName": "6304852095337410",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KHV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4628640850666881",
"remittanceInformationUnstructured": "",
"purposeCode": "nakh",
"chargeBearer": "SHAR",
"creditorAgentName": "4026574400028102",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MYY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304001656754429",
"remittanceInformationUnstructured": "",
"purposeCode": "ovot",
"chargeBearer": "SHAR",
"creditorAgentName": "5167258801521206",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DQQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4714101273505532",
"remittanceInformationUnstructured": "",
"purposeCode": "pucr",
"chargeBearer": "SHAR",
"creditorAgentName": "6334920696485070",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UYB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5487954471454347",
"remittanceInformationUnstructured": "",
"purposeCode": "wuga",
"chargeBearer": "SHAR",
"creditorAgentName": "201415948113193",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LQJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528775329405264",
"remittanceInformationUnstructured": "",
"purposeCode": "jesa",
"chargeBearer": "SHAR",
"creditorAgentName": "6304787154144705",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LIG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30076402540839",
"remittanceInformationUnstructured": "",
"purposeCode": "kavo",
"chargeBearer": "SHAR",
"creditorAgentName": "4903607661527558",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GTR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36571714526744",
"remittanceInformationUnstructured": "",
"purposeCode": "belo",
"chargeBearer": "SHAR",
"creditorAgentName": "3528091915388660",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HHL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30058941813992",
"remittanceInformationUnstructured": "",
"purposeCode": "toki",
"chargeBearer": "SHAR",
"creditorAgentName": "3528417931872710",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WYP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610796374521049",
"remittanceInformationUnstructured": "",
"purposeCode": "ceso",
"chargeBearer": "SHAR",
"creditorAgentName": "5123840684396294",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KUW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334966280413226",
"remittanceInformationUnstructured": "",
"purposeCode": "rata",
"chargeBearer": "SHAR",
"creditorAgentName": "5423590560830935",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PWV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6257045487197388",
"remittanceInformationUnstructured": "",
"purposeCode": "wuwh",
"chargeBearer": "SHAR",
"creditorAgentName": "5492200263427544",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WNV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026024446289599",
"remittanceInformationUnstructured": "",
"purposeCode": "kosu",
"chargeBearer": "SHAR",
"creditorAgentName": "4903805787949900",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PSM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018005505170967",
"remittanceInformationUnstructured": "",
"purposeCode": "nimz",
"chargeBearer": "SHAR",
"creditorAgentName": "201402335436445",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HSK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347924958166814",
"remittanceInformationUnstructured": "",
"purposeCode": "ecoz",
"chargeBearer": "SHAR",
"creditorAgentName": "4394329603831255",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BKF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4440823132059499",
"remittanceInformationUnstructured": "",
"purposeCode": "masa",
"chargeBearer": "SHAR",
"creditorAgentName": "5476159159463734",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OAZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6243880073706664",
"remittanceInformationUnstructured": "",
"purposeCode": "foum",
"chargeBearer": "SHAR",
"creditorAgentName": "346613664968917",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FPV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378122122311932",
"remittanceInformationUnstructured": "",
"purposeCode": "nuof",
"chargeBearer": "SHAR",
"creditorAgentName": "6291754358603600",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UBH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5483602092963899",
"remittanceInformationUnstructured": "",
"purposeCode": "pesn",
"chargeBearer": "SHAR",
"creditorAgentName": "6269858862251182",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VQR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201477257144144",
"remittanceInformationUnstructured": "",
"purposeCode": "delu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018719773318914",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WMP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026425755435949",
"remittanceInformationUnstructured": "",
"purposeCode": "reji",
"chargeBearer": "SHAR",
"creditorAgentName": "4026277637530417",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AKA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5414668986298100",
"remittanceInformationUnstructured": "",
"purposeCode": "ukot",
"chargeBearer": "SHAR",
"creditorAgentName": "201434593242660",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UFK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5187353515533104",
"remittanceInformationUnstructured": "",
"purposeCode": "alaf",
"chargeBearer": "SHAR",
"creditorAgentName": "6334169642300245",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SHK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36247944559769",
"remittanceInformationUnstructured": "",
"purposeCode": "kone",
"chargeBearer": "SHAR",
"creditorAgentName": "201468343046955",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DEJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6294805958137584",
"remittanceInformationUnstructured": "",
"purposeCode": "baut",
"chargeBearer": "SHAR",
"creditorAgentName": "5119966072674640",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GGM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528165309788584",
"remittanceInformationUnstructured": "",
"purposeCode": "bodu",
"chargeBearer": "SHAR",
"creditorAgentName": "201409785676974",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XPW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5488488207651925",
"remittanceInformationUnstructured": "",
"purposeCode": "nojg",
"chargeBearer": "SHAR",
"creditorAgentName": "6334762372346154",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MGW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903539228013543",
"remittanceInformationUnstructured": "",
"purposeCode": "damo",
"chargeBearer": "SHAR",
"creditorAgentName": "5158175623184784",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TWN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5124947736963549",
"remittanceInformationUnstructured": "",
"purposeCode": "vewd",
"chargeBearer": "SHAR",
"creditorAgentName": "6334660651169265",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TDG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026927870325939",
"remittanceInformationUnstructured": "",
"purposeCode": "doro",
"chargeBearer": "SHAR",
"creditorAgentName": "340790738786867",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HUX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5403289096767034",
"remittanceInformationUnstructured": "",
"purposeCode": "coku",
"chargeBearer": "SHAR",
"creditorAgentName": "3528267124406176",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TUV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026961137748617",
"remittanceInformationUnstructured": "",
"purposeCode": "aciu",
"chargeBearer": "SHAR",
"creditorAgentName": "4026579822017310",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RKW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528544617527019",
"remittanceInformationUnstructured": "",
"purposeCode": "mase",
"chargeBearer": "SHAR",
"creditorAgentName": "4894552991866105",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VYN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374219451337977",
"remittanceInformationUnstructured": "",
"purposeCode": "vusa",
"chargeBearer": "SHAR",
"creditorAgentName": "6304838429506374",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KXB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026711850851613",
"remittanceInformationUnstructured": "",
"purposeCode": "kiga",
"chargeBearer": "SHAR",
"creditorAgentName": "5143176726833226",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OKQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334963411636320",
"remittanceInformationUnstructured": "",
"purposeCode": "lued",
"chargeBearer": "SHAR",
"creditorAgentName": "30002527240998",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FMH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "349273008705538",
"remittanceInformationUnstructured": "",
"purposeCode": "capb",
"chargeBearer": "SHAR",
"creditorAgentName": "6334676257050105",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AQB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6286943890069266",
"remittanceInformationUnstructured": "",
"purposeCode": "onju",
"chargeBearer": "SHAR",
"creditorAgentName": "6304759222469281",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JCH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026783955372845",
"remittanceInformationUnstructured": "",
"purposeCode": "jina",
"chargeBearer": "SHAR",
"creditorAgentName": "3528641808879728",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GBF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026190386433503",
"remittanceInformationUnstructured": "",
"purposeCode": "taiv",
"chargeBearer": "SHAR",
"creditorAgentName": "3528473201271315",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YIZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5429229207145738",
"remittanceInformationUnstructured": "",
"purposeCode": "vavo",
"chargeBearer": "SHAR",
"creditorAgentName": "36127520487264",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AGP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610743633909227",
"remittanceInformationUnstructured": "",
"purposeCode": "hini",
"chargeBearer": "SHAR",
"creditorAgentName": "6334969556488682",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UVC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903533457384774",
"remittanceInformationUnstructured": "",
"purposeCode": "tolv",
"chargeBearer": "SHAR",
"creditorAgentName": "6334507399444593",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WRO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373521111182854",
"remittanceInformationUnstructured": "",
"purposeCode": "hunz",
"chargeBearer": "SHAR",
"creditorAgentName": "5412102187897637",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SRQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6233664128939955",
"remittanceInformationUnstructured": "",
"purposeCode": "ohia",
"chargeBearer": "SHAR",
"creditorAgentName": "5018328086706607",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BWQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011158498642354",
"remittanceInformationUnstructured": "",
"purposeCode": "hedc",
"chargeBearer": "SHAR",
"creditorAgentName": "6011312583413219",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FUS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026792310552892",
"remittanceInformationUnstructured": "",
"purposeCode": "jupc",
"chargeBearer": "SHAR",
"creditorAgentName": "345380082611617",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GCI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011265078423905",
"remittanceInformationUnstructured": "",
"purposeCode": "ajne",
"chargeBearer": "SHAR",
"creditorAgentName": "30001664074467",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UEX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334116089167611",
"remittanceInformationUnstructured": "",
"purposeCode": "egbo",
"chargeBearer": "SHAR",
"creditorAgentName": "6334324169490412",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TLU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36406332797544",
"remittanceInformationUnstructured": "",
"purposeCode": "kije",
"chargeBearer": "SHAR",
"creditorAgentName": "6011530416479566",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JWK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304848589291139",
"remittanceInformationUnstructured": "",
"purposeCode": "tugw",
"chargeBearer": "SHAR",
"creditorAgentName": "6379432115620309",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VRO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011363855347650",
"remittanceInformationUnstructured": "",
"purposeCode": "puwo",
"chargeBearer": "SHAR",
"creditorAgentName": "5406080312758833",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WKZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201458978318530",
"remittanceInformationUnstructured": "",
"purposeCode": "nebo",
"chargeBearer": "SHAR",
"creditorAgentName": "6304176108018472",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OBN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610238462602563",
"remittanceInformationUnstructured": "",
"purposeCode": "wirl",
"chargeBearer": "SHAR",
"creditorAgentName": "4068592242599170",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FZU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30023167875869",
"remittanceInformationUnstructured": "",
"purposeCode": "dohe",
"chargeBearer": "SHAR",
"creditorAgentName": "6265364681130107",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PTR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347325798078468",
"remittanceInformationUnstructured": "",
"purposeCode": "kaso",
"chargeBearer": "SHAR",
"creditorAgentName": "4903149633874701",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ILL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304415096936380",
"remittanceInformationUnstructured": "",
"purposeCode": "neta",
"chargeBearer": "SHAR",
"creditorAgentName": "30065736632511",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XOB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011427454630590",
"remittanceInformationUnstructured": "",
"purposeCode": "pesi",
"chargeBearer": "SHAR",
"creditorAgentName": "6372129183869621",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZEK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5124418917354122",
"remittanceInformationUnstructured": "",
"purposeCode": "uzos",
"chargeBearer": "SHAR",
"creditorAgentName": "5420343194758509",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SIW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5408239663943422",
"remittanceInformationUnstructured": "",
"purposeCode": "baik",
"chargeBearer": "SHAR",
"creditorAgentName": "6011103054767047",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YFA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304829034180127",
"remittanceInformationUnstructured": "",
"purposeCode": "ifeu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528039952327323",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GUU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304941694941290",
"remittanceInformationUnstructured": "",
"purposeCode": "ofwo",
"chargeBearer": "SHAR",
"creditorAgentName": "36898764372152",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MOT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5160155846425574",
"remittanceInformationUnstructured": "",
"purposeCode": "tuct",
"chargeBearer": "SHAR",
"creditorAgentName": "6372501573404344",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HAC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610735059859191",
"remittanceInformationUnstructured": "",
"purposeCode": "cejk",
"chargeBearer": "SHAR",
"creditorAgentName": "6334797863777475",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NRC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011722635986881",
"remittanceInformationUnstructured": "",
"purposeCode": "jige",
"chargeBearer": "SHAR",
"creditorAgentName": "5180456772003195",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IXB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201423236257185",
"remittanceInformationUnstructured": "",
"purposeCode": "vonr",
"chargeBearer": "SHAR",
"creditorAgentName": "4903564190948385",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SFC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528698288008665",
"remittanceInformationUnstructured": "",
"purposeCode": "haul",
"chargeBearer": "SHAR",
"creditorAgentName": "6304555291751413",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WRD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36992797272461",
"remittanceInformationUnstructured": "",
"purposeCode": "vefe",
"chargeBearer": "SHAR",
"creditorAgentName": "5487875605410154",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WUW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30061288277961",
"remittanceInformationUnstructured": "",
"purposeCode": "feri",
"chargeBearer": "SHAR",
"creditorAgentName": "4148886272150712",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WPX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011222888698879",
"remittanceInformationUnstructured": "",
"purposeCode": "sozi",
"chargeBearer": "SHAR",
"creditorAgentName": "4856233412683645",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "THP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30020964229241",
"remittanceInformationUnstructured": "",
"purposeCode": "rerg",
"chargeBearer": "SHAR",
"creditorAgentName": "3528011156538880",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OZM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903799780600844",
"remittanceInformationUnstructured": "",
"purposeCode": "bifu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018071408658185",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JYU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334399390500809",
"remittanceInformationUnstructured": "",
"purposeCode": "cipa",
"chargeBearer": "SHAR",
"creditorAgentName": "5610746074319160",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FRM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5104199970064865",
"remittanceInformationUnstructured": "",
"purposeCode": "bisn",
"chargeBearer": "SHAR",
"creditorAgentName": "6372030922634799",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RDA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201403604669716",
"remittanceInformationUnstructured": "",
"purposeCode": "miga",
"chargeBearer": "SHAR",
"creditorAgentName": "6293943994986002",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MTB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018772649311498",
"remittanceInformationUnstructured": "",
"purposeCode": "pini",
"chargeBearer": "SHAR",
"creditorAgentName": "201495102554846",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PVT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6372289152317976",
"remittanceInformationUnstructured": "",
"purposeCode": "rubd",
"chargeBearer": "SHAR",
"creditorAgentName": "5150158668868139",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IDL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6250581632947704",
"remittanceInformationUnstructured": "",
"purposeCode": "haco",
"chargeBearer": "SHAR",
"creditorAgentName": "6011836635901516",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UXQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377920610875438",
"remittanceInformationUnstructured": "",
"purposeCode": "mupo",
"chargeBearer": "SHAR",
"creditorAgentName": "4903661534954770",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "STP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903355506828241",
"remittanceInformationUnstructured": "",
"purposeCode": "vulu",
"chargeBearer": "SHAR",
"creditorAgentName": "6334763710686483",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CMV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026464909106981",
"remittanceInformationUnstructured": "",
"purposeCode": "sido",
"chargeBearer": "SHAR",
"creditorAgentName": "343486656764666",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZXX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610045774289413",
"remittanceInformationUnstructured": "",
"purposeCode": "faho",
"chargeBearer": "SHAR",
"creditorAgentName": "30031482547402",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EHT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610973944785053",
"remittanceInformationUnstructured": "",
"purposeCode": "kahe",
"chargeBearer": "SHAR",
"creditorAgentName": "6334859578819156",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WVN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36990838406742",
"remittanceInformationUnstructured": "",
"purposeCode": "sole",
"chargeBearer": "SHAR",
"creditorAgentName": "6011369312852315",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SZJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346540437466939",
"remittanceInformationUnstructured": "",
"purposeCode": "mine",
"chargeBearer": "SHAR",
"creditorAgentName": "4903253851809017",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KRH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011719834864976",
"remittanceInformationUnstructured": "",
"purposeCode": "coun",
"chargeBearer": "SHAR",
"creditorAgentName": "344924904041155",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PMQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334970064340639",
"remittanceInformationUnstructured": "",
"purposeCode": "baah",
"chargeBearer": "SHAR",
"creditorAgentName": "5018678808466504",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MTZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6279110548016029",
"remittanceInformationUnstructured": "",
"purposeCode": "ajfe",
"chargeBearer": "SHAR",
"creditorAgentName": "5610894284850721",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SJA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610021306704294",
"remittanceInformationUnstructured": "",
"purposeCode": "ogli",
"chargeBearer": "SHAR",
"creditorAgentName": "36622749399407",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GCE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610349834242465",
"remittanceInformationUnstructured": "",
"purposeCode": "nokr",
"chargeBearer": "SHAR",
"creditorAgentName": "36825386959991",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VDF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4015343757399869",
"remittanceInformationUnstructured": "",
"purposeCode": "caez",
"chargeBearer": "SHAR",
"creditorAgentName": "5018360459136120",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BUF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374693998701376",
"remittanceInformationUnstructured": "",
"purposeCode": "epli",
"chargeBearer": "SHAR",
"creditorAgentName": "6011084827043892",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ANV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201433701798712",
"remittanceInformationUnstructured": "",
"purposeCode": "sech",
"chargeBearer": "SHAR",
"creditorAgentName": "4903269642162490",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MCJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6240930124716106",
"remittanceInformationUnstructured": "",
"purposeCode": "doro",
"chargeBearer": "SHAR",
"creditorAgentName": "36049383434698",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VZU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201485944633841",
"remittanceInformationUnstructured": "",
"purposeCode": "usag",
"chargeBearer": "SHAR",
"creditorAgentName": "6304070252823961",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TEP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610237578716994",
"remittanceInformationUnstructured": "",
"purposeCode": "fice",
"chargeBearer": "SHAR",
"creditorAgentName": "5610164384722968",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CXU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343911905919068",
"remittanceInformationUnstructured": "",
"purposeCode": "ecki",
"chargeBearer": "SHAR",
"creditorAgentName": "4007688991161784",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ALL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5429268585831329",
"remittanceInformationUnstructured": "",
"purposeCode": "puna",
"chargeBearer": "SHAR",
"creditorAgentName": "4885502835597987",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DXB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201433005658711",
"remittanceInformationUnstructured": "",
"purposeCode": "koti",
"chargeBearer": "SHAR",
"creditorAgentName": "5165539080084129",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VIU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378030660521889",
"remittanceInformationUnstructured": "",
"purposeCode": "wuro",
"chargeBearer": "SHAR",
"creditorAgentName": "30095329591717",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AYK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4813404818690482",
"remittanceInformationUnstructured": "",
"purposeCode": "nuad",
"chargeBearer": "SHAR",
"creditorAgentName": "5413800178472778",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XOS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528130053685675",
"remittanceInformationUnstructured": "",
"purposeCode": "gesi",
"chargeBearer": "SHAR",
"creditorAgentName": "349757957096535",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WPV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026122460118361",
"remittanceInformationUnstructured": "",
"purposeCode": "vome",
"chargeBearer": "SHAR",
"creditorAgentName": "5018110398496535",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OZO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6379400421412075",
"remittanceInformationUnstructured": "",
"purposeCode": "sike",
"chargeBearer": "SHAR",
"creditorAgentName": "201473010145023",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DNI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304821025546853",
"remittanceInformationUnstructured": "",
"purposeCode": "bipm",
"chargeBearer": "SHAR",
"creditorAgentName": "4154016542537743",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DTL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5198429228976033",
"remittanceInformationUnstructured": "",
"purposeCode": "diba",
"chargeBearer": "SHAR",
"creditorAgentName": "6334563111648896",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JKR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346151115589289",
"remittanceInformationUnstructured": "",
"purposeCode": "azow",
"chargeBearer": "SHAR",
"creditorAgentName": "6304669225362187",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DIW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304199281940692",
"remittanceInformationUnstructured": "",
"purposeCode": "jicc",
"chargeBearer": "SHAR",
"creditorAgentName": "3528546370742537",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TPA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4463934994023739",
"remittanceInformationUnstructured": "",
"purposeCode": "atuo",
"chargeBearer": "SHAR",
"creditorAgentName": "201431432872491",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PTQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6226981790409797",
"remittanceInformationUnstructured": "",
"purposeCode": "onap",
"chargeBearer": "SHAR",
"creditorAgentName": "349060552162004",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HPA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201440230207719",
"remittanceInformationUnstructured": "",
"purposeCode": "tojl",
"chargeBearer": "SHAR",
"creditorAgentName": "5149542944705765",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SGG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30054113263736",
"remittanceInformationUnstructured": "",
"purposeCode": "loma",
"chargeBearer": "SHAR",
"creditorAgentName": "4903135478462975",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YQV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528654259528868",
"remittanceInformationUnstructured": "",
"purposeCode": "zobi",
"chargeBearer": "SHAR",
"creditorAgentName": "4334181927666864",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QUB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "342131780638482",
"remittanceInformationUnstructured": "",
"purposeCode": "ipli",
"chargeBearer": "SHAR",
"creditorAgentName": "5143327631624248",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LAS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903460961898786",
"remittanceInformationUnstructured": "",
"purposeCode": "zect",
"chargeBearer": "SHAR",
"creditorAgentName": "340040674324830",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MLB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026074376793144",
"remittanceInformationUnstructured": "",
"purposeCode": "etak",
"chargeBearer": "SHAR",
"creditorAgentName": "30081676333036",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GBS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5455296042832900",
"remittanceInformationUnstructured": "",
"purposeCode": "kere",
"chargeBearer": "SHAR",
"creditorAgentName": "5171958378165139",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GAB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011207965229649",
"remittanceInformationUnstructured": "",
"purposeCode": "hubw",
"chargeBearer": "SHAR",
"creditorAgentName": "6334345012817345",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FKR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018631246750112",
"remittanceInformationUnstructured": "",
"purposeCode": "huci",
"chargeBearer": "SHAR",
"creditorAgentName": "6304003726105822",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MMI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011892426602177",
"remittanceInformationUnstructured": "",
"purposeCode": "mepb",
"chargeBearer": "SHAR",
"creditorAgentName": "5018231073135436",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TDF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6299152736288834",
"remittanceInformationUnstructured": "",
"purposeCode": "hofd",
"chargeBearer": "SHAR",
"creditorAgentName": "6334568918054990",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AJM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334410388344843",
"remittanceInformationUnstructured": "",
"purposeCode": "moon",
"chargeBearer": "SHAR",
"creditorAgentName": "5104724710645507",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NDJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201414132783812",
"remittanceInformationUnstructured": "",
"purposeCode": "vori",
"chargeBearer": "SHAR",
"creditorAgentName": "6334930237069085",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PUC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334490835087583",
"remittanceInformationUnstructured": "",
"purposeCode": "zejf",
"chargeBearer": "SHAR",
"creditorAgentName": "4988308944781678",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VSP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903410190128331",
"remittanceInformationUnstructured": "",
"purposeCode": "rawp",
"chargeBearer": "SHAR",
"creditorAgentName": "6304622733690904",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RZI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36730629940750",
"remittanceInformationUnstructured": "",
"purposeCode": "lahj",
"chargeBearer": "SHAR",
"creditorAgentName": "346269475818161",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RLG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201428509495339",
"remittanceInformationUnstructured": "",
"purposeCode": "jipk",
"chargeBearer": "SHAR",
"creditorAgentName": "5610451726168988",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SQZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4402041354793960",
"remittanceInformationUnstructured": "",
"purposeCode": "lent",
"chargeBearer": "SHAR",
"creditorAgentName": "6334953925474458",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MVK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528977723602823",
"remittanceInformationUnstructured": "",
"purposeCode": "civh",
"chargeBearer": "SHAR",
"creditorAgentName": "4026916977895498",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OSF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903340313901308",
"remittanceInformationUnstructured": "",
"purposeCode": "baih",
"chargeBearer": "SHAR",
"creditorAgentName": "30086474602532",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PCE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374313156656284",
"remittanceInformationUnstructured": "",
"purposeCode": "vobi",
"chargeBearer": "SHAR",
"creditorAgentName": "6304933837118662",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OEU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6205936719207917",
"remittanceInformationUnstructured": "",
"purposeCode": "rasg",
"chargeBearer": "SHAR",
"creditorAgentName": "36676301549130",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JYT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30085697117484",
"remittanceInformationUnstructured": "",
"purposeCode": "lalu",
"chargeBearer": "SHAR",
"creditorAgentName": "5438813170733254",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TTL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528583141842049",
"remittanceInformationUnstructured": "",
"purposeCode": "bule",
"chargeBearer": "SHAR",
"creditorAgentName": "5610764368217842",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PUR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018456935630262",
"remittanceInformationUnstructured": "",
"purposeCode": "dukv",
"chargeBearer": "SHAR",
"creditorAgentName": "3528405031552498",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UHS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6376547519407046",
"remittanceInformationUnstructured": "",
"purposeCode": "gapf",
"chargeBearer": "SHAR",
"creditorAgentName": "5429393004204989",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GFE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6245427165202505",
"remittanceInformationUnstructured": "",
"purposeCode": "cimb",
"chargeBearer": "SHAR",
"creditorAgentName": "6011679247547040",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QWR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "345379728142888",
"remittanceInformationUnstructured": "",
"purposeCode": "etav",
"chargeBearer": "SHAR",
"creditorAgentName": "341841174568514",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YVR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334176357363631",
"remittanceInformationUnstructured": "",
"purposeCode": "emti",
"chargeBearer": "SHAR",
"creditorAgentName": "6236272332331832",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OLL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026986296162144",
"remittanceInformationUnstructured": "",
"purposeCode": "lacl",
"chargeBearer": "SHAR",
"creditorAgentName": "345455439986217",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YXB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5144683770773439",
"remittanceInformationUnstructured": "",
"purposeCode": "vesd",
"chargeBearer": "SHAR",
"creditorAgentName": "6269527055798453",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RXN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026594017231550",
"remittanceInformationUnstructured": "",
"purposeCode": "kumo",
"chargeBearer": "SHAR",
"creditorAgentName": "4285096129108037",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FLI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5118531507085688",
"remittanceInformationUnstructured": "",
"purposeCode": "pobi",
"chargeBearer": "SHAR",
"creditorAgentName": "5104372814991847",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BEJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30040352129266",
"remittanceInformationUnstructured": "",
"purposeCode": "fasu",
"chargeBearer": "SHAR",
"creditorAgentName": "30065623383822",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ELT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334654571584737",
"remittanceInformationUnstructured": "",
"purposeCode": "locw",
"chargeBearer": "SHAR",
"creditorAgentName": "201439605105151",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UFS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011066470415543",
"remittanceInformationUnstructured": "",
"purposeCode": "rifa",
"chargeBearer": "SHAR",
"creditorAgentName": "5018991018380872",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MAX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610540679896403",
"remittanceInformationUnstructured": "",
"purposeCode": "sanu",
"chargeBearer": "SHAR",
"creditorAgentName": "6263105364241451",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CAL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30066783169589",
"remittanceInformationUnstructured": "",
"purposeCode": "kena",
"chargeBearer": "SHAR",
"creditorAgentName": "5129922772570503",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FWK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343666812875510",
"remittanceInformationUnstructured": "",
"purposeCode": "jimo",
"chargeBearer": "SHAR",
"creditorAgentName": "341348994980655",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HJY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334564386588213",
"remittanceInformationUnstructured": "",
"purposeCode": "jodo",
"chargeBearer": "SHAR",
"creditorAgentName": "5018690794581568",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OXL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201474932209814",
"remittanceInformationUnstructured": "",
"purposeCode": "tioz",
"chargeBearer": "SHAR",
"creditorAgentName": "201451162901559",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CRN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026791447045895",
"remittanceInformationUnstructured": "",
"purposeCode": "muda",
"chargeBearer": "SHAR",
"creditorAgentName": "5610030368380653",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OUN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4502744788882718",
"remittanceInformationUnstructured": "",
"purposeCode": "voki",
"chargeBearer": "SHAR",
"creditorAgentName": "6334199744840574",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JAH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374155716315632",
"remittanceInformationUnstructured": "",
"purposeCode": "wetj",
"chargeBearer": "SHAR",
"creditorAgentName": "3528056320560781",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KIB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30068380935602",
"remittanceInformationUnstructured": "",
"purposeCode": "komf",
"chargeBearer": "SHAR",
"creditorAgentName": "340311027064534",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VIK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018090201771573",
"remittanceInformationUnstructured": "",
"purposeCode": "rogu",
"chargeBearer": "SHAR",
"creditorAgentName": "5427595855445923",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UPF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011775818678899",
"remittanceInformationUnstructured": "",
"purposeCode": "lawe",
"chargeBearer": "SHAR",
"creditorAgentName": "6234486516689201",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MAV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304676745486800",
"remittanceInformationUnstructured": "",
"purposeCode": "fero",
"chargeBearer": "SHAR",
"creditorAgentName": "348132988867455",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BMO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343766949415386",
"remittanceInformationUnstructured": "",
"purposeCode": "fejo",
"chargeBearer": "SHAR",
"creditorAgentName": "4026999399973523",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MSM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528067859719433",
"remittanceInformationUnstructured": "",
"purposeCode": "nupu",
"chargeBearer": "SHAR",
"creditorAgentName": "6372402827216677",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LPP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5181090482308575",
"remittanceInformationUnstructured": "",
"purposeCode": "kiwi",
"chargeBearer": "SHAR",
"creditorAgentName": "4903325038779469",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LML"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011935138517074",
"remittanceInformationUnstructured": "",
"purposeCode": "pihl",
"chargeBearer": "SHAR",
"creditorAgentName": "5400462438850064",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LBR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36961166215096",
"remittanceInformationUnstructured": "",
"purposeCode": "bace",
"chargeBearer": "SHAR",
"creditorAgentName": "6011622547209028",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ACX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528192108655764",
"remittanceInformationUnstructured": "",
"purposeCode": "wecm",
"chargeBearer": "SHAR",
"creditorAgentName": "30047939505694",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DAW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528894507613845",
"remittanceInformationUnstructured": "",
"purposeCode": "segp",
"chargeBearer": "SHAR",
"creditorAgentName": "5438792426983907",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JFY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334963148930210",
"remittanceInformationUnstructured": "",
"purposeCode": "etap",
"chargeBearer": "SHAR",
"creditorAgentName": "201462329571482",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UVZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201470904802800",
"remittanceInformationUnstructured": "",
"purposeCode": "fomo",
"chargeBearer": "SHAR",
"creditorAgentName": "4903919024430325",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YLL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026045714742217",
"remittanceInformationUnstructured": "",
"purposeCode": "hife",
"chargeBearer": "SHAR",
"creditorAgentName": "6334651600883460",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MJE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36210380096621",
"remittanceInformationUnstructured": "",
"purposeCode": "solb",
"chargeBearer": "SHAR",
"creditorAgentName": "4026350235285773",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MZW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30059585713605",
"remittanceInformationUnstructured": "",
"purposeCode": "japk",
"chargeBearer": "SHAR",
"creditorAgentName": "36858479401894",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DQE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5499352269470631",
"remittanceInformationUnstructured": "",
"purposeCode": "lahk",
"chargeBearer": "SHAR",
"creditorAgentName": "201484082229173",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ARC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4793795351826092",
"remittanceInformationUnstructured": "",
"purposeCode": "pude",
"chargeBearer": "SHAR",
"creditorAgentName": "201427968080384",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RYT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026975393278960",
"remittanceInformationUnstructured": "",
"purposeCode": "nafe",
"chargeBearer": "SHAR",
"creditorAgentName": "5123167721193157",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JYQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334170654101919",
"remittanceInformationUnstructured": "",
"purposeCode": "wuek",
"chargeBearer": "SHAR",
"creditorAgentName": "5610994697159718",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZWM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6370639305610309",
"remittanceInformationUnstructured": "",
"purposeCode": "igir",
"chargeBearer": "SHAR",
"creditorAgentName": "5018975321878037",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EJU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026135860993050",
"remittanceInformationUnstructured": "",
"purposeCode": "pana",
"chargeBearer": "SHAR",
"creditorAgentName": "36324741946026",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NYC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4369691012330455",
"remittanceInformationUnstructured": "",
"purposeCode": "hapw",
"chargeBearer": "SHAR",
"creditorAgentName": "5610861230206175",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AGU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5110360098981982",
"remittanceInformationUnstructured": "",
"purposeCode": "itof",
"chargeBearer": "SHAR",
"creditorAgentName": "4059878985864256",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UJJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4960750067978163",
"remittanceInformationUnstructured": "",
"purposeCode": "piat",
"chargeBearer": "SHAR",
"creditorAgentName": "6304076915652747",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KRP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6275157439742324",
"remittanceInformationUnstructured": "",
"purposeCode": "ujfi",
"chargeBearer": "SHAR",
"creditorAgentName": "6011862485911918",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AHG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "349794011379771",
"remittanceInformationUnstructured": "",
"purposeCode": "izus",
"chargeBearer": "SHAR",
"creditorAgentName": "4026235674226026",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GOY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5441042235368303",
"remittanceInformationUnstructured": "",
"purposeCode": "sale",
"chargeBearer": "SHAR",
"creditorAgentName": "5446742450702160",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QPR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011879957682140",
"remittanceInformationUnstructured": "",
"purposeCode": "banh",
"chargeBearer": "SHAR",
"creditorAgentName": "6304144512033644",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KRS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334649103975734",
"remittanceInformationUnstructured": "",
"purposeCode": "tett",
"chargeBearer": "SHAR",
"creditorAgentName": "4903745561388794",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TMR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5446080673413509",
"remittanceInformationUnstructured": "",
"purposeCode": "rizo",
"chargeBearer": "SHAR",
"creditorAgentName": "6011403171104243",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GWM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011410999241586",
"remittanceInformationUnstructured": "",
"purposeCode": "affa",
"chargeBearer": "SHAR",
"creditorAgentName": "5018404026624398",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OOF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5403765868364001",
"remittanceInformationUnstructured": "",
"purposeCode": "beoh",
"chargeBearer": "SHAR",
"creditorAgentName": "5118839823454417",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JTO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "341939550399999",
"remittanceInformationUnstructured": "",
"purposeCode": "lomc",
"chargeBearer": "SHAR",
"creditorAgentName": "343150571442630",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ABT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5402959853645075",
"remittanceInformationUnstructured": "",
"purposeCode": "koni",
"chargeBearer": "SHAR",
"creditorAgentName": "3528808692542593",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VPS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36226869459320",
"remittanceInformationUnstructured": "",
"purposeCode": "mivu",
"chargeBearer": "SHAR",
"creditorAgentName": "5160934508560542",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RWT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610075246018678",
"remittanceInformationUnstructured": "",
"purposeCode": "ewni",
"chargeBearer": "SHAR",
"creditorAgentName": "6246194136820695",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HBT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347302592730214",
"remittanceInformationUnstructured": "",
"purposeCode": "vuwm",
"chargeBearer": "SHAR",
"creditorAgentName": "201484038109222",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EMS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36613496625458",
"remittanceInformationUnstructured": "",
"purposeCode": "vewl",
"chargeBearer": "SHAR",
"creditorAgentName": "4725451346852750",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GXQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4905980383655579",
"remittanceInformationUnstructured": "",
"purposeCode": "wamo",
"chargeBearer": "SHAR",
"creditorAgentName": "3528709356677412",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AQX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011390555009736",
"remittanceInformationUnstructured": "",
"purposeCode": "ride",
"chargeBearer": "SHAR",
"creditorAgentName": "6304720178260934",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XST"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903317028268124",
"remittanceInformationUnstructured": "",
"purposeCode": "imne",
"chargeBearer": "SHAR",
"creditorAgentName": "5183993514685050",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JQD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018533033851741",
"remittanceInformationUnstructured": "",
"purposeCode": "guba",
"chargeBearer": "SHAR",
"creditorAgentName": "3528657349062046",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RNQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610962739801704",
"remittanceInformationUnstructured": "",
"purposeCode": "emip",
"chargeBearer": "SHAR",
"creditorAgentName": "4026452459760943",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GKZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018236464273910",
"remittanceInformationUnstructured": "",
"purposeCode": "cazh",
"chargeBearer": "SHAR",
"creditorAgentName": "30001690962628",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QDM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903886509613123",
"remittanceInformationUnstructured": "",
"purposeCode": "sosv",
"chargeBearer": "SHAR",
"creditorAgentName": "6376352969978855",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JDN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5469971952915721",
"remittanceInformationUnstructured": "",
"purposeCode": "vasi",
"chargeBearer": "SHAR",
"creditorAgentName": "6371121024019681",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ETT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347427282343554",
"remittanceInformationUnstructured": "",
"purposeCode": "vohs",
"chargeBearer": "SHAR",
"creditorAgentName": "6374793306543633",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JIA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5108600302712754",
"remittanceInformationUnstructured": "",
"purposeCode": "udoa",
"chargeBearer": "SHAR",
"creditorAgentName": "4026248901199940",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RKO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610207154429551",
"remittanceInformationUnstructured": "",
"purposeCode": "mifl",
"chargeBearer": "SHAR",
"creditorAgentName": "6279373124692304",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TLS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903502408265515",
"remittanceInformationUnstructured": "",
"purposeCode": "kadj",
"chargeBearer": "SHAR",
"creditorAgentName": "6236101662730695",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ITP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018005285981468",
"remittanceInformationUnstructured": "",
"purposeCode": "hove",
"chargeBearer": "SHAR",
"creditorAgentName": "344086736764410",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QOI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903963768158874",
"remittanceInformationUnstructured": "",
"purposeCode": "ovil",
"chargeBearer": "SHAR",
"creditorAgentName": "30043547582415",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ACZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "348643688227444",
"remittanceInformationUnstructured": "",
"purposeCode": "gikm",
"chargeBearer": "SHAR",
"creditorAgentName": "5610572295236763",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TRJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36219997744358",
"remittanceInformationUnstructured": "",
"purposeCode": "ubal",
"chargeBearer": "SHAR",
"creditorAgentName": "3528593609704326",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "REH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018868573707071",
"remittanceInformationUnstructured": "",
"purposeCode": "agej",
"chargeBearer": "SHAR",
"creditorAgentName": "5018615589111354",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NEW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340361945417926",
"remittanceInformationUnstructured": "",
"purposeCode": "buti",
"chargeBearer": "SHAR",
"creditorAgentName": "6294315973155777",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CLG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6379817480841904",
"remittanceInformationUnstructured": "",
"purposeCode": "buum",
"chargeBearer": "SHAR",
"creditorAgentName": "6280778649210670",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FPA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5184620421643240",
"remittanceInformationUnstructured": "",
"purposeCode": "gudp",
"chargeBearer": "SHAR",
"creditorAgentName": "6334444467167866",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QUA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334143469913273",
"remittanceInformationUnstructured": "",
"purposeCode": "fego",
"chargeBearer": "SHAR",
"creditorAgentName": "6255078056749323",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PRL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6371238243716416",
"remittanceInformationUnstructured": "",
"purposeCode": "daos",
"chargeBearer": "SHAR",
"creditorAgentName": "4903009643201453",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QHZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334442866879065",
"remittanceInformationUnstructured": "",
"purposeCode": "iriz",
"chargeBearer": "SHAR",
"creditorAgentName": "5018269078220779",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ODU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5463268657507127",
"remittanceInformationUnstructured": "",
"purposeCode": "bibu",
"chargeBearer": "SHAR",
"creditorAgentName": "5474598426931589",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PKN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4224517809745081",
"remittanceInformationUnstructured": "",
"purposeCode": "unai",
"chargeBearer": "SHAR",
"creditorAgentName": "5018235104893426",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JAK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343466435300206",
"remittanceInformationUnstructured": "",
"purposeCode": "durd",
"chargeBearer": "SHAR",
"creditorAgentName": "5460641912958603",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DJQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6253455682707531",
"remittanceInformationUnstructured": "",
"purposeCode": "acvi",
"chargeBearer": "SHAR",
"creditorAgentName": "6247264311411930",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RGC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304112916120366",
"remittanceInformationUnstructured": "",
"purposeCode": "miku",
"chargeBearer": "SHAR",
"creditorAgentName": "343563906255297",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HEW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30002702705526",
"remittanceInformationUnstructured": "",
"purposeCode": "zobi",
"chargeBearer": "SHAR",
"creditorAgentName": "4903466948732105",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AHC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011199554665533",
"remittanceInformationUnstructured": "",
"purposeCode": "elju",
"chargeBearer": "SHAR",
"creditorAgentName": "5018991885845767",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VZP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5494073290943249",
"remittanceInformationUnstructured": "",
"purposeCode": "igre",
"chargeBearer": "SHAR",
"creditorAgentName": "6304304623146533",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DPR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36064964219897",
"remittanceInformationUnstructured": "",
"purposeCode": "jotp",
"chargeBearer": "SHAR",
"creditorAgentName": "4903869921444392",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AGM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5131035701734466",
"remittanceInformationUnstructured": "",
"purposeCode": "etiz",
"chargeBearer": "SHAR",
"creditorAgentName": "5116449079255302",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YXJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334789447585714",
"remittanceInformationUnstructured": "",
"purposeCode": "ciij",
"chargeBearer": "SHAR",
"creditorAgentName": "4026098638710588",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TFY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528531370645740",
"remittanceInformationUnstructured": "",
"purposeCode": "tols",
"chargeBearer": "SHAR",
"creditorAgentName": "36634935381099",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NUS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304365212712654",
"remittanceInformationUnstructured": "",
"purposeCode": "depl",
"chargeBearer": "SHAR",
"creditorAgentName": "6256697135925353",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WFD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6375761792030000",
"remittanceInformationUnstructured": "",
"purposeCode": "temj",
"chargeBearer": "SHAR",
"creditorAgentName": "5197244238032334",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HQH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304731603527755",
"remittanceInformationUnstructured": "",
"purposeCode": "kigo",
"chargeBearer": "SHAR",
"creditorAgentName": "6297467892524133",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SPD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4761491631802099",
"remittanceInformationUnstructured": "",
"purposeCode": "hiso",
"chargeBearer": "SHAR",
"creditorAgentName": "6334375043746056",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XEL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201461579413247",
"remittanceInformationUnstructured": "",
"purposeCode": "sodu",
"chargeBearer": "SHAR",
"creditorAgentName": "4903020924434176",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HNK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026751597613280",
"remittanceInformationUnstructured": "",
"purposeCode": "cuhe",
"chargeBearer": "SHAR",
"creditorAgentName": "6334660547330535",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GKG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528944279530378",
"remittanceInformationUnstructured": "",
"purposeCode": "huju",
"chargeBearer": "SHAR",
"creditorAgentName": "348267028870596",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VYB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903101664358534",
"remittanceInformationUnstructured": "",
"purposeCode": "mimu",
"chargeBearer": "SHAR",
"creditorAgentName": "5492488599906196",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ETF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334860412984545",
"remittanceInformationUnstructured": "",
"purposeCode": "ragu",
"chargeBearer": "SHAR",
"creditorAgentName": "201495670147874",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NSL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304811236792776",
"remittanceInformationUnstructured": "",
"purposeCode": "fikm",
"chargeBearer": "SHAR",
"creditorAgentName": "4903460842784999",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZEN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528888177675704",
"remittanceInformationUnstructured": "",
"purposeCode": "jawa",
"chargeBearer": "SHAR",
"creditorAgentName": "201473643420264",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XJC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4221544610473193",
"remittanceInformationUnstructured": "",
"purposeCode": "delt",
"chargeBearer": "SHAR",
"creditorAgentName": "3528271281220347",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DRG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4078229682569805",
"remittanceInformationUnstructured": "",
"purposeCode": "raal",
"chargeBearer": "SHAR",
"creditorAgentName": "5018750489722230",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MVI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011355863490969",
"remittanceInformationUnstructured": "",
"purposeCode": "aduz",
"chargeBearer": "SHAR",
"creditorAgentName": "4903669111288462",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YNB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018768066080160",
"remittanceInformationUnstructured": "",
"purposeCode": "pofe",
"chargeBearer": "SHAR",
"creditorAgentName": "6379016589949987",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FDC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "348300226907850",
"remittanceInformationUnstructured": "",
"purposeCode": "comw",
"chargeBearer": "SHAR",
"creditorAgentName": "3528307367641483",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AJN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5106985373608672",
"remittanceInformationUnstructured": "",
"purposeCode": "uvez",
"chargeBearer": "SHAR",
"creditorAgentName": "4903298938063252",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BYO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36064578116836",
"remittanceInformationUnstructured": "",
"purposeCode": "urlu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018410685382442",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZHA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201497653929807",
"remittanceInformationUnstructured": "",
"purposeCode": "pepj",
"chargeBearer": "SHAR",
"creditorAgentName": "6334869494855655",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UXK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528227456683156",
"remittanceInformationUnstructured": "",
"purposeCode": "utuk",
"chargeBearer": "SHAR",
"creditorAgentName": "4026920857250568",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DLA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4626729465358760",
"remittanceInformationUnstructured": "",
"purposeCode": "ovje",
"chargeBearer": "SHAR",
"creditorAgentName": "5183450110552408",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ACL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36918816311543",
"remittanceInformationUnstructured": "",
"purposeCode": "esow",
"chargeBearer": "SHAR",
"creditorAgentName": "4903089707429778",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BUU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610788206615867",
"remittanceInformationUnstructured": "",
"purposeCode": "zinu",
"chargeBearer": "SHAR",
"creditorAgentName": "201420491857428",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JDR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528545604291691",
"remittanceInformationUnstructured": "",
"purposeCode": "dibv",
"chargeBearer": "SHAR",
"creditorAgentName": "6378969842044288",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NAL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026616750226875",
"remittanceInformationUnstructured": "",
"purposeCode": "ziob",
"chargeBearer": "SHAR",
"creditorAgentName": "6011586877934465",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ELO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304201527809879",
"remittanceInformationUnstructured": "",
"purposeCode": "vuni",
"chargeBearer": "SHAR",
"creditorAgentName": "36745505768919",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KQW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903946642202562",
"remittanceInformationUnstructured": "",
"purposeCode": "bend",
"chargeBearer": "SHAR",
"creditorAgentName": "6334378598781684",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AEZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6240592673051499",
"remittanceInformationUnstructured": "",
"purposeCode": "umav",
"chargeBearer": "SHAR",
"creditorAgentName": "201484882464897",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MUD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "342794308617005",
"remittanceInformationUnstructured": "",
"purposeCode": "ivev",
"chargeBearer": "SHAR",
"creditorAgentName": "6011629742506140",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PAL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201488400216184",
"remittanceInformationUnstructured": "",
"purposeCode": "riun",
"chargeBearer": "SHAR",
"creditorAgentName": "5610194477815684",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ITF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201492402874735",
"remittanceInformationUnstructured": "",
"purposeCode": "retu",
"chargeBearer": "SHAR",
"creditorAgentName": "6304620738841456",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HKD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346889359898532",
"remittanceInformationUnstructured": "",
"purposeCode": "kufa",
"chargeBearer": "SHAR",
"creditorAgentName": "3528423421804643",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MPT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610164012583444",
"remittanceInformationUnstructured": "",
"purposeCode": "avus",
"chargeBearer": "SHAR",
"creditorAgentName": "6376160498411243",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GYV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5123116511405545",
"remittanceInformationUnstructured": "",
"purposeCode": "gego",
"chargeBearer": "SHAR",
"creditorAgentName": "4676678919545994",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ATR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011819009824555",
"remittanceInformationUnstructured": "",
"purposeCode": "somi",
"chargeBearer": "SHAR",
"creditorAgentName": "4903053193185484",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EWY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4083130184978655",
"remittanceInformationUnstructured": "",
"purposeCode": "datb",
"chargeBearer": "SHAR",
"creditorAgentName": "5610869353682981",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NPK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6372357475169299",
"remittanceInformationUnstructured": "",
"purposeCode": "lugu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528223907672864",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EAM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026182407189537",
"remittanceInformationUnstructured": "",
"purposeCode": "pure",
"chargeBearer": "SHAR",
"creditorAgentName": "4026064194767180",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PWM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36693692404478",
"remittanceInformationUnstructured": "",
"purposeCode": "kock",
"chargeBearer": "SHAR",
"creditorAgentName": "4903473540534822",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AYW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610738099126167",
"remittanceInformationUnstructured": "",
"purposeCode": "ucik",
"chargeBearer": "SHAR",
"creditorAgentName": "5610335605459222",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AVJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304948922658901",
"remittanceInformationUnstructured": "",
"purposeCode": "poih",
"chargeBearer": "SHAR",
"creditorAgentName": "3528896547898807",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XXF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903672069072227",
"remittanceInformationUnstructured": "",
"purposeCode": "ijuv",
"chargeBearer": "SHAR",
"creditorAgentName": "6011399913264701",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OSN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334445551523229",
"remittanceInformationUnstructured": "",
"purposeCode": "zata",
"chargeBearer": "SHAR",
"creditorAgentName": "6379092177254742",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VGA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528042362616491",
"remittanceInformationUnstructured": "",
"purposeCode": "emeb",
"chargeBearer": "SHAR",
"creditorAgentName": "4903106678798203",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YFU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903777296504718",
"remittanceInformationUnstructured": "",
"purposeCode": "irez",
"chargeBearer": "SHAR",
"creditorAgentName": "6334778207242681",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GQG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6253035922256331",
"remittanceInformationUnstructured": "",
"purposeCode": "dowa",
"chargeBearer": "SHAR",
"creditorAgentName": "5018930943158078",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CRZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334150771216576",
"remittanceInformationUnstructured": "",
"purposeCode": "geak",
"chargeBearer": "SHAR",
"creditorAgentName": "30098233708880",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NYD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304735112553467",
"remittanceInformationUnstructured": "",
"purposeCode": "nanf",
"chargeBearer": "SHAR",
"creditorAgentName": "5018352074446521",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HNV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026782738630776",
"remittanceInformationUnstructured": "",
"purposeCode": "cala",
"chargeBearer": "SHAR",
"creditorAgentName": "4904847057116611",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FFZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "345497419396876",
"remittanceInformationUnstructured": "",
"purposeCode": "muzi",
"chargeBearer": "SHAR",
"creditorAgentName": "3528276682082089",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SEW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528352532231166",
"remittanceInformationUnstructured": "",
"purposeCode": "giep",
"chargeBearer": "SHAR",
"creditorAgentName": "4903440488063924",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XXU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304761696561254",
"remittanceInformationUnstructured": "",
"purposeCode": "umje",
"chargeBearer": "SHAR",
"creditorAgentName": "201475253636766",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TAO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5481139201464917",
"remittanceInformationUnstructured": "",
"purposeCode": "fuza",
"chargeBearer": "SHAR",
"creditorAgentName": "36935016869088",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BGT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011244240964369",
"remittanceInformationUnstructured": "",
"purposeCode": "ehir",
"chargeBearer": "SHAR",
"creditorAgentName": "3528777115145088",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LYM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340801396591893",
"remittanceInformationUnstructured": "",
"purposeCode": "memw",
"chargeBearer": "SHAR",
"creditorAgentName": "30047950561790",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WAM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304155694209125",
"remittanceInformationUnstructured": "",
"purposeCode": "ajfo",
"chargeBearer": "SHAR",
"creditorAgentName": "5610676544335431",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TBW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528635186661682",
"remittanceInformationUnstructured": "",
"purposeCode": "wepd",
"chargeBearer": "SHAR",
"creditorAgentName": "6304846029202187",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CHU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5474820608102833",
"remittanceInformationUnstructured": "",
"purposeCode": "umef",
"chargeBearer": "SHAR",
"creditorAgentName": "5423351271432655",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XVT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4353992286414183",
"remittanceInformationUnstructured": "",
"purposeCode": "zicl",
"chargeBearer": "SHAR",
"creditorAgentName": "201431587382874",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KEX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201461628087265",
"remittanceInformationUnstructured": "",
"purposeCode": "tahe",
"chargeBearer": "SHAR",
"creditorAgentName": "4026944781101572",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XZX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304362325224487",
"remittanceInformationUnstructured": "",
"purposeCode": "cuvc",
"chargeBearer": "SHAR",
"creditorAgentName": "6304142623808367",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AHU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378658357011036",
"remittanceInformationUnstructured": "",
"purposeCode": "geav",
"chargeBearer": "SHAR",
"creditorAgentName": "6304856768198769",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KLN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903142615238482",
"remittanceInformationUnstructured": "",
"purposeCode": "pale",
"chargeBearer": "SHAR",
"creditorAgentName": "4026299271317521",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PHS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30003574325690",
"remittanceInformationUnstructured": "",
"purposeCode": "kudd",
"chargeBearer": "SHAR",
"creditorAgentName": "5491022074558395",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DJZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018624858403336",
"remittanceInformationUnstructured": "",
"purposeCode": "navp",
"chargeBearer": "SHAR",
"creditorAgentName": "201487691491571",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AIN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610457830166610",
"remittanceInformationUnstructured": "",
"purposeCode": "irvu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528425128557960",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IIC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334085272700795",
"remittanceInformationUnstructured": "",
"purposeCode": "batu",
"chargeBearer": "SHAR",
"creditorAgentName": "342406103908972",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PGL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334524259373267",
"remittanceInformationUnstructured": "",
"purposeCode": "sopp",
"chargeBearer": "SHAR",
"creditorAgentName": "6334343555051885",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HWT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6257044609861856",
"remittanceInformationUnstructured": "",
"purposeCode": "haco",
"chargeBearer": "SHAR",
"creditorAgentName": "6222946086399824",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TZO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373867712827946",
"remittanceInformationUnstructured": "",
"purposeCode": "geag",
"chargeBearer": "SHAR",
"creditorAgentName": "6378732288306466",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SHW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36054975189098",
"remittanceInformationUnstructured": "",
"purposeCode": "nese",
"chargeBearer": "SHAR",
"creditorAgentName": "5018782954691160",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YGE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026966566655175",
"remittanceInformationUnstructured": "",
"purposeCode": "cesc",
"chargeBearer": "SHAR",
"creditorAgentName": "6304390306216875",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SFK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4354913768560839",
"remittanceInformationUnstructured": "",
"purposeCode": "ocei",
"chargeBearer": "SHAR",
"creditorAgentName": "6374889303890652",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XPR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026115723757553",
"remittanceInformationUnstructured": "",
"purposeCode": "paza",
"chargeBearer": "SHAR",
"creditorAgentName": "30044105991873",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VTS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018035733506484",
"remittanceInformationUnstructured": "",
"purposeCode": "canu",
"chargeBearer": "SHAR",
"creditorAgentName": "30013852105987",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WKE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304402128521091",
"remittanceInformationUnstructured": "",
"purposeCode": "olau",
"chargeBearer": "SHAR",
"creditorAgentName": "6304829615555275",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LPV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610255547005703",
"remittanceInformationUnstructured": "",
"purposeCode": "jasu",
"chargeBearer": "SHAR",
"creditorAgentName": "36545917549075",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KHM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026457374666737",
"remittanceInformationUnstructured": "",
"purposeCode": "wala",
"chargeBearer": "SHAR",
"creditorAgentName": "6372638054834282",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UMX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6283751190444821",
"remittanceInformationUnstructured": "",
"purposeCode": "usku",
"chargeBearer": "SHAR",
"creditorAgentName": "6334811136620899",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RFV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903211578057120",
"remittanceInformationUnstructured": "",
"purposeCode": "gare",
"chargeBearer": "SHAR",
"creditorAgentName": "3528337645142392",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MVK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011982691997897",
"remittanceInformationUnstructured": "",
"purposeCode": "juze",
"chargeBearer": "SHAR",
"creditorAgentName": "6334062984074488",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BAY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018032846386870",
"remittanceInformationUnstructured": "",
"purposeCode": "gamh",
"chargeBearer": "SHAR",
"creditorAgentName": "36309208808983",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QDI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334751631281484",
"remittanceInformationUnstructured": "",
"purposeCode": "ewde",
"chargeBearer": "SHAR",
"creditorAgentName": "5610526840058262",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WGM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6286816468421822",
"remittanceInformationUnstructured": "",
"purposeCode": "judu",
"chargeBearer": "SHAR",
"creditorAgentName": "36574021942414",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NRB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5165281156968766",
"remittanceInformationUnstructured": "",
"purposeCode": "hefo",
"chargeBearer": "SHAR",
"creditorAgentName": "6304514225818921",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IPQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373251186259474",
"remittanceInformationUnstructured": "",
"purposeCode": "mica",
"chargeBearer": "SHAR",
"creditorAgentName": "5490869458882002",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UXF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201477414794781",
"remittanceInformationUnstructured": "",
"purposeCode": "zemu",
"chargeBearer": "SHAR",
"creditorAgentName": "4526764207051119",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MZY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5165572081528331",
"remittanceInformationUnstructured": "",
"purposeCode": "mimo",
"chargeBearer": "SHAR",
"creditorAgentName": "5610442795206734",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SJG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304233007019646",
"remittanceInformationUnstructured": "",
"purposeCode": "togn",
"chargeBearer": "SHAR",
"creditorAgentName": "344082867323241",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IMY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30094358730635",
"remittanceInformationUnstructured": "",
"purposeCode": "runf",
"chargeBearer": "SHAR",
"creditorAgentName": "201497046157686",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QPU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4899015315040208",
"remittanceInformationUnstructured": "",
"purposeCode": "jubn",
"chargeBearer": "SHAR",
"creditorAgentName": "5610960303123752",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OOZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304771055815134",
"remittanceInformationUnstructured": "",
"purposeCode": "fusm",
"chargeBearer": "SHAR",
"creditorAgentName": "5610810899203627",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IVL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346241126469116",
"remittanceInformationUnstructured": "",
"purposeCode": "luse",
"chargeBearer": "SHAR",
"creditorAgentName": "201459968242078",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DYB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6375250666430777",
"remittanceInformationUnstructured": "",
"purposeCode": "tivk",
"chargeBearer": "SHAR",
"creditorAgentName": "4903313309845888",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MKD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5492218205486899",
"remittanceInformationUnstructured": "",
"purposeCode": "himu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528590005069742",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BOS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610408518699521",
"remittanceInformationUnstructured": "",
"purposeCode": "ucub",
"chargeBearer": "SHAR",
"creditorAgentName": "4026485488775466",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PYG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334339727854628",
"remittanceInformationUnstructured": "",
"purposeCode": "vubb",
"chargeBearer": "SHAR",
"creditorAgentName": "6304860432450291",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RGJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30031003069084",
"remittanceInformationUnstructured": "",
"purposeCode": "bono",
"chargeBearer": "SHAR",
"creditorAgentName": "3528031413902604",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AWW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6376104384269927",
"remittanceInformationUnstructured": "",
"purposeCode": "tisp",
"chargeBearer": "SHAR",
"creditorAgentName": "5610641694052673",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SUY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903422103192478",
"remittanceInformationUnstructured": "",
"purposeCode": "tahi",
"chargeBearer": "SHAR",
"creditorAgentName": "36752306715750",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AJZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4434871616205482",
"remittanceInformationUnstructured": "",
"purposeCode": "ikki",
"chargeBearer": "SHAR",
"creditorAgentName": "6376440812655869",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IRN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6376968448062159",
"remittanceInformationUnstructured": "",
"purposeCode": "hobu",
"chargeBearer": "SHAR",
"creditorAgentName": "30034188035508",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YZF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4377612412595323",
"remittanceInformationUnstructured": "",
"purposeCode": "muip",
"chargeBearer": "SHAR",
"creditorAgentName": "6377830246853180",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EOK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "344149272608613",
"remittanceInformationUnstructured": "",
"purposeCode": "kata",
"chargeBearer": "SHAR",
"creditorAgentName": "5018431796551931",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KGX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201452678494857",
"remittanceInformationUnstructured": "",
"purposeCode": "abdi",
"chargeBearer": "SHAR",
"creditorAgentName": "6304982345574627",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BEP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610901067291286",
"remittanceInformationUnstructured": "",
"purposeCode": "caru",
"chargeBearer": "SHAR",
"creditorAgentName": "30079199207562",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UAI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6222149887346223",
"remittanceInformationUnstructured": "",
"purposeCode": "emav",
"chargeBearer": "SHAR",
"creditorAgentName": "6269546634312206",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QVL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528495221634180",
"remittanceInformationUnstructured": "",
"purposeCode": "ritu",
"chargeBearer": "SHAR",
"creditorAgentName": "4565803173398831",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FZQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5151113464611919",
"remittanceInformationUnstructured": "",
"purposeCode": "anpa",
"chargeBearer": "SHAR",
"creditorAgentName": "6334865829110261",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SGL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "341579587508491",
"remittanceInformationUnstructured": "",
"purposeCode": "binu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528505000220579",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UKW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018269908709678",
"remittanceInformationUnstructured": "",
"purposeCode": "dopo",
"chargeBearer": "SHAR",
"creditorAgentName": "5111684921194821",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NEK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6216315346756934",
"remittanceInformationUnstructured": "",
"purposeCode": "sisg",
"chargeBearer": "SHAR",
"creditorAgentName": "6304785712053947",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ENT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6227654284576434",
"remittanceInformationUnstructured": "",
"purposeCode": "sirw",
"chargeBearer": "SHAR",
"creditorAgentName": "6334607302719055",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TAX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30062287266823",
"remittanceInformationUnstructured": "",
"purposeCode": "aruf",
"chargeBearer": "SHAR",
"creditorAgentName": "6304092083707502",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KIA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903665541372330",
"remittanceInformationUnstructured": "",
"purposeCode": "omoo",
"chargeBearer": "SHAR",
"creditorAgentName": "36037408593663",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SYZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6208388598778054",
"remittanceInformationUnstructured": "",
"purposeCode": "atfi",
"chargeBearer": "SHAR",
"creditorAgentName": "201476284656161",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FJO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610826305420969",
"remittanceInformationUnstructured": "",
"purposeCode": "tibb",
"chargeBearer": "SHAR",
"creditorAgentName": "6011596652916348",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MXY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026300395816610",
"remittanceInformationUnstructured": "",
"purposeCode": "vopi",
"chargeBearer": "SHAR",
"creditorAgentName": "6304948010353803",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ASD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334202848714438",
"remittanceInformationUnstructured": "",
"purposeCode": "imut",
"chargeBearer": "SHAR",
"creditorAgentName": "4472638422924868",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FOH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373679328896391",
"remittanceInformationUnstructured": "",
"purposeCode": "jimu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018576172206193",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OBA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6254593978345670",
"remittanceInformationUnstructured": "",
"purposeCode": "piji",
"chargeBearer": "SHAR",
"creditorAgentName": "6219572419667870",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QIB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026716954011956",
"remittanceInformationUnstructured": "",
"purposeCode": "tezj",
"chargeBearer": "SHAR",
"creditorAgentName": "5018850299849155",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RPQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334979092259745",
"remittanceInformationUnstructured": "",
"purposeCode": "jefa",
"chargeBearer": "SHAR",
"creditorAgentName": "201414213173131",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GPC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018116146567477",
"remittanceInformationUnstructured": "",
"purposeCode": "cubp",
"chargeBearer": "SHAR",
"creditorAgentName": "30016551541329",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FJF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201403586462536",
"remittanceInformationUnstructured": "",
"purposeCode": "hofp",
"chargeBearer": "SHAR",
"creditorAgentName": "201493414006878",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XAD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6274880565675973",
"remittanceInformationUnstructured": "",
"purposeCode": "dize",
"chargeBearer": "SHAR",
"creditorAgentName": "349686204695635",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WUT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610601517679532",
"remittanceInformationUnstructured": "",
"purposeCode": "gece",
"chargeBearer": "SHAR",
"creditorAgentName": "4347075443156043",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NGX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "348545664012015",
"remittanceInformationUnstructured": "",
"purposeCode": "ijce",
"chargeBearer": "SHAR",
"creditorAgentName": "5018200314390761",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OUH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5411124027736834",
"remittanceInformationUnstructured": "",
"purposeCode": "jobo",
"chargeBearer": "SHAR",
"creditorAgentName": "6377402234381838",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SML"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903624424498639",
"remittanceInformationUnstructured": "",
"purposeCode": "jivz",
"chargeBearer": "SHAR",
"creditorAgentName": "6011618603095376",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UDR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "342633340288997",
"remittanceInformationUnstructured": "",
"purposeCode": "inze",
"chargeBearer": "SHAR",
"creditorAgentName": "3528619205249786",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DKT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346549707594676",
"remittanceInformationUnstructured": "",
"purposeCode": "seun",
"chargeBearer": "SHAR",
"creditorAgentName": "6291526311456379",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BZG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026404594463982",
"remittanceInformationUnstructured": "",
"purposeCode": "sira",
"chargeBearer": "SHAR",
"creditorAgentName": "6374166148939220",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JGX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374891195310534",
"remittanceInformationUnstructured": "",
"purposeCode": "rehc",
"chargeBearer": "SHAR",
"creditorAgentName": "201455209108250",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HVA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018762421465646",
"remittanceInformationUnstructured": "",
"purposeCode": "osvo",
"chargeBearer": "SHAR",
"creditorAgentName": "4903938368475928",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QMG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5442259142167714",
"remittanceInformationUnstructured": "",
"purposeCode": "wele",
"chargeBearer": "SHAR",
"creditorAgentName": "36699349903390",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EXQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5108936886385306",
"remittanceInformationUnstructured": "",
"purposeCode": "deho",
"chargeBearer": "SHAR",
"creditorAgentName": "342473244486326",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YKF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011196246015564",
"remittanceInformationUnstructured": "",
"purposeCode": "omji",
"chargeBearer": "SHAR",
"creditorAgentName": "6370711229683033",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JTA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347461546444650",
"remittanceInformationUnstructured": "",
"purposeCode": "mefa",
"chargeBearer": "SHAR",
"creditorAgentName": "4300359071324056",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WRM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026040009325489",
"remittanceInformationUnstructured": "",
"purposeCode": "wapu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528925369516096",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SKP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011814033512904",
"remittanceInformationUnstructured": "",
"purposeCode": "cele",
"chargeBearer": "SHAR",
"creditorAgentName": "4903050288359297",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IBG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4250140894319386",
"remittanceInformationUnstructured": "",
"purposeCode": "zive",
"chargeBearer": "SHAR",
"creditorAgentName": "3528223875926441",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DPT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011977316567844",
"remittanceInformationUnstructured": "",
"purposeCode": "kasm",
"chargeBearer": "SHAR",
"creditorAgentName": "6225313627139416",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EVO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30013140346146",
"remittanceInformationUnstructured": "",
"purposeCode": "irud",
"chargeBearer": "SHAR",
"creditorAgentName": "4026844137501790",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EDW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5120366824070964",
"remittanceInformationUnstructured": "",
"purposeCode": "vuki",
"chargeBearer": "SHAR",
"creditorAgentName": "345090401813063",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UPN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5444634256243279",
"remittanceInformationUnstructured": "",
"purposeCode": "mush",
"chargeBearer": "SHAR",
"creditorAgentName": "4026730294268770",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MNF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5184620827354673",
"remittanceInformationUnstructured": "",
"purposeCode": "feha",
"chargeBearer": "SHAR",
"creditorAgentName": "5430361180587755",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LPV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6292280611179914",
"remittanceInformationUnstructured": "",
"purposeCode": "zefe",
"chargeBearer": "SHAR",
"creditorAgentName": "6226160589843892",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RJY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018880804543985",
"remittanceInformationUnstructured": "",
"purposeCode": "anap",
"chargeBearer": "SHAR",
"creditorAgentName": "6304421490589841",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KOF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528803322834072",
"remittanceInformationUnstructured": "",
"purposeCode": "uzoo",
"chargeBearer": "SHAR",
"creditorAgentName": "36565237918198",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LKI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378921190167195",
"remittanceInformationUnstructured": "",
"purposeCode": "ibep",
"chargeBearer": "SHAR",
"creditorAgentName": "5610812930858278",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JEZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4219049993018304",
"remittanceInformationUnstructured": "",
"purposeCode": "luhf",
"chargeBearer": "SHAR",
"creditorAgentName": "201436277959238",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RTD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304517315957939",
"remittanceInformationUnstructured": "",
"purposeCode": "papm",
"chargeBearer": "SHAR",
"creditorAgentName": "6253344493254026",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YQC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528562397590650",
"remittanceInformationUnstructured": "",
"purposeCode": "zujs",
"chargeBearer": "SHAR",
"creditorAgentName": "4903889117016093",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UJH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610370202511158",
"remittanceInformationUnstructured": "",
"purposeCode": "woig",
"chargeBearer": "SHAR",
"creditorAgentName": "5018126623656305",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DPP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340891102779551",
"remittanceInformationUnstructured": "",
"purposeCode": "moci",
"chargeBearer": "SHAR",
"creditorAgentName": "6304438748707249",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KRJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018976268934361",
"remittanceInformationUnstructured": "",
"purposeCode": "riur",
"chargeBearer": "SHAR",
"creditorAgentName": "30045752578525",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SOY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018569975511687",
"remittanceInformationUnstructured": "",
"purposeCode": "ezom",
"chargeBearer": "SHAR",
"creditorAgentName": "6374036339842212",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RUT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4775349756192965",
"remittanceInformationUnstructured": "",
"purposeCode": "zibc",
"chargeBearer": "SHAR",
"creditorAgentName": "5179540132551168",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZDG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304239073727525",
"remittanceInformationUnstructured": "",
"purposeCode": "vehz",
"chargeBearer": "SHAR",
"creditorAgentName": "5472107479672249",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LOF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4491866172789689",
"remittanceInformationUnstructured": "",
"purposeCode": "bedd",
"chargeBearer": "SHAR",
"creditorAgentName": "6220949650582603",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IGM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334214436467592",
"remittanceInformationUnstructured": "",
"purposeCode": "zafo",
"chargeBearer": "SHAR",
"creditorAgentName": "6334606565349832",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WIR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6285317872466793",
"remittanceInformationUnstructured": "",
"purposeCode": "onec",
"chargeBearer": "SHAR",
"creditorAgentName": "6374926346908057",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QQK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373479068273640",
"remittanceInformationUnstructured": "",
"purposeCode": "jebi",
"chargeBearer": "SHAR",
"creditorAgentName": "36244591089737",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FVI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201470274201260",
"remittanceInformationUnstructured": "",
"purposeCode": "dipr",
"chargeBearer": "SHAR",
"creditorAgentName": "5018661639844248",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DUX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6231851483949610",
"remittanceInformationUnstructured": "",
"purposeCode": "zepo",
"chargeBearer": "SHAR",
"creditorAgentName": "5481871746594895",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZWU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36846257848519",
"remittanceInformationUnstructured": "",
"purposeCode": "puin",
"chargeBearer": "SHAR",
"creditorAgentName": "5182581956025223",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RGK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201488204854396",
"remittanceInformationUnstructured": "",
"purposeCode": "ikbu",
"chargeBearer": "SHAR",
"creditorAgentName": "36537428391550",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CXI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6246480862945545",
"remittanceInformationUnstructured": "",
"purposeCode": "vowr",
"chargeBearer": "SHAR",
"creditorAgentName": "5414840060355730",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VCC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903844152714300",
"remittanceInformationUnstructured": "",
"purposeCode": "cerl",
"chargeBearer": "SHAR",
"creditorAgentName": "4297496218237372",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GRU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5104043187320639",
"remittanceInformationUnstructured": "",
"purposeCode": "lemv",
"chargeBearer": "SHAR",
"creditorAgentName": "4903505532353180",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GXI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018834827986861",
"remittanceInformationUnstructured": "",
"purposeCode": "meer",
"chargeBearer": "SHAR",
"creditorAgentName": "3528966010290715",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "URH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30060245978026",
"remittanceInformationUnstructured": "",
"purposeCode": "dugo",
"chargeBearer": "SHAR",
"creditorAgentName": "346431151468998",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IFQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201454320036748",
"remittanceInformationUnstructured": "",
"purposeCode": "udnu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528238307413586",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SQT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6370351452606052",
"remittanceInformationUnstructured": "",
"purposeCode": "gava",
"chargeBearer": "SHAR",
"creditorAgentName": "4944253327203283",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GEA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4072544090918642",
"remittanceInformationUnstructured": "",
"purposeCode": "curn",
"chargeBearer": "SHAR",
"creditorAgentName": "5149818654820915",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MFJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011119628314454",
"remittanceInformationUnstructured": "",
"purposeCode": "kupu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528206154148886",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NGS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026592305110825",
"remittanceInformationUnstructured": "",
"purposeCode": "gupo",
"chargeBearer": "SHAR",
"creditorAgentName": "6237544165812024",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PBD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5422739581807411",
"remittanceInformationUnstructured": "",
"purposeCode": "omor",
"chargeBearer": "SHAR",
"creditorAgentName": "6011620557791034",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ANG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201461022965611",
"remittanceInformationUnstructured": "",
"purposeCode": "liwe",
"chargeBearer": "SHAR",
"creditorAgentName": "5018370227300239",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LDZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528295655720830",
"remittanceInformationUnstructured": "",
"purposeCode": "pusg",
"chargeBearer": "SHAR",
"creditorAgentName": "6378891056476628",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HYF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026470143248976",
"remittanceInformationUnstructured": "",
"purposeCode": "vege",
"chargeBearer": "SHAR",
"creditorAgentName": "5495072781007307",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BRZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5441776705653963",
"remittanceInformationUnstructured": "",
"purposeCode": "kadi",
"chargeBearer": "SHAR",
"creditorAgentName": "6202339096091058",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QME"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018320042450891",
"remittanceInformationUnstructured": "",
"purposeCode": "hunt",
"chargeBearer": "SHAR",
"creditorAgentName": "6304899926832424",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OHM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6378757154749986",
"remittanceInformationUnstructured": "",
"purposeCode": "woro",
"chargeBearer": "SHAR",
"creditorAgentName": "4026462882992278",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RAS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5144328437181036",
"remittanceInformationUnstructured": "",
"purposeCode": "sivo",
"chargeBearer": "SHAR",
"creditorAgentName": "5610638931432163",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GVW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30058278919107",
"remittanceInformationUnstructured": "",
"purposeCode": "nati",
"chargeBearer": "SHAR",
"creditorAgentName": "5610711783151486",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UOR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026388418952355",
"remittanceInformationUnstructured": "",
"purposeCode": "harc",
"chargeBearer": "SHAR",
"creditorAgentName": "6011337539447490",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PNT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "342459416733710",
"remittanceInformationUnstructured": "",
"purposeCode": "miom",
"chargeBearer": "SHAR",
"creditorAgentName": "4026265988024502",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EEY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903878127488228",
"remittanceInformationUnstructured": "",
"purposeCode": "difh",
"chargeBearer": "SHAR",
"creditorAgentName": "6304619206286269",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KNG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903669197197157",
"remittanceInformationUnstructured": "",
"purposeCode": "aske",
"chargeBearer": "SHAR",
"creditorAgentName": "5018790175186159",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FVW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5101395889118999",
"remittanceInformationUnstructured": "",
"purposeCode": "lics",
"chargeBearer": "SHAR",
"creditorAgentName": "5105215391559181",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PSF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36343530151184",
"remittanceInformationUnstructured": "",
"purposeCode": "beuv",
"chargeBearer": "SHAR",
"creditorAgentName": "201490918568247",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JIO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610838413632674",
"remittanceInformationUnstructured": "",
"purposeCode": "guks",
"chargeBearer": "SHAR",
"creditorAgentName": "30066022165109",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "USN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304597809295251",
"remittanceInformationUnstructured": "",
"purposeCode": "ihao",
"chargeBearer": "SHAR",
"creditorAgentName": "5018911061375587",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SYD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903894702107430",
"remittanceInformationUnstructured": "",
"purposeCode": "honu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018600266635404",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "STI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610046118129786",
"remittanceInformationUnstructured": "",
"purposeCode": "oraj",
"chargeBearer": "SHAR",
"creditorAgentName": "5461422542649451",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AXR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5115091176240158",
"remittanceInformationUnstructured": "",
"purposeCode": "arri",
"chargeBearer": "SHAR",
"creditorAgentName": "342185226585012",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DPN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4865395200738474",
"remittanceInformationUnstructured": "",
"purposeCode": "zowv",
"chargeBearer": "SHAR",
"creditorAgentName": "4897131002247204",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WEI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610104447325813",
"remittanceInformationUnstructured": "",
"purposeCode": "duwb",
"chargeBearer": "SHAR",
"creditorAgentName": "6304430030355480",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EJG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5498856303866290",
"remittanceInformationUnstructured": "",
"purposeCode": "obea",
"chargeBearer": "SHAR",
"creditorAgentName": "6334556853571987",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UDB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201413759988167",
"remittanceInformationUnstructured": "",
"purposeCode": "eksu",
"chargeBearer": "SHAR",
"creditorAgentName": "6304675358083995",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WNJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903818856281873",
"remittanceInformationUnstructured": "",
"purposeCode": "cuvo",
"chargeBearer": "SHAR",
"creditorAgentName": "201494594137061",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AIE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903109404025040",
"remittanceInformationUnstructured": "",
"purposeCode": "johe",
"chargeBearer": "SHAR",
"creditorAgentName": "6370421399984761",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WIM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201420477591959",
"remittanceInformationUnstructured": "",
"purposeCode": "pids",
"chargeBearer": "SHAR",
"creditorAgentName": "6376853909523719",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WYA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334156669032025",
"remittanceInformationUnstructured": "",
"purposeCode": "emuv",
"chargeBearer": "SHAR",
"creditorAgentName": "5018059267785678",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TVV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528253757542446",
"remittanceInformationUnstructured": "",
"purposeCode": "cuam",
"chargeBearer": "SHAR",
"creditorAgentName": "30053423099897",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VFE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6280265876556421",
"remittanceInformationUnstructured": "",
"purposeCode": "napc",
"chargeBearer": "SHAR",
"creditorAgentName": "201487924018878",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VPF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026262137219851",
"remittanceInformationUnstructured": "",
"purposeCode": "mipa",
"chargeBearer": "SHAR",
"creditorAgentName": "5111080259501184",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FIM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30028962607375",
"remittanceInformationUnstructured": "",
"purposeCode": "udoz",
"chargeBearer": "SHAR",
"creditorAgentName": "4903168400503806",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HWG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610217889837374",
"remittanceInformationUnstructured": "",
"purposeCode": "dipu",
"chargeBearer": "SHAR",
"creditorAgentName": "4903135582315150",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JYU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201434517441273",
"remittanceInformationUnstructured": "",
"purposeCode": "ruca",
"chargeBearer": "SHAR",
"creditorAgentName": "30037219379621",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HHJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374878485267243",
"remittanceInformationUnstructured": "",
"purposeCode": "iwve",
"chargeBearer": "SHAR",
"creditorAgentName": "201400355787788",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BAW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5150110676811965",
"remittanceInformationUnstructured": "",
"purposeCode": "zomu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528076986297148",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RYC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528971287371750",
"remittanceInformationUnstructured": "",
"purposeCode": "lama",
"chargeBearer": "SHAR",
"creditorAgentName": "5472914673754768",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZIV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018634105836543",
"remittanceInformationUnstructured": "",
"purposeCode": "afwo",
"chargeBearer": "SHAR",
"creditorAgentName": "3528129383169608",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SRX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6213592896175110",
"remittanceInformationUnstructured": "",
"purposeCode": "niil",
"chargeBearer": "SHAR",
"creditorAgentName": "4103299274044961",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VSQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334681677903891",
"remittanceInformationUnstructured": "",
"purposeCode": "noct",
"chargeBearer": "SHAR",
"creditorAgentName": "6304374747630373",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PYM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528164617975744",
"remittanceInformationUnstructured": "",
"purposeCode": "dusd",
"chargeBearer": "SHAR",
"creditorAgentName": "6011466750552769",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DKM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201455313059233",
"remittanceInformationUnstructured": "",
"purposeCode": "neke",
"chargeBearer": "SHAR",
"creditorAgentName": "4903362132040258",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TOF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610885126642599",
"remittanceInformationUnstructured": "",
"purposeCode": "kusv",
"chargeBearer": "SHAR",
"creditorAgentName": "3528242452230241",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FBQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4900072829070632",
"remittanceInformationUnstructured": "",
"purposeCode": "rinu",
"chargeBearer": "SHAR",
"creditorAgentName": "5160316814938713",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JLW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304142541220125",
"remittanceInformationUnstructured": "",
"purposeCode": "afin",
"chargeBearer": "SHAR",
"creditorAgentName": "4559324788675164",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WLZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018085809128200",
"remittanceInformationUnstructured": "",
"purposeCode": "cefu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528579593978711",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IKS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5491768624829617",
"remittanceInformationUnstructured": "",
"purposeCode": "kabn",
"chargeBearer": "SHAR",
"creditorAgentName": "36200247184728",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JWJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6376937222403202",
"remittanceInformationUnstructured": "",
"purposeCode": "teza",
"chargeBearer": "SHAR",
"creditorAgentName": "30036198105973",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UBL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5190553186417256",
"remittanceInformationUnstructured": "",
"purposeCode": "rask",
"chargeBearer": "SHAR",
"creditorAgentName": "6334782972736208",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AHQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903676411398131",
"remittanceInformationUnstructured": "",
"purposeCode": "wope",
"chargeBearer": "SHAR",
"creditorAgentName": "4650320572850698",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BWF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343984084510461",
"remittanceInformationUnstructured": "",
"purposeCode": "vuba",
"chargeBearer": "SHAR",
"creditorAgentName": "6304732348708312",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QPC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528352985392796",
"remittanceInformationUnstructured": "",
"purposeCode": "fewe",
"chargeBearer": "SHAR",
"creditorAgentName": "5610294065845455",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LTG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026855702104125",
"remittanceInformationUnstructured": "",
"purposeCode": "nuke",
"chargeBearer": "SHAR",
"creditorAgentName": "36855389066023",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QVA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304229515279631",
"remittanceInformationUnstructured": "",
"purposeCode": "baed",
"chargeBearer": "SHAR",
"creditorAgentName": "6375121417306410",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CJQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011489005275754",
"remittanceInformationUnstructured": "",
"purposeCode": "cino",
"chargeBearer": "SHAR",
"creditorAgentName": "36648136289976",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AVB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011513604820213",
"remittanceInformationUnstructured": "",
"purposeCode": "icit",
"chargeBearer": "SHAR",
"creditorAgentName": "340801717622724",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OPX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610755861934735",
"remittanceInformationUnstructured": "",
"purposeCode": "kisu",
"chargeBearer": "SHAR",
"creditorAgentName": "30019279975118",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BVM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201411601105618",
"remittanceInformationUnstructured": "",
"purposeCode": "rezf",
"chargeBearer": "SHAR",
"creditorAgentName": "6304059735993194",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VBZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011051860281044",
"remittanceInformationUnstructured": "",
"purposeCode": "miza",
"chargeBearer": "SHAR",
"creditorAgentName": "6274550015128564",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MPI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334760840182433",
"remittanceInformationUnstructured": "",
"purposeCode": "guzu",
"chargeBearer": "SHAR",
"creditorAgentName": "6011384606109231",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JRP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011656779760043",
"remittanceInformationUnstructured": "",
"purposeCode": "gilo",
"chargeBearer": "SHAR",
"creditorAgentName": "3528612514165157",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZTP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304483888659347",
"remittanceInformationUnstructured": "",
"purposeCode": "elzo",
"chargeBearer": "SHAR",
"creditorAgentName": "5182584503191407",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IML"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6240896391660337",
"remittanceInformationUnstructured": "",
"purposeCode": "hioc",
"chargeBearer": "SHAR",
"creditorAgentName": "5192397056568592",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OIE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334690019159757",
"remittanceInformationUnstructured": "",
"purposeCode": "naer",
"chargeBearer": "SHAR",
"creditorAgentName": "5018772176688094",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OQO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011865608389383",
"remittanceInformationUnstructured": "",
"purposeCode": "jozz",
"chargeBearer": "SHAR",
"creditorAgentName": "6334357077225579",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XJN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5467231934219425",
"remittanceInformationUnstructured": "",
"purposeCode": "akni",
"chargeBearer": "SHAR",
"creditorAgentName": "4026508380510515",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HTO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610720523272049",
"remittanceInformationUnstructured": "",
"purposeCode": "juwo",
"chargeBearer": "SHAR",
"creditorAgentName": "6304834832240594",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LHR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026096281834622",
"remittanceInformationUnstructured": "",
"purposeCode": "ecug",
"chargeBearer": "SHAR",
"creditorAgentName": "348372550290443",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TGW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "344840947907550",
"remittanceInformationUnstructured": "",
"purposeCode": "pawe",
"chargeBearer": "SHAR",
"creditorAgentName": "5451565262736072",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XZC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346515844527564",
"remittanceInformationUnstructured": "",
"purposeCode": "tutr",
"chargeBearer": "SHAR",
"creditorAgentName": "6334028783021210",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UKP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610572431481414",
"remittanceInformationUnstructured": "",
"purposeCode": "udep",
"chargeBearer": "SHAR",
"creditorAgentName": "6250028750201449",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RKH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6379283437612148",
"remittanceInformationUnstructured": "",
"purposeCode": "fece",
"chargeBearer": "SHAR",
"creditorAgentName": "36149926224638",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MSF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528881324184019",
"remittanceInformationUnstructured": "",
"purposeCode": "zisf",
"chargeBearer": "SHAR",
"creditorAgentName": "340547474536876",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RFT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5467770191486821",
"remittanceInformationUnstructured": "",
"purposeCode": "zewa",
"chargeBearer": "SHAR",
"creditorAgentName": "3528695023715679",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LXS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610142935313586",
"remittanceInformationUnstructured": "",
"purposeCode": "abor",
"chargeBearer": "SHAR",
"creditorAgentName": "6304064941827483",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VMV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304334872329589",
"remittanceInformationUnstructured": "",
"purposeCode": "nivc",
"chargeBearer": "SHAR",
"creditorAgentName": "4201892119131794",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WOI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343201877892828",
"remittanceInformationUnstructured": "",
"purposeCode": "uvmu",
"chargeBearer": "SHAR",
"creditorAgentName": "4026113393708337",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NLD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026579294077461",
"remittanceInformationUnstructured": "",
"purposeCode": "gode",
"chargeBearer": "SHAR",
"creditorAgentName": "4903967857422703",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NOM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304898254902627",
"remittanceInformationUnstructured": "",
"purposeCode": "jozm",
"chargeBearer": "SHAR",
"creditorAgentName": "6304991438948242",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QHD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4977888078242772",
"remittanceInformationUnstructured": "",
"purposeCode": "divk",
"chargeBearer": "SHAR",
"creditorAgentName": "6011475491217731",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RTF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36838831961181",
"remittanceInformationUnstructured": "",
"purposeCode": "misn",
"chargeBearer": "SHAR",
"creditorAgentName": "30089680633861",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QSA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377717365692772",
"remittanceInformationUnstructured": "",
"purposeCode": "gidl",
"chargeBearer": "SHAR",
"creditorAgentName": "6377778861886367",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HXB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36597682577757",
"remittanceInformationUnstructured": "",
"purposeCode": "zomu",
"chargeBearer": "SHAR",
"creditorAgentName": "6371332838840754",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FMG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018882646068981",
"remittanceInformationUnstructured": "",
"purposeCode": "nohj",
"chargeBearer": "SHAR",
"creditorAgentName": "6269397715631316",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SNY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903436858275908",
"remittanceInformationUnstructured": "",
"purposeCode": "natu",
"chargeBearer": "SHAR",
"creditorAgentName": "6376508056604981",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LQF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5444071859660619",
"remittanceInformationUnstructured": "",
"purposeCode": "egpa",
"chargeBearer": "SHAR",
"creditorAgentName": "3528277228290186",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FIQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334635039512782",
"remittanceInformationUnstructured": "",
"purposeCode": "gijc",
"chargeBearer": "SHAR",
"creditorAgentName": "4026326761865105",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WKW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304934750330284",
"remittanceInformationUnstructured": "",
"purposeCode": "siiv",
"chargeBearer": "SHAR",
"creditorAgentName": "6304717668587107",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YNR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610180616867983",
"remittanceInformationUnstructured": "",
"purposeCode": "ibwo",
"chargeBearer": "SHAR",
"creditorAgentName": "201453819203488",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AAB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5125306371330275",
"remittanceInformationUnstructured": "",
"purposeCode": "tegk",
"chargeBearer": "SHAR",
"creditorAgentName": "36232197345827",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ALC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5483871723350608",
"remittanceInformationUnstructured": "",
"purposeCode": "epej",
"chargeBearer": "SHAR",
"creditorAgentName": "5610855050443199",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LGD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6258554778868416",
"remittanceInformationUnstructured": "",
"purposeCode": "rema",
"chargeBearer": "SHAR",
"creditorAgentName": "6011470028434917",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LAY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201481089448434",
"remittanceInformationUnstructured": "",
"purposeCode": "mivc",
"chargeBearer": "SHAR",
"creditorAgentName": "6379079640126250",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BTN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "345893471195851",
"remittanceInformationUnstructured": "",
"purposeCode": "denf",
"chargeBearer": "SHAR",
"creditorAgentName": "30073805790855",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MMH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610492997473897",
"remittanceInformationUnstructured": "",
"purposeCode": "fuzk",
"chargeBearer": "SHAR",
"creditorAgentName": "6304149141443130",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YEE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018009830126124",
"remittanceInformationUnstructured": "",
"purposeCode": "date",
"chargeBearer": "SHAR",
"creditorAgentName": "6304932296214525",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EGU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6231642449951638",
"remittanceInformationUnstructured": "",
"purposeCode": "mucj",
"chargeBearer": "SHAR",
"creditorAgentName": "5171931892003284",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RWK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5164370031918707",
"remittanceInformationUnstructured": "",
"purposeCode": "wuwe",
"chargeBearer": "SHAR",
"creditorAgentName": "6011938920858581",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AZZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5473282117366352",
"remittanceInformationUnstructured": "",
"purposeCode": "nepe",
"chargeBearer": "SHAR",
"creditorAgentName": "4903786240905053",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TWA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026419723881375",
"remittanceInformationUnstructured": "",
"purposeCode": "tidb",
"chargeBearer": "SHAR",
"creditorAgentName": "36653731063255",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WVG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903926855139420",
"remittanceInformationUnstructured": "",
"purposeCode": "hodv",
"chargeBearer": "SHAR",
"creditorAgentName": "6334116589621158",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DVL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201478277076936",
"remittanceInformationUnstructured": "",
"purposeCode": "jata",
"chargeBearer": "SHAR",
"creditorAgentName": "4903787255180947",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HAV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5471814513918378",
"remittanceInformationUnstructured": "",
"purposeCode": "vefb",
"chargeBearer": "SHAR",
"creditorAgentName": "3528569863639416",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NEA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374001249817621",
"remittanceInformationUnstructured": "",
"purposeCode": "waja",
"chargeBearer": "SHAR",
"creditorAgentName": "5610442311655505",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JXR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30017095418297",
"remittanceInformationUnstructured": "",
"purposeCode": "cale",
"chargeBearer": "SHAR",
"creditorAgentName": "4903706313401590",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JRM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011627289283651",
"remittanceInformationUnstructured": "",
"purposeCode": "ikle",
"chargeBearer": "SHAR",
"creditorAgentName": "4026658902749289",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NOW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304441513695987",
"remittanceInformationUnstructured": "",
"purposeCode": "umci",
"chargeBearer": "SHAR",
"creditorAgentName": "5187447726537647",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KHS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6207325054941223",
"remittanceInformationUnstructured": "",
"purposeCode": "ezwe",
"chargeBearer": "SHAR",
"creditorAgentName": "6238813848002660",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GJY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6253696075993010",
"remittanceInformationUnstructured": "",
"purposeCode": "morf",
"chargeBearer": "SHAR",
"creditorAgentName": "6253766111879307",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KBC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6376059341420775",
"remittanceInformationUnstructured": "",
"purposeCode": "azsu",
"chargeBearer": "SHAR",
"creditorAgentName": "5131163103794902",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SNZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011499639440401",
"remittanceInformationUnstructured": "",
"purposeCode": "abfi",
"chargeBearer": "SHAR",
"creditorAgentName": "4275574361327178",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PGW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334481269015174",
"remittanceInformationUnstructured": "",
"purposeCode": "mabu",
"chargeBearer": "SHAR",
"creditorAgentName": "201438920498952",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GHV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6264264065230534",
"remittanceInformationUnstructured": "",
"purposeCode": "guaj",
"chargeBearer": "SHAR",
"creditorAgentName": "6371835175091211",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZDW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903735869205121",
"remittanceInformationUnstructured": "",
"purposeCode": "woir",
"chargeBearer": "SHAR",
"creditorAgentName": "6334497782816971",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EFG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30009799154229",
"remittanceInformationUnstructured": "",
"purposeCode": "nidd",
"chargeBearer": "SHAR",
"creditorAgentName": "5018976945225647",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MKU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "345904891723048",
"remittanceInformationUnstructured": "",
"purposeCode": "gilo",
"chargeBearer": "SHAR",
"creditorAgentName": "36552617668254",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XXV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4386047110327399",
"remittanceInformationUnstructured": "",
"purposeCode": "cere",
"chargeBearer": "SHAR",
"creditorAgentName": "36242122800267",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HVI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334765169024918",
"remittanceInformationUnstructured": "",
"purposeCode": "mirs",
"chargeBearer": "SHAR",
"creditorAgentName": "201447378459440",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VRO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334918090520427",
"remittanceInformationUnstructured": "",
"purposeCode": "meki",
"chargeBearer": "SHAR",
"creditorAgentName": "5018192055233930",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NBE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5402386435896416",
"remittanceInformationUnstructured": "",
"purposeCode": "tuul",
"chargeBearer": "SHAR",
"creditorAgentName": "5190822672114234",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UEL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304322894826567",
"remittanceInformationUnstructured": "",
"purposeCode": "osri",
"chargeBearer": "SHAR",
"creditorAgentName": "30052314041406",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DAI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018249205440219",
"remittanceInformationUnstructured": "",
"purposeCode": "tore",
"chargeBearer": "SHAR",
"creditorAgentName": "5488820924736037",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OAI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340112569925706",
"remittanceInformationUnstructured": "",
"purposeCode": "gole",
"chargeBearer": "SHAR",
"creditorAgentName": "5414770575784324",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VKW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6375623539120801",
"remittanceInformationUnstructured": "",
"purposeCode": "alov",
"chargeBearer": "SHAR",
"creditorAgentName": "30037218662324",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PRN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340741265395523",
"remittanceInformationUnstructured": "",
"purposeCode": "ronl",
"chargeBearer": "SHAR",
"creditorAgentName": "4026011016390642",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DBX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4833783896731136",
"remittanceInformationUnstructured": "",
"purposeCode": "delo",
"chargeBearer": "SHAR",
"creditorAgentName": "36001354663953",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EGH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304503052288704",
"remittanceInformationUnstructured": "",
"purposeCode": "birz",
"chargeBearer": "SHAR",
"creditorAgentName": "6213108098901102",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MTE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334580615358152",
"remittanceInformationUnstructured": "",
"purposeCode": "okuc",
"chargeBearer": "SHAR",
"creditorAgentName": "30060604839082",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HMY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334779387624052",
"remittanceInformationUnstructured": "",
"purposeCode": "obam",
"chargeBearer": "SHAR",
"creditorAgentName": "6374140686161521",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AYR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377542344325264",
"remittanceInformationUnstructured": "",
"purposeCode": "loso",
"chargeBearer": "SHAR",
"creditorAgentName": "5486257641853617",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LGY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018184150067073",
"remittanceInformationUnstructured": "",
"purposeCode": "fuci",
"chargeBearer": "SHAR",
"creditorAgentName": "3528130648425322",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DSV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018387421824749",
"remittanceInformationUnstructured": "",
"purposeCode": "tubu",
"chargeBearer": "SHAR",
"creditorAgentName": "6281915794747622",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HCN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5179810791969369",
"remittanceInformationUnstructured": "",
"purposeCode": "wiki",
"chargeBearer": "SHAR",
"creditorAgentName": "3528338150862408",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FEY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30062165562095",
"remittanceInformationUnstructured": "",
"purposeCode": "meli",
"chargeBearer": "SHAR",
"creditorAgentName": "5018641554252577",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OUY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343287776766478",
"remittanceInformationUnstructured": "",
"purposeCode": "core",
"chargeBearer": "SHAR",
"creditorAgentName": "6334761912945293",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GBM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5461015356202696",
"remittanceInformationUnstructured": "",
"purposeCode": "gace",
"chargeBearer": "SHAR",
"creditorAgentName": "6334666000711111",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QUV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5189894326058987",
"remittanceInformationUnstructured": "",
"purposeCode": "cila",
"chargeBearer": "SHAR",
"creditorAgentName": "4903844975115164",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MJL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610204566942412",
"remittanceInformationUnstructured": "",
"purposeCode": "nucu",
"chargeBearer": "SHAR",
"creditorAgentName": "340183497931157",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QSA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5490733300231232",
"remittanceInformationUnstructured": "",
"purposeCode": "feti",
"chargeBearer": "SHAR",
"creditorAgentName": "4871234518434033",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QSS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304189549170547",
"remittanceInformationUnstructured": "",
"purposeCode": "juzz",
"chargeBearer": "SHAR",
"creditorAgentName": "4227530897070590",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZBR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528682454110232",
"remittanceInformationUnstructured": "",
"purposeCode": "dovp",
"chargeBearer": "SHAR",
"creditorAgentName": "4026538381904102",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CYQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903425403897472",
"remittanceInformationUnstructured": "",
"purposeCode": "fakg",
"chargeBearer": "SHAR",
"creditorAgentName": "30015692101621",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LUW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5128650891709600",
"remittanceInformationUnstructured": "",
"purposeCode": "nojo",
"chargeBearer": "SHAR",
"creditorAgentName": "36277583710852",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XHX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201460479501663",
"remittanceInformationUnstructured": "",
"purposeCode": "afow",
"chargeBearer": "SHAR",
"creditorAgentName": "6266482626807438",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WIS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528652479383510",
"remittanceInformationUnstructured": "",
"purposeCode": "rali",
"chargeBearer": "SHAR",
"creditorAgentName": "201445928990856",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MBI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011177449876150",
"remittanceInformationUnstructured": "",
"purposeCode": "jeef",
"chargeBearer": "SHAR",
"creditorAgentName": "4903108154126958",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZTD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30033873354083",
"remittanceInformationUnstructured": "",
"purposeCode": "niwd",
"chargeBearer": "SHAR",
"creditorAgentName": "4903319781491612",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YYW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6235435808714937",
"remittanceInformationUnstructured": "",
"purposeCode": "awpo",
"chargeBearer": "SHAR",
"creditorAgentName": "341048340938627",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PKJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374605391515930",
"remittanceInformationUnstructured": "",
"purposeCode": "liwo",
"chargeBearer": "SHAR",
"creditorAgentName": "6304706636277099",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PBV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610598352971638",
"remittanceInformationUnstructured": "",
"purposeCode": "wete",
"chargeBearer": "SHAR",
"creditorAgentName": "5140590394309355",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DGH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "349206302527109",
"remittanceInformationUnstructured": "",
"purposeCode": "nubi",
"chargeBearer": "SHAR",
"creditorAgentName": "348098274916514",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SYQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5185504589080255",
"remittanceInformationUnstructured": "",
"purposeCode": "diln",
"chargeBearer": "SHAR",
"creditorAgentName": "5499355283068265",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OSC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346325750619789",
"remittanceInformationUnstructured": "",
"purposeCode": "odus",
"chargeBearer": "SHAR",
"creditorAgentName": "3528461676302293",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WKF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026896082425805",
"remittanceInformationUnstructured": "",
"purposeCode": "ibsa",
"chargeBearer": "SHAR",
"creditorAgentName": "5018110246349597",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QRP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334993343440749",
"remittanceInformationUnstructured": "",
"purposeCode": "wiku",
"chargeBearer": "SHAR",
"creditorAgentName": "4026225763600009",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OIS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026100926982331",
"remittanceInformationUnstructured": "",
"purposeCode": "rusa",
"chargeBearer": "SHAR",
"creditorAgentName": "342436603669568",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MUH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903095945498103",
"remittanceInformationUnstructured": "",
"purposeCode": "pume",
"chargeBearer": "SHAR",
"creditorAgentName": "6283412601547435",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DPX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340717420824649",
"remittanceInformationUnstructured": "",
"purposeCode": "puwk",
"chargeBearer": "SHAR",
"creditorAgentName": "346346240758052",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JEW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340134940998244",
"remittanceInformationUnstructured": "",
"purposeCode": "nobe",
"chargeBearer": "SHAR",
"creditorAgentName": "5018304871036823",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VMM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "341394001963953",
"remittanceInformationUnstructured": "",
"purposeCode": "hedi",
"chargeBearer": "SHAR",
"creditorAgentName": "5487448078704337",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LNE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528882504883289",
"remittanceInformationUnstructured": "",
"purposeCode": "saco",
"chargeBearer": "SHAR",
"creditorAgentName": "5174028692029804",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YUV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5497388227328547",
"remittanceInformationUnstructured": "",
"purposeCode": "ahva",
"chargeBearer": "SHAR",
"creditorAgentName": "5018083809863603",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NZI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011296763584461",
"remittanceInformationUnstructured": "",
"purposeCode": "buto",
"chargeBearer": "SHAR",
"creditorAgentName": "4028817552136076",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RZY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "343912673106003",
"remittanceInformationUnstructured": "",
"purposeCode": "rual",
"chargeBearer": "SHAR",
"creditorAgentName": "6011030570071127",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HAG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610050239701697",
"remittanceInformationUnstructured": "",
"purposeCode": "eluh",
"chargeBearer": "SHAR",
"creditorAgentName": "6011272323722966",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HVJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304602195577336",
"remittanceInformationUnstructured": "",
"purposeCode": "wute",
"chargeBearer": "SHAR",
"creditorAgentName": "201490826347643",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZZV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201464926871463",
"remittanceInformationUnstructured": "",
"purposeCode": "cumu",
"chargeBearer": "SHAR",
"creditorAgentName": "5165717474570255",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PTB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30076210105049",
"remittanceInformationUnstructured": "",
"purposeCode": "ebup",
"chargeBearer": "SHAR",
"creditorAgentName": "36785668734480",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FSN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903349042505629",
"remittanceInformationUnstructured": "",
"purposeCode": "hivw",
"chargeBearer": "SHAR",
"creditorAgentName": "5610064942324531",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KNR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304798815103790",
"remittanceInformationUnstructured": "",
"purposeCode": "mazw",
"chargeBearer": "SHAR",
"creditorAgentName": "5478945642736944",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BNI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4751420352853959",
"remittanceInformationUnstructured": "",
"purposeCode": "owup",
"chargeBearer": "SHAR",
"creditorAgentName": "6267877952277065",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PUA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334797579047916",
"remittanceInformationUnstructured": "",
"purposeCode": "hube",
"chargeBearer": "SHAR",
"creditorAgentName": "6375293783192086",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CHK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018726364483700",
"remittanceInformationUnstructured": "",
"purposeCode": "hazo",
"chargeBearer": "SHAR",
"creditorAgentName": "4050281225279584",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KAU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30061211816513",
"remittanceInformationUnstructured": "",
"purposeCode": "tigj",
"chargeBearer": "SHAR",
"creditorAgentName": "5105852629392066",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ROZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5486885106724681",
"remittanceInformationUnstructured": "",
"purposeCode": "itso",
"chargeBearer": "SHAR",
"creditorAgentName": "6271215608220359",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TWE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011106863912712",
"remittanceInformationUnstructured": "",
"purposeCode": "vuka",
"chargeBearer": "SHAR",
"creditorAgentName": "5018318606695570",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MYJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026948886508680",
"remittanceInformationUnstructured": "",
"purposeCode": "botp",
"chargeBearer": "SHAR",
"creditorAgentName": "201496400620305",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YQG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36238893985337",
"remittanceInformationUnstructured": "",
"purposeCode": "tibw",
"chargeBearer": "SHAR",
"creditorAgentName": "6304219275033591",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XNX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347946066560521",
"remittanceInformationUnstructured": "",
"purposeCode": "pelu",
"chargeBearer": "SHAR",
"creditorAgentName": "4461730004744369",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JBL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018831831652299",
"remittanceInformationUnstructured": "",
"purposeCode": "pigi",
"chargeBearer": "SHAR",
"creditorAgentName": "3528770554789862",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SVT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903604761518959",
"remittanceInformationUnstructured": "",
"purposeCode": "dodo",
"chargeBearer": "SHAR",
"creditorAgentName": "6372307839694870",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CYF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334881039393985",
"remittanceInformationUnstructured": "",
"purposeCode": "mame",
"chargeBearer": "SHAR",
"creditorAgentName": "6011502976294420",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SAB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610494041504297",
"remittanceInformationUnstructured": "",
"purposeCode": "bimi",
"chargeBearer": "SHAR",
"creditorAgentName": "5412240368591189",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RJD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334348829527115",
"remittanceInformationUnstructured": "",
"purposeCode": "melg",
"chargeBearer": "SHAR",
"creditorAgentName": "3528750019880571",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RKL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304099034566002",
"remittanceInformationUnstructured": "",
"purposeCode": "hauw",
"chargeBearer": "SHAR",
"creditorAgentName": "5424182535426426",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YYE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4297914126463104",
"remittanceInformationUnstructured": "",
"purposeCode": "dipi",
"chargeBearer": "SHAR",
"creditorAgentName": "342954387167211",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "REG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610408538894037",
"remittanceInformationUnstructured": "",
"purposeCode": "zazo",
"chargeBearer": "SHAR",
"creditorAgentName": "30068105525183",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MQQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5434938204997205",
"remittanceInformationUnstructured": "",
"purposeCode": "imor",
"chargeBearer": "SHAR",
"creditorAgentName": "5176579348579186",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CRO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018944033180983",
"remittanceInformationUnstructured": "",
"purposeCode": "mack",
"chargeBearer": "SHAR",
"creditorAgentName": "5018061958983455",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OQS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304212063942487",
"remittanceInformationUnstructured": "",
"purposeCode": "zovv",
"chargeBearer": "SHAR",
"creditorAgentName": "3528617472428075",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JTK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026291603895431",
"remittanceInformationUnstructured": "",
"purposeCode": "gugj",
"chargeBearer": "SHAR",
"creditorAgentName": "341666723457053",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VCR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4884033513948491",
"remittanceInformationUnstructured": "",
"purposeCode": "ezfu",
"chargeBearer": "SHAR",
"creditorAgentName": "5018624543203059",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RHH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903430910113330",
"remittanceInformationUnstructured": "",
"purposeCode": "jozo",
"chargeBearer": "SHAR",
"creditorAgentName": "5018447185936574",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DEE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026369283511161",
"remittanceInformationUnstructured": "",
"purposeCode": "tipi",
"chargeBearer": "SHAR",
"creditorAgentName": "36179514814243",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KMB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "341240906640784",
"remittanceInformationUnstructured": "",
"purposeCode": "ludn",
"chargeBearer": "SHAR",
"creditorAgentName": "201434576172553",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QOU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5167504525326780",
"remittanceInformationUnstructured": "",
"purposeCode": "gobo",
"chargeBearer": "SHAR",
"creditorAgentName": "6304188519562113",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TLQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377403061978688",
"remittanceInformationUnstructured": "",
"purposeCode": "napl",
"chargeBearer": "SHAR",
"creditorAgentName": "4123876366507587",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DTQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36058190174637",
"remittanceInformationUnstructured": "",
"purposeCode": "puco",
"chargeBearer": "SHAR",
"creditorAgentName": "5123503687171987",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TAS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011654650127564",
"remittanceInformationUnstructured": "",
"purposeCode": "jubd",
"chargeBearer": "SHAR",
"creditorAgentName": "6334750754147480",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IWC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4438968553237449",
"remittanceInformationUnstructured": "",
"purposeCode": "lunu",
"chargeBearer": "SHAR",
"creditorAgentName": "343775070254076",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZHS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30088327690870",
"remittanceInformationUnstructured": "",
"purposeCode": "muen",
"chargeBearer": "SHAR",
"creditorAgentName": "6011713082110455",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DRA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4447253280614817",
"remittanceInformationUnstructured": "",
"purposeCode": "nivs",
"chargeBearer": "SHAR",
"creditorAgentName": "6334541208371671",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EEP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5424947653298934",
"remittanceInformationUnstructured": "",
"purposeCode": "gace",
"chargeBearer": "SHAR",
"creditorAgentName": "6304529259094033",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KNA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610325458132661",
"remittanceInformationUnstructured": "",
"purposeCode": "citi",
"chargeBearer": "SHAR",
"creditorAgentName": "5018372629074842",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NDR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340876203533247",
"remittanceInformationUnstructured": "",
"purposeCode": "ibau",
"chargeBearer": "SHAR",
"creditorAgentName": "3528298466050314",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RUW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026737986700614",
"remittanceInformationUnstructured": "",
"purposeCode": "rojo",
"chargeBearer": "SHAR",
"creditorAgentName": "6011035734897291",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LNS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201418044061688",
"remittanceInformationUnstructured": "",
"purposeCode": "udre",
"chargeBearer": "SHAR",
"creditorAgentName": "6375774022503217",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DGU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903703788503331",
"remittanceInformationUnstructured": "",
"purposeCode": "kage",
"chargeBearer": "SHAR",
"creditorAgentName": "5193936330209793",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TFD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377757967045672",
"remittanceInformationUnstructured": "",
"purposeCode": "kipk",
"chargeBearer": "SHAR",
"creditorAgentName": "341565431009463",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KJR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4934074974345314",
"remittanceInformationUnstructured": "",
"purposeCode": "awju",
"chargeBearer": "SHAR",
"creditorAgentName": "3528435434290867",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WTO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6272420386564221",
"remittanceInformationUnstructured": "",
"purposeCode": "adea",
"chargeBearer": "SHAR",
"creditorAgentName": "6374744717811143",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZRA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36628783453489",
"remittanceInformationUnstructured": "",
"purposeCode": "bika",
"chargeBearer": "SHAR",
"creditorAgentName": "6201246065391743",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BYB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377263051565485",
"remittanceInformationUnstructured": "",
"purposeCode": "daul",
"chargeBearer": "SHAR",
"creditorAgentName": "348984708197500",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZMX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201400182997261",
"remittanceInformationUnstructured": "",
"purposeCode": "lers",
"chargeBearer": "SHAR",
"creditorAgentName": "5187923064189175",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LSZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5146158176946077",
"remittanceInformationUnstructured": "",
"purposeCode": "hofs",
"chargeBearer": "SHAR",
"creditorAgentName": "342906225276810",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TNH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304236076333525",
"remittanceInformationUnstructured": "",
"purposeCode": "pulk",
"chargeBearer": "SHAR",
"creditorAgentName": "6379273925585534",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AKN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610510598754389",
"remittanceInformationUnstructured": "",
"purposeCode": "losc",
"chargeBearer": "SHAR",
"creditorAgentName": "5018339168145606",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QIX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36200169626979",
"remittanceInformationUnstructured": "",
"purposeCode": "ecot",
"chargeBearer": "SHAR",
"creditorAgentName": "5198617874681127",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RQU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334000753437726",
"remittanceInformationUnstructured": "",
"purposeCode": "tubu",
"chargeBearer": "SHAR",
"creditorAgentName": "30089563416806",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XGR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377405744928675",
"remittanceInformationUnstructured": "",
"purposeCode": "povi",
"chargeBearer": "SHAR",
"creditorAgentName": "3528286571143264",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LWB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018898005247883",
"remittanceInformationUnstructured": "",
"purposeCode": "upon",
"chargeBearer": "SHAR",
"creditorAgentName": "6378822324195872",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XKP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528333888707355",
"remittanceInformationUnstructured": "",
"purposeCode": "wowm",
"chargeBearer": "SHAR",
"creditorAgentName": "5428116943522455",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZHN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011943134535470",
"remittanceInformationUnstructured": "",
"purposeCode": "tila",
"chargeBearer": "SHAR",
"creditorAgentName": "6011591269354017",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZWA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340046298696610",
"remittanceInformationUnstructured": "",
"purposeCode": "pazz",
"chargeBearer": "SHAR",
"creditorAgentName": "4903309447241618",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SCR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201418786084542",
"remittanceInformationUnstructured": "",
"purposeCode": "dowo",
"chargeBearer": "SHAR",
"creditorAgentName": "342580986449948",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CXG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610131365184849",
"remittanceInformationUnstructured": "",
"purposeCode": "abma",
"chargeBearer": "SHAR",
"creditorAgentName": "4167145447179767",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PQJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5436079862212435",
"remittanceInformationUnstructured": "",
"purposeCode": "ulhu",
"chargeBearer": "SHAR",
"creditorAgentName": "6271400289795362",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AXO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011694460530524",
"remittanceInformationUnstructured": "",
"purposeCode": "egov",
"chargeBearer": "SHAR",
"creditorAgentName": "36647979948235",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YVD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347995683854049",
"remittanceInformationUnstructured": "",
"purposeCode": "zeig",
"chargeBearer": "SHAR",
"creditorAgentName": "6334120193639663",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CBM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011714457003622",
"remittanceInformationUnstructured": "",
"purposeCode": "woho",
"chargeBearer": "SHAR",
"creditorAgentName": "5448794107027150",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OXO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610825908624662",
"remittanceInformationUnstructured": "",
"purposeCode": "ciwd",
"chargeBearer": "SHAR",
"creditorAgentName": "5132120128394703",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ODV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36897532088298",
"remittanceInformationUnstructured": "",
"purposeCode": "cuga",
"chargeBearer": "SHAR",
"creditorAgentName": "5610803091669356",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YRA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4535544698590901",
"remittanceInformationUnstructured": "",
"purposeCode": "fese",
"chargeBearer": "SHAR",
"creditorAgentName": "6334460854335593",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KFG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201484606448598",
"remittanceInformationUnstructured": "",
"purposeCode": "zila",
"chargeBearer": "SHAR",
"creditorAgentName": "6334320083550356",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DHJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "342963700298074",
"remittanceInformationUnstructured": "",
"purposeCode": "padv",
"chargeBearer": "SHAR",
"creditorAgentName": "6304482405994963",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZTR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5181524244330634",
"remittanceInformationUnstructured": "",
"purposeCode": "tojo",
"chargeBearer": "SHAR",
"creditorAgentName": "201468486493063",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UUV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610014526526480",
"remittanceInformationUnstructured": "",
"purposeCode": "vibe",
"chargeBearer": "SHAR",
"creditorAgentName": "4903299802321040",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SNA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30013386010158",
"remittanceInformationUnstructured": "",
"purposeCode": "ewio",
"chargeBearer": "SHAR",
"creditorAgentName": "36318667019461",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XVW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610697835357652",
"remittanceInformationUnstructured": "",
"purposeCode": "hare",
"chargeBearer": "SHAR",
"creditorAgentName": "5138106054150502",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RJD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6296355335275044",
"remittanceInformationUnstructured": "",
"purposeCode": "zohb",
"chargeBearer": "SHAR",
"creditorAgentName": "5018199384895966",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VLK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610150103906727",
"remittanceInformationUnstructured": "",
"purposeCode": "huhh",
"chargeBearer": "SHAR",
"creditorAgentName": "5492488213141907",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EXV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334553555789660",
"remittanceInformationUnstructured": "",
"purposeCode": "sotl",
"chargeBearer": "SHAR",
"creditorAgentName": "5018938753350347",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CDJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4005235269710553",
"remittanceInformationUnstructured": "",
"purposeCode": "doez",
"chargeBearer": "SHAR",
"creditorAgentName": "6334215803505088",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VKL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018908056476628",
"remittanceInformationUnstructured": "",
"purposeCode": "raco",
"chargeBearer": "SHAR",
"creditorAgentName": "5610871989625863",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ITX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6379985940637335",
"remittanceInformationUnstructured": "",
"purposeCode": "lurk",
"chargeBearer": "SHAR",
"creditorAgentName": "4185481260320065",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DQP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6281115515528126",
"remittanceInformationUnstructured": "",
"purposeCode": "koub",
"chargeBearer": "SHAR",
"creditorAgentName": "5018061562597931",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OHF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36405882019846",
"remittanceInformationUnstructured": "",
"purposeCode": "igme",
"chargeBearer": "SHAR",
"creditorAgentName": "30098977929080",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RWV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903187585332955",
"remittanceInformationUnstructured": "",
"purposeCode": "ucah",
"chargeBearer": "SHAR",
"creditorAgentName": "4903670343733002",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RBA"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528837300490333",
"remittanceInformationUnstructured": "",
"purposeCode": "tago",
"chargeBearer": "SHAR",
"creditorAgentName": "6378037417979070",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SSV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4653640456228696",
"remittanceInformationUnstructured": "",
"purposeCode": "relr",
"chargeBearer": "SHAR",
"creditorAgentName": "6334560928528170",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FCZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6377061980221703",
"remittanceInformationUnstructured": "",
"purposeCode": "udos",
"chargeBearer": "SHAR",
"creditorAgentName": "349738828355136",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VKH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026802743181597",
"remittanceInformationUnstructured": "",
"purposeCode": "feut",
"chargeBearer": "SHAR",
"creditorAgentName": "5610498238209966",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HLE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "342525170288966",
"remittanceInformationUnstructured": "",
"purposeCode": "pied",
"chargeBearer": "SHAR",
"creditorAgentName": "5101815539826568",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XFS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304405327717451",
"remittanceInformationUnstructured": "",
"purposeCode": "epvi",
"chargeBearer": "SHAR",
"creditorAgentName": "5610822216922839",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WNS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201444276709893",
"remittanceInformationUnstructured": "",
"purposeCode": "dozi",
"chargeBearer": "SHAR",
"creditorAgentName": "5610593109318167",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EOR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36347093679242",
"remittanceInformationUnstructured": "",
"purposeCode": "dozv",
"chargeBearer": "SHAR",
"creditorAgentName": "36069163793113",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MQF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201439493819095",
"remittanceInformationUnstructured": "",
"purposeCode": "lejd",
"chargeBearer": "SHAR",
"creditorAgentName": "201469262424371",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AKW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4435609329028133",
"remittanceInformationUnstructured": "",
"purposeCode": "luto",
"chargeBearer": "SHAR",
"creditorAgentName": "30069883687146",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GVY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "347421428131601",
"remittanceInformationUnstructured": "",
"purposeCode": "soag",
"chargeBearer": "SHAR",
"creditorAgentName": "201453537078311",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "BBQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026576044633106",
"remittanceInformationUnstructured": "",
"purposeCode": "mamd",
"chargeBearer": "SHAR",
"creditorAgentName": "5482506253086393",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SEM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36839865581366",
"remittanceInformationUnstructured": "",
"purposeCode": "zucl",
"chargeBearer": "SHAR",
"creditorAgentName": "30093501575376",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HQB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "340241379105710",
"remittanceInformationUnstructured": "",
"purposeCode": "topb",
"chargeBearer": "SHAR",
"creditorAgentName": "4903958853483476",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MWW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5415829324165828",
"remittanceInformationUnstructured": "",
"purposeCode": "vebe",
"chargeBearer": "SHAR",
"creditorAgentName": "36898318446130",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LKJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30006035650143",
"remittanceInformationUnstructured": "",
"purposeCode": "kino",
"chargeBearer": "SHAR",
"creditorAgentName": "5610387212785135",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GUZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334263229542434",
"remittanceInformationUnstructured": "",
"purposeCode": "hija",
"chargeBearer": "SHAR",
"creditorAgentName": "5018421711341369",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZNN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026077909954463",
"remittanceInformationUnstructured": "",
"purposeCode": "feug",
"chargeBearer": "SHAR",
"creditorAgentName": "5159165969396398",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IPD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304900818309198",
"remittanceInformationUnstructured": "",
"purposeCode": "ezhe",
"chargeBearer": "SHAR",
"creditorAgentName": "5018791713657982",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "UJD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026946942524022",
"remittanceInformationUnstructured": "",
"purposeCode": "fuof",
"chargeBearer": "SHAR",
"creditorAgentName": "6210851569569725",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IRB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334631336488271",
"remittanceInformationUnstructured": "",
"purposeCode": "goiv",
"chargeBearer": "SHAR",
"creditorAgentName": "6277463683314473",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EER"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528109834660587",
"remittanceInformationUnstructured": "",
"purposeCode": "vetd",
"chargeBearer": "SHAR",
"creditorAgentName": "6373240188676728",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CLZ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528676269015636",
"remittanceInformationUnstructured": "",
"purposeCode": "cehm",
"chargeBearer": "SHAR",
"creditorAgentName": "6304696616770512",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CQC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "344495698832539",
"remittanceInformationUnstructured": "",
"purposeCode": "zubs",
"chargeBearer": "SHAR",
"creditorAgentName": "5106900606426891",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IHQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610488925120527",
"remittanceInformationUnstructured": "",
"purposeCode": "bazw",
"chargeBearer": "SHAR",
"creditorAgentName": "5121227798517316",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DCQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "346704247691652",
"remittanceInformationUnstructured": "",
"purposeCode": "zips",
"chargeBearer": "SHAR",
"creditorAgentName": "6371626638489807",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SFW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026952099026894",
"remittanceInformationUnstructured": "",
"purposeCode": "igse",
"chargeBearer": "SHAR",
"creditorAgentName": "6011262375632817",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FOV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201498693888128",
"remittanceInformationUnstructured": "",
"purposeCode": "arpo",
"chargeBearer": "SHAR",
"creditorAgentName": "4903774124008558",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NLU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018433871454460",
"remittanceInformationUnstructured": "",
"purposeCode": "fusr",
"chargeBearer": "SHAR",
"creditorAgentName": "201448557804521",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LKS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4036678906318301",
"remittanceInformationUnstructured": "",
"purposeCode": "guha",
"chargeBearer": "SHAR",
"creditorAgentName": "5610620704937891",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XQF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018044052988158",
"remittanceInformationUnstructured": "",
"purposeCode": "logv",
"chargeBearer": "SHAR",
"creditorAgentName": "6334669423857255",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TDT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018642519113888",
"remittanceInformationUnstructured": "",
"purposeCode": "wuwf",
"chargeBearer": "SHAR",
"creditorAgentName": "6334254830084064",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FJF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5167230666757282",
"remittanceInformationUnstructured": "",
"purposeCode": "pihi",
"chargeBearer": "SHAR",
"creditorAgentName": "4500109200652077",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EHL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011973297857536",
"remittanceInformationUnstructured": "",
"purposeCode": "amaz",
"chargeBearer": "SHAR",
"creditorAgentName": "6304027642490554",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XMI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6374472580890933",
"remittanceInformationUnstructured": "",
"purposeCode": "razs",
"chargeBearer": "SHAR",
"creditorAgentName": "5018482257550847",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WPO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528498361054979",
"remittanceInformationUnstructured": "",
"purposeCode": "iria",
"chargeBearer": "SHAR",
"creditorAgentName": "6373254396477548",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EDS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903765473468807",
"remittanceInformationUnstructured": "",
"purposeCode": "mapa",
"chargeBearer": "SHAR",
"creditorAgentName": "5197389983794727",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HIL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304945098550052",
"remittanceInformationUnstructured": "",
"purposeCode": "umuu",
"chargeBearer": "SHAR",
"creditorAgentName": "5433440830766659",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PGY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026464753485754",
"remittanceInformationUnstructured": "",
"purposeCode": "gode",
"chargeBearer": "SHAR",
"creditorAgentName": "30052287451665",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GWM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6221819408979923",
"remittanceInformationUnstructured": "",
"purposeCode": "zale",
"chargeBearer": "SHAR",
"creditorAgentName": "347631868661194",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LFJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528075379093544",
"remittanceInformationUnstructured": "",
"purposeCode": "vowv",
"chargeBearer": "SHAR",
"creditorAgentName": "6304091301569728",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "EOD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5440477362001353",
"remittanceInformationUnstructured": "",
"purposeCode": "apoj",
"chargeBearer": "SHAR",
"creditorAgentName": "5018476121562178",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZKJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201445799596964",
"remittanceInformationUnstructured": "",
"purposeCode": "mokw",
"chargeBearer": "SHAR",
"creditorAgentName": "6220844535084646",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VCT"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026145428912997",
"remittanceInformationUnstructured": "",
"purposeCode": "nufj",
"chargeBearer": "SHAR",
"creditorAgentName": "6011075753548391",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZHR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4138620405148950",
"remittanceInformationUnstructured": "",
"purposeCode": "koob",
"chargeBearer": "SHAR",
"creditorAgentName": "349971392848406",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "DYU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026220471336012",
"remittanceInformationUnstructured": "",
"purposeCode": "oluc",
"chargeBearer": "SHAR",
"creditorAgentName": "4325574277773903",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KMR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5479455293548910",
"remittanceInformationUnstructured": "",
"purposeCode": "obsu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528011282946387",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HRC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528681323883482",
"remittanceInformationUnstructured": "",
"purposeCode": "jizo",
"chargeBearer": "SHAR",
"creditorAgentName": "5487718916214560",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OIJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334549852952191",
"remittanceInformationUnstructured": "",
"purposeCode": "bahu",
"chargeBearer": "SHAR",
"creditorAgentName": "5492946213374570",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VAN"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4064567478671483",
"remittanceInformationUnstructured": "",
"purposeCode": "vivz",
"chargeBearer": "SHAR",
"creditorAgentName": "4600369294734632",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZUM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528479270718045",
"remittanceInformationUnstructured": "",
"purposeCode": "tijb",
"chargeBearer": "SHAR",
"creditorAgentName": "6298423359224237",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PTM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018561823662515",
"remittanceInformationUnstructured": "",
"purposeCode": "pujv",
"chargeBearer": "SHAR",
"creditorAgentName": "5157325798996832",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NMH"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903832498435524",
"remittanceInformationUnstructured": "",
"purposeCode": "vadi",
"chargeBearer": "SHAR",
"creditorAgentName": "6249298949094575",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PAR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "348448684681978",
"remittanceInformationUnstructured": "",
"purposeCode": "vove",
"chargeBearer": "SHAR",
"creditorAgentName": "342646725319153",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KXM"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903425630187556",
"remittanceInformationUnstructured": "",
"purposeCode": "zazg",
"chargeBearer": "SHAR",
"creditorAgentName": "30013581671598",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ODE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30022406006005",
"remittanceInformationUnstructured": "",
"purposeCode": "apom",
"chargeBearer": "SHAR",
"creditorAgentName": "6259524876804646",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CYG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528443473180007",
"remittanceInformationUnstructured": "",
"purposeCode": "sice",
"chargeBearer": "SHAR",
"creditorAgentName": "201431155315843",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QVU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334863363656542",
"remittanceInformationUnstructured": "",
"purposeCode": "rafr",
"chargeBearer": "SHAR",
"creditorAgentName": "5018067467092753",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VEW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610994528352599",
"remittanceInformationUnstructured": "",
"purposeCode": "joho",
"chargeBearer": "SHAR",
"creditorAgentName": "5106161644859177",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NDO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6372258375378628",
"remittanceInformationUnstructured": "",
"purposeCode": "maws",
"chargeBearer": "SHAR",
"creditorAgentName": "6304688194897387",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KTX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334477607964156",
"remittanceInformationUnstructured": "",
"purposeCode": "vosu",
"chargeBearer": "SHAR",
"creditorAgentName": "349925670284205",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MQK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6334485778659208",
"remittanceInformationUnstructured": "",
"purposeCode": "vorg",
"chargeBearer": "SHAR",
"creditorAgentName": "30017253382723",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MJE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304242607679295",
"remittanceInformationUnstructured": "",
"purposeCode": "fadh",
"chargeBearer": "SHAR",
"creditorAgentName": "349640501452117",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "VZK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4298972528308409",
"remittanceInformationUnstructured": "",
"purposeCode": "pazu",
"chargeBearer": "SHAR",
"creditorAgentName": "3528631712188225",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KXV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6376627298948616",
"remittanceInformationUnstructured": "",
"purposeCode": "awah",
"chargeBearer": "SHAR",
"creditorAgentName": "4026403727942946",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IWJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "3528015596150875",
"remittanceInformationUnstructured": "",
"purposeCode": "dahv",
"chargeBearer": "SHAR",
"creditorAgentName": "340865751274304",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "TJE"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36020011073885",
"remittanceInformationUnstructured": "",
"purposeCode": "vaww",
"chargeBearer": "SHAR",
"creditorAgentName": "4903153549161088",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KBV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304841211778581",
"remittanceInformationUnstructured": "",
"purposeCode": "kaak",
"chargeBearer": "SHAR",
"creditorAgentName": "4903037342219658",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SHI"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6373092712050718",
"remittanceInformationUnstructured": "",
"purposeCode": "bojo",
"chargeBearer": "SHAR",
"creditorAgentName": "5018726512079202",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WWF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4270806425344368",
"remittanceInformationUnstructured": "",
"purposeCode": "hili",
"chargeBearer": "SHAR",
"creditorAgentName": "30008633405805",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XMD"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36173657359835",
"remittanceInformationUnstructured": "",
"purposeCode": "gage",
"chargeBearer": "SHAR",
"creditorAgentName": "4026500704104091",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LOV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5439118811902691",
"remittanceInformationUnstructured": "",
"purposeCode": "temm",
"chargeBearer": "SHAR",
"creditorAgentName": "4026999257418819",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PEL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026164965206010",
"remittanceInformationUnstructured": "",
"purposeCode": "guja",
"chargeBearer": "SHAR",
"creditorAgentName": "36488848633918",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ZMJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4135596699165392",
"remittanceInformationUnstructured": "",
"purposeCode": "howo",
"chargeBearer": "SHAR",
"creditorAgentName": "6011844935587597",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ATW"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903586577553652",
"remittanceInformationUnstructured": "",
"purposeCode": "ojhe",
"chargeBearer": "SHAR",
"creditorAgentName": "5414768583543468",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YQU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018222138039853",
"remittanceInformationUnstructured": "",
"purposeCode": "runu",
"chargeBearer": "SHAR",
"creditorAgentName": "4960595932920217",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OQG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "201420552063841",
"remittanceInformationUnstructured": "",
"purposeCode": "weba",
"chargeBearer": "SHAR",
"creditorAgentName": "30050284221693",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JUX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "349893554880391",
"remittanceInformationUnstructured": "",
"purposeCode": "zudm",
"chargeBearer": "SHAR",
"creditorAgentName": "5109643617659418",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NFC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026792395253580",
"remittanceInformationUnstructured": "",
"purposeCode": "sive",
"chargeBearer": "SHAR",
"creditorAgentName": "4026110466874111",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "JGP"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6304881083479983",
"remittanceInformationUnstructured": "",
"purposeCode": "pimc",
"chargeBearer": "SHAR",
"creditorAgentName": "3528199768372143",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WWS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4607056291047182",
"remittanceInformationUnstructured": "",
"purposeCode": "niki",
"chargeBearer": "SHAR",
"creditorAgentName": "5610885109651385",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MWO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5195789851164139",
"remittanceInformationUnstructured": "",
"purposeCode": "ceha",
"chargeBearer": "SHAR",
"creditorAgentName": "6334547976330161",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "CBY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026343321625291",
"remittanceInformationUnstructured": "",
"purposeCode": "rekv",
"chargeBearer": "SHAR",
"creditorAgentName": "346441686184523",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "RQX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011518801297446",
"remittanceInformationUnstructured": "",
"purposeCode": "sili",
"chargeBearer": "SHAR",
"creditorAgentName": "3528736587152501",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "XLC"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5199868125617639",
"remittanceInformationUnstructured": "",
"purposeCode": "poge",
"chargeBearer": "SHAR",
"creditorAgentName": "4026326901817669",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "MTJ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018172496784659",
"remittanceInformationUnstructured": "",
"purposeCode": "gori",
"chargeBearer": "SHAR",
"creditorAgentName": "3528811023508481",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LHR"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026298773318748",
"remittanceInformationUnstructured": "",
"purposeCode": "jovb",
"chargeBearer": "SHAR",
"creditorAgentName": "5143859979466212",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GXO"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6271206222416481",
"remittanceInformationUnstructured": "",
"purposeCode": "luku",
"chargeBearer": "SHAR",
"creditorAgentName": "6279730125826506",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YWQ"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "30095742724986",
"remittanceInformationUnstructured": "",
"purposeCode": "vejz",
"chargeBearer": "SHAR",
"creditorAgentName": "36844707756366",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "WWY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5187930882494299",
"remittanceInformationUnstructured": "",
"purposeCode": "wibu",
"chargeBearer": "SHAR",
"creditorAgentName": "6334436046170957",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YYV"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4903465628810322",
"remittanceInformationUnstructured": "",
"purposeCode": "lanz",
"chargeBearer": "SHAR",
"creditorAgentName": "5456405010830163",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "SVB"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5118881769988776",
"remittanceInformationUnstructured": "",
"purposeCode": "tudd",
"chargeBearer": "SHAR",
"creditorAgentName": "6267637950156954",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "FDU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6371041469680476",
"remittanceInformationUnstructured": "",
"purposeCode": "utci",
"chargeBearer": "SHAR",
"creditorAgentName": "3528504432779021",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "PFS"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "36755060320139",
"remittanceInformationUnstructured": "",
"purposeCode": "paen",
"chargeBearer": "SHAR",
"creditorAgentName": "4903670524526340",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YMU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026245816848835",
"remittanceInformationUnstructured": "",
"purposeCode": "nijc",
"chargeBearer": "SHAR",
"creditorAgentName": "340166667712143",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "OJU"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6288463610643009",
"remittanceInformationUnstructured": "",
"purposeCode": "nelf",
"chargeBearer": "SHAR",
"creditorAgentName": "6011823628323437",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QGX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4026282181028263",
"remittanceInformationUnstructured": "",
"purposeCode": "zair",
"chargeBearer": "SHAR",
"creditorAgentName": "201458094280440",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "GEL"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4755582971108689",
"remittanceInformationUnstructured": "",
"purposeCode": "hunc",
"chargeBearer": "SHAR",
"creditorAgentName": "4903796104301679",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "LBY"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5610126790738706",
"remittanceInformationUnstructured": "",
"purposeCode": "rafw",
"chargeBearer": "SHAR",
"creditorAgentName": "6214920739508446",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "QTK"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5018488667565481",
"remittanceInformationUnstructured": "",
"purposeCode": "atte",
"chargeBearer": "SHAR",
"creditorAgentName": "6011821093721127",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "ECX"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "5104324810756872",
"remittanceInformationUnstructured": "",
"purposeCode": "wisj",
"chargeBearer": "SHAR",
"creditorAgentName": "6304518761101584",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "AVG"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "6011484920376316",
"remittanceInformationUnstructured": "",
"purposeCode": "gemc",
"chargeBearer": "SHAR",
"creditorAgentName": "6011864090302848",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
],
[
"instructedAmount": [
"currency": "EUR",
"content": "0"
],
"endToEndIdentification": "",
"creditorAccount": [
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "YSF"
],
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
],
"creditorClearingCode": "4807767391577567",
"remittanceInformationUnstructured": "",
"purposeCode": "turp",
"chargeBearer": "SHAR",
"creditorAgentName": "6372277604514738",
"creditorAgentAddress": [
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
]
]
]
] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers?tppRedirectPreferred=REPLACE_THIS_VALUE")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
x
{
"transactionStatus": "RJCT",
"bulkPaymentId": "",
"transactionFees": {
"currency": "EUR",
"content": "0"
},
"transactionFeeIndicator": false,
"scaMethods": [
{
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
}
],
"chosenScaMethod": {
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
},
"challengeData": {
"image": "",
"data": "",
"imageLink": "",
"otpMaxLength": 0,
"otpFormat": "integer",
"additionalInformation": ""
},
"_links": {
"redirect": "",
"updatePsuIdentification": "",
"updatePsuAuthentication": "",
"selectAuthenticationMethod": "",
"authoriseTransaction": "",
"self": "",
"updateProprietaryData": "",
"status": ""
},
"psuMessage": "",
"tppMessages": [
{
"category": "",
{
"transactionStatus": "RJCT",
"bulkPaymentId": "",
"transactionFees": {
"currency": "EUR",
"content": "0"
},
"transactionFeeIndicator": false,
"scaMethods": [
{
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
}
],
"chosenScaMethod": {
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
},
"challengeData": {
"image": "",
"data": "",
"imageLink": "",
"otpMaxLength": 0,
"otpFormat": "integer",
"additionalInformation": ""
},
"_links": {
"redirect": "",
"updatePsuIdentification": "",
"updatePsuAuthentication": "",
"selectAuthenticationMethod": "",
"authoriseTransaction": "",
"self": "",
"updateProprietaryData": "",
"status": ""
},
"psuMessage": "",
"tppMessages": [
{
"category": "",
"code": "CONSENT_INVALID",
"path": "",
"text": ""
}
]
}
x
/{aspsp-cde}/v1-0-3/bulk-payments/{payment-product}/{bulk-payment-id}
Bulk Payment Update Request
Updates information related to a previous bulk payment initiation in order to obtain PSUId credentials.
Identification of the aspsp
{
"default": ""
}
Type of payment
{
"default": "sepa-credit-transfers",
"enum": [
"sepa-credit-transfers",
"cross-border-credit-transfers",
"instant-sepa-credit-transfers",
"target-2-payments",
"sdcl-sepa-credit-transfers",
"urgent-sepa-credit-transfers"
]
}
Identification of the bulk payment
{
"default": ""
}
ID of the transaction as determined by the initiating party.
{
"default": ""
}
ID of the request, unique to the call, as determined bu the initiating party.
{
"default": ""
}
User identification in ASPSP
{
"default": ""
}
Type of the PSU-ID, needed in scenarios where PSUs have several PSU-IDs as access possibility.
{
"default": ""
}
Corporate User identification in ASPSP
{
"default": ""
}
Might be mandated in the ASPSPs documentation. Only used in a corporate context.
{
"default": ""
}
A signature of the request by the TPP on application level. This might be mandated by ASPSP.
{
"default": ""
}
The certificate used for signing the request, in base64 encoding. Shall be contained if the signature is used.
{
"default": ""
}
Request date
{
"pattern": "yyyy-MM-dd'T'hh:MM:ss.SSS"
}
Bulk Payment Update Request
{
"schema": {
"description": "Updates information related to a previous bulk payment initiation in order to obtain PSUId credentials.",
"type": "object",
"properties": {
"psuData": {
"$ref": "#\/definitions\/PSUData",
"description": "Include all credentials related data (e.g., user, password and additional data accordingly with ASPSP requests)"
},
"scaAuthenticationData": {
"description": "SCA authentication data, depending on the chosen authentication method.\n\nif the data is binary, then it is base64 encoded.",
"type": "string",
"default": ""
},
"authenticationMethodId": {
"description": "The authentication method ID as provided by the ASPSP. This property is mandatory in a Select Authentication Method.",
"type": "string",
"default": ""
}
},
"additionalProperties": false
}
}
Hash of the message body. Should be present when Request body exists
{
"default": ""
}
Bad Request.
Unauthorized.
Forbidden.
Not Found.
Method Not Allowed.
Not Acceptable.
Request Timeout.
Unsupported Media Type.
Too Many Requests.
Internal Server Error.
Service Unavailable.
Gatewaty Timeout.
curl --request PUT \
--url https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID \
--header 'Date: REPLACE_THIS_VALUE' \
--header 'Digest: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID-Type: REPLACE_THIS_VALUE' \
--header 'PSU-ID: REPLACE_THIS_VALUE' \
--header 'PSU-ID-Type: REPLACE_THIS_VALUE' \
--header 'Signature: REPLACE_THIS_VALUE' \
--header 'TPP-Certificate: REPLACE_THIS_VALUE' \
--header 'TPP-Request-ID: REPLACE_THIS_VALUE' \
--header 'TPP-Transaction-ID: REPLACE_THIS_VALUE' \
--header 'X-IBM-Client-Id: REPLACE_THIS_KEY' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{"psuData":{"password":"1"},"scaAuthenticationData":"","authenticationMethodId":""}'
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Put.new(url)
request["X-IBM-Client-Id"] = 'REPLACE_THIS_KEY'
request["TPP-Transaction-ID"] = 'REPLACE_THIS_VALUE'
request["TPP-Request-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID-Type"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID-Type"] = 'REPLACE_THIS_VALUE'
request["Signature"] = 'REPLACE_THIS_VALUE'
request["TPP-Certificate"] = 'REPLACE_THIS_VALUE'
request["Date"] = 'REPLACE_THIS_VALUE'
request["Digest"] = 'REPLACE_THIS_VALUE'
request["content-type"] = 'application/json'
request["accept"] = 'application/json'
request.body = "{\"psuData\":{\"password\":\"1\"},\"scaAuthenticationData\":\"\",\"authenticationMethodId\":\"\"}"
response = http.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("site1.sibsapimarket.com:8445")
payload = "{\"psuData\":{\"password\":\"1\"},\"scaAuthenticationData\":\"\",\"authenticationMethodId\":\"\"}"
headers = {
'X-IBM-Client-Id': "REPLACE_THIS_KEY",
'TPP-Transaction-ID': "REPLACE_THIS_VALUE",
'TPP-Request-ID': "REPLACE_THIS_VALUE",
'PSU-ID': "REPLACE_THIS_VALUE",
'PSU-ID-Type': "REPLACE_THIS_VALUE",
'PSU-Corporate-ID': "REPLACE_THIS_VALUE",
'PSU-Corporate-ID-Type': "REPLACE_THIS_VALUE",
'Signature': "REPLACE_THIS_VALUE",
'TPP-Certificate': "REPLACE_THIS_VALUE",
'Date': "REPLACE_THIS_VALUE",
'Digest': "REPLACE_THIS_VALUE",
'content-type': "application/json",
'accept': "application/json"
}
conn.request("PUT", "/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8445",
CURLOPT_URL => "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => "{\"psuData\":{\"password\":\"1\"},\"scaAuthenticationData\":\"\",\"authenticationMethodId\":\"\"}",
CURLOPT_HTTPHEADER => [
"Date: REPLACE_THIS_VALUE",
"Digest: REPLACE_THIS_VALUE",
"PSU-Corporate-ID: REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type: REPLACE_THIS_VALUE",
"PSU-ID: REPLACE_THIS_VALUE",
"PSU-ID-Type: REPLACE_THIS_VALUE",
"Signature: REPLACE_THIS_VALUE",
"TPP-Certificate: REPLACE_THIS_VALUE",
"TPP-Request-ID: REPLACE_THIS_VALUE",
"TPP-Transaction-ID: REPLACE_THIS_VALUE",
"X-IBM-Client-Id: REPLACE_THIS_KEY",
"accept: application/json",
"content-type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"psuData\":{\"password\":\"1\"},\"scaAuthenticationData\":\"\",\"authenticationMethodId\":\"\"}");
Request request = new Request.Builder()
.url("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")
.put(body)
.addHeader("X-IBM-Client-Id", "REPLACE_THIS_KEY")
.addHeader("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
.addHeader("TPP-Request-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-ID-Type", "REPLACE_THIS_VALUE")
.addHeader("PSU-Corporate-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-Corporate-ID-Type", "REPLACE_THIS_VALUE")
.addHeader("Signature", "REPLACE_THIS_VALUE")
.addHeader("TPP-Certificate", "REPLACE_THIS_VALUE")
.addHeader("Date", "REPLACE_THIS_VALUE")
.addHeader("Digest", "REPLACE_THIS_VALUE")
.addHeader("content-type", "application/json")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
const request = require('request');
const options = {
method: 'PUT',
url: 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID',
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'TPP-Transaction-ID': 'REPLACE_THIS_VALUE',
'TPP-Request-ID': 'REPLACE_THIS_VALUE',
'PSU-ID': 'REPLACE_THIS_VALUE',
'PSU-ID-Type': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID-Type': 'REPLACE_THIS_VALUE',
Signature: 'REPLACE_THIS_VALUE',
'TPP-Certificate': 'REPLACE_THIS_VALUE',
Date: 'REPLACE_THIS_VALUE',
Digest: 'REPLACE_THIS_VALUE',
'content-type': 'application/json',
accept: 'application/json'
},
body: {
psuData: {password: '1'},
scaAuthenticationData: '',
authenticationMethodId: ''
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID"
payload := strings.NewReader("{\"psuData\":{\"password\":\"1\"},\"scaAuthenticationData\":\"\",\"authenticationMethodId\":\"\"}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("X-IBM-Client-Id", "REPLACE_THIS_KEY")
req.Header.Add("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Request-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-ID-Type", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Corporate-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Corporate-ID-Type", "REPLACE_THIS_VALUE")
req.Header.Add("Signature", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Certificate", "REPLACE_THIS_VALUE")
req.Header.Add("Date", "REPLACE_THIS_VALUE")
req.Header.Add("Digest", "REPLACE_THIS_VALUE")
req.Header.Add("content-type", "application/json")
req.Header.Add("accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import Foundation
let headers = [
"X-IBM-Client-Id": "REPLACE_THIS_KEY",
"TPP-Transaction-ID": "REPLACE_THIS_VALUE",
"TPP-Request-ID": "REPLACE_THIS_VALUE",
"PSU-ID": "REPLACE_THIS_VALUE",
"PSU-ID-Type": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type": "REPLACE_THIS_VALUE",
"Signature": "REPLACE_THIS_VALUE",
"TPP-Certificate": "REPLACE_THIS_VALUE",
"Date": "REPLACE_THIS_VALUE",
"Digest": "REPLACE_THIS_VALUE",
"content-type": "application/json",
"accept": "application/json"
]
let parameters = [
"psuData": ["password": "1"],
"scaAuthenticationData": "",
"authenticationMethodId": ""
] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "PUT"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
{
"transactionStatus": "RJCT",
"psuMessage": "",
"tppMessages": [
{
"category": "",
"code": "CONSENT_INVALID",
"path": "",
"text": ""
}
],
"scaMethods": [
{
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
}
],
"chosenScaMethod": {
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
},
"challengeData": {
"image": "",
"data": "",
"imageLink": "",
"otpMaxLength": 0,
"otpFormat": "integer",
"additionalInformation": ""
},
"_links": {
"redirect": "",
"updatePsuIdentification": "",
"updatePsuAuthentication": "",
"selectAuthenticationMethod": "",
"authoriseTransaction": "",
"self": "",
"updateProprietaryData": "",
"status": ""
}
}
Get Bulk Payment Request
Requests the content of a bulk payment initiation object. This is returning the data for the TPP especially in cases, where the consent was directly managed between ASPSP and PSU e.g. in a re-direct SCA Approach.
Identification of the aspsp
{
"default": ""
}
Type of payment
{
"default": "sepa-credit-transfers",
"enum": [
"sepa-credit-transfers",
"cross-border-credit-transfers",
"instant-sepa-credit-transfers",
"target-2-payments",
"sdcl-sepa-credit-transfers",
"urgent-sepa-credit-transfers"
]
}
Identification of the bulk payment
{
"default": ""
}
ID of the transaction as determined by the initiating party.
{
"default": ""
}
ID of the request, unique to the call, as determined bu the initiating party.
{
"default": ""
}
User identification in ASPSP
{
"default": ""
}
Type of the PSU-ID, needed in scenarios where PSUs have several PSU-IDs as access possibility.
{
"default": ""
}
Corporate User identification in ASPSP
{
"default": ""
}
Might be mandated in the ASPSPs documentation. Only used in a corporate context.
{
"default": ""
}
A signature of the request by the TPP on application level. This might be mandated by ASPSP.
{
"default": ""
}
The certificate used for signing the request, in base64 encoding. Shall be contained if the signature is used.
{
"default": ""
}
Request date
{
"pattern": "yyyy-MM-dd'T'hh:MM:ss.SSS"
}
Bad Request.
Unauthorized.
Forbidden.
Not Found.
Method Not Allowed.
Not Acceptable.
Request Timeout.
Unsupported Media Type.
Too Many Requests.
Internal Server Error.
Service Unavailable.
Gatewaty Timeout.
curl --request GET \
--url https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID \
--header 'Date: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID: REPLACE_THIS_VALUE' \
--header 'PSU-Corporate-ID-Type: REPLACE_THIS_VALUE' \
--header 'PSU-ID: REPLACE_THIS_VALUE' \
--header 'PSU-ID-Type: REPLACE_THIS_VALUE' \
--header 'Signature: REPLACE_THIS_VALUE' \
--header 'TPP-Certificate: REPLACE_THIS_VALUE' \
--header 'TPP-Request-ID: REPLACE_THIS_VALUE' \
--header 'TPP-Transaction-ID: REPLACE_THIS_VALUE' \
--header 'X-IBM-Client-Id: REPLACE_THIS_KEY' \
--header 'accept: application/json'
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
request["X-IBM-Client-Id"] = 'REPLACE_THIS_KEY'
request["TPP-Transaction-ID"] = 'REPLACE_THIS_VALUE'
request["TPP-Request-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-ID-Type"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID"] = 'REPLACE_THIS_VALUE'
request["PSU-Corporate-ID-Type"] = 'REPLACE_THIS_VALUE'
request["Signature"] = 'REPLACE_THIS_VALUE'
request["TPP-Certificate"] = 'REPLACE_THIS_VALUE'
request["Date"] = 'REPLACE_THIS_VALUE'
request["accept"] = 'application/json'
response = http.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("site1.sibsapimarket.com:8445")
headers = {
'X-IBM-Client-Id': "REPLACE_THIS_KEY",
'TPP-Transaction-ID': "REPLACE_THIS_VALUE",
'TPP-Request-ID': "REPLACE_THIS_VALUE",
'PSU-ID': "REPLACE_THIS_VALUE",
'PSU-ID-Type': "REPLACE_THIS_VALUE",
'PSU-Corporate-ID': "REPLACE_THIS_VALUE",
'PSU-Corporate-ID-Type': "REPLACE_THIS_VALUE",
'Signature': "REPLACE_THIS_VALUE",
'TPP-Certificate': "REPLACE_THIS_VALUE",
'Date': "REPLACE_THIS_VALUE",
'accept': "application/json"
}
conn.request("GET", "/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8445",
CURLOPT_URL => "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Date: REPLACE_THIS_VALUE",
"PSU-Corporate-ID: REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type: REPLACE_THIS_VALUE",
"PSU-ID: REPLACE_THIS_VALUE",
"PSU-ID-Type: REPLACE_THIS_VALUE",
"Signature: REPLACE_THIS_VALUE",
"TPP-Certificate: REPLACE_THIS_VALUE",
"TPP-Request-ID: REPLACE_THIS_VALUE",
"TPP-Transaction-ID: REPLACE_THIS_VALUE",
"X-IBM-Client-Id: REPLACE_THIS_KEY",
"accept: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")
.get()
.addHeader("X-IBM-Client-Id", "REPLACE_THIS_KEY")
.addHeader("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
.addHeader("TPP-Request-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-ID-Type", "REPLACE_THIS_VALUE")
.addHeader("PSU-Corporate-ID", "REPLACE_THIS_VALUE")
.addHeader("PSU-Corporate-ID-Type", "REPLACE_THIS_VALUE")
.addHeader("Signature", "REPLACE_THIS_VALUE")
.addHeader("TPP-Certificate", "REPLACE_THIS_VALUE")
.addHeader("Date", "REPLACE_THIS_VALUE")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
const request = require('request');
const options = {
method: 'GET',
url: 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID',
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'TPP-Transaction-ID': 'REPLACE_THIS_VALUE',
'TPP-Request-ID': 'REPLACE_THIS_VALUE',
'PSU-ID': 'REPLACE_THIS_VALUE',
'PSU-ID-Type': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID': 'REPLACE_THIS_VALUE',
'PSU-Corporate-ID-Type': 'REPLACE_THIS_VALUE',
Signature: 'REPLACE_THIS_VALUE',
'TPP-Certificate': 'REPLACE_THIS_VALUE',
Date: 'REPLACE_THIS_VALUE',
accept: 'application/json'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-IBM-Client-Id", "REPLACE_THIS_KEY")
req.Header.Add("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Request-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-ID-Type", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Corporate-ID", "REPLACE_THIS_VALUE")
req.Header.Add("PSU-Corporate-ID-Type", "REPLACE_THIS_VALUE")
req.Header.Add("Signature", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Certificate", "REPLACE_THIS_VALUE")
req.Header.Add("Date", "REPLACE_THIS_VALUE")
req.Header.Add("accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import Foundation
let headers = [
"X-IBM-Client-Id": "REPLACE_THIS_KEY",
"TPP-Transaction-ID": "REPLACE_THIS_VALUE",
"TPP-Request-ID": "REPLACE_THIS_VALUE",
"PSU-ID": "REPLACE_THIS_VALUE",
"PSU-ID-Type": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID": "REPLACE_THIS_VALUE",
"PSU-Corporate-ID-Type": "REPLACE_THIS_VALUE",
"Signature": "REPLACE_THIS_VALUE",
"TPP-Certificate": "REPLACE_THIS_VALUE",
"Date": "REPLACE_THIS_VALUE",
"accept": "application/json"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
{
"transactionStatus": "RJCT",
"bulkPaymentId": "",
"debtorAccount": {
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HZM"
},
"debtorName": "Ollie Thornton",
"batchBookingPreferred": false,
"paymentInformationId": "6628199133872128",
"requestedExecutionDate": "9999-12-31",
"transactionFees": {
"currency": "EUR",
"content": "0"
},
"transactionFeeIndicator": true,
"payments": [
{
"instructedAmount": {
"currency": "EUR",
"content": "0"
},
"endToEndIdentification": "",
"creditorAccount": {
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KSI"
},
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
{
"transactionStatus": "RJCT",
"bulkPaymentId": "",
"debtorAccount": {
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "HZM"
},
"debtorName": "Ollie Thornton",
"batchBookingPreferred": false,
"paymentInformationId": "6628199133872128",
"requestedExecutionDate": "9999-12-31",
"transactionFees": {
"currency": "EUR",
"content": "0"
},
"transactionFeeIndicator": true,
"payments": [
{
"instructedAmount": {
"currency": "EUR",
"content": "0"
},
"endToEndIdentification": "",
"creditorAccount": {
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "KSI"
},
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
"creditorClearingCode": "6216580949237323",
"remittanceInformationUnstructured": "",
"purposeCode": "lenl",
"chargeBearer": "SHAR",
"creditorAgentName": "6370594291369644",
"creditorAgentAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
"paymentStatus": "RJCT",
"requestedExecutionDate": "9999-12-31"
},
{
"instructedAmount": {
"currency": "EUR",
"content": "0"
},
"endToEndIdentification": "",
"creditorAccount": {
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "IFO"
},
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
"creditorClearingCode": "5610099725855525",
"remittanceInformationUnstructured": "",
"purposeCode": "nukg",
"chargeBearer": "SHAR",
"creditorAgentName": "3528689091936242",
"creditorAgentAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
"paymentStatus": "RJCT",
"requestedExecutionDate": "9999-12-31"
},
{
"instructedAmount": {
"currency": "EUR",
"content": "0"
},
"endToEndIdentification": "",
"creditorAccount": {
"iban": "PT000",
"bban": "1",
"pan": "",
"maskedPan": "",
"msisdn": "",
"currency": "NMV"
},
"creditorAgent": "ABCDEFABC0A",
"creditorName": "a",
"creditorAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
"creditorClearingCode": "36760759762534",
"remittanceInformationUnstructured": "",
"purposeCode": "pawe",
"chargeBearer": "SHAR",
"creditorAgentName": "36498060460098",
"creditorAgentAddress": {
"street": "",
"buildingNumber": "",
"city": "",
"postalCode": "",
"country": ""
},
"paymentStatus": "RJCT",
"requestedExecutionDate": "9999-12-31"
}
]
}
x
Cancel Bulk Payment Request
Cancels a bulk payment initiation request at the ASPSP.
Identification of the aspsp
{
"default": ""
}
Type of payment
{
"default": "sepa-credit-transfers",
"enum": [
"sepa-credit-transfers",
"cross-border-credit-transfers",
"instant-sepa-credit-transfers",
"target-2-payments",
"sdcl-sepa-credit-transfers",
"urgent-sepa-credit-transfers"
]
}
Identification of the bulk payment
{
"default": ""
}
ID of the transaction as determined by the initiating party.
{
"default": ""
}
ID of the request, unique to the call, as determined bu the initiating party.
{
"default": ""
}
A signature of the request by the TPP on application level. This might be mandated by ASPSP.
{
"default": ""
}
The certificate used for signing the request, in base64 encoding. Shall be contained if the signature is used.
{
"default": ""
}
URI of the TPP, where the transaction flow shall be redirected to after a Redirect. Shall be contained at least if the tppRedirectPreferred parameter is set to true or is missing.
{
"default": ""
}
Request date
{
"pattern": "yyyy-MM-dd'T'hh:MM:ss.SSS"
}
Bad Request.
Unauthorized.
Forbidden.
Not Found.
Method Not Allowed.
Not Acceptable.
Request Timeout.
Unsupported Media Type.
Too Many Requests.
Internal Server Error.
Service Unavailable.
Gatewaty Timeout.
curl --request DELETE \
--url https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID \
--header 'Date: REPLACE_THIS_VALUE' \
--header 'Signature: REPLACE_THIS_VALUE' \
--header 'TPP-Certificate: REPLACE_THIS_VALUE' \
--header 'TPP-Redirect-URI: REPLACE_THIS_VALUE' \
--header 'TPP-Request-ID: REPLACE_THIS_VALUE' \
--header 'TPP-Transaction-ID: REPLACE_THIS_VALUE' \
--header 'X-IBM-Client-Id: REPLACE_THIS_KEY' \
--header 'accept: application/json'
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Delete.new(url)
request["X-IBM-Client-Id"] = 'REPLACE_THIS_KEY'
request["TPP-Transaction-ID"] = 'REPLACE_THIS_VALUE'
request["TPP-Request-ID"] = 'REPLACE_THIS_VALUE'
request["Signature"] = 'REPLACE_THIS_VALUE'
request["TPP-Certificate"] = 'REPLACE_THIS_VALUE'
request["TPP-Redirect-URI"] = 'REPLACE_THIS_VALUE'
request["Date"] = 'REPLACE_THIS_VALUE'
request["accept"] = 'application/json'
response = http.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("site1.sibsapimarket.com:8445")
headers = {
'X-IBM-Client-Id': "REPLACE_THIS_KEY",
'TPP-Transaction-ID': "REPLACE_THIS_VALUE",
'TPP-Request-ID': "REPLACE_THIS_VALUE",
'Signature': "REPLACE_THIS_VALUE",
'TPP-Certificate': "REPLACE_THIS_VALUE",
'TPP-Redirect-URI': "REPLACE_THIS_VALUE",
'Date': "REPLACE_THIS_VALUE",
'accept': "application/json"
}
conn.request("DELETE", "/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8445",
CURLOPT_URL => "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Date: REPLACE_THIS_VALUE",
"Signature: REPLACE_THIS_VALUE",
"TPP-Certificate: REPLACE_THIS_VALUE",
"TPP-Redirect-URI: REPLACE_THIS_VALUE",
"TPP-Request-ID: REPLACE_THIS_VALUE",
"TPP-Transaction-ID: REPLACE_THIS_VALUE",
"X-IBM-Client-Id: REPLACE_THIS_KEY",
"accept: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")
.delete(null)
.addHeader("X-IBM-Client-Id", "REPLACE_THIS_KEY")
.addHeader("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
.addHeader("TPP-Request-ID", "REPLACE_THIS_VALUE")
.addHeader("Signature", "REPLACE_THIS_VALUE")
.addHeader("TPP-Certificate", "REPLACE_THIS_VALUE")
.addHeader("TPP-Redirect-URI", "REPLACE_THIS_VALUE")
.addHeader("Date", "REPLACE_THIS_VALUE")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
const request = require('request');
const options = {
method: 'DELETE',
url: 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID',
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'TPP-Transaction-ID': 'REPLACE_THIS_VALUE',
'TPP-Request-ID': 'REPLACE_THIS_VALUE',
Signature: 'REPLACE_THIS_VALUE',
'TPP-Certificate': 'REPLACE_THIS_VALUE',
'TPP-Redirect-URI': 'REPLACE_THIS_VALUE',
Date: 'REPLACE_THIS_VALUE',
accept: 'application/json'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("X-IBM-Client-Id", "REPLACE_THIS_KEY")
req.Header.Add("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Request-ID", "REPLACE_THIS_VALUE")
req.Header.Add("Signature", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Certificate", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Redirect-URI", "REPLACE_THIS_VALUE")
req.Header.Add("Date", "REPLACE_THIS_VALUE")
req.Header.Add("accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import Foundation
let headers = [
"X-IBM-Client-Id": "REPLACE_THIS_KEY",
"TPP-Transaction-ID": "REPLACE_THIS_VALUE",
"TPP-Request-ID": "REPLACE_THIS_VALUE",
"Signature": "REPLACE_THIS_VALUE",
"TPP-Certificate": "REPLACE_THIS_VALUE",
"TPP-Redirect-URI": "REPLACE_THIS_VALUE",
"Date": "REPLACE_THIS_VALUE",
"accept": "application/json"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "DELETE"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
{
"transactionStatus": "RJCT",
"_links": {
"redirect": "",
"updatePsuIdentification": "",
"updatePsuAuthentication": "",
"selectAuthenticationMethod": "",
"authoriseTransaction": "",
"self": "",
"updateProprietaryData": "",
"status": ""
},
"psuMessage": "43",
"tppMessage": [
{
"category": "",
"code": "CONSENT_INVALID",
"path": "",
"text": ""
}
],
"transactionFees": {
"currency": "EUR",
"content": "0"
},
"transactionFeeIndicator": true,
"scaMethods": [
{
"authenticationType": "SMS_OTP",
"authenticationVersion": "",
"authenticationMethodId": "",
"name": "",
"explanation": ""
}
]
}
/{aspsp-cde}/v1-0-3/bulk-payments/{payment-product}/{bulk-payment-id}/status
Get Bulk Status Request
Request to check the status of a bulk payment initiation.
Identification of the aspsp
{
"default": ""
}
Type of payment
{
"default": "sepa-credit-transfers",
"enum": [
"sepa-credit-transfers",
"cross-border-credit-transfers",
"instant-sepa-credit-transfers",
"target-2-payments",
"sdcl-sepa-credit-transfers",
"urgent-sepa-credit-transfers"
]
}
Identification of the bulk payment
{
"default": ""
}
ID of the transaction as determined by the initiating party.
{
"default": ""
}
A signature of the request by the TPP on application level. This might be mandated by ASPSP.
{
"default": ""
}
The certificate used for signing the request, in base64 encoding. Shall be contained if the signature is used.
{
"default": ""
}
ID of the request, unique to the call, as determined bu the initiating party.
{
"default": ""
}
Request date
{
"pattern": "yyyy-MM-dd'T'hh:MM:ss.SSS"
}
Bad Request.
Unauthorized.
Forbidden.
Not Found.
Method Not Allowed.
Not Acceptable.
Request Timeout.
Unsupported Media Type.
Too Many Requests.
Internal Server Error.
Service Unavailable.
Gatewaty Timeout.
curl --request GET \
--url https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status \
--header 'Date: REPLACE_THIS_VALUE' \
--header 'Signature: REPLACE_THIS_VALUE' \
--header 'TPP-Certificate: REPLACE_THIS_VALUE' \
--header 'TPP-Request-ID: REPLACE_THIS_VALUE' \
--header 'TPP-Transaction-ID: REPLACE_THIS_VALUE' \
--header 'X-IBM-Client-Id: REPLACE_THIS_KEY' \
--header 'accept: application/json'
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
request["X-IBM-Client-Id"] = 'REPLACE_THIS_KEY'
request["TPP-Transaction-ID"] = 'REPLACE_THIS_VALUE'
request["Signature"] = 'REPLACE_THIS_VALUE'
request["TPP-Certificate"] = 'REPLACE_THIS_VALUE'
request["TPP-Request-ID"] = 'REPLACE_THIS_VALUE'
request["Date"] = 'REPLACE_THIS_VALUE'
request["accept"] = 'application/json'
response = http.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("site1.sibsapimarket.com:8445")
headers = {
'X-IBM-Client-Id': "REPLACE_THIS_KEY",
'TPP-Transaction-ID': "REPLACE_THIS_VALUE",
'Signature': "REPLACE_THIS_VALUE",
'TPP-Certificate': "REPLACE_THIS_VALUE",
'TPP-Request-ID': "REPLACE_THIS_VALUE",
'Date': "REPLACE_THIS_VALUE",
'accept': "application/json"
}
conn.request("GET", "/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8445",
CURLOPT_URL => "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Date: REPLACE_THIS_VALUE",
"Signature: REPLACE_THIS_VALUE",
"TPP-Certificate: REPLACE_THIS_VALUE",
"TPP-Request-ID: REPLACE_THIS_VALUE",
"TPP-Transaction-ID: REPLACE_THIS_VALUE",
"X-IBM-Client-Id: REPLACE_THIS_KEY",
"accept: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status")
.get()
.addHeader("X-IBM-Client-Id", "REPLACE_THIS_KEY")
.addHeader("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
.addHeader("Signature", "REPLACE_THIS_VALUE")
.addHeader("TPP-Certificate", "REPLACE_THIS_VALUE")
.addHeader("TPP-Request-ID", "REPLACE_THIS_VALUE")
.addHeader("Date", "REPLACE_THIS_VALUE")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
const request = require('request');
const options = {
method: 'GET',
url: 'https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status',
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'TPP-Transaction-ID': 'REPLACE_THIS_VALUE',
Signature: 'REPLACE_THIS_VALUE',
'TPP-Certificate': 'REPLACE_THIS_VALUE',
'TPP-Request-ID': 'REPLACE_THIS_VALUE',
Date: 'REPLACE_THIS_VALUE',
accept: 'application/json'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-IBM-Client-Id", "REPLACE_THIS_KEY")
req.Header.Add("TPP-Transaction-ID", "REPLACE_THIS_VALUE")
req.Header.Add("Signature", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Certificate", "REPLACE_THIS_VALUE")
req.Header.Add("TPP-Request-ID", "REPLACE_THIS_VALUE")
req.Header.Add("Date", "REPLACE_THIS_VALUE")
req.Header.Add("accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import Foundation
let headers = [
"X-IBM-Client-Id": "REPLACE_THIS_KEY",
"TPP-Transaction-ID": "REPLACE_THIS_VALUE",
"Signature": "REPLACE_THIS_VALUE",
"TPP-Certificate": "REPLACE_THIS_VALUE",
"TPP-Request-ID": "REPLACE_THIS_VALUE",
"Date": "REPLACE_THIS_VALUE",
"accept": "application/json"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://site1.sibsapimarket.com:8445/sibs/apimarket-sb/REPLACE_ASPSP-CDE/v1-0-3/bulk-payments/sepa-credit-transfers/REPLACE_BULK-PAYMENT-ID/status")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
Definitions
Identifier of the addressed account.
{
"type": "object",
"properties": {
"iban": {
"description": "This data element is used in a mutually exclusive way with BBAN.",
"type": "string",
"pattern": "^[A-Z]{2,2}[0-9]{2,2}[a-zA-Z0-9]{1,30}$",
"default": "PT000"
},
"bban": {
"description": "This data element is used for payment accounts which have no IBAN.",
"type": "string",
"default": "1",
"pattern": "^[a-zA-Z0-9]{1,30}$"
},
"pan": {
"description": "Reserved for future use. Primary Account Number (PAN) of a card, can be tokenised by the ASPSP due to PCI DSS requirements.",
"type": "string",
"maxLength": 35,
"default": ""
},
"maskedPan": {
"description": "Reserved for future use. Primary Account Number (PAN) of a card in a masked form.",
"type": "string",
"maxLength": 35,
"default": ""
},
"msisdn": {
"description": "Reserved for future use. An alias to access a payment account via a registered mobile phone number",
"type": "string",
"maxLength": 35,
"default": ""
},
"currency": {
"description": "ISO 4217 Alpha 3 currency code.",
"type": "string",
"pattern": "^[A-Z]{3,3}$"
}
},
"additionalProperties": false
}
Address
{
"type": "object",
"required": [
"country"
],
"properties": {
"street": {
"description": "Street",
"type": "string",
"maxLength": 70,
"default": ""
},
"buildingNumber": {
"description": "Building Number",
"type": "string",
"default": ""
},
"city": {
"description": "City",
"type": "string",
"default": ""
},
"postalCode": {
"description": "Postal Code",
"type": "string",
"default": ""
},
"country": {
"description": "Country",
"type": "string",
"default": ""
}
},
"additionalProperties": false
}
Amount
{
"type": "object",
"required": [
"currency",
"content"
],
"properties": {
"currency": {
"description": "ISO 4217 currency code\n",
"type": "string",
"pattern": "^[A-Z]{3,3}$",
"default": "EUR"
},
"content": {
"description": "The amount given with fractional digits, where fractions must be compliant to the currency definition.\n\nThe decimal separator is a dot.\n",
"type": "string",
"pattern": "^\\-{0,1}[0-9]{1,9}(\\.[0-9]{0,2}){0,1}$",
"default": "0"
}
},
"additionalProperties": false
}
Array of Authentication object
{
"type": "array",
"items": {
"$ref": "#/definitions/Authentication",
"description": "Authentication Data"
},
"additionalProperties": false
}
Authentication Data
{
"type": "object",
"required": [
"authenticationType",
"authenticationMethodId"
],
"properties": {
"authenticationType": {
"description": "Type of the authentication method.",
"$ref": "#/definitions/AuthenticationType"
},
"authenticationVersion": {
"description": "Depending on the authenticationType. This version can be used by differentiating authentication tools used within performing OTP generation in the same authentication type. This version can be referred to in the ASPSP’s documentation.\n",
"type": "string",
"default": ""
},
"authenticationMethodId": {
"description": "An identification provided by the ASPSP for the later identification of the authentication method selection.\n",
"type": "string",
"maxLength": 35,
"default": ""
},
"name": {
"description": "This is the name of the authentication method defined by the PSU in the Online Banking frontend of the ASPSP. Alternatively this could be a description provided by the ASPSP like “SMS OTP on phone +49160 xxxxx 28”. This name shall be used by the TPP when presenting a list of authentication methods to the PSU, if available.\n",
"type": "string",
"default": ""
},
"explanation": {
"description": "detailed information about the sca method for the PSU.\n",
"type": "string",
"default": ""
}
},
"additionalProperties": false
}
authentication types:
SMS_OTP - An SCA method, where an OTP linked to the transaction to be authorised is sent to the PSU through a SMS channel.
CHIP_OTP - An SCA method, where an OTP is generated by a chip card, e.g. an TOP derived from an EMV cryptogram. To contact the card, the PSU normally needs a (handheld) device. With this device, the PSU either reads the challenging data through a visual interface like flickering or the PSU types in the challenge through the device key pad. The device then derives an OTP from the challenge data and displays the OTP to the PSU.
PHOTO_OTP - An SCA method, where the challenge is a QR code or similar encoded visual data which can be read in by a consumer device or specific mobile app. The device resp. the specific app than derives an OTP from the visual challenge data and displays the OTP to the PSU.
PUSH_OTP - An OTP is pushed to a dedicated authentication APP and displayed to the PSU.
{
"type": "string",
"enum": [
"SMS_OTP",
"CHIP_OTP",
"PHOTO_OTP",
"PUSH_OTP"
],
"default": "SMS_OTP",
"additionalProperties": false
}
Payment initiation object
{
"type": "object",
"properties": {
"instructedAmount": {
"$ref": "#/definitions/Amount"
},
"endToEndIdentification": {
"description": "Unique identification as assigned by the sending party to unambiguously identify this payment.",
"type": "string",
"maxLength": 35,
"default": ""
},
"creditorAccount": {
"$ref": "#/definitions/AccountReference",
"description": ""
},
"creditorAgent": {
"description": "BICFI",
"type": "string",
"pattern": "^[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}$",
"default": "ABCDEFABC0A"
},
"creditorName": {
"description": "Name of the creditor if a “Debited” transaction",
"type": "string",
"maxLength": 70,
"minLength": 1,
"default": "a"
},
"creditorAddress": {
"$ref": "#/definitions/Address",
"description": ""
},
"creditorClearingCode": {
"type": "string",
"description": "Clearing Code of the Creditor Finantial Institution."
},
"remittanceInformationUnstructured": {
"description": "",
"type": "string",
"maxLength": 140,
"default": ""
},
"purposeCode": {
"type": "string",
"description": "Specifies the external purpose code in the format of character string with a maximum length of 4 characters. The list of valid codes is an external code list published.",
"maxLength": 4
},
"chargeBearer": {
"$ref": "#/definitions/ChargeBearer",
"description": "Specifies which party/parties will bear the charges associated with the processing of the payment transaction."
},
"creditorAgentName": {
"type": "string",
"description": "Name of the creditor's agent"
},
"creditorAgentAddress": {
"$ref": "#/definitions/Address",
"description": "Address of the creditors agent"
}
},
"additionalProperties": false,
"required": [
"creditorAccount",
"creditorName",
"creditorAddress",
"instructedAmount"
]
}
Array of Bulk Entries object
{
"type": "array",
"maxItems": 20000,
"minItems": 1,
"items": {
"$ref": "#/definitions/BulkEntry"
},
"additionalProperties": false
}
Bulk Payment initiation object
{
"type": "object",
"properties": {
"instructedAmount": {
"$ref": "#/definitions/Amount"
},
"endToEndIdentification": {
"description": "Unique identification as assigned by the sending party to unambiguously identify this payment.",
"type": "string",
"maxLength": 35,
"default": ""
},
"creditorAccount": {
"$ref": "#/definitions/AccountReference",
"description": ""
},
"creditorAgent": {
"description": "BICFI",
"type": "string",
"pattern": "^[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}$",
"default": "ABCDEFABC0A"
},
"creditorName": {
"description": "Name of the creditor if a “Debited” transaction",
"type": "string",
"maxLength": 70,
"minLength": 1,
"default": "a"
},
"creditorAddress": {
"$ref": "#/definitions/Address",
"description": ""
},
"creditorClearingCode": {
"type": "string",
"maxLength": 35,
"description": "Clearing Code of the Creditor Finantial Institution."
},
"remittanceInformationUnstructured": {
"description": "",
"type": "string",
"maxLength": 140,
"default": ""
},
"purposeCode": {
"type": "string",
"description": "Specifies the external purpose code in the format of character string with a maximum length of 4 characters. The list of valid codes is an external code list published.",
"maxLength": 4
},
"chargeBearer": {
"$ref": "#/definitions/ChargeBearer",
"description": "Specifies which party/parties will bear the charges associated with the processing of the payment transaction."
},
"creditorAgentName": {
"type": "string",
"maxLength": 140,
"description": "Name of the creditor's agent"
},
"creditorAgentAddress": {
"$ref": "#/definitions/Address",
"description": "Address of the creditors agent"
},
"paymentStatus": {
"$ref": "#/definitions/TransactionStatusType",
"description": "In case where the Payment Initiation Request was JSON encoded as defined in Section 5.3.1, the status is returned in this JSON based encoding."
},
"requestedExecutionDate": {
"type": "string",
"description": "Indicates the acceptance of future dated payments (yyyy-MM-dd) by issuing an ASPSP.",
"format": "date",
"default": "9999-12-31"
}
},
"additionalProperties": false,
"required": [
"creditorAccount",
"creditorName",
"creditorAddress",
"instructedAmount",
"paymentStatus"
]
}
Array of Bulk Entries object
{
"type": "array",
"items": {
"$ref": "#/definitions/BulkEntryWStatus"
},
"additionalProperties": false
}
Requested Authentication Data
{
"type": "object",
"properties": {
"image": {
"description": "PNG data (max. 512 kilobyte) to be displayed to the PSU, Base64 encoding , cp. [RFC 4648]. This attribute is used only, when PHOTO_OTP or CHIP_OTP is the selected SCA method.\n",
"type": "string",
"format": "byte",
"default": ""
},
"data": {
"description": "String challenge data",
"type": "string",
"default": ""
},
"imageLink": {
"description": "A link where the ASPSP will provides the challenge image for the TPP.",
"type": "string",
"default": ""
},
"otpMaxLength": {
"description": "The maximal length for the OTP to be typed in by the PSU.",
"type": "number",
"default": 0
},
"otpFormat": {
"description": "The format type of the OTP to be typed in.",
"type": "string",
"enum": [
"characters",
"integer"
],
"default": "integer"
},
"additionalInformation": {
"description": "Additional explanation for the PSU to explain e.g. fallback mechanism for the chosen SCA method. The TPP is obliged to show this to the PSU.",
"type": "string",
"default": ""
}
},
"additionalProperties": false
}
TBD
{
"type": "string",
"enum": [
"DEBT",
"CRED",
"SHAR",
"SLEV"
],
"default": "SHAR",
"additionalProperties": false
}
Error Information.
{
"type": "object",
"properties": {
"tppMessages": {
"$ref": "#/definitions/TppMessageArray",
"description": "Messages to the TPP on operational issues."
}
},
"additionalProperties": false
}
Error and status Information.
{
"type": "object",
"properties": {
"transactionStatus": {
"$ref": "#/definitions/TransactionStatusType",
"description": "The transaction status is filled with codes of the ISO 20022 corresponding element."
},
"tppMessages": {
"$ref": "#/definitions/TppMessageArray",
"description": "Messages to the TPP on operational issues."
}
},
"additionalProperties": false
}
Message error codes.
{
"type": "string",
"enum": [
"SERVICE_BLOCKED",
"CORPORATE_ID_IVALID",
"CONSENT_UNKNOWN",
"CONSENT_INVALID",
"CONSENT_EXPIRED",
"RESOURCE_UNIKNOWN",
"RESOURCE_EXPIRED",
"TIMESTAMP_INVALID",
"PERIOD_INVALID",
"SCA_METHOD_UNKKNOWN",
"TRANSACTION_ID_INVALID",
"PRODUCT_INVALID",
"PRODUCT_UNKNOWN",
"PAYMENT_FAILED",
"REQUIRED_KID_MISSING",
"SESSIONS_NOT_SUPPORTED",
"ACCESS_EXCEEDED",
"REQUESTED_FORMATS_INVALID",
"CARD_INVALID",
"NO_PIIS_ACTIVATION"
],
"default": "CONSENT_INVALID",
"additionalProperties": false
}
Cancels a bulk payment initiation response to TPP.
{
"properties": {
"transactionStatus": {
"$ref": "#/definitions/TransactionStatusBulkType",
"description": "In case where the Cancel Payment Initiation Request was JSON encoded as defined in Section 5.3.1, the status is returned in this JSON based encoding."
},
"_links": {
"$ref": "#/definitions/PaymentLink",
"description": "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): “redirect”: In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. “updatePsuIdentification”: The link to the payment initiation resource, which needs to be updated by the PSU identification. This might be used in an embedded, redirect or decoupled SCA Approach, where the PSU ID was missing in the first request. “updatePsuAuthentication”: The link to the payment initiation resource, which needs to be updated by a PSU password and eventually the PSU identification if not delivered yet. This is used in case of the Embedded or Decoupled SCA approach. “selectAuthenticationMethod” : This is a link to a resource, where the TPP can select the applicable strong customer authentication methods for the PSU, if there were several available authentication methods. This link contained under exactly the same conditions as the data element “authenticationMethods”, see above. “authoriseTransaction” : The link to the payment initiation resource, where the “Payment Authorisation Request” is sent to. This is the link to the resource which will authorise the payment by checking the SCA authentication data within the Embedded SCA approach."
},
"psuMessage": {
"type": "string",
"description": "Text to be displayed to the PSU."
},
"tppMessage": {
"$ref": "#/definitions/TppMessageArray",
"description": "Messages to the TPP on operational issues."
},
"transactionFees": {
"description": "Can be used by the ASPSP to transport transaction fees relevant for the underlying payments.",
"$ref": "#/definitions/Amount"
},
"transactionFeeIndicator": {
"type": "boolean",
"description": "If equals “true”, the transaction will involve specific transaction cost as shown by the ASPSP in their public price list or as agreed between ASPSP and PSU. If equals “false”, the transaction will not involve additional specific transaction costs to the PSU."
},
"scaMethods": {
"description": "This data element might be contained, if SCA is required and if the PSU has a choice between different authentication methods. Depending on the risk management of the ASPSP this choice might be offered before or after the PSU has been identified with the first relevant factor, or if an access token is transported. If this data element is contained, then there is also an hyperlink of type “selectAuthenticationMethods” contained in the response body. These methods shall be presented towards the PSU for selection by the TPP.",
"$ref": "#/definitions/AuthenticationArray"
}
},
"additionalProperties": false,
"required": [
"transactionStatus"
]
}
Returns the content of a bulk payment initiation object.
{
"type": "object",
"required": [
"transactionStatus",
"bulkPaymentId"
],
"properties": {
"transactionStatus": {
"$ref": "#/definitions/TransactionStatusBulkType",
"description": "Status"
},
"bulkPaymentId": {
"description": "Resource identification of the generated bulk payment initiation resource.",
"type": "string",
"default": ""
},
"debtorAccount": {
"$ref": "#/definitions/AccountReference",
"description": "Debtor account"
},
"debtorName": {
"description": "Payment's debtor name.",
"maxLength": 70,
"type": "string"
},
"batchBookingPreferred": {
"type": "boolean",
"description": "If this element equals true, the PSU prefers only one booking entry. If this element equals false, the PSU prefers individual booking of all contained individual transactions. The ASPSP will follow this preference according to contracts agreed on with the PSU."
},
"paymentInformationId": {
"description": "Unique identification as assigned by the sending party to unambiguously identify this bulk payment.",
"maxLength": 35,
"type": "string"
},
"requestedExecutionDate": {
"type": "string",
"format": "date",
"description": "Indicates the acceptance of future dated payments (yyyy-MM-dd) by issuing an ASPSP.",
"default": "9999-12-31"
},
"transactionFees": {
"$ref": "#/definitions/Amount",
"description": "Can be used by the ASPSP to transport transaction fees relevant for the underlying payments."
},
"transactionFeeIndicator": {
"type": "boolean",
"description": "\"If equals “true”, the transaction will involve specific transaction cost as shown by the ASPSP in their public price list or as agreed between ASPSP and PSU. If equals “false”, the transaction will not involve additional specific transaction costs to the PSU.\""
},
"payments": {
"$ref": "#/definitions/BulkEntryArrayWStatus",
"description": "Array of Payment Initiations"
}
},
"additionalProperties": false
}
A list of hyperlinks to be recognized by the TPP.
{
"properties": {
"redirect": {
"description": "A link to an ASPSP site where SCA is performed within the Redirect SCA approach.\n",
"type": "string",
"default": ""
},
"updatePsuIdentification": {
"description": "The link to the payment initiation or account information resource, which needs to be updated by the PSU NextGenPSD2 XS2A Framework – Implementation Guidelines Complex Data Types and Code Lists Published by the Berlin Group under Creative Commons Attribution-NoDerivatives 4.0 International Public License Page 133(ref. License Notice for full license conditions) Attribute Type Condition Description identification if not delivered yet.\n",
"type": "string",
"default": ""
},
"updatePsuAuthentication": {
"description": "The link to the payment initiation or account information resource, which needs to be updated by a PSU password and eventually the PSU identification if not delivered yet.\n",
"type": "string",
"default": ""
},
"selectAuthenticationMethod": {
"description": "This is a link to a resource, where the TPP can select the applicable second factor authentication methods for the PSU, if there were several available authentication methods.\n",
"type": "string",
"default": ""
},
"authoriseTransaction": {
"description": "The link to the payment initiation or consent resource, where the “Transaction Authorisation”Request” is sent to.\nThis is the link to the resource which will authorise the payment or the consent by checking the SCA authentication data within the Embedded SCA approach.\n",
"type": "string",
"default": ""
},
"self": {
"description": "The link to the payment initiation resource created by the request itself. This link can be used later to retrieve the transaction status of the payment initiation.\n",
"type": "string",
"default": ""
},
"updateProprietaryData": {
"description": "The link to the payment initiation or account information resource, which needs to be updated by the proprietary data.\n",
"type": "string",
"default": ""
},
"status": {
"description": "Stgatus of the resource.",
"type": "string",
"default": ""
}
},
"additionalProperties": false
}
Creates a bulk payment initiation request at the ASPSP.
{
"type": "object",
"properties": {
"debtorAccount": {
"$ref": "#/definitions/AccountReference",
"description": ""
},
"debtorName": {
"description": "Payment's debtor name.",
"maxLength": 70,
"type": "string"
},
"batchBookingPreferred": {
"type": "boolean",
"description": "If this element equals true, the PSU prefers only one booking entry. If this element equals false, the PSU prefers individual booking of all contained individual transactions. The ASPSP will follow this preference according to contracts agreed on with the PSU."
},
"paymentInformationId": {
"description": "Unique identification as assigned by the sending party to unambiguously identify this bulk payment.",
"maxLength": 35,
"minLength": 1,
"type": "string"
},
"requestedExecutionDate": {
"type": "string",
"format": "date",
"description": "Indicates the acceptance of future dated payments by issuing an ASPSP."
},
"payments": {
"description": "Array of Payment Initiations",
"$ref": "#/definitions/BulkEntryArray"
}
},
"additionalProperties": false,
"required": [
"payments",
"paymentInformationId"
]
}
Creates a bulk payment initiation response to TPP.
{
"type": "object",
"required": [
"transactionStatus",
"bulkPaymentId",
"_links"
],
"properties": {
"transactionStatus": {
"$ref": "#/definitions/TransactionStatusBulkType",
"description": "The transaction status is filled with codes of the ISO 20022 data table."
},
"bulkPaymentId": {
"description": "Resource identification of the generated bulk payment initiation resource.\n",
"type": "string",
"default": ""
},
"transactionFees": {
"$ref": "#/definitions/Amount",
"description": "Can be used by the ASPSP to transport transaction fees relevant for the underlying payments."
},
"transactionFeeIndicator": {
"description": "If equals \"true\" the transaction will involve specific transaction cost as shown by the ASPSP in their public price list or as agreed between ASPSP and PSU.\n\nIf equals \"false\" the transaction will not involve additional specific transaction costs to the PSU.\n",
"type": "boolean",
"default": false
},
"scaMethods": {
"$ref": "#/definitions/AuthenticationArray",
"description": "This data element might be contained, if SCA is required and if the PSU has a choice between different authentication methods. Depending on the risk management of the ASPSP this choice might be offered before or after the PSU has been identified with the first relevant factor, or if an access token is transported. If this data element is contained, then there is also an hyperlink of type “selectAuthenticationMethods” contained in the response body.\nThese methods shall be presented towards the PSU for selection by the TPP.\n"
},
"chosenScaMethod": {
"$ref": "#/definitions/Authentication",
"description": "This data element is only contained in the response if the APSPS has chosen the Embedded SCA Approach, if the PSU is already identified e.g. with the first relevant factor or alternatively an access token, if SCA is required and if the authentication method is implicitly selected.\n"
},
"challengeData": {
"$ref": "#/definitions/Challenge",
"description": "It is contained in addition to the data element chosenScaMethod if challenge data is needed for SCA.\nIn rare cases this attribute is also used in the context of the psuAuthentication link.\n"
},
"_links": {
"$ref": "#/definitions/PaymentLink",
"description": "\"A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): “redirect”: In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. “oAuth”: In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. “updatePsuIdentification”: The link to the payment initiation resource, which needs to be updated by the PSU identification. This might be used in an embedded, redirect or decoupled SCA Approach, where the PSU ID was missing in the first request. “updatePsuAuthentication”: The link to the payment initiation resource, which needs to be updated by a PSU password and eventually the PSU identification if not delivered yet. This is used in case of the Embedded or Decoupled SCA approach. “selectAuthenticationMethod” : This is a link to a resource, where the TPP can select the applicable strong customer authentication methods for the PSU, if there were several available authentication methods. This link contained under exactly the same conditions as the data element “authenticationMethods”, see above. “authoriseTransaction” : The link to the payment initiation resource, where the “Payment Authorisation Request” is sent to. This is the link to the resource which will authorise the payment by checking the SCA authentication data within the Embedded SCA approach. “self” : The link to the payment initiation resource created by this request. This link can be used to retrieve the resource data. “status”: The link to retrieve the transaction status of the payment initiation.\""
},
"psuMessage": {
"description": "Text to be displayed to the PSU.",
"type": "string",
"default": ""
},
"tppMessages": {
"$ref": "#/definitions/TppMessageArray",
"description": "Messages to the TPP on operational issues."
}
},
"additionalProperties": false
}
Informs TPP about status of a bulk payment initiation.
{
"type": "object",
"required": [
"transactionStatus"
],
"properties": {
"transactionStatus": {
"$ref": "#/definitions/TransactionStatusBulkType",
"description": "In case where the Payment Initiation Request was JSON encoded as defined in Section 5.3.1, the status is returned in this JSON based encoding."
}
},
"additionalProperties": false
}
Updates information related to a previous bulk payment initiation in order to obtain PSUId credentials.
{
"type": "object",
"properties": {
"psuData": {
"$ref": "#/definitions/PSUData",
"description": "Include all credentials related data (e.g., user, password and additional data accordingly with ASPSP requests)"
},
"scaAuthenticationData": {
"description": "SCA authentication data, depending on the chosen authentication method.\n\nif the data is binary, then it is base64 encoded.",
"type": "string",
"default": ""
},
"authenticationMethodId": {
"description": "The authentication method ID as provided by the ASPSP. This property is mandatory in a Select Authentication Method.",
"type": "string",
"default": ""
}
},
"additionalProperties": false
}
Sends an update information related to a previous bulk payment initiation to TPP.
{
"type": "object",
"required": [
"transactionStatus",
"_links"
],
"properties": {
"transactionStatus": {
"$ref": "#/definitions/TransactionStatusBulkType",
"description": "This is the “authentication status” of the consent."
},
"psuMessage": {
"description": "Include all credentiText to be displayed to the PSUals related data (e.g., user, password and additional data accordingly with ASPSP requests)",
"type": "string",
"default": ""
},
"tppMessages": {
"$ref": "#/definitions/TppMessageArray",
"description": "Messages to the TPP on operational issues."
},
"scaMethods": {
"$ref": "#/definitions/AuthenticationArray",
"description": "This data element might be contained, if SCA is required and if the PSU has a choice between different authentication methods. Depending on the risk management of the ASPSP this choice might be offered before or after the PSU has been identified with the first relevant factor, or if an access token is transported. If this data element is contained, then there is also an hyperlink of type \"startAuthorisationWith AuthenticationMethodSelection\" contained in the response body. These methods shall be presented towards the PSU for selection by the TPP."
},
"chosenScaMethod": {
"$ref": "#/definitions/Authentication",
"description": "If the ASPSP has chosen the Embedded SCA Approach, if the PSU is already identified e.g. with the first relevant factor or alternatively an access token, if SCA is required and if the authentication method is implicitly selected."
},
"challengeData": {
"$ref": "#/definitions/Challenge",
"description": "It is contained in addition to the data element chosenScaMethod if challenge data is needed for SCA. In rare cases this attribute is also used in the context of the psuAuthentication link."
},
"_links": {
"$ref": "#/definitions/PaymentLink",
"description": "A list of hyperlinks to be recognised by the TPP. The actual hyperlinks used in the response depend on the dynamical decisions of the ASPSP when processing the request. Remark: All links can be relative or full links, to be decided by the ASPSP. Type of links admitted in this response, (further links might be added for ASPSP defined extensions): “redirect”: In case of an SCA Redirect Approach, the ASPSP is transmitting the link to which to redirect the PSU browser. “oAuth”: In case of a SCA OAuth2 Approach, the ASPSP is transmitting the URI where the configuration of the Authorisation Server can be retrieved. The configuration follows the OAuth 2.0 Authorisation Server Metadata specification. “updatePsuIdentification”: The link to the payment initiation resource, which needs to be updated by the PSU identification. This might be used in an embedded, redirect or decoupled SCA Approach, where the PSU ID was missing in the first request. “updatePsuAuthentication”: The link to the payment initiation resource, which needs to be updated by a PSU password and eventually the PSU identification if not delivered yet. This is used in case of the Embedded or Decoupled SCA approach. “selectAuthenticationMethod” : This is a link to a resource, where the TPP can select the applicable strong customer authentication methods for the PSU, if there were several available authentication methods. This link contained under exactly the same conditions as the data element “authenticationMethods”, see above. “authoriseTransaction” : The link to the payment initiation resource, where the “Payment Authorisation Request” is sent to. This is the link to the resource which will authorise the payment by checking the SCA authentication data within the Embedded SCA approach. “self” : The link to the payment initiation resource created by this request. This link can be used to retrieve the resource data. “status”: The link to retrieve the transaction status of the payment initiation."
}
},
"additionalProperties": false
}
The password or encryptedPassword subfield is used, depending on encryption requirements of the ASPSP as indicated in the corresponding hyperlink contained in the last response message of the ASPSP.
{
"type": "object",
"properties": {
"password": {
"description": "PSU Password.",
"type": "string",
"minLength": 1,
"default": "1"
}
},
"additionalProperties": false
}
Transports additional error information.
{
"required": [
"category",
"code"
],
"properties": {
"category": {
"type": "string",
"default": "",
"description": "Category of the error. Only \"ERROR\" or \"WARNING\" permitted."
},
"code": {
"$ref": "#/definitions/MessageCode",
"description": "Message error code."
},
"path": {
"type": "string",
"default": "",
"description": "Path of the element of the request message which provoked this error message."
},
"text": {
"type": "string",
"maxLength": 512,
"default": "",
"description": "Additional explaining text."
}
},
"additionalProperties": false
}
Messages to the TPP on operational issues.
{
"type": "array",
"items": {
"$ref": "#/definitions/TppMessage",
"description": "Transports additional error information."
},
"additionalProperties": false
}
ISO20022: The transaction status is filled with value of the ISO20022 data table. RCVD : RECEIVED PDNG : PENDING PATC : PARTIALLY ACCEPTED TECHNICAL CORRECT ACTC : ACCEPTED TECHNICAL VALIDATION ACFC : ACCEPTED FUNDS CHECKED ACWC : ACCEPTED WITH CHANGE ACWP : ACCEPTED WITHOUT POSTING ACSP : ACCEPTED SETTLEMENT IN PROCESS ACSC : ACCEPTED SETTLEMENT COMPLETED ACCC : ACCEPTED SETTLEMENT COMPLETED CREDITOR CANC : CANCELED RJCT : REJECTED
{
"type": "string",
"enum": [
"RCVD",
"PDNG",
"PATC",
"ACTC",
"ACFC",
"ACWC",
"ACWP",
"ACSP",
"ACSC",
"ACCC",
"CANC",
"RJCT"
],
"default": "RJCT",
"additionalProperties": false
}
ISO20022: The transaction status is filled with value of the ISO20022 data table. RCVD : RECEIVED PDNG : PENDING PATC : PARTIALLY ACCEPTED TECHNICAL CORRECT PART : PARTIALLY ACCEPTED ACTC : ACCEPTED TECHNICAL VALIDATION ACFC : ACCEPTED FUNDS CHECKED ACSP : ACCEPTED SETTLEMENT IN PROCESS ACSC : ACCEPTED SETTLEMENT COMPLETED ACCC : ACCEPTED SETTLEMENT COMPLETED CREDITOR CANC : CANCELED RJCT : REJECTED
{
"type": "string",
"enum": [
"RCVD",
"PDNG",
"PATC",
"PART",
"ACTC",
"ACFC",
"ACSP",
"ACSC",
"ACCC",
"CANC",
"RJCT"
],
"default": "RJCT",
"additionalProperties": false
}