MultiSafepay_Msp - Version 2.3.3

Version Notes

Tested by MultiSafepay

Download this release

Release Info

Developer MultiSafepay
Extension MultiSafepay_Msp
Version 2.3.3
Comparing to
See all releases


Code changes from version 2.3.2 to 2.3.3

app/code/community/MultiSafepay/Msp/etc/config.xml CHANGED
@@ -9,7 +9,7 @@
9
  <config>
10
  <modules>
11
  <MultiSafepay_Msp>
12
- <version>2.3.2</version>
13
  </MultiSafepay_Msp>
14
  </modules>
15
  <global>
9
  <config>
10
  <modules>
11
  <MultiSafepay_Msp>
12
+ <version>2.3.3</version>
13
  </MultiSafepay_Msp>
14
  </modules>
15
  <global>
app/code/community/MultiSafepay/Msp/etc/system.xml CHANGED
@@ -9,7 +9,7 @@
9
  <config>
10
  <tabs>
11
  <ms translate="label">
12
- <label><![CDATA[<div style="display:inline-block;color:#00adee;text-transform: capitalize;font-size: 120%;font-weight:900;font-family:Tahoma, Geneva, sans-serif;">Multi</div><div style="display:inline-block;color:black;text-transform: capitalize;font-size: 120%;font-weight:900;font-family:Tahoma, Geneva, sans-serif;">Safepay</div><div style="display: inline-block;vertical-align: middle;border: 3px dotted #666;width:8px;height:8px;border-radius:8px;margin-bottom:3px;margin-left:3px;"></div>&nbsp;&nbsp;]]> (2.3.2)</label>
13
  <sort_order>301</sort_order>
14
  <!--<class>admin-system-config-msp</class>-->
15
  </ms>
9
  <config>
10
  <tabs>
11
  <ms translate="label">
12
+ <label><![CDATA[<div style="display:inline-block;color:#00adee;text-transform: capitalize;font-size: 120%;font-weight:900;font-family:Tahoma, Geneva, sans-serif;">Multi</div><div style="display:inline-block;color:black;text-transform: capitalize;font-size: 120%;font-weight:900;font-family:Tahoma, Geneva, sans-serif;">Safepay</div><div style="display: inline-block;vertical-align: middle;border: 3px dotted #666;width:8px;height:8px;border-radius:8px;margin-bottom:3px;margin-left:3px;"></div>&nbsp;&nbsp;]]> (2.3.3)</label>
13
  <sort_order>301</sort_order>
14
  <!--<class>admin-system-config-msp</class>-->
15
  </ms>
lib/multisafepay/MultiSafepay.combined.php CHANGED
@@ -116,7 +116,7 @@ class MultiSafepay {
116
  var $parsed_xml;
117
  var $parsed_root;
118
 
119
- function MultiSafepay() {
120
  $this->cart = new MspCart();
121
  $this->fields = new MspCustomFields();
122
  }
@@ -1043,17 +1043,19 @@ class MultiSafepay {
1043
  function setIp() {
1044
 
1045
  $ip = $_SERVER['REMOTE_ADDR'];
1046
- preg_match("/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/", $ip, $matches);
1047
-
1048
- $this->customer['ipaddress'] = $matches[0];
 
 
1049
 
1050
  if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
1051
 
1052
  $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1053
- preg_match("/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/", $ip, $matches);
1054
 
1055
- if ($matches[0] != '') {
1056
- $this->customer['forwardedip'] = $matches[0];
1057
  } else {
1058
  $this->customer['forwardedip'] = '127.0.0.1';
1059
  }
@@ -1368,7 +1370,7 @@ class msp_gc_xmlparser {
1368
  * Takes in XML data as input( do not include the <xml> tag
1369
  */
1370
 
1371
- function msp_gc_xmlparser($input, $xmlParams = array(XML_OPTION_CASE_FOLDING => 0)) {
1372
 
1373
  // XML PARSE BUG: http://bugs.php.net/bug.php?id=45996
1374
  $input = str_replace('&amp;', '[msp-amp]', $input);
@@ -1500,7 +1502,7 @@ class msp_gc_XmlBuilder {
1500
  var $indent;
1501
  var $stack = array();
1502
 
1503
- function msp_gc_XmlBuilder($indent = ' ') {
1504
  $this->indent = $indent;
1505
  $this->xml = '<?xml version="1.0" encoding="utf-8"?>' . "\n";
1506
  }
@@ -1676,7 +1678,7 @@ class MspCart {
1676
  * , as of now values can be 'USD' or 'GBP'.
1677
  * defaults to 'USD'
1678
  */
1679
- function MspCart($id = '', $key = '', $server_type = "sandbox", $currency = "EUR") {
1680
  $this->merchant_id = $id;
1681
  $this->merchant_key = $key;
1682
  $this->currency = $currency;
@@ -3068,7 +3070,7 @@ class MspMerchantPrivate {
3068
  var $data;
3069
  var $type = "Abstract";
3070
 
3071
- function MspMerchantPrivate() {
3072
 
3073
  }
3074
 
@@ -3121,7 +3123,7 @@ class MspMerchantPrivateData extends MspMerchantPrivate {
3121
  * </stuff>
3122
  * </my-order-id>
3123
  */
3124
- function MspMerchantPrivateData($data = array()) {
3125
  $this->data = $data;
3126
  $this->type = 'merchant-private-data';
3127
  }
@@ -3150,7 +3152,7 @@ class MspMerchantPrivateItemData extends MspMerchantPrivate {
3150
  * </stuff>
3151
  * </my-item-id>
3152
  */
3153
- function MspMerchantPrivateItemData($data = array()) {
3154
  $this->data = $data;
3155
  $this->type = 'merchant-private-item-data';
3156
  }
@@ -3243,7 +3245,7 @@ class MspItem {
3243
  * @param double $numeric_weight the weight of the item
3244
  *
3245
  */
3246
- function MspItem($name, $desc, $qty, $price, $item_weight = '', $numeric_weight = '') {
3247
  $this->item_name = $this->xmlEscape($name);
3248
  $this->item_description = $this->xmlEscape($desc);
3249
  $this->unit_price = $price;
@@ -3294,7 +3296,7 @@ class MspItem {
3294
  * @return void
3295
  */
3296
  function SetTaxTableSelector($tax_selector) {
3297
- $this->tax_table_selector = $tax_selector;
3298
  }
3299
 
3300
  /**
@@ -3383,7 +3385,7 @@ class MspFlatRateShipping {
3383
  * @param string $name a name for the shipping
3384
  * @param double $price the price for this shipping
3385
  */
3386
- function MspFlatRateShipping($name, $price) {
3387
  $this->name = $name;
3388
  $this->price = $price;
3389
  }
@@ -3435,7 +3437,7 @@ class MspShippingFilters {
3435
  var $excluded_state_areas_arr;
3436
  var $excluded_zip_patterns_arr;
3437
 
3438
- function MspShippingFilters() {
3439
  $this->allowed_country_codes_arr = array();
3440
  $this->allowed_postal_patterns_arr = array();
3441
  $this->allowed_state_areas_arr = array();
@@ -3646,7 +3648,7 @@ class MspPickUp {
3646
  * @param string $name the name of this shipping option
3647
  * @param double $price the handling cost (if there is one)
3648
  */
3649
- function MspPickUp($name, $price, $provider = '') {
3650
  $this->price = $price;
3651
  $this->name = $name;
3652
  $this->provider = $provider;
@@ -3692,7 +3694,7 @@ class MspTaxRule {
3692
  var $zip_patterns_arr;
3693
  var $country_area;
3694
 
3695
- function MspTaxRule() {
3696
 
3697
  }
3698
 
@@ -3743,7 +3745,7 @@ class MspDefaultTaxRule extends MspTaxRule {
3743
 
3744
  var $shipping_taxed = false;
3745
 
3746
- function MspDefaultTaxRule($tax_rate, $shipping_taxed = "false") {
3747
  $this->tax_rate = $tax_rate;
3748
  $this->shipping_taxed = $shipping_taxed;
3749
 
@@ -3762,7 +3764,7 @@ class MspDefaultTaxRule extends MspTaxRule {
3762
  */
3763
  class MspAlternateTaxRule extends MspTaxRule {
3764
 
3765
- function MspAlternateTaxRule($tax_rate) {
3766
  $this->tax_rate = $tax_rate;
3767
 
3768
  $this->country_codes_arr = array();
@@ -3784,7 +3786,7 @@ class MspAlternateTaxTable {
3784
  var $tax_rules_arr;
3785
  var $standalone;
3786
 
3787
- function MspAlternateTaxTable($name = "", $standalone = "false") {
3788
  if ($name != "") {
3789
  $this->name = $name;
3790
  $this->tax_rules_arr = array();
@@ -3946,7 +3948,7 @@ class MspCustomField {
3946
  var $descriptionRight = array();
3947
  var $descriptionBottom = array();
3948
 
3949
- function MspCustomField($name = null, $type = null, $label = null) {
3950
  $this->name = $name;
3951
  $this->type = $type;
3952
  $this->label = $label;
@@ -3978,7 +3980,7 @@ class MspCustomFieldOption {
3978
  var $value;
3979
  var $label;
3980
 
3981
- function MspCustomFieldOption($value, $label) {
3982
  $this->value = $value;
3983
  $this->label = $label;
3984
  }
@@ -3991,7 +3993,7 @@ class MspCustomFieldValidation {
3991
  var $data;
3992
  var $error;
3993
 
3994
- function MspCustomFieldValidation($type, $data, $error) {
3995
  $this->type = $type;
3996
  $this->data = $data;
3997
  $this->error = $error;
@@ -4004,7 +4006,7 @@ class MspCustomFieldFilter {
4004
  var $allowed_country_codes_arr;
4005
  var $excluded_country_codes_arr;
4006
 
4007
- function MspCustomFieldFilter() {
4008
  $this->allowed_country_codes_arr = array();
4009
  $this->excluded_country_codes_arr = array();
4010
  }
116
  var $parsed_xml;
117
  var $parsed_root;
118
 
119
+ function __construct() {
120
  $this->cart = new MspCart();
121
  $this->fields = new MspCustomFields();
122
  }
1043
  function setIp() {
1044
 
1045
  $ip = $_SERVER['REMOTE_ADDR'];
1046
+ $isValid = filter_var($ip, FILTER_VALIDATE_IP);
1047
+
1048
+ if($isValid) {
1049
+ $this->customer['ipaddress'] = $isValid;
1050
+ }
1051
 
1052
  if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
1053
 
1054
  $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1055
+ $isValid = filter_var($ip, FILTER_VALIDATE_IP);
1056
 
1057
+ if ($isValid) {
1058
+ $this->customer['forwardedip'] = $isValid;
1059
  } else {
1060
  $this->customer['forwardedip'] = '127.0.0.1';
1061
  }
1370
  * Takes in XML data as input( do not include the <xml> tag
1371
  */
1372
 
1373
+ function __construct($input, $xmlParams = array(XML_OPTION_CASE_FOLDING => 0)) {
1374
 
1375
  // XML PARSE BUG: http://bugs.php.net/bug.php?id=45996
1376
  $input = str_replace('&amp;', '[msp-amp]', $input);
1502
  var $indent;
1503
  var $stack = array();
1504
 
1505
+ function __construct($indent = ' ') {
1506
  $this->indent = $indent;
1507
  $this->xml = '<?xml version="1.0" encoding="utf-8"?>' . "\n";
1508
  }
1678
  * , as of now values can be 'USD' or 'GBP'.
1679
  * defaults to 'USD'
1680
  */
1681
+ function __construct($id = '', $key = '', $server_type = "sandbox", $currency = "EUR") {
1682
  $this->merchant_id = $id;
1683
  $this->merchant_key = $key;
1684
  $this->currency = $currency;
3070
  var $data;
3071
  var $type = "Abstract";
3072
 
3073
+ function __construct() {
3074
 
3075
  }
3076
 
3123
  * </stuff>
3124
  * </my-order-id>
3125
  */
3126
+ function __construct($data = array()) {
3127
  $this->data = $data;
3128
  $this->type = 'merchant-private-data';
3129
  }
3152
  * </stuff>
3153
  * </my-item-id>
3154
  */
3155
+ function __construct($data = array()) {
3156
  $this->data = $data;
3157
  $this->type = 'merchant-private-item-data';
3158
  }
3245
  * @param double $numeric_weight the weight of the item
3246
  *
3247
  */
3248
+ function __construct($name, $desc, $qty, $price, $item_weight = '', $numeric_weight = '') {
3249
  $this->item_name = $this->xmlEscape($name);
3250
  $this->item_description = $this->xmlEscape($desc);
3251
  $this->unit_price = $price;
3296
  * @return void
3297
  */
3298
  function SetTaxTableSelector($tax_selector) {
3299
+ $this->tax_table_selector = (string) $tax_selector;
3300
  }
3301
 
3302
  /**
3385
  * @param string $name a name for the shipping
3386
  * @param double $price the price for this shipping
3387
  */
3388
+ function __construct($name, $price) {
3389
  $this->name = $name;
3390
  $this->price = $price;
3391
  }
3437
  var $excluded_state_areas_arr;
3438
  var $excluded_zip_patterns_arr;
3439
 
3440
+ function __construct() {
3441
  $this->allowed_country_codes_arr = array();
3442
  $this->allowed_postal_patterns_arr = array();
3443
  $this->allowed_state_areas_arr = array();
3648
  * @param string $name the name of this shipping option
3649
  * @param double $price the handling cost (if there is one)
3650
  */
3651
+ function __construct($name, $price, $provider = '') {
3652
  $this->price = $price;
3653
  $this->name = $name;
3654
  $this->provider = $provider;
3694
  var $zip_patterns_arr;
3695
  var $country_area;
3696
 
3697
+ function __construct() {
3698
 
3699
  }
3700
 
3745
 
3746
  var $shipping_taxed = false;
3747
 
3748
+ function __construct($tax_rate, $shipping_taxed = "false") {
3749
  $this->tax_rate = $tax_rate;
3750
  $this->shipping_taxed = $shipping_taxed;
3751
 
3764
  */
3765
  class MspAlternateTaxRule extends MspTaxRule {
3766
 
3767
+ function __construct($tax_rate) {
3768
  $this->tax_rate = $tax_rate;
3769
 
3770
  $this->country_codes_arr = array();
3786
  var $tax_rules_arr;
3787
  var $standalone;
3788
 
3789
+ function __construct($name = "", $standalone = "false") {
3790
  if ($name != "") {
3791
  $this->name = $name;
3792
  $this->tax_rules_arr = array();
3948
  var $descriptionRight = array();
3949
  var $descriptionBottom = array();
3950
 
3951
+ function __construct($name = null, $type = null, $label = null) {
3952
  $this->name = $name;
3953
  $this->type = $type;
3954
  $this->label = $label;
3980
  var $value;
3981
  var $label;
3982
 
3983
+ function __construct($value, $label) {
3984
  $this->value = $value;
3985
  $this->label = $label;
3986
  }
3993
  var $data;
3994
  var $error;
3995
 
3996
+ function __construct($type, $data, $error) {
3997
  $this->type = $type;
3998
  $this->data = $data;
3999
  $this->error = $error;
4006
  var $allowed_country_codes_arr;
4007
  var $excluded_country_codes_arr;
4008
 
4009
+ function __construct() {
4010
  $this->allowed_country_codes_arr = array();
4011
  $this->excluded_country_codes_arr = array();
4012
  }
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MultiSafepay_Msp</name>
4
- <version>2.3.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL 3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>With this module you can use all payment methods offered by MultiSafepay</description>
11
  <notes>Tested by MultiSafepay</notes>
12
  <authors><author><name>MultiSafepay</name><user>MultiSafepayDev</user><email>Info@multisafepay.com</email></author></authors>
13
- <date>2017-01-25</date>
14
- <time>13:15:40</time>
15
- <contents><target name="magecommunity"><dir name="MultiSafepay"><dir name="Msp"><dir name="Block"><dir name="Adminhtml"><dir name="Servicecost"><dir name="Totals"><file name="Creditmemo.php" hash="e403b6a33c2543395aa25016cc52626c"/><file name="Invoice.php" hash="822a1696e6827e183b96cefa1d2582ce"/><file name="Order.php" hash="a445ecb050e7ce19bf67208bf3e23131"/></dir></dir></dir><file name="Bno.php" hash="b2dd61062c2c27ee4406a3f3ed8ec8b7"/><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="3f68146a2f124b51ba1b866c1816c1e1"/></dir></dir></dir><file name="Creditcards.php" hash="d89e6351e7737d1163990e1d12511253"/><file name="Default.php" hash="196e02bdf9df0195c19bcd965b70e4e3"/><file name="Einvoice.php" hash="1ab39d03c145f2d8c877963a4b8b3ff3"/><file name="IdealIssuers.php" hash="733db7b86ba5507e4502176fe1803efd"/><file name="Klarna.php" hash="2199e9a10121ca0553d9cf125d7e6e49"/><file name="Link.php" hash="f9fd1820a8431d93139686b1b7292250"/><dir name="Servicecost"><dir name="Order"><file name="Total.php" hash="0e1efe7403334adce5cea4a2cab5349b"/><file name="Totals.php" hash="89dc0bee3dcbdf8291d85a0db968e93b"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="874982e75f9df72955edb51377eea3fc"/></dir><dir name="Model"><file name="Abstract.php" hash="ba8079cb854ab74d5276bfe253a8cac0"/><dir name="Api"><file name="Autoloader.php" hash="fca2821f678e2ce48d45e72e393cf37b"/><file name="Client.php" hash="fc4ba6f5117b5c35a56e55870bc8c752"/><dir name="Object"><file name="Affiliates.php" hash="0b44dbfc0d8710565cbd13951735d33d"/><file name="Core.php" hash="d215fb7f25019f7daad749e81c107f14"/><file name="Gateways.php" hash="6f8f5fd070cf3e24ba131e0477890ef8"/><file name="Issuers.php" hash="a61760ba32813f7740cc67090788132f"/><file name="Orders.php" hash="09699f59b047ab272462390ebce67e39"/></dir><file name="Paylink.php" hash="7303ec00c02f72975b5eed04282105fe"/><file name="Shipment.php" hash="eaff3fffdea7bed6c733325088b665fd"/></dir><file name="Base.php" hash="8bb8c076c6bcbf113b199bc3c8d9ae49"/><file name="Checkout.php" hash="26ff638915df4773f9dce24683163ccc"/><dir name="Config"><dir name="Sources"><file name="Accounts.php" hash="8e1228aa67d459dbc598ecb801b7a451"/><file name="Creditcards.php" hash="3d632af450fde93dca7d3998cda94bb6"/><file name="Fields.php" hash="2b2338147178664a4d29423b0bc9ab2d"/><file name="Groups.php" hash="44d2e865c1a88870c93ecb10455543c1"/><file name="Languages.php" hash="af19ca8647d353481fad4319dfdc8d09"/><dir name="Order"><file name="Currency.php" hash="b647513ac08f53ac81d09d8926f2f886"/><file name="Email.php" hash="cc6da2a79d873ed67086f23a70b096cf"/></dir><file name="TaxClasses.php" hash="56d52f22239542fc965fc0bbd34bcff8"/></dir></dir><dir name="Gateway"><file name="Abstract.php" hash="2dd33c9f541bbe1af94c62590068dfb4"/><file name="Amex.php" hash="6b6baed7457c8c3043c61a46b46d932a"/><file name="Babygiftcard.php" hash="023eb1c0da2cf3c3e77d87ea429ec070"/><file name="Banktransfer.php" hash="9218c21628d646c37907e3ffeba8e7c6"/><file name="Beautyandwellness.php" hash="28ed51984587be1519fe0188d4a775c8"/><file name="Boekenbon.php" hash="cf1aef4f6007fcf488cbfdc6564398e2"/><file name="Creditcard.php" hash="f2ff790eb2d7dc6d36e386a551085ef5"/><file name="Default.php" hash="76e4d2306b681ac8f76c57eba3ee56fb"/><file name="Degrotespeelgoedwinkel.php" hash="c4e47624c833c4b18659e294ddcf85a9"/><file name="DirectDebit.php" hash="321a1ae72502d2885e04cd1c1ca43d89"/><file name="DirectEbanking.php" hash="3d90e75d9cacf8fe9344afc553104d6d"/><file name="Dotpay.php" hash="14af496acc40e56577e6eb5869e0d6b0"/><file name="Ebon.php" hash="1ae6cc3469bfc18e92ffa69099642d89"/><file name="Einvoice.php" hash="ada913cdb2dbfad88cc4e629c2227a96"/><file name="Eps.php" hash="5f8a35d94e58fd8695dfecfcfbca1b16"/><file name="Erotiekbon.php" hash="99661e6caff7e49c492d0aeac6d5c2a4"/><file name="Fashioncheque.php" hash="4ec0609a04738df2efb1adf5b4e690de"/><file name="Fashiongiftcard.php" hash="a770817e3c840535b85abdcd4ecf8180"/><file name="Fastcheckout.php" hash="e370882bfa34a2ead9d2a4323f4962e3"/><file name="Ferbuy.php" hash="4ec9ca811408cbfdb5dc3f7a9daf279a"/><file name="Gezondheidsbon.php" hash="800ef8a5628b39f42c0cb952346ee5a3"/><file name="GiroPay.php" hash="dff685719e4a0748e7c316e8c4783b51"/><file name="Giveacard.php" hash="889b0269387eace387777cecedc7b5ee"/><file name="Ideal.php" hash="dd7bfe92ccc39c7ee90b623cc35425d3"/><file name="Klarna.php" hash="e72a9108b78986071fb7094e18c9a240"/><file name="Lief.php" hash="c57189c1ab312d3ffff41c47c49b1d91"/><file name="Maestro.php" hash="a4da2619b078db9745e336be28f72f53"/><file name="Mastercard.php" hash="91a4aa8408fa87b29d8516dc70be5ece"/><file name="Mistercash.php" hash="2ffe2f02e631ba2a4b5efa584dfc1e47"/><file name="MultiSafepay.php" hash="39754875012e1bb404340f81f574dde3"/><file name="Parfumcadeaukaart.php" hash="8a04202d50a60a9a1ff0f805b5ae75c5"/><file name="Parfumnl.php" hash="9c807bbc577d0ca335bc0d74d20807ce"/><file name="Payafter.php" hash="cd4fa33eca47f2572e10f275cd5ed742"/><file name="Paypal.php" hash="45607135c9717d4422ae4a2b6e39cead"/><file name="Podium.php" hash="e757417d6498dd34c9b63ae13ec5ce2e"/><file name="Sportenfit.php" hash="16d9efe4aac86e424202403342f9974a"/><file name="Standard.php" hash="43ea744c95f898f4a9ef5fe3a80bb078"/><file name="Visa.php" hash="72e0c693dca5c94aeede4d7b2c7ed432"/><file name="Vvvgiftcard.php" hash="d234a0a97c82cc22005a6b1d038f8573"/><file name="Webgift.php" hash="80c03b3609ce0860a43ea7c709044cee"/><file name="Wijncadeau.php" hash="2613b3fd6212b562588c753b403f91f9"/><file name="Yourgift.php" hash="c6b9b7d909857d5917e06b7507f8ad8c"/></dir><dir name="Observer"><file name="Abstract.php" hash="f69ae090d64e8f30b96d22b58066247c"/><file name="Order.php" hash="7c0243be15993a58587817628634dc07"/><file name="Shipment.php" hash="50c7480da2ea0b13cf62147d4d5d7064"/></dir><file name="Payment.php" hash="eb9d6d27e1959c2239492bd8c6985610"/><dir name="Service"><file name="Quote.php" hash="b3625ca238c58e141e2258756199bf4e"/></dir><dir name="Servicecost"><dir name="Creditmemo"><file name="Total.php" hash="1096e0e8ac1bbfb91272658332b37a76"/></dir><dir name="Invoice"><file name="Totals.php" hash="d59b1a4ca34c91a383f08be0fa09a19a"/></dir><file name="Observer.php" hash="60bbe048424c1581630c3365e7abd5ba"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Servicecost.php" hash="6416fb7ab856bf5d3d2889b0f0d96cef"/></dir></dir></dir></dir><file name="Setup.php" hash="bfa4d921685eeb25724f40c7fec0f625"/><dir name="controllers"><file name="CheckoutController.php" hash="b5f6be156be78445369da1b02a4819b3"/><file name="MspPaymentController.php" hash="d2add60c93cb99ef9f2630466fbcbfdc"/><file name="StandardController.php" hash="4c192056199c7a366dcf798dd9ed17fd"/></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="b5f6be156be78445369da1b02a4819b3"/><file name="MspPaymentController.php" hash="d2add60c93cb99ef9f2630466fbcbfdc"/><file name="StandardController.php" hash="e4cb90c1849158f6b756369b5c040862"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2481c2eb37cff4e04652b6e034a292dd"/><file name="config.xml" hash="26428d41f170568a01648f45926eb23c"/><file name="system.xml" hash="56b202d0de89136bb4fead9f056f5061"/></dir><dir name="sql"><dir name="msp_setup"><file name="mysql4-upgrade-1.3.3-2.2.1.php" hash="f04337e65e800249b33de24709ada8e8"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="msp"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><dir name="creditcards"><file name="AMEX.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="MAESTRO.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="MASTERCARD.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="VISA.png" hash="a1142e19b751fa4a4925bb030170cdbb"/></dir><dir name="de"><file name="Thumbs.db" hash="23c6d2fa586f60e64acf307d398dfeb2"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="27162076f20d15888cd4d7198becbea2"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="en"><file name="Thumbs.db" hash="8631718a27c51f2a091e6e954af7f434"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="7de8894a60d58865e44e91cf0c4fe2e7"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="320046922f917d1b400c908383d3781c"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="es"><file name="Thumbs.db" hash="c67f35358ffef6d7986bb93f1e65eae6"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="7be2534c428267279219a9b8ee001ccc"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="fr"><file name="Thumbs.db" hash="163c29258e74e6c5809b93399db36904"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="e45e381187bf9c69278b74ed03d78534"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="ideallogos"><file name="0021.gif" hash="8df417edaf2410ff574d9d1ed453c0bc"/><file name="0031.gif" hash="eb6d7cd949e6fbf671c43cb83c7c3e17"/><file name="0161.gif" hash="f68ceb355661c41779d716a6ef8dfdf3"/><file name="0511.gif" hash="f3dd4d744232ddf4c1700068a6b3a531"/><file name="0721.gif" hash="e56fa35285496c73565bfdf82d6967fa"/><file name="0751.gif" hash="78462566d91b21feca3930ccf203e1f4"/><file name="0761.gif" hash="0fbd9493e65ab774cc6859da47c3c8cc"/><file name="0771.gif" hash="78462566d91b21feca3930ccf203e1f4"/><file name="0801.gif" hash="146e995dbede4e2798c278d6da26b9d2"/><file name="3151.gif" hash="e39d49dfb14d2ea896be4e52a3eed17a"/><file name="4371.gif" hash="51f25ac346802160b29ae38ea91858d6"/></dir><dir name="it"><file name="Thumbs.db" hash="06947336d2daae296c3aa6e0d0666a3e"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="84de0a08291cb1f8c30842687223df08"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="nl"><file name="Thumbs.db" hash="1b02d4a7ea1014a099e3abc3fffc4902"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="ebe00e96c9a1fe611b284c531b326d79"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="msp"><file name="agreements.phtml" hash="93ceba499bbad259c94b566add5924d9"/><file name="bno.phtml" hash="2e20726326a3ceee335bf6b57b6b831a"/><file name="creditcards.phtml" hash="f93c73fec6a572f314e1289bad9776ed"/><file name="default.phtml" hash="6e0e2e897bf5fff338e69f834d9a7b1a"/><file name="einvoice.phtml" hash="b691a94a88acce1527e7bf44e106ea3d"/><file name="idealissuers.phtml" hash="e1c3e19b413302ad60a8b6e855d6979f"/><file name="klarna.phtml" hash="ab582b3c5e356644575580f8aac565e4"/><file name="link.phtml" hash="278f910fb3f4cb820d3111066e85f067"/><file name="linkText.phtml" hash="d94fba14433870541603c1b3943d6ae8"/></dir></dir><dir name="layout"><file name="msp.xml" hash="cf698709a65bb5b471b992149f210ace"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="msp.xml" hash="f5959e41c7e4ddb30198093b708df511"/></dir><dir name="template"><dir name="msp"><file name="creditcards.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="default.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="gateways.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="idealissuers.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="klarna.phtml" hash="24ab559d8d59ee0fcad070d071bb5708"/><dir name="servicecost"><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="totals"><file name="adjustments.phtml" hash="e0009f26cd510641159d0321b0e08b1e"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="multisafepay"><file name="MultiSafepay.combined.php" hash="585c7ebad57e33122698ba0662d66d9d"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MultiSafepay_Msp.xml" hash="e6899e0295b157d6ad3a37334f2330ae"/></dir></target><target name="magelocale"><dir name="nl_NL"><file name="MultiSafepay_Msp.csv" hash="d644229ec3b89f94c7d2feeeb257d726"/></dir><dir name="de_DE"><file name="MultiSafepay_Msp.csv" hash="8b78be7c023780b4ffea55f60939fd51"/></dir><dir name="en_EN"><file name="MultiSafepay_Msp.csv" hash="ed854aac72b11e698c578218b6f4906e"/></dir><dir name="es_ES"><file name="MultiSafepay_Msp.csv" hash="f6c76aa1273e1a4e897b0e6c5aac780c"/></dir><dir name="fr_FR"><file name="MultiSafepay_Msp.csv" hash="ff58587f6c892f4de9074282a2a997f0"/></dir><dir name="it_IT"><file name="MultiSafepay_Msp.csv" hash="0332fffa252445398724d76ecb4232e0"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="js"><dir name="MultiSafepay"><file name="config.js" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><dir name="images"><dir name="msp"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><dir name="nl"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="404edf4cd1e16a79e2c72db944f00ae6"/><file name="msp_beautyandwellness.png" hash="e8503146ce5bc90abc7f65e58b19313c"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="df54e38016cda0b1dbd537b4784278f7"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_dotpay.png" hash="f2363b7e5fde1f4717d803f45e29a622"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_einvoice.png" hash="965e8a7d9885ef3e370a1960390a9c2c"/><file name="msp_eps.png" hash="08b42eebdda8e8f263891fb0a2ff9b07"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fashiongiftcard.png" hash="9bd88e96ac9fc8803ff864e3ba438f93"/><file name="msp_ferbuy.png" hash="5e561c5bb2a514f28bb4457e48457cf4"/><file name="msp_gezondheidsbon.png" hash="162e54d8242699871c202e8ca8307b87"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_giveacard.png" hash="6ee46cd39e01b9b82dca3e5b96da40d8"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_klarna.png" hash="ade80ce9f634bbc3c60976b37db0c4b6"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_podium.png" hash="657f853f4b26ec2b3b8c4e9ebde05f79"/><file name="msp_sportenfit.png" hash="b0c817c34276ef53f6807c9007b0c660"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_vvvgiftcard.png" hash="1674320d998603cf40591fc39bd5cfcf"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/><file name="msp_wijncadeau.png" hash="7bd0b913ad0769ae2089c3827a47182c"/><file name="msp_yourgift.png" hash="434772f364fc074716febdfb71fc215f"/></dir></dir></dir><dir name="css"><dir name="MultiSafepay"><file name="config.css" hash="c12bfd9751bdac5a1f88d30257172ec6"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.13</min><max>7.0.1</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MultiSafepay_Msp</name>
4
+ <version>2.3.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL 3.0</license>
7
  <channel>community</channel>
10
  <description>With this module you can use all payment methods offered by MultiSafepay</description>
11
  <notes>Tested by MultiSafepay</notes>
12
  <authors><author><name>MultiSafepay</name><user>MultiSafepayDev</user><email>Info@multisafepay.com</email></author></authors>
13
+ <date>2017-02-17</date>
14
+ <time>09:20:48</time>
15
+ <contents><target name="magecommunity"><dir name="MultiSafepay"><dir name="Msp"><dir name="Block"><dir name="Adminhtml"><dir name="Servicecost"><dir name="Totals"><file name="Creditmemo.php" hash="e403b6a33c2543395aa25016cc52626c"/><file name="Invoice.php" hash="822a1696e6827e183b96cefa1d2582ce"/><file name="Order.php" hash="a445ecb050e7ce19bf67208bf3e23131"/></dir></dir></dir><file name="Bno.php" hash="b2dd61062c2c27ee4406a3f3ed8ec8b7"/><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="3f68146a2f124b51ba1b866c1816c1e1"/></dir></dir></dir><file name="Creditcards.php" hash="d89e6351e7737d1163990e1d12511253"/><file name="Default.php" hash="196e02bdf9df0195c19bcd965b70e4e3"/><file name="Einvoice.php" hash="1ab39d03c145f2d8c877963a4b8b3ff3"/><file name="IdealIssuers.php" hash="733db7b86ba5507e4502176fe1803efd"/><file name="Klarna.php" hash="2199e9a10121ca0553d9cf125d7e6e49"/><file name="Link.php" hash="f9fd1820a8431d93139686b1b7292250"/><dir name="Servicecost"><dir name="Order"><file name="Total.php" hash="0e1efe7403334adce5cea4a2cab5349b"/><file name="Totals.php" hash="89dc0bee3dcbdf8291d85a0db968e93b"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="874982e75f9df72955edb51377eea3fc"/></dir><dir name="Model"><file name="Abstract.php" hash="ba8079cb854ab74d5276bfe253a8cac0"/><dir name="Api"><file name="Autoloader.php" hash="fca2821f678e2ce48d45e72e393cf37b"/><file name="Client.php" hash="fc4ba6f5117b5c35a56e55870bc8c752"/><dir name="Object"><file name="Affiliates.php" hash="0b44dbfc0d8710565cbd13951735d33d"/><file name="Core.php" hash="d215fb7f25019f7daad749e81c107f14"/><file name="Gateways.php" hash="6f8f5fd070cf3e24ba131e0477890ef8"/><file name="Issuers.php" hash="a61760ba32813f7740cc67090788132f"/><file name="Orders.php" hash="09699f59b047ab272462390ebce67e39"/></dir><file name="Paylink.php" hash="7303ec00c02f72975b5eed04282105fe"/><file name="Shipment.php" hash="eaff3fffdea7bed6c733325088b665fd"/></dir><file name="Base.php" hash="8bb8c076c6bcbf113b199bc3c8d9ae49"/><file name="Checkout.php" hash="26ff638915df4773f9dce24683163ccc"/><dir name="Config"><dir name="Sources"><file name="Accounts.php" hash="8e1228aa67d459dbc598ecb801b7a451"/><file name="Creditcards.php" hash="3d632af450fde93dca7d3998cda94bb6"/><file name="Fields.php" hash="2b2338147178664a4d29423b0bc9ab2d"/><file name="Groups.php" hash="44d2e865c1a88870c93ecb10455543c1"/><file name="Languages.php" hash="af19ca8647d353481fad4319dfdc8d09"/><dir name="Order"><file name="Currency.php" hash="b647513ac08f53ac81d09d8926f2f886"/><file name="Email.php" hash="cc6da2a79d873ed67086f23a70b096cf"/></dir><file name="TaxClasses.php" hash="56d52f22239542fc965fc0bbd34bcff8"/></dir></dir><dir name="Gateway"><file name="Abstract.php" hash="2dd33c9f541bbe1af94c62590068dfb4"/><file name="Amex.php" hash="6b6baed7457c8c3043c61a46b46d932a"/><file name="Babygiftcard.php" hash="023eb1c0da2cf3c3e77d87ea429ec070"/><file name="Banktransfer.php" hash="9218c21628d646c37907e3ffeba8e7c6"/><file name="Beautyandwellness.php" hash="28ed51984587be1519fe0188d4a775c8"/><file name="Boekenbon.php" hash="cf1aef4f6007fcf488cbfdc6564398e2"/><file name="Creditcard.php" hash="f2ff790eb2d7dc6d36e386a551085ef5"/><file name="Default.php" hash="76e4d2306b681ac8f76c57eba3ee56fb"/><file name="Degrotespeelgoedwinkel.php" hash="c4e47624c833c4b18659e294ddcf85a9"/><file name="DirectDebit.php" hash="321a1ae72502d2885e04cd1c1ca43d89"/><file name="DirectEbanking.php" hash="3d90e75d9cacf8fe9344afc553104d6d"/><file name="Dotpay.php" hash="14af496acc40e56577e6eb5869e0d6b0"/><file name="Ebon.php" hash="1ae6cc3469bfc18e92ffa69099642d89"/><file name="Einvoice.php" hash="ada913cdb2dbfad88cc4e629c2227a96"/><file name="Eps.php" hash="5f8a35d94e58fd8695dfecfcfbca1b16"/><file name="Erotiekbon.php" hash="99661e6caff7e49c492d0aeac6d5c2a4"/><file name="Fashioncheque.php" hash="4ec0609a04738df2efb1adf5b4e690de"/><file name="Fashiongiftcard.php" hash="a770817e3c840535b85abdcd4ecf8180"/><file name="Fastcheckout.php" hash="e370882bfa34a2ead9d2a4323f4962e3"/><file name="Ferbuy.php" hash="4ec9ca811408cbfdb5dc3f7a9daf279a"/><file name="Gezondheidsbon.php" hash="800ef8a5628b39f42c0cb952346ee5a3"/><file name="GiroPay.php" hash="dff685719e4a0748e7c316e8c4783b51"/><file name="Giveacard.php" hash="889b0269387eace387777cecedc7b5ee"/><file name="Ideal.php" hash="dd7bfe92ccc39c7ee90b623cc35425d3"/><file name="Klarna.php" hash="e72a9108b78986071fb7094e18c9a240"/><file name="Lief.php" hash="c57189c1ab312d3ffff41c47c49b1d91"/><file name="Maestro.php" hash="a4da2619b078db9745e336be28f72f53"/><file name="Mastercard.php" hash="91a4aa8408fa87b29d8516dc70be5ece"/><file name="Mistercash.php" hash="2ffe2f02e631ba2a4b5efa584dfc1e47"/><file name="MultiSafepay.php" hash="39754875012e1bb404340f81f574dde3"/><file name="Parfumcadeaukaart.php" hash="8a04202d50a60a9a1ff0f805b5ae75c5"/><file name="Parfumnl.php" hash="9c807bbc577d0ca335bc0d74d20807ce"/><file name="Payafter.php" hash="cd4fa33eca47f2572e10f275cd5ed742"/><file name="Paypal.php" hash="45607135c9717d4422ae4a2b6e39cead"/><file name="Podium.php" hash="e757417d6498dd34c9b63ae13ec5ce2e"/><file name="Sportenfit.php" hash="16d9efe4aac86e424202403342f9974a"/><file name="Standard.php" hash="43ea744c95f898f4a9ef5fe3a80bb078"/><file name="Visa.php" hash="72e0c693dca5c94aeede4d7b2c7ed432"/><file name="Vvvgiftcard.php" hash="d234a0a97c82cc22005a6b1d038f8573"/><file name="Webgift.php" hash="80c03b3609ce0860a43ea7c709044cee"/><file name="Wijncadeau.php" hash="2613b3fd6212b562588c753b403f91f9"/><file name="Yourgift.php" hash="c6b9b7d909857d5917e06b7507f8ad8c"/></dir><dir name="Observer"><file name="Abstract.php" hash="f69ae090d64e8f30b96d22b58066247c"/><file name="Order.php" hash="7c0243be15993a58587817628634dc07"/><file name="Shipment.php" hash="50c7480da2ea0b13cf62147d4d5d7064"/></dir><file name="Payment.php" hash="eb9d6d27e1959c2239492bd8c6985610"/><dir name="Service"><file name="Quote.php" hash="b3625ca238c58e141e2258756199bf4e"/></dir><dir name="Servicecost"><dir name="Creditmemo"><file name="Total.php" hash="1096e0e8ac1bbfb91272658332b37a76"/></dir><dir name="Invoice"><file name="Totals.php" hash="d59b1a4ca34c91a383f08be0fa09a19a"/></dir><file name="Observer.php" hash="60bbe048424c1581630c3365e7abd5ba"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Servicecost.php" hash="6416fb7ab856bf5d3d2889b0f0d96cef"/></dir></dir></dir></dir><file name="Setup.php" hash="bfa4d921685eeb25724f40c7fec0f625"/><dir name="controllers"><file name="CheckoutController.php" hash="b5f6be156be78445369da1b02a4819b3"/><file name="MspPaymentController.php" hash="d2add60c93cb99ef9f2630466fbcbfdc"/><file name="StandardController.php" hash="4c192056199c7a366dcf798dd9ed17fd"/></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="b5f6be156be78445369da1b02a4819b3"/><file name="MspPaymentController.php" hash="d2add60c93cb99ef9f2630466fbcbfdc"/><file name="StandardController.php" hash="e4cb90c1849158f6b756369b5c040862"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2481c2eb37cff4e04652b6e034a292dd"/><file name="config.xml" hash="5a045941f904a56d997c36e597259cc3"/><file name="system.xml" hash="1f0610cf74f18c0c62d855834332fb1f"/></dir><dir name="sql"><dir name="msp_setup"><file name="mysql4-upgrade-1.3.3-2.2.1.php" hash="f04337e65e800249b33de24709ada8e8"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="msp"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><dir name="creditcards"><file name="AMEX.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="MAESTRO.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="MASTERCARD.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="VISA.png" hash="a1142e19b751fa4a4925bb030170cdbb"/></dir><dir name="de"><file name="Thumbs.db" hash="23c6d2fa586f60e64acf307d398dfeb2"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="27162076f20d15888cd4d7198becbea2"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="en"><file name="Thumbs.db" hash="8631718a27c51f2a091e6e954af7f434"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="7de8894a60d58865e44e91cf0c4fe2e7"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="320046922f917d1b400c908383d3781c"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="es"><file name="Thumbs.db" hash="c67f35358ffef6d7986bb93f1e65eae6"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="7be2534c428267279219a9b8ee001ccc"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="fr"><file name="Thumbs.db" hash="163c29258e74e6c5809b93399db36904"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="e45e381187bf9c69278b74ed03d78534"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="ideallogos"><file name="0021.gif" hash="8df417edaf2410ff574d9d1ed453c0bc"/><file name="0031.gif" hash="eb6d7cd949e6fbf671c43cb83c7c3e17"/><file name="0161.gif" hash="f68ceb355661c41779d716a6ef8dfdf3"/><file name="0511.gif" hash="f3dd4d744232ddf4c1700068a6b3a531"/><file name="0721.gif" hash="e56fa35285496c73565bfdf82d6967fa"/><file name="0751.gif" hash="78462566d91b21feca3930ccf203e1f4"/><file name="0761.gif" hash="0fbd9493e65ab774cc6859da47c3c8cc"/><file name="0771.gif" hash="78462566d91b21feca3930ccf203e1f4"/><file name="0801.gif" hash="146e995dbede4e2798c278d6da26b9d2"/><file name="3151.gif" hash="e39d49dfb14d2ea896be4e52a3eed17a"/><file name="4371.gif" hash="51f25ac346802160b29ae38ea91858d6"/></dir><dir name="it"><file name="Thumbs.db" hash="06947336d2daae296c3aa6e0d0666a3e"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="84de0a08291cb1f8c30842687223df08"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir><dir name="nl"><file name="Thumbs.db" hash="1b02d4a7ea1014a099e3abc3fffc4902"/><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="7551e6f5a1edce55868884d3c0c35d3f"/><file name="msp_babygiftcard.png" hash="3e440fff945bbcee34eb1b291a6d0db8"/><file name="msp_banktransfer.png" hash="777d005316af9cc2a9ab6aa81c2b3b12"/><file name="msp_beautyandwellness.png" hash="7f2aacc83de6c4dfa8c7e647db127ba4"/><file name="msp_boekenbon.png" hash="6ddb5ab62d51db8a572152ad8e0d4b93"/><file name="msp_degrotespeelgoedwinkel.png" hash="41846a8b2161416974dc928b3b4b0404"/><file name="msp_directdebit.png" hash="ebe00e96c9a1fe611b284c531b326d79"/><file name="msp_directebanking.png" hash="779b3348fe8a1b6d74617f8befb3379d"/><file name="msp_dotpay.png" hash="77a9af341463e7f44985de06e02f9f2c"/><file name="msp_ebon.png" hash="6e0815d5ea8acb37f96b974c1a300241"/><file name="msp_einvoice.png" hash="efe2613dda6c8bcb644b5a5bd9d39fa6"/><file name="msp_eps.png" hash="9c6b78e373c8e75362035b0404746520"/><file name="msp_erotiekbon.png" hash="15a7f2a2e11f31ff293d43695a2b2a7c"/><file name="msp_fashioncheque.png" hash="2b1cd5386365f9c67edb851824fa0be4"/><file name="msp_fashiongiftcard.png" hash="6727dfc5fc41b0d84c048b96472a4068"/><file name="msp_ferbuy.png" hash="9dc66dd0af70e0f0543744f83a61ce72"/><file name="msp_gezondheidsbon.png" hash="3c747dc2a2b6e6ebff11f380713c4858"/><file name="msp_giropay.png" hash="7775e2152bd20d0192cb5820e90e92b9"/><file name="msp_giveacard.png" hash="757d2181e7008dacf80a9bc6dbef0a3d"/><file name="msp_ideal.png" hash="cfe5725cbde138bcebebbc7c4969d8b8"/><file name="msp_klarna.png" hash="1c3542f35bd28fe7d5c629d4b32fbd82"/><file name="msp_maestro.png" hash="d2760caa8b8ead4b5a1a0820b48bcd53"/><file name="msp_mastercard.png" hash="80d624158e441228a628ba6e4a3eef1f"/><file name="msp_mistercash.png" hash="bdc5f4dc4882e47db527e5ac99d6d4f8"/><file name="msp_multisafepay.png" hash="7f3c2fd0bc133883e06eaf9f5d386be8"/><file name="msp_parfumcadeaukaart.png" hash="69adbc8be5be46d18112d759f73aa1f9"/><file name="msp_parfumnl.png" hash="633e48b1c755e393e8c217d8f37d3f9f"/><file name="msp_payafter.png" hash="2fb0b05120a6d4e46cd57f7015e7d56c"/><file name="msp_paypal.png" hash="a46c883090638eac14e406197da46341"/><file name="msp_podium.png" hash="8b50fd7865d65503b9b6cc3ee33b354b"/><file name="msp_sportenfit.png" hash="12df0ee1260d48df672f118cb53eba44"/><file name="msp_visa.png" hash="a1142e19b751fa4a4925bb030170cdbb"/><file name="msp_vvvgiftcard.png" hash="01bd0c080f47d8faa7989f745874902b"/><file name="msp_webgift.png" hash="797244afa3996ff2f1df8a133e82c361"/><file name="msp_wijncadeau.png" hash="c84bcca005833bf297e03659a3fa9a9a"/><file name="msp_yourgift.png" hash="22599e84e7b8e46d6676a45deea32192"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="msp"><file name="agreements.phtml" hash="93ceba499bbad259c94b566add5924d9"/><file name="bno.phtml" hash="2e20726326a3ceee335bf6b57b6b831a"/><file name="creditcards.phtml" hash="f93c73fec6a572f314e1289bad9776ed"/><file name="default.phtml" hash="6e0e2e897bf5fff338e69f834d9a7b1a"/><file name="einvoice.phtml" hash="b691a94a88acce1527e7bf44e106ea3d"/><file name="idealissuers.phtml" hash="e1c3e19b413302ad60a8b6e855d6979f"/><file name="klarna.phtml" hash="ab582b3c5e356644575580f8aac565e4"/><file name="link.phtml" hash="278f910fb3f4cb820d3111066e85f067"/><file name="linkText.phtml" hash="d94fba14433870541603c1b3943d6ae8"/></dir></dir><dir name="layout"><file name="msp.xml" hash="cf698709a65bb5b471b992149f210ace"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="msp.xml" hash="f5959e41c7e4ddb30198093b708df511"/></dir><dir name="template"><dir name="msp"><file name="creditcards.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="default.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="gateways.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="idealissuers.phtml" hash="ed4cf6ffc3e0dba9ec5fc7d5c80b8ee1"/><file name="klarna.phtml" hash="24ab559d8d59ee0fcad070d071bb5708"/><dir name="servicecost"><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="totals"><file name="adjustments.phtml" hash="e0009f26cd510641159d0321b0e08b1e"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="multisafepay"><file name="MultiSafepay.combined.php" hash="e38c2a19743d404105440b8dfcee256e"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MultiSafepay_Msp.xml" hash="e6899e0295b157d6ad3a37334f2330ae"/></dir></target><target name="magelocale"><dir name="nl_NL"><file name="MultiSafepay_Msp.csv" hash="d644229ec3b89f94c7d2feeeb257d726"/></dir><dir name="de_DE"><file name="MultiSafepay_Msp.csv" hash="8b78be7c023780b4ffea55f60939fd51"/></dir><dir name="en_EN"><file name="MultiSafepay_Msp.csv" hash="ed854aac72b11e698c578218b6f4906e"/></dir><dir name="es_ES"><file name="MultiSafepay_Msp.csv" hash="f6c76aa1273e1a4e897b0e6c5aac780c"/></dir><dir name="fr_FR"><file name="MultiSafepay_Msp.csv" hash="ff58587f6c892f4de9074282a2a997f0"/></dir><dir name="it_IT"><file name="MultiSafepay_Msp.csv" hash="0332fffa252445398724d76ecb4232e0"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="js"><dir name="MultiSafepay"><file name="config.js" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><dir name="images"><dir name="msp"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><dir name="nl"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="404edf4cd1e16a79e2c72db944f00ae6"/><file name="msp_beautyandwellness.png" hash="e8503146ce5bc90abc7f65e58b19313c"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="df54e38016cda0b1dbd537b4784278f7"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_dotpay.png" hash="f2363b7e5fde1f4717d803f45e29a622"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_einvoice.png" hash="965e8a7d9885ef3e370a1960390a9c2c"/><file name="msp_eps.png" hash="08b42eebdda8e8f263891fb0a2ff9b07"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fashiongiftcard.png" hash="9bd88e96ac9fc8803ff864e3ba438f93"/><file name="msp_ferbuy.png" hash="5e561c5bb2a514f28bb4457e48457cf4"/><file name="msp_gezondheidsbon.png" hash="162e54d8242699871c202e8ca8307b87"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_giveacard.png" hash="6ee46cd39e01b9b82dca3e5b96da40d8"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_klarna.png" hash="ade80ce9f634bbc3c60976b37db0c4b6"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_podium.png" hash="657f853f4b26ec2b3b8c4e9ebde05f79"/><file name="msp_sportenfit.png" hash="b0c817c34276ef53f6807c9007b0c660"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_vvvgiftcard.png" hash="1674320d998603cf40591fc39bd5cfcf"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/><file name="msp_wijncadeau.png" hash="7bd0b913ad0769ae2089c3827a47182c"/><file name="msp_yourgift.png" hash="434772f364fc074716febdfb71fc215f"/></dir></dir></dir><dir name="css"><dir name="MultiSafepay"><file name="config.css" hash="c12bfd9751bdac5a1f88d30257172ec6"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.13</min><max>7.0.1</max></php></required></dependencies>
18
  </package>