ibandit 1.2.2 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +2 -2
- data/.rubocop.yml +2 -2
- data/.ruby-version +1 -0
- data/CHANGELOG.md +22 -0
- data/README.md +1 -1
- data/bin/build_structure_file.rb +73 -40
- data/data/german_iban_rules.yml +268 -187
- data/data/raw/BLZ2.txt +2262 -2621
- data/data/raw/IBAN_Registry.txt +53 -70
- data/data/raw/structure_additions.yml +3 -0
- data/data/structures.yml +165 -44
- data/ibandit.gemspec +3 -3
- data/lib/ibandit/errors.rb +1 -0
- data/lib/ibandit/iban.rb +8 -5
- data/lib/ibandit/local_details_cleaner.rb +4 -6
- data/lib/ibandit/version.rb +1 -1
- data/spec/fixtures/germany_integration_test_cases.json +1 -1
- data/spec/ibandit/iban_assembler_spec.rb +1 -1
- data/spec/ibandit/iban_spec.rb +188 -20
- data/spec/ibandit/local_details_cleaner_spec.rb +3 -3
- metadata +14 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d50cfd65aab41482781d60a6c5741a00ee7a3f2901812ac3930531189c639b71
|
4
|
+
data.tar.gz: b7d78e3cb84a455c6cbbd5a7259a2f62461d7ae65a9ca34f2ae76c2728a608c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b56ba928a8cb07dc584ddbb17a31e565ac27a0f744ef02ad15bccb2c7bc476144c29a63a96b7697202112bdb9dac0105eb985584dccf927296dc5ff2e1235cc
|
7
|
+
data.tar.gz: fda435511c98d3adc4914b1d39cc1c91be8ca04e94061b5df1eda0dc2007b6f84dea83e362b61ffc918b5520c7ebe60f94aeb1206e43fb6f81e5cde8b37f5cbb
|
data/.circleci/config.yml
CHANGED
@@ -3,7 +3,7 @@ version: 2.1
|
|
3
3
|
jobs:
|
4
4
|
test:
|
5
5
|
docker:
|
6
|
-
- image:
|
6
|
+
- image: cimg/ruby:<< parameters.ruby-version >>
|
7
7
|
parameters:
|
8
8
|
ruby-version:
|
9
9
|
type: string
|
@@ -34,4 +34,4 @@ workflows:
|
|
34
34
|
name: Ruby << matrix.ruby-version >>
|
35
35
|
matrix:
|
36
36
|
parameters:
|
37
|
-
ruby-version: ["2.4.
|
37
|
+
ruby-version: ["2.4.10", "2.5.8", "2.6.6", "2.7.2", "3.0.0"]
|
data/.rubocop.yml
CHANGED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
## 1.5.0 - March 11, 2021
|
2
|
+
|
3
|
+
- Fix issue with padding on Canadian and USA pseudo IBANs #198
|
4
|
+
|
5
|
+
## 1.4.1 - March 3, 2021
|
6
|
+
|
7
|
+
- Update BLZ data - BLZVZ FTSEX MD 652
|
8
|
+
|
9
|
+
## 1.4.0 - February 22, 2021
|
10
|
+
|
11
|
+
- [Breaking] Correct `swift_national_id` for Canadian Psudo Ibans. Before `swift_national_id`
|
12
|
+
would return the institution code only. Now it returns the `{institution_code}{branch_code}` as
|
13
|
+
per the format for electronic transfers - `0YYYXXXXX`
|
14
|
+
|
15
|
+
## 1.3.0 - February 18, 2021
|
16
|
+
|
17
|
+
- Add support for BY, EG, FO, IQ, LC, SC, UA and VA
|
18
|
+
|
19
|
+
## 1.2.3 - December 11, 2020
|
20
|
+
|
21
|
+
- Update BLZ data - BLZ_20201207
|
22
|
+
|
1
23
|
## 1.2.2 - October 30, 2020
|
2
24
|
|
3
25
|
- Update Swedish Bank data
|
data/README.md
CHANGED
@@ -575,7 +575,7 @@ iban.iban # => nil
|
|
575
575
|
iban = Ibandit::IBAN.new('USZZ026073150_______2715500356')
|
576
576
|
iban.country_code # => "US"
|
577
577
|
iban.bank_code # => "026073150"
|
578
|
-
iban.account_number # => "
|
578
|
+
iban.account_number # => "2715500356"
|
579
579
|
iban.iban # => nil
|
580
580
|
```
|
581
581
|
|
data/bin/build_structure_file.rb
CHANGED
@@ -1,29 +1,31 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
# Script for parsing the IBAN registry (IBAN_Registry.txt) and IBAN structures
|
4
5
|
# (IBANSTRUCTURE.xml) files from SWIFT.
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
6
|
+
require "csv"
|
7
|
+
require "yaml"
|
8
|
+
require "sax-machine"
|
8
9
|
|
9
10
|
class Country
|
10
11
|
include SAXMachine
|
11
|
-
element
|
12
|
-
element
|
13
|
-
element
|
14
|
-
element
|
15
|
-
element
|
16
|
-
element
|
17
|
-
element
|
18
|
-
element
|
19
|
-
element
|
12
|
+
element "iban_country_code", as: :country_code
|
13
|
+
element "bank_identifier_position", as: :bank_code_position
|
14
|
+
element "bank_identifier_length", as: :bank_code_length
|
15
|
+
element "branch_identifier_position", as: :branch_code_position
|
16
|
+
element "branch_identifier_length", as: :branch_code_length
|
17
|
+
element "account_number_position", as: :account_number_position
|
18
|
+
element "account_number_length", as: :account_number_length
|
19
|
+
element "iban_total_length", as: :total_length
|
20
|
+
element "iban_national_id_length", as: :national_id_length
|
20
21
|
end
|
21
22
|
|
22
23
|
class Report
|
23
24
|
include SAXMachine
|
24
|
-
elements
|
25
|
+
elements "ibanstructure", as: :countries, class: Country
|
25
26
|
end
|
26
27
|
|
28
|
+
# rubocop:disable Metrics/AbcSize
|
27
29
|
def get_iban_structures(iban_structures_file, iban_registry_file)
|
28
30
|
bban_formats = get_bban_formats(iban_registry_file)
|
29
31
|
|
@@ -37,23 +39,51 @@ def get_iban_structures(iban_structures_file, iban_registry_file)
|
|
37
39
|
account_number_position: country.account_number_position.to_i,
|
38
40
|
account_number_length: country.account_number_length.to_i,
|
39
41
|
total_length: country.total_length.to_i,
|
40
|
-
national_id_length: country.national_id_length.to_i
|
42
|
+
national_id_length: country.national_id_length.to_i,
|
41
43
|
}.merge(bban_formats[country.country_code])
|
42
44
|
end
|
43
45
|
end
|
46
|
+
# rubocop:enable Metrics/AbcSize
|
47
|
+
|
48
|
+
FILE_ELEMENTS = [
|
49
|
+
# 0 Data element
|
50
|
+
# 1 Name of country
|
51
|
+
# 2 IBAN prefix country code (ISO 3166)
|
52
|
+
COUNTRY_CODE = 2,
|
53
|
+
# 3 Country code includes other countries/territories
|
54
|
+
# 4 SEPA country
|
55
|
+
# 5 SEPA country also includes
|
56
|
+
# 6 Domestic account number example
|
57
|
+
# 7 BBAN
|
58
|
+
# 8 BBAN structure
|
59
|
+
BBAN_STRUCTURE = 8,
|
60
|
+
# 9 BBAN length
|
61
|
+
# 10 Bank identifier position within the BBAN
|
62
|
+
# 11 Bank identifier pattern
|
63
|
+
BANK_IDENTIFIER_PATTERN = 11,
|
64
|
+
# 12 Branch identifier position within the BBAN
|
65
|
+
# 13 Branch identifier pattern
|
66
|
+
BRANCH_IDENTIFIER_PATTERN = 13,
|
67
|
+
# 14 Bank identifier example
|
68
|
+
# 15 Branch identifier example
|
69
|
+
# 16 BBAN example
|
70
|
+
# 17 IBAN
|
71
|
+
# 18 IBAN structure
|
72
|
+
# 19 IBAN length
|
73
|
+
# 20 Effective date
|
74
|
+
# 21 IBAN electronic format example
|
75
|
+
].freeze
|
44
76
|
|
45
77
|
def get_bban_formats(iban_registry_file)
|
46
78
|
iban_registry_file.each_with_object({}) do |line, hash|
|
47
|
-
bban_structure = line[
|
79
|
+
bban_structure = line[BBAN_STRUCTURE].strip
|
48
80
|
|
49
|
-
bank_code_structure
|
50
|
-
|
51
|
-
line['Bank identifier length'].split(/, Branch identifier length:? /)
|
52
|
-
else
|
53
|
-
['', nil]
|
54
|
-
end
|
81
|
+
bank_code_structure = line[BANK_IDENTIFIER_PATTERN].strip
|
82
|
+
branch_code_structure = line[BRANCH_IDENTIFIER_PATTERN]&.strip
|
55
83
|
|
56
|
-
|
84
|
+
bank_code_structure = "" if bank_code_structure == "N/A"
|
85
|
+
|
86
|
+
country_code = line[COUNTRY_CODE].strip
|
57
87
|
hash[country_code] = convert_swift_convention(bban_structure,
|
58
88
|
bank_code_structure,
|
59
89
|
branch_code_structure)
|
@@ -76,22 +106,22 @@ def convert_swift_convention(bban, bank, branch)
|
|
76
106
|
|
77
107
|
non_account_number_regex = [bank_regex, branch_regex].join
|
78
108
|
account_number_start = (bban_regex.index(non_account_number_regex) || 0) +
|
79
|
-
|
109
|
+
non_account_number_regex.length
|
80
110
|
account_number_regex = bban_regex[account_number_start..-1]
|
81
111
|
|
82
112
|
{
|
83
|
-
bban_format:
|
84
|
-
bank_code_format:
|
85
|
-
branch_code_format:
|
86
|
-
account_number_format: account_number_regex
|
87
|
-
}.
|
113
|
+
bban_format: bban_regex,
|
114
|
+
bank_code_format: bank_regex,
|
115
|
+
branch_code_format: branch_regex,
|
116
|
+
account_number_format: account_number_regex,
|
117
|
+
}.compact
|
88
118
|
end
|
89
119
|
|
90
120
|
def iban_registry_to_regex(swift_string)
|
91
121
|
swift_string.gsub(/(\d+)!([nac])/, '\2{\1}').
|
92
|
-
gsub(
|
93
|
-
gsub(
|
94
|
-
gsub(
|
122
|
+
gsub("n", '\d').
|
123
|
+
gsub("a", "[A-Z]").
|
124
|
+
gsub("c", "[A-Z0-9]")
|
95
125
|
end
|
96
126
|
|
97
127
|
def merge_structures(structures, additions)
|
@@ -106,30 +136,33 @@ end
|
|
106
136
|
# as it is in the specs)
|
107
137
|
if __FILE__ == $PROGRAM_NAME
|
108
138
|
iban_registry_file = CSV.read(
|
109
|
-
File.expand_path(
|
139
|
+
File.expand_path("../data/raw/IBAN_Registry.txt", __dir__),
|
110
140
|
col_sep: "\t",
|
111
|
-
headers: true
|
112
|
-
|
141
|
+
headers: true,
|
142
|
+
encoding: Encoding::ISO_8859_1,
|
143
|
+
).to_a.transpose
|
144
|
+
|
145
|
+
iban_registry_file.shift
|
113
146
|
|
114
147
|
iban_structures_file = File.read(
|
115
|
-
File.expand_path(
|
148
|
+
File.expand_path("../data/raw/IBANSTRUCTURE.xml", __dir__),
|
116
149
|
)
|
117
150
|
|
118
151
|
iban_structures = get_iban_structures(
|
119
152
|
iban_structures_file,
|
120
|
-
iban_registry_file
|
153
|
+
iban_registry_file,
|
121
154
|
)
|
122
155
|
|
123
156
|
structure_additions = YAML.load_file(
|
124
|
-
File.expand_path(
|
157
|
+
File.expand_path("../data/raw/structure_additions.yml", __dir__),
|
125
158
|
)
|
126
159
|
|
127
160
|
complete_structures = merge_structures(iban_structures, structure_additions)
|
128
161
|
|
129
162
|
output_file_path = File.expand_path(
|
130
|
-
|
131
|
-
|
163
|
+
"../data/structures.yml",
|
164
|
+
__dir__,
|
132
165
|
)
|
133
166
|
|
134
|
-
File.open(output_file_path,
|
167
|
+
File.open(output_file_path, "w") { |f| f.write(complete_structures.to_yaml) }
|
135
168
|
end
|
data/data/german_iban_rules.yml
CHANGED
@@ -5,19 +5,22 @@
|
|
5
5
|
'10010010':
|
6
6
|
:check_digit_rule: '24'
|
7
7
|
:iban_rule: '000000'
|
8
|
-
'
|
8
|
+
'10010123':
|
9
9
|
:check_digit_rule: '09'
|
10
10
|
:iban_rule: '000000'
|
11
|
-
'
|
11
|
+
'10010300':
|
12
12
|
:check_digit_rule: '09'
|
13
13
|
:iban_rule: '000000'
|
14
|
-
'
|
14
|
+
'10010424':
|
15
|
+
:check_digit_rule: '09'
|
16
|
+
:iban_rule: '000000'
|
17
|
+
'10010500':
|
15
18
|
:check_digit_rule: '09'
|
16
19
|
:iban_rule: '000000'
|
17
|
-
'
|
20
|
+
'10011001':
|
18
21
|
:check_digit_rule: '09'
|
19
22
|
:iban_rule: '000000'
|
20
|
-
'
|
23
|
+
'10017997':
|
21
24
|
:check_digit_rule: '09'
|
22
25
|
:iban_rule: '000000'
|
23
26
|
'10020200':
|
@@ -131,9 +134,27 @@
|
|
131
134
|
'10070124':
|
132
135
|
:check_digit_rule: '63'
|
133
136
|
:iban_rule: '002002'
|
137
|
+
'10070324':
|
138
|
+
:check_digit_rule: '63'
|
139
|
+
:iban_rule: '002002'
|
140
|
+
'10070397':
|
141
|
+
:check_digit_rule: '63'
|
142
|
+
:iban_rule: '002002'
|
143
|
+
'10070398':
|
144
|
+
:check_digit_rule: '63'
|
145
|
+
:iban_rule: '002002'
|
146
|
+
'10070399':
|
147
|
+
:check_digit_rule: '63'
|
148
|
+
:iban_rule: '002002'
|
134
149
|
'10070848':
|
135
150
|
:check_digit_rule: '63'
|
136
151
|
:iban_rule: '002002'
|
152
|
+
'10071324':
|
153
|
+
:check_digit_rule: '63'
|
154
|
+
:iban_rule: '002002'
|
155
|
+
'10072324':
|
156
|
+
:check_digit_rule: '63'
|
157
|
+
:iban_rule: '002002'
|
137
158
|
'10077777':
|
138
159
|
:check_digit_rule: '63'
|
139
160
|
:iban_rule: '002002'
|
@@ -182,9 +203,6 @@
|
|
182
203
|
'10090300':
|
183
204
|
:check_digit_rule: '09'
|
184
205
|
:iban_rule: '000000'
|
185
|
-
'10090603':
|
186
|
-
:check_digit_rule: A4
|
187
|
-
:iban_rule: '001400'
|
188
206
|
'10090900':
|
189
207
|
:check_digit_rule: '91'
|
190
208
|
:iban_rule: '000000'
|
@@ -254,21 +272,21 @@
|
|
254
272
|
'12070088':
|
255
273
|
:check_digit_rule: '09'
|
256
274
|
:iban_rule: '000000'
|
275
|
+
'12070400':
|
276
|
+
:check_digit_rule: '63'
|
277
|
+
:iban_rule: '002002'
|
278
|
+
'12070424':
|
279
|
+
:check_digit_rule: '63'
|
280
|
+
:iban_rule: '002002'
|
257
281
|
'12080000':
|
258
282
|
:check_digit_rule: '76'
|
259
283
|
:iban_rule: '000503'
|
260
|
-
'12090640':
|
261
|
-
:check_digit_rule: A4
|
262
|
-
:iban_rule: '001400'
|
263
284
|
'12096597':
|
264
285
|
:check_digit_rule: A8
|
265
286
|
:iban_rule: '000000'
|
266
287
|
'13000000':
|
267
288
|
:check_digit_rule: '09'
|
268
289
|
:iban_rule: '004201'
|
269
|
-
'13010111':
|
270
|
-
:check_digit_rule: '13'
|
271
|
-
:iban_rule: '000000'
|
272
290
|
'13040000':
|
273
291
|
:check_digit_rule: '13'
|
274
292
|
:iban_rule: '000503'
|
@@ -296,6 +314,12 @@
|
|
296
314
|
'13070024':
|
297
315
|
:check_digit_rule: '63'
|
298
316
|
:iban_rule: '002002'
|
317
|
+
'13070405':
|
318
|
+
:check_digit_rule: '63'
|
319
|
+
:iban_rule: '002002'
|
320
|
+
'13070424':
|
321
|
+
:check_digit_rule: '63'
|
322
|
+
:iban_rule: '002002'
|
299
323
|
'13080000':
|
300
324
|
:check_digit_rule: '76'
|
301
325
|
:iban_rule: '000503'
|
@@ -482,9 +506,6 @@
|
|
482
506
|
'20010020':
|
483
507
|
:check_digit_rule: '24'
|
484
508
|
:iban_rule: '000000'
|
485
|
-
'20010111':
|
486
|
-
:check_digit_rule: '13'
|
487
|
-
:iban_rule: '000000'
|
488
509
|
'20010424':
|
489
510
|
:check_digit_rule: '09'
|
490
511
|
:iban_rule: '000000'
|
@@ -635,6 +656,12 @@
|
|
635
656
|
'20070024':
|
636
657
|
:check_digit_rule: '63'
|
637
658
|
:iban_rule: '002002'
|
659
|
+
'20070404':
|
660
|
+
:check_digit_rule: '63'
|
661
|
+
:iban_rule: '002002'
|
662
|
+
'20070424':
|
663
|
+
:check_digit_rule: '63'
|
664
|
+
:iban_rule: '002002'
|
638
665
|
'20080000':
|
639
666
|
:check_digit_rule: '76'
|
640
667
|
:iban_rule: '000503'
|
@@ -683,9 +710,6 @@
|
|
683
710
|
'20090500':
|
684
711
|
:check_digit_rule: '81'
|
685
712
|
:iban_rule: '000000'
|
686
|
-
'20090602':
|
687
|
-
:check_digit_rule: A4
|
688
|
-
:iban_rule: '001400'
|
689
713
|
'20090700':
|
690
714
|
:check_digit_rule: '50'
|
691
715
|
:iban_rule: '000000'
|
@@ -783,7 +807,7 @@
|
|
783
807
|
:check_digit_rule: '09'
|
784
808
|
:iban_rule: '000000'
|
785
809
|
'20690500':
|
786
|
-
:check_digit_rule:
|
810
|
+
:check_digit_rule: '09'
|
787
811
|
:iban_rule: '000000'
|
788
812
|
'20730001':
|
789
813
|
:check_digit_rule: '09'
|
@@ -1121,9 +1145,6 @@
|
|
1121
1145
|
'21090099':
|
1122
1146
|
:check_digit_rule: '10'
|
1123
1147
|
:iban_rule: '000000'
|
1124
|
-
'21090619':
|
1125
|
-
:check_digit_rule: A4
|
1126
|
-
:iban_rule: '001400'
|
1127
1148
|
'21090900':
|
1128
1149
|
:check_digit_rule: '91'
|
1129
1150
|
:iban_rule: '000000'
|
@@ -1205,6 +1226,12 @@
|
|
1205
1226
|
'21570024':
|
1206
1227
|
:check_digit_rule: '63'
|
1207
1228
|
:iban_rule: '002002'
|
1229
|
+
'21570202':
|
1230
|
+
:check_digit_rule: '63'
|
1231
|
+
:iban_rule: '002002'
|
1232
|
+
'21570224':
|
1233
|
+
:check_digit_rule: '63'
|
1234
|
+
:iban_rule: '002002'
|
1208
1235
|
'21580000':
|
1209
1236
|
:check_digit_rule: '76'
|
1210
1237
|
:iban_rule: '000503'
|
@@ -1337,6 +1364,12 @@
|
|
1337
1364
|
'23064107':
|
1338
1365
|
:check_digit_rule: '32'
|
1339
1366
|
:iban_rule: '000000'
|
1367
|
+
'23070203':
|
1368
|
+
:check_digit_rule: '63'
|
1369
|
+
:iban_rule: '002002'
|
1370
|
+
'23070224':
|
1371
|
+
:check_digit_rule: '63'
|
1372
|
+
:iban_rule: '002002'
|
1340
1373
|
'23070700':
|
1341
1374
|
:check_digit_rule: '63'
|
1342
1375
|
:iban_rule: '002002'
|
@@ -1352,9 +1385,6 @@
|
|
1352
1385
|
'23090142':
|
1353
1386
|
:check_digit_rule: '10'
|
1354
1387
|
:iban_rule: '000000'
|
1355
|
-
'23092620':
|
1356
|
-
:check_digit_rule: A4
|
1357
|
-
:iban_rule: '001400'
|
1358
1388
|
'24040000':
|
1359
1389
|
:check_digit_rule: '13'
|
1360
1390
|
:iban_rule: '000503'
|
@@ -1373,6 +1403,12 @@
|
|
1373
1403
|
'24070075':
|
1374
1404
|
:check_digit_rule: '63'
|
1375
1405
|
:iban_rule: '002002'
|
1406
|
+
'24070324':
|
1407
|
+
:check_digit_rule: '63'
|
1408
|
+
:iban_rule: '002002'
|
1409
|
+
'24070368':
|
1410
|
+
:check_digit_rule: '63'
|
1411
|
+
:iban_rule: '002002'
|
1376
1412
|
'24080000':
|
1377
1413
|
:check_digit_rule: '76'
|
1378
1414
|
:iban_rule: '000503'
|
@@ -1475,9 +1511,6 @@
|
|
1475
1511
|
'25069270':
|
1476
1512
|
:check_digit_rule: '28'
|
1477
1513
|
:iban_rule: '000000'
|
1478
|
-
'25069370':
|
1479
|
-
:check_digit_rule: '28'
|
1480
|
-
:iban_rule: '000000'
|
1481
1514
|
'25069503':
|
1482
1515
|
:check_digit_rule: '28'
|
1483
1516
|
:iban_rule: '000000'
|
@@ -1499,6 +1532,12 @@
|
|
1499
1532
|
'25070086':
|
1500
1533
|
:check_digit_rule: '63'
|
1501
1534
|
:iban_rule: '002002'
|
1535
|
+
'25070324':
|
1536
|
+
:check_digit_rule: '63'
|
1537
|
+
:iban_rule: '002002'
|
1538
|
+
'25070370':
|
1539
|
+
:check_digit_rule: '63'
|
1540
|
+
:iban_rule: '002002'
|
1502
1541
|
'25080020':
|
1503
1542
|
:check_digit_rule: '76'
|
1504
1543
|
:iban_rule: '000503'
|
@@ -1514,9 +1553,6 @@
|
|
1514
1553
|
'25090500':
|
1515
1554
|
:check_digit_rule: '09'
|
1516
1555
|
:iban_rule: '000000'
|
1517
|
-
'25090608':
|
1518
|
-
:check_digit_rule: A4
|
1519
|
-
:iban_rule: '001400'
|
1520
1556
|
'25090900':
|
1521
1557
|
:check_digit_rule: '91'
|
1522
1558
|
:iban_rule: '000000'
|
@@ -1817,9 +1853,6 @@
|
|
1817
1853
|
'26552286':
|
1818
1854
|
:check_digit_rule: '00'
|
1819
1855
|
:iban_rule: '000000'
|
1820
|
-
'26560625':
|
1821
|
-
:check_digit_rule: A4
|
1822
|
-
:iban_rule: '001400'
|
1823
1856
|
'26562490':
|
1824
1857
|
:check_digit_rule: '28'
|
1825
1858
|
:iban_rule: '000000'
|
@@ -1994,6 +2027,12 @@
|
|
1994
2027
|
'27070079':
|
1995
2028
|
:check_digit_rule: '63'
|
1996
2029
|
:iban_rule: '002002'
|
2030
|
+
'27070324':
|
2031
|
+
:check_digit_rule: '63'
|
2032
|
+
:iban_rule: '002002'
|
2033
|
+
'27070369':
|
2034
|
+
:check_digit_rule: '63'
|
2035
|
+
:iban_rule: '002002'
|
1997
2036
|
'27072524':
|
1998
2037
|
:check_digit_rule: '63'
|
1999
2038
|
:iban_rule: '002002'
|
@@ -2012,9 +2051,6 @@
|
|
2012
2051
|
'27089221':
|
2013
2052
|
:check_digit_rule: '09'
|
2014
2053
|
:iban_rule: '000503'
|
2015
|
-
'27090618':
|
2016
|
-
:check_digit_rule: A4
|
2017
|
-
:iban_rule: '001400'
|
2018
2054
|
'27090900':
|
2019
2055
|
:check_digit_rule: '91'
|
2020
2056
|
:iban_rule: '000000'
|
@@ -2024,9 +2060,6 @@
|
|
2024
2060
|
'27131300':
|
2025
2061
|
:check_digit_rule: '32'
|
2026
2062
|
:iban_rule: '000000'
|
2027
|
-
'27190082':
|
2028
|
-
:check_digit_rule: '28'
|
2029
|
-
:iban_rule: '000000'
|
2030
2063
|
'27240004':
|
2031
2064
|
:check_digit_rule: '13'
|
2032
2065
|
:iban_rule: '000503'
|
@@ -2231,9 +2264,6 @@
|
|
2231
2264
|
'28070057':
|
2232
2265
|
:check_digit_rule: '63'
|
2233
2266
|
:iban_rule: '002002'
|
2234
|
-
'28090633':
|
2235
|
-
:check_digit_rule: A4
|
2236
|
-
:iban_rule: '001400'
|
2237
2267
|
'28220026':
|
2238
2268
|
:check_digit_rule: '61'
|
2239
2269
|
:iban_rule: '003900'
|
@@ -2351,9 +2381,6 @@
|
|
2351
2381
|
'29020000':
|
2352
2382
|
:check_digit_rule: '09'
|
2353
2383
|
:iban_rule: '000000'
|
2354
|
-
'29020100':
|
2355
|
-
:check_digit_rule: '18'
|
2356
|
-
:iban_rule: '000000'
|
2357
2384
|
'29020200':
|
2358
2385
|
:check_digit_rule: '09'
|
2359
2386
|
:iban_rule: '000000'
|
@@ -2393,15 +2420,18 @@
|
|
2393
2420
|
'29070059':
|
2394
2421
|
:check_digit_rule: '63'
|
2395
2422
|
:iban_rule: '002002'
|
2423
|
+
'29070324':
|
2424
|
+
:check_digit_rule: '63'
|
2425
|
+
:iban_rule: '002002'
|
2426
|
+
'29070367':
|
2427
|
+
:check_digit_rule: '63'
|
2428
|
+
:iban_rule: '002002'
|
2396
2429
|
'29080010':
|
2397
2430
|
:check_digit_rule: '76'
|
2398
2431
|
:iban_rule: '000503'
|
2399
2432
|
'29089210':
|
2400
2433
|
:check_digit_rule: '09'
|
2401
2434
|
:iban_rule: '000503'
|
2402
|
-
'29090605':
|
2403
|
-
:check_digit_rule: A4
|
2404
|
-
:iban_rule: '001400'
|
2405
2435
|
'29090900':
|
2406
2436
|
:check_digit_rule: '91'
|
2407
2437
|
:iban_rule: '000000'
|
@@ -2489,6 +2519,9 @@
|
|
2489
2519
|
'30010700':
|
2490
2520
|
:check_digit_rule: '09'
|
2491
2521
|
:iban_rule: '000000'
|
2522
|
+
'30018800':
|
2523
|
+
:check_digit_rule: '09'
|
2524
|
+
:iban_rule: '000000'
|
2492
2525
|
'30019000':
|
2493
2526
|
:check_digit_rule: '09'
|
2494
2527
|
:iban_rule: '000000'
|
@@ -2567,6 +2600,12 @@
|
|
2567
2600
|
'30070024':
|
2568
2601
|
:check_digit_rule: '63'
|
2569
2602
|
:iban_rule: '002002'
|
2603
|
+
'30070207':
|
2604
|
+
:check_digit_rule: '63'
|
2605
|
+
:iban_rule: '002002'
|
2606
|
+
'30070224':
|
2607
|
+
:check_digit_rule: '63'
|
2608
|
+
:iban_rule: '002002'
|
2570
2609
|
'30080000':
|
2571
2610
|
:check_digit_rule: '76'
|
2572
2611
|
:iban_rule: '000503'
|
@@ -2639,9 +2678,6 @@
|
|
2639
2678
|
'30110300':
|
2640
2679
|
:check_digit_rule: '09'
|
2641
2680
|
:iban_rule: '000000'
|
2642
|
-
'30120500':
|
2643
|
-
:check_digit_rule: '18'
|
2644
|
-
:iban_rule: '000000'
|
2645
2681
|
'30130100':
|
2646
2682
|
:check_digit_rule: '09'
|
2647
2683
|
:iban_rule: '000000'
|
@@ -2735,6 +2771,12 @@
|
|
2735
2771
|
'31070024':
|
2736
2772
|
:check_digit_rule: '63'
|
2737
2773
|
:iban_rule: '002002'
|
2774
|
+
'31070206':
|
2775
|
+
:check_digit_rule: '63'
|
2776
|
+
:iban_rule: '002002'
|
2777
|
+
'31070224':
|
2778
|
+
:check_digit_rule: '63'
|
2779
|
+
:iban_rule: '002002'
|
2738
2780
|
'31080015':
|
2739
2781
|
:check_digit_rule: '76'
|
2740
2782
|
:iban_rule: '000503'
|
@@ -2828,9 +2870,6 @@
|
|
2828
2870
|
'33060592':
|
2829
2871
|
:check_digit_rule: '51'
|
2830
2872
|
:iban_rule: '000000'
|
2831
|
-
'33060616':
|
2832
|
-
:check_digit_rule: A4
|
2833
|
-
:iban_rule: '001400'
|
2834
2873
|
'33070024':
|
2835
2874
|
:check_digit_rule: '63'
|
2836
2875
|
:iban_rule: '002002'
|
@@ -2921,9 +2960,6 @@
|
|
2921
2960
|
'35060386':
|
2922
2961
|
:check_digit_rule: '40'
|
2923
2962
|
:iban_rule: '000000'
|
2924
|
-
'35060632':
|
2925
|
-
:check_digit_rule: A4
|
2926
|
-
:iban_rule: '001400'
|
2927
2963
|
'35070024':
|
2928
2964
|
:check_digit_rule: '63'
|
2929
2965
|
:iban_rule: '002002'
|
@@ -2993,9 +3029,6 @@
|
|
2993
3029
|
'36010043':
|
2994
3030
|
:check_digit_rule: '24'
|
2995
3031
|
:iban_rule: '000000'
|
2996
|
-
'36010111':
|
2997
|
-
:check_digit_rule: '13'
|
2998
|
-
:iban_rule: '000000'
|
2999
3032
|
'36010200':
|
3000
3033
|
:check_digit_rule: '09'
|
3001
3034
|
:iban_rule: '000000'
|
@@ -3041,15 +3074,18 @@
|
|
3041
3074
|
'36060591':
|
3042
3075
|
:check_digit_rule: '51'
|
3043
3076
|
:iban_rule: '000000'
|
3044
|
-
'36060610':
|
3045
|
-
:check_digit_rule: A4
|
3046
|
-
:iban_rule: '001400'
|
3047
3077
|
'36070024':
|
3048
3078
|
:check_digit_rule: '63'
|
3049
3079
|
:iban_rule: '002002'
|
3050
3080
|
'36070050':
|
3051
3081
|
:check_digit_rule: '63'
|
3052
3082
|
:iban_rule: '002002'
|
3083
|
+
'36070208':
|
3084
|
+
:check_digit_rule: '63'
|
3085
|
+
:iban_rule: '002002'
|
3086
|
+
'36070224':
|
3087
|
+
:check_digit_rule: '63'
|
3088
|
+
:iban_rule: '002002'
|
3053
3089
|
'36080080':
|
3054
3090
|
:check_digit_rule: '76'
|
3055
3091
|
:iban_rule: '000503'
|
@@ -3104,6 +3140,9 @@
|
|
3104
3140
|
'37011000':
|
3105
3141
|
:check_digit_rule: '24'
|
3106
3142
|
:iban_rule: '000000'
|
3143
|
+
'37019000':
|
3144
|
+
:check_digit_rule: '09'
|
3145
|
+
:iban_rule: '000000'
|
3107
3146
|
'37020090':
|
3108
3147
|
:check_digit_rule: '99'
|
3109
3148
|
:iban_rule: '003200'
|
@@ -3167,9 +3206,6 @@
|
|
3167
3206
|
'37060590':
|
3168
3207
|
:check_digit_rule: '51'
|
3169
3208
|
:iban_rule: '000000'
|
3170
|
-
'37060615':
|
3171
|
-
:check_digit_rule: A4
|
3172
|
-
:iban_rule: '001400'
|
3173
3209
|
'37060993':
|
3174
3210
|
:check_digit_rule: '91'
|
3175
3211
|
:iban_rule: '000000'
|
@@ -3296,6 +3332,12 @@
|
|
3296
3332
|
'37070060':
|
3297
3333
|
:check_digit_rule: '63'
|
3298
3334
|
:iban_rule: '002002'
|
3335
|
+
'37070209':
|
3336
|
+
:check_digit_rule: '63'
|
3337
|
+
:iban_rule: '002002'
|
3338
|
+
'37070224':
|
3339
|
+
:check_digit_rule: '63'
|
3340
|
+
:iban_rule: '002002'
|
3299
3341
|
'37080040':
|
3300
3342
|
:check_digit_rule: '76'
|
3301
3343
|
:iban_rule: '000503'
|
@@ -3437,6 +3479,12 @@
|
|
3437
3479
|
'38070059':
|
3438
3480
|
:check_digit_rule: '63'
|
3439
3481
|
:iban_rule: '002002'
|
3482
|
+
'38070408':
|
3483
|
+
:check_digit_rule: '63'
|
3484
|
+
:iban_rule: '002002'
|
3485
|
+
'38070424':
|
3486
|
+
:check_digit_rule: '63'
|
3487
|
+
:iban_rule: '002002'
|
3440
3488
|
'38070724':
|
3441
3489
|
:check_digit_rule: '63'
|
3442
3490
|
:iban_rule: '002002'
|
@@ -3494,9 +3542,6 @@
|
|
3494
3542
|
'39060180':
|
3495
3543
|
:check_digit_rule: '06'
|
3496
3544
|
:iban_rule: '001800'
|
3497
|
-
'39060630':
|
3498
|
-
:check_digit_rule: A4
|
3499
|
-
:iban_rule: '001400'
|
3500
3545
|
'39061981':
|
3501
3546
|
:check_digit_rule: '06'
|
3502
3547
|
:iban_rule: '000000'
|
@@ -3506,6 +3551,12 @@
|
|
3506
3551
|
'39070024':
|
3507
3552
|
:check_digit_rule: '63'
|
3508
3553
|
:iban_rule: '002002'
|
3554
|
+
'39070210':
|
3555
|
+
:check_digit_rule: '63'
|
3556
|
+
:iban_rule: '002002'
|
3557
|
+
'39070224':
|
3558
|
+
:check_digit_rule: '63'
|
3559
|
+
:iban_rule: '002002'
|
3509
3560
|
'39080005':
|
3510
3561
|
:check_digit_rule: '76'
|
3511
3562
|
:iban_rule: '000503'
|
@@ -3575,9 +3626,6 @@
|
|
3575
3626
|
'40060560':
|
3576
3627
|
:check_digit_rule: '85'
|
3577
3628
|
:iban_rule: '000000'
|
3578
|
-
'40060614':
|
3579
|
-
:check_digit_rule: A4
|
3580
|
-
:iban_rule: '001400'
|
3581
3629
|
'40061238':
|
3582
3630
|
:check_digit_rule: '34'
|
3583
3631
|
:iban_rule: '000000'
|
@@ -3635,6 +3683,12 @@
|
|
3635
3683
|
'40070080':
|
3636
3684
|
:check_digit_rule: '63'
|
3637
3685
|
:iban_rule: '002002'
|
3686
|
+
'40070211':
|
3687
|
+
:check_digit_rule: '63'
|
3688
|
+
:iban_rule: '002002'
|
3689
|
+
'40070224':
|
3690
|
+
:check_digit_rule: '63'
|
3691
|
+
:iban_rule: '002002'
|
3638
3692
|
'40080040':
|
3639
3693
|
:check_digit_rule: '76'
|
3640
3694
|
:iban_rule: '000503'
|
@@ -3992,9 +4046,6 @@
|
|
3992
4046
|
'44060122':
|
3993
4047
|
:check_digit_rule: '34'
|
3994
4048
|
:iban_rule: '000000'
|
3995
|
-
'44060604':
|
3996
|
-
:check_digit_rule: A4
|
3997
|
-
:iban_rule: '001400'
|
3998
4049
|
'44064406':
|
3999
4050
|
:check_digit_rule: '09'
|
4000
4051
|
:iban_rule: '000000'
|
@@ -4067,9 +4118,6 @@
|
|
4067
4118
|
'44580085':
|
4068
4119
|
:check_digit_rule: '09'
|
4069
4120
|
:iban_rule: '000503'
|
4070
|
-
'44750065':
|
4071
|
-
:check_digit_rule: '00'
|
4072
|
-
:iban_rule: '000000'
|
4073
4121
|
'44761312':
|
4074
4122
|
:check_digit_rule: '34'
|
4075
4123
|
:iban_rule: '000000'
|
@@ -4259,6 +4307,12 @@
|
|
4259
4307
|
'46670024':
|
4260
4308
|
:check_digit_rule: '63'
|
4261
4309
|
:iban_rule: '002002'
|
4310
|
+
'46670204':
|
4311
|
+
:check_digit_rule: '63'
|
4312
|
+
:iban_rule: '002002'
|
4313
|
+
'46670224':
|
4314
|
+
:check_digit_rule: '63'
|
4315
|
+
:iban_rule: '002002'
|
4262
4316
|
'47000000':
|
4263
4317
|
:check_digit_rule: '09'
|
4264
4318
|
:iban_rule: '000100'
|
@@ -4331,6 +4385,12 @@
|
|
4331
4385
|
'47670024':
|
4332
4386
|
:check_digit_rule: '63'
|
4333
4387
|
:iban_rule: '002002'
|
4388
|
+
'47670205':
|
4389
|
+
:check_digit_rule: '63'
|
4390
|
+
:iban_rule: '002002'
|
4391
|
+
'47670224':
|
4392
|
+
:check_digit_rule: '63'
|
4393
|
+
:iban_rule: '002002'
|
4334
4394
|
'47691200':
|
4335
4395
|
:check_digit_rule: '34'
|
4336
4396
|
:iban_rule: '000000'
|
@@ -4511,9 +4571,6 @@
|
|
4511
4571
|
'50010060':
|
4512
4572
|
:check_digit_rule: '24'
|
4513
4573
|
:iban_rule: '000000'
|
4514
|
-
'50010111':
|
4515
|
-
:check_digit_rule: '13'
|
4516
|
-
:iban_rule: '000000'
|
4517
4574
|
'50010200':
|
4518
4575
|
:check_digit_rule: '09'
|
4519
4576
|
:iban_rule: '000000'
|
@@ -4544,9 +4601,6 @@
|
|
4544
4601
|
'50020200':
|
4545
4602
|
:check_digit_rule: '60'
|
4546
4603
|
:iban_rule: '000800'
|
4547
|
-
'50020300':
|
4548
|
-
:check_digit_rule: '18'
|
4549
|
-
:iban_rule: '000000'
|
4550
4604
|
'50020400':
|
4551
4605
|
:check_digit_rule: '09'
|
4552
4606
|
:iban_rule: '000000'
|
@@ -4571,6 +4625,9 @@
|
|
4571
4625
|
'50022200':
|
4572
4626
|
:check_digit_rule: '09'
|
4573
4627
|
:iban_rule: '000000'
|
4628
|
+
'50024024':
|
4629
|
+
:check_digit_rule: '09'
|
4630
|
+
:iban_rule: '000000'
|
4574
4631
|
'50025000':
|
4575
4632
|
:check_digit_rule: '10'
|
4576
4633
|
:iban_rule: '000000'
|
@@ -4775,6 +4832,27 @@
|
|
4775
4832
|
'50070024':
|
4776
4833
|
:check_digit_rule: '63'
|
4777
4834
|
:iban_rule: '002002'
|
4835
|
+
'50070324':
|
4836
|
+
:check_digit_rule: '63'
|
4837
|
+
:iban_rule: '002002'
|
4838
|
+
'50070371':
|
4839
|
+
:check_digit_rule: '63'
|
4840
|
+
:iban_rule: '002002'
|
4841
|
+
'50070435':
|
4842
|
+
:check_digit_rule: '63'
|
4843
|
+
:iban_rule: '002002'
|
4844
|
+
'50070436':
|
4845
|
+
:check_digit_rule: '63'
|
4846
|
+
:iban_rule: '002002'
|
4847
|
+
'50070437':
|
4848
|
+
:check_digit_rule: '63'
|
4849
|
+
:iban_rule: '002002'
|
4850
|
+
'50070438':
|
4851
|
+
:check_digit_rule: '63'
|
4852
|
+
:iban_rule: '002002'
|
4853
|
+
'50070439':
|
4854
|
+
:check_digit_rule: '63'
|
4855
|
+
:iban_rule: '002002'
|
4778
4856
|
'50073019':
|
4779
4857
|
:check_digit_rule: '63'
|
4780
4858
|
:iban_rule: '002002'
|
@@ -4853,15 +4931,9 @@
|
|
4853
4931
|
'50089400':
|
4854
4932
|
:check_digit_rule: '09'
|
4855
4933
|
:iban_rule: '000503'
|
4856
|
-
'50090200':
|
4857
|
-
:check_digit_rule: '00'
|
4858
|
-
:iban_rule: '000000'
|
4859
4934
|
'50090500':
|
4860
4935
|
:check_digit_rule: '73'
|
4861
4936
|
:iban_rule: '000000'
|
4862
|
-
'50090607':
|
4863
|
-
:check_digit_rule: A4
|
4864
|
-
:iban_rule: '001400'
|
4865
4937
|
'50090900':
|
4866
4938
|
:check_digit_rule: '91'
|
4867
4939
|
:iban_rule: '000000'
|
@@ -5234,9 +5306,6 @@
|
|
5234
5306
|
'50863513':
|
5235
5307
|
:check_digit_rule: '32'
|
5236
5308
|
:iban_rule: '000000'
|
5237
|
-
'50864322':
|
5238
|
-
:check_digit_rule: '32'
|
5239
|
-
:iban_rule: '000000'
|
5240
5309
|
'50865224':
|
5241
5310
|
:check_digit_rule: '32'
|
5242
5311
|
:iban_rule: '000000'
|
@@ -5249,6 +5318,12 @@
|
|
5249
5318
|
'50870024':
|
5250
5319
|
:check_digit_rule: '63'
|
5251
5320
|
:iban_rule: '002002'
|
5321
|
+
'50870324':
|
5322
|
+
:check_digit_rule: '63'
|
5323
|
+
:iban_rule: '002002'
|
5324
|
+
'50870393':
|
5325
|
+
:check_digit_rule: '63'
|
5326
|
+
:iban_rule: '002002'
|
5252
5327
|
'50880050':
|
5253
5328
|
:check_digit_rule: '76'
|
5254
5329
|
:iban_rule: '000503'
|
@@ -5261,9 +5336,6 @@
|
|
5261
5336
|
'50890000':
|
5262
5337
|
:check_digit_rule: '06'
|
5263
5338
|
:iban_rule: '000000'
|
5264
|
-
'50890634':
|
5265
|
-
:check_digit_rule: A4
|
5266
|
-
:iban_rule: '001400'
|
5267
5339
|
'50950068':
|
5268
5340
|
:check_digit_rule: '00'
|
5269
5341
|
:iban_rule: '000000'
|
@@ -5327,9 +5399,6 @@
|
|
5327
5399
|
'51090000':
|
5328
5400
|
:check_digit_rule: '06'
|
5329
5401
|
:iban_rule: '000000'
|
5330
|
-
'51090636':
|
5331
|
-
:check_digit_rule: A4
|
5332
|
-
:iban_rule: '001400'
|
5333
5402
|
'51091500':
|
5334
5403
|
:check_digit_rule: '06'
|
5335
5404
|
:iban_rule: '000000'
|
@@ -5366,9 +5435,6 @@
|
|
5366
5435
|
'51190000':
|
5367
5436
|
:check_digit_rule: '06'
|
5368
5437
|
:iban_rule: '000000'
|
5369
|
-
'51191200':
|
5370
|
-
:check_digit_rule: '06'
|
5371
|
-
:iban_rule: '000000'
|
5372
5438
|
'51191800':
|
5373
5439
|
:check_digit_rule: '06'
|
5374
5440
|
:iban_rule: '000000'
|
@@ -5402,9 +5468,6 @@
|
|
5402
5468
|
'51220200':
|
5403
5469
|
:check_digit_rule: '09'
|
5404
5470
|
:iban_rule: '000000'
|
5405
|
-
'51220211':
|
5406
|
-
:check_digit_rule: '09'
|
5407
|
-
:iban_rule: '000000'
|
5408
5471
|
'51220400':
|
5409
5472
|
:check_digit_rule: '09'
|
5410
5473
|
:iban_rule: '000000'
|
@@ -5513,6 +5576,9 @@
|
|
5513
5576
|
'51430400':
|
5514
5577
|
:check_digit_rule: '09'
|
5515
5578
|
:iban_rule: '000100'
|
5579
|
+
'51432100':
|
5580
|
+
:check_digit_rule: '09'
|
5581
|
+
:iban_rule: '000000'
|
5516
5582
|
'51540037':
|
5517
5583
|
:check_digit_rule: '13'
|
5518
5584
|
:iban_rule: '000503'
|
@@ -5609,6 +5675,9 @@
|
|
5609
5675
|
'52060410':
|
5610
5676
|
:check_digit_rule: '32'
|
5611
5677
|
:iban_rule: '000000'
|
5678
|
+
'52060420':
|
5679
|
+
:check_digit_rule: '32'
|
5680
|
+
:iban_rule: '000000'
|
5612
5681
|
'52061303':
|
5613
5682
|
:check_digit_rule: '32'
|
5614
5683
|
:iban_rule: '000000'
|
@@ -5639,9 +5708,6 @@
|
|
5639
5708
|
'52069065':
|
5640
5709
|
:check_digit_rule: '32'
|
5641
5710
|
:iban_rule: '000000'
|
5642
|
-
'52069103':
|
5643
|
-
:check_digit_rule: '32'
|
5644
|
-
:iban_rule: '000000'
|
5645
5711
|
'52069149':
|
5646
5712
|
:check_digit_rule: '32'
|
5647
5713
|
:iban_rule: '000000'
|
@@ -5669,9 +5735,6 @@
|
|
5669
5735
|
'52090000':
|
5670
5736
|
:check_digit_rule: '06'
|
5671
5737
|
:iban_rule: '000000'
|
5672
|
-
'52090611':
|
5673
|
-
:check_digit_rule: A4
|
5674
|
-
:iban_rule: '001400'
|
5675
5738
|
'52240006':
|
5676
5739
|
:check_digit_rule: '13'
|
5677
5740
|
:iban_rule: '000503'
|
@@ -5756,6 +5819,12 @@
|
|
5756
5819
|
'53070024':
|
5757
5820
|
:check_digit_rule: '63'
|
5758
5821
|
:iban_rule: '002002'
|
5822
|
+
'53070324':
|
5823
|
+
:check_digit_rule: '63'
|
5824
|
+
:iban_rule: '002002'
|
5825
|
+
'53070394':
|
5826
|
+
:check_digit_rule: '63'
|
5827
|
+
:iban_rule: '002002'
|
5759
5828
|
'53080030':
|
5760
5829
|
:check_digit_rule: '76'
|
5761
5830
|
:iban_rule: '000503'
|
@@ -5819,9 +5888,6 @@
|
|
5819
5888
|
'53381843':
|
5820
5889
|
:check_digit_rule: '76'
|
5821
5890
|
:iban_rule: '000503'
|
5822
|
-
'53390635':
|
5823
|
-
:check_digit_rule: A4
|
5824
|
-
:iban_rule: '001400'
|
5825
5891
|
'54020090':
|
5826
5892
|
:check_digit_rule: '99'
|
5827
5893
|
:iban_rule: '003200'
|
@@ -5954,9 +6020,6 @@
|
|
5954
6020
|
'54680022':
|
5955
6021
|
:check_digit_rule: '76'
|
5956
6022
|
:iban_rule: '000503'
|
5957
|
-
'54690623':
|
5958
|
-
:check_digit_rule: A4
|
5959
|
-
:iban_rule: '001400'
|
5960
6023
|
'54691200':
|
5961
6024
|
:check_digit_rule: '06'
|
5962
6025
|
:iban_rule: '000000'
|
@@ -6050,9 +6113,6 @@
|
|
6050
6113
|
'55060611':
|
6051
6114
|
:check_digit_rule: '32'
|
6052
6115
|
:iban_rule: '000000'
|
6053
|
-
'55060831':
|
6054
|
-
:check_digit_rule: A4
|
6055
|
-
:iban_rule: '001400'
|
6056
6116
|
'55061303':
|
6057
6117
|
:check_digit_rule: '32'
|
6058
6118
|
:iban_rule: '000000'
|
@@ -6068,6 +6128,12 @@
|
|
6068
6128
|
'55070040':
|
6069
6129
|
:check_digit_rule: '63'
|
6070
6130
|
:iban_rule: '002002'
|
6131
|
+
'55070324':
|
6132
|
+
:check_digit_rule: '63'
|
6133
|
+
:iban_rule: '002002'
|
6134
|
+
'55070396':
|
6135
|
+
:check_digit_rule: '63'
|
6136
|
+
:iban_rule: '002002'
|
6071
6137
|
'55080044':
|
6072
6138
|
:check_digit_rule: '76'
|
6073
6139
|
:iban_rule: '000503'
|
@@ -6209,9 +6275,6 @@
|
|
6209
6275
|
'57060000':
|
6210
6276
|
:check_digit_rule: '44'
|
6211
6277
|
:iban_rule: '004901'
|
6212
|
-
'57060612':
|
6213
|
-
:check_digit_rule: A4
|
6214
|
-
:iban_rule: '001400'
|
6215
6278
|
'57062675':
|
6216
6279
|
:check_digit_rule: '38'
|
6217
6280
|
:iban_rule: '000000'
|
@@ -6243,7 +6306,7 @@
|
|
6243
6306
|
:check_digit_rule: '38'
|
6244
6307
|
:iban_rule: '000000'
|
6245
6308
|
'57069806':
|
6246
|
-
:check_digit_rule: '
|
6309
|
+
:check_digit_rule: '09'
|
6247
6310
|
:iban_rule: '000000'
|
6248
6311
|
'57070024':
|
6249
6312
|
:check_digit_rule: '63'
|
@@ -6251,6 +6314,12 @@
|
|
6251
6314
|
'57070045':
|
6252
6315
|
:check_digit_rule: '63'
|
6253
6316
|
:iban_rule: '002002'
|
6317
|
+
'57070324':
|
6318
|
+
:check_digit_rule: '63'
|
6319
|
+
:iban_rule: '002002'
|
6320
|
+
'57070395':
|
6321
|
+
:check_digit_rule: '63'
|
6322
|
+
:iban_rule: '002002'
|
6254
6323
|
'57080070':
|
6255
6324
|
:check_digit_rule: '76'
|
6256
6325
|
:iban_rule: '000503'
|
@@ -6344,9 +6413,6 @@
|
|
6344
6413
|
'58560294':
|
6345
6414
|
:check_digit_rule: '06'
|
6346
6415
|
:iban_rule: '000100'
|
6347
|
-
'58561250':
|
6348
|
-
:check_digit_rule: '38'
|
6349
|
-
:iban_rule: '000000'
|
6350
6416
|
'58561626':
|
6351
6417
|
:check_digit_rule: '38'
|
6352
6418
|
:iban_rule: '000000'
|
@@ -6605,9 +6671,6 @@
|
|
6605
6671
|
'59080090':
|
6606
6672
|
:check_digit_rule: '76'
|
6607
6673
|
:iban_rule: '000503'
|
6608
|
-
'59090626':
|
6609
|
-
:check_digit_rule: A4
|
6610
|
-
:iban_rule: '001400'
|
6611
6674
|
'59090900':
|
6612
6675
|
:check_digit_rule: '91'
|
6613
6676
|
:iban_rule: '000000'
|
@@ -6671,9 +6734,6 @@
|
|
6671
6734
|
'60010070':
|
6672
6735
|
:check_digit_rule: '24'
|
6673
6736
|
:iban_rule: '000000'
|
6674
|
-
'60010111':
|
6675
|
-
:check_digit_rule: '13'
|
6676
|
-
:iban_rule: '000000'
|
6677
6737
|
'60010424':
|
6678
6738
|
:check_digit_rule: '09'
|
6679
6739
|
:iban_rule: '000000'
|
@@ -6989,6 +7049,12 @@
|
|
6989
7049
|
'60070070':
|
6990
7050
|
:check_digit_rule: '63'
|
6991
7051
|
:iban_rule: '002002'
|
7052
|
+
'60070214':
|
7053
|
+
:check_digit_rule: '63'
|
7054
|
+
:iban_rule: '002002'
|
7055
|
+
'60070224':
|
7056
|
+
:check_digit_rule: '63'
|
7057
|
+
:iban_rule: '002002'
|
6992
7058
|
'60080000':
|
6993
7059
|
:check_digit_rule: '76'
|
6994
7060
|
:iban_rule: '000503'
|
@@ -7022,9 +7088,6 @@
|
|
7022
7088
|
'60090300':
|
7023
7089
|
:check_digit_rule: '10'
|
7024
7090
|
:iban_rule: '000000'
|
7025
|
-
'60090609':
|
7026
|
-
:check_digit_rule: A4
|
7027
|
-
:iban_rule: '001400'
|
7028
7091
|
'60090700':
|
7029
7092
|
:check_digit_rule: '10'
|
7030
7093
|
:iban_rule: '000000'
|
@@ -7040,9 +7103,6 @@
|
|
7040
7103
|
'60120500':
|
7041
7104
|
:check_digit_rule: '09'
|
7042
7105
|
:iban_rule: '000000'
|
7043
|
-
'60130100':
|
7044
|
-
:check_digit_rule: '00'
|
7045
|
-
:iban_rule: '000000'
|
7046
7106
|
'60133300':
|
7047
7107
|
:check_digit_rule: '09'
|
7048
7108
|
:iban_rule: '004700'
|
@@ -7151,9 +7211,6 @@
|
|
7151
7211
|
'60491430':
|
7152
7212
|
:check_digit_rule: '10'
|
7153
7213
|
:iban_rule: '000000'
|
7154
|
-
'60651070':
|
7155
|
-
:check_digit_rule: A9
|
7156
|
-
:iban_rule: '004301'
|
7157
7214
|
'60661906':
|
7158
7215
|
:check_digit_rule: '10'
|
7159
7216
|
:iban_rule: '000000'
|
@@ -7421,6 +7478,12 @@
|
|
7421
7478
|
'64070085':
|
7422
7479
|
:check_digit_rule: '63'
|
7423
7480
|
:iban_rule: '002002'
|
7481
|
+
'64070215':
|
7482
|
+
:check_digit_rule: '63'
|
7483
|
+
:iban_rule: '002002'
|
7484
|
+
'64070224':
|
7485
|
+
:check_digit_rule: '63'
|
7486
|
+
:iban_rule: '002002'
|
7424
7487
|
'64080014':
|
7425
7488
|
:check_digit_rule: '76'
|
7426
7489
|
:iban_rule: '000503'
|
@@ -7721,12 +7784,15 @@
|
|
7721
7784
|
'66070024':
|
7722
7785
|
:check_digit_rule: '63'
|
7723
7786
|
:iban_rule: '002002'
|
7787
|
+
'66070213':
|
7788
|
+
:check_digit_rule: '63'
|
7789
|
+
:iban_rule: '002002'
|
7790
|
+
'66070224':
|
7791
|
+
:check_digit_rule: '63'
|
7792
|
+
:iban_rule: '002002'
|
7724
7793
|
'66080052':
|
7725
7794
|
:check_digit_rule: '76'
|
7726
7795
|
:iban_rule: '000503'
|
7727
|
-
'66090621':
|
7728
|
-
:check_digit_rule: A4
|
7729
|
-
:iban_rule: '001400'
|
7730
7796
|
'66090800':
|
7731
7797
|
:check_digit_rule: B3
|
7732
7798
|
:iban_rule: '000000'
|
@@ -7919,9 +7985,6 @@
|
|
7919
7985
|
'67090000':
|
7920
7986
|
:check_digit_rule: '06'
|
7921
7987
|
:iban_rule: '000000'
|
7922
|
-
'67090617':
|
7923
|
-
:check_digit_rule: A4
|
7924
|
-
:iban_rule: '001400'
|
7925
7988
|
'67092300':
|
7926
7989
|
:check_digit_rule: '06'
|
7927
7990
|
:iban_rule: '000000'
|
@@ -7991,9 +8054,6 @@
|
|
7991
8054
|
'67462368':
|
7992
8055
|
:check_digit_rule: '06'
|
7993
8056
|
:iban_rule: '000000'
|
7994
|
-
'67462480':
|
7995
|
-
:check_digit_rule: '06'
|
7996
|
-
:iban_rule: '000000'
|
7997
8057
|
'68000000':
|
7998
8058
|
:check_digit_rule: '09'
|
7999
8059
|
:iban_rule: '004201'
|
@@ -8045,6 +8105,12 @@
|
|
8045
8105
|
'68070030':
|
8046
8106
|
:check_digit_rule: '63'
|
8047
8107
|
:iban_rule: '002002'
|
8108
|
+
'68070212':
|
8109
|
+
:check_digit_rule: '63'
|
8110
|
+
:iban_rule: '002002'
|
8111
|
+
'68070224':
|
8112
|
+
:check_digit_rule: '63'
|
8113
|
+
:iban_rule: '002002'
|
8048
8114
|
'68080030':
|
8049
8115
|
:check_digit_rule: '76'
|
8050
8116
|
:iban_rule: '000503'
|
@@ -8060,9 +8126,6 @@
|
|
8060
8126
|
'68090000':
|
8061
8127
|
:check_digit_rule: '06'
|
8062
8128
|
:iban_rule: '000000'
|
8063
|
-
'68090622':
|
8064
|
-
:check_digit_rule: A4
|
8065
|
-
:iban_rule: '001400'
|
8066
8129
|
'68090900':
|
8067
8130
|
:check_digit_rule: '91'
|
8068
8131
|
:iban_rule: '000000'
|
@@ -8201,9 +8264,6 @@
|
|
8201
8264
|
'69450065':
|
8202
8265
|
:check_digit_rule: '03'
|
8203
8266
|
:iban_rule: '000000'
|
8204
|
-
'69451070':
|
8205
|
-
:check_digit_rule: '03'
|
8206
|
-
:iban_rule: '000100'
|
8207
8267
|
'69470024':
|
8208
8268
|
:check_digit_rule: '63'
|
8209
8269
|
:iban_rule: '002002'
|
@@ -8222,9 +8282,6 @@
|
|
8222
8282
|
'70010080':
|
8223
8283
|
:check_digit_rule: '24'
|
8224
8284
|
:iban_rule: '000000'
|
8225
|
-
'70010111':
|
8226
|
-
:check_digit_rule: '13'
|
8227
|
-
:iban_rule: '000000'
|
8228
8285
|
'70010424':
|
8229
8286
|
:check_digit_rule: '09'
|
8230
8287
|
:iban_rule: '000000'
|
@@ -8417,6 +8474,12 @@
|
|
8417
8474
|
'70070024':
|
8418
8475
|
:check_digit_rule: '63'
|
8419
8476
|
:iban_rule: '002002'
|
8477
|
+
'70070324':
|
8478
|
+
:check_digit_rule: '63'
|
8479
|
+
:iban_rule: '002002'
|
8480
|
+
'70070362':
|
8481
|
+
:check_digit_rule: '63'
|
8482
|
+
:iban_rule: '002002'
|
8420
8483
|
'70080000':
|
8421
8484
|
:check_digit_rule: '76'
|
8422
8485
|
:iban_rule: '000503'
|
@@ -8453,9 +8516,6 @@
|
|
8453
8516
|
'70090500':
|
8454
8517
|
:check_digit_rule: '81'
|
8455
8518
|
:iban_rule: '000000'
|
8456
|
-
'70090606':
|
8457
|
-
:check_digit_rule: A4
|
8458
|
-
:iban_rule: '001400'
|
8459
8519
|
'70091500':
|
8460
8520
|
:check_digit_rule: '88'
|
8461
8521
|
:iban_rule: '000000'
|
@@ -8513,9 +8573,6 @@
|
|
8513
8573
|
'70160000':
|
8514
8574
|
:check_digit_rule: '09'
|
8515
8575
|
:iban_rule: '000000'
|
8516
|
-
'70160300':
|
8517
|
-
:check_digit_rule: '88'
|
8518
|
-
:iban_rule: '000000'
|
8519
8576
|
'70163370':
|
8520
8577
|
:check_digit_rule: '88'
|
8521
8578
|
:iban_rule: '000000'
|
@@ -8603,9 +8660,6 @@
|
|
8603
8660
|
'70169476':
|
8604
8661
|
:check_digit_rule: '88'
|
8605
8662
|
:iban_rule: '000000'
|
8606
|
-
'70169493':
|
8607
|
-
:check_digit_rule: '88'
|
8608
|
-
:iban_rule: '000000'
|
8609
8663
|
'70169509':
|
8610
8664
|
:check_digit_rule: '88'
|
8611
8665
|
:iban_rule: '000000'
|
@@ -8948,6 +9002,12 @@
|
|
8948
9002
|
'72070024':
|
8949
9003
|
:check_digit_rule: '63'
|
8950
9004
|
:iban_rule: '002002'
|
9005
|
+
'72070324':
|
9006
|
+
:check_digit_rule: '63'
|
9007
|
+
:iban_rule: '002002'
|
9008
|
+
'72070365':
|
9009
|
+
:check_digit_rule: '63'
|
9010
|
+
:iban_rule: '002002'
|
8951
9011
|
'72080001':
|
8952
9012
|
:check_digit_rule: '76'
|
8953
9013
|
:iban_rule: '000503'
|
@@ -9026,6 +9086,12 @@
|
|
9026
9086
|
'72170024':
|
9027
9087
|
:check_digit_rule: '63'
|
9028
9088
|
:iban_rule: '002002'
|
9089
|
+
'72170324':
|
9090
|
+
:check_digit_rule: '63'
|
9091
|
+
:iban_rule: '002002'
|
9092
|
+
'72170363':
|
9093
|
+
:check_digit_rule: '63'
|
9094
|
+
:iban_rule: '002002'
|
9029
9095
|
'72180002':
|
9030
9096
|
:check_digit_rule: '76'
|
9031
9097
|
:iban_rule: '000503'
|
@@ -9473,9 +9539,6 @@
|
|
9473
9539
|
'75090500':
|
9474
9540
|
:check_digit_rule: '84'
|
9475
9541
|
:iban_rule: '000000'
|
9476
|
-
'75090629':
|
9477
|
-
:check_digit_rule: A4
|
9478
|
-
:iban_rule: '001400'
|
9479
9542
|
'75090900':
|
9480
9543
|
:check_digit_rule: '91'
|
9481
9544
|
:iban_rule: '000000'
|
@@ -9668,6 +9731,12 @@
|
|
9668
9731
|
'76070024':
|
9669
9732
|
:check_digit_rule: '63'
|
9670
9733
|
:iban_rule: '002002'
|
9734
|
+
'76070324':
|
9735
|
+
:check_digit_rule: '63'
|
9736
|
+
:iban_rule: '002002'
|
9737
|
+
'76070361':
|
9738
|
+
:check_digit_rule: '63'
|
9739
|
+
:iban_rule: '002002'
|
9671
9740
|
'76080040':
|
9672
9741
|
:check_digit_rule: '76'
|
9673
9742
|
:iban_rule: '000503'
|
@@ -9695,9 +9764,6 @@
|
|
9695
9764
|
'76090500':
|
9696
9765
|
:check_digit_rule: '81'
|
9697
9766
|
:iban_rule: '000000'
|
9698
|
-
'76090613':
|
9699
|
-
:check_digit_rule: A4
|
9700
|
-
:iban_rule: '001400'
|
9701
9767
|
'76090900':
|
9702
9768
|
:check_digit_rule: '91'
|
9703
9769
|
:iban_rule: '000000'
|
@@ -9881,12 +9947,6 @@
|
|
9881
9947
|
'77365792':
|
9882
9948
|
:check_digit_rule: '88'
|
9883
9949
|
:iban_rule: '000000'
|
9884
|
-
'77390000':
|
9885
|
-
:check_digit_rule: '88'
|
9886
|
-
:iban_rule: '000000'
|
9887
|
-
'77390628':
|
9888
|
-
:check_digit_rule: A4
|
9889
|
-
:iban_rule: '001400'
|
9890
9950
|
'78020070':
|
9891
9951
|
:check_digit_rule: '99'
|
9892
9952
|
:iban_rule: '003200'
|
@@ -9998,9 +10058,6 @@
|
|
9998
10058
|
'79090000':
|
9999
10059
|
:check_digit_rule: '88'
|
10000
10060
|
:iban_rule: '000000'
|
10001
|
-
'79090624':
|
10002
|
-
:check_digit_rule: A4
|
10003
|
-
:iban_rule: '001400'
|
10004
10061
|
'79161058':
|
10005
10062
|
:check_digit_rule: '88'
|
10006
10063
|
:iban_rule: '000000'
|
@@ -10079,6 +10136,12 @@
|
|
10079
10136
|
'79570051':
|
10080
10137
|
:check_digit_rule: '63'
|
10081
10138
|
:iban_rule: '002002'
|
10139
|
+
'79570324':
|
10140
|
+
:check_digit_rule: '63'
|
10141
|
+
:iban_rule: '002002'
|
10142
|
+
'79570364':
|
10143
|
+
:check_digit_rule: '63'
|
10144
|
+
:iban_rule: '002002'
|
10082
10145
|
'79580099':
|
10083
10146
|
:check_digit_rule: '76'
|
10084
10147
|
:iban_rule: '000503'
|
@@ -10298,6 +10361,12 @@
|
|
10298
10361
|
'82070024':
|
10299
10362
|
:check_digit_rule: '63'
|
10300
10363
|
:iban_rule: '002002'
|
10364
|
+
'82070324':
|
10365
|
+
:check_digit_rule: '63'
|
10366
|
+
:iban_rule: '002002'
|
10367
|
+
'82070366':
|
10368
|
+
:check_digit_rule: '63'
|
10369
|
+
:iban_rule: '002002'
|
10301
10370
|
'82080000':
|
10302
10371
|
:check_digit_rule: '76'
|
10303
10372
|
:iban_rule: '000503'
|
@@ -10532,6 +10601,12 @@
|
|
10532
10601
|
'86070024':
|
10533
10602
|
:check_digit_rule: '63'
|
10534
10603
|
:iban_rule: '002002'
|
10604
|
+
'86070407':
|
10605
|
+
:check_digit_rule: '63'
|
10606
|
+
:iban_rule: '002002'
|
10607
|
+
'86070424':
|
10608
|
+
:check_digit_rule: '63'
|
10609
|
+
:iban_rule: '002002'
|
10535
10610
|
'86080000':
|
10536
10611
|
:check_digit_rule: '76'
|
10537
10612
|
:iban_rule: '000503'
|
@@ -10604,6 +10679,12 @@
|
|
10604
10679
|
'87070024':
|
10605
10680
|
:check_digit_rule: '63'
|
10606
10681
|
:iban_rule: '002002'
|
10682
|
+
'87070406':
|
10683
|
+
:check_digit_rule: '63'
|
10684
|
+
:iban_rule: '002002'
|
10685
|
+
'87070424':
|
10686
|
+
:check_digit_rule: '63'
|
10687
|
+
:iban_rule: '002002'
|
10607
10688
|
'87080000':
|
10608
10689
|
:check_digit_rule: '76'
|
10609
10690
|
:iban_rule: '000503'
|