ibandit 1.13.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/bin/build_structure_file.rb +221 -114
- data/data/raw/IBANSTRUCTURE.xml +1134 -292
- data/data/raw/IBAN_Registry.txt +51 -48
- data/data/raw/pseudo_ibans.yml +52 -0
- data/data/raw/structure_additions.yml +29 -1
- data/data/structures.yml +524 -25
- data/lib/ibandit/constants.rb +1 -1
- data/lib/ibandit/iban.rb +2 -2
- data/lib/ibandit/iban_assembler.rb +1 -1
- data/lib/ibandit/local_details_cleaner.rb +7 -7
- data/lib/ibandit/sweden/local_details_converter.rb +1 -1
- data/lib/ibandit/version.rb +1 -1
- data/spec/ibandit/iban_assembler_spec.rb +48 -0
- data/spec/ibandit/iban_spec.rb +61 -1
- metadata +3 -2
data/data/structures.yml
CHANGED
@@ -8,6 +8,9 @@ AD:
|
|
8
8
|
:account_number_length: 12
|
9
9
|
:total_length: 24
|
10
10
|
:national_id_length: 8
|
11
|
+
:iban_example: AD1200012030200359100100
|
12
|
+
:bban_example: '00012030200359100100'
|
13
|
+
:domestic_account_number_example: '2030200359100100'
|
11
14
|
:bban_format: "\\d{4}\\d{4}[A-Z0-9]{12}"
|
12
15
|
:bank_code_format: "\\d{4}"
|
13
16
|
:branch_code_format: "\\d{4}"
|
@@ -21,6 +24,9 @@ AE:
|
|
21
24
|
:account_number_length: 16
|
22
25
|
:total_length: 23
|
23
26
|
:national_id_length: 3
|
27
|
+
:iban_example: AE070331234567890123456
|
28
|
+
:bban_example: '0331234567890123456'
|
29
|
+
:domestic_account_number_example: '1234567890123456'
|
24
30
|
:bban_format: "\\d{3}\\d{16}"
|
25
31
|
:bank_code_format: "\\d{3}"
|
26
32
|
:account_number_format: "\\d{16}"
|
@@ -33,10 +39,13 @@ AL:
|
|
33
39
|
:account_number_length: 16
|
34
40
|
:total_length: 28
|
35
41
|
:national_id_length: 8
|
42
|
+
:iban_example: AL47212110090000000235698741
|
43
|
+
:bban_example: '212110090000000235698741'
|
44
|
+
:domestic_account_number_example: '0000000235698741'
|
36
45
|
:bban_format: "\\d{8}[A-Z0-9]{16}"
|
37
46
|
:bank_code_format: "\\d{3}"
|
38
|
-
:account_number_format: "[A-Z0-9]{16}"
|
39
47
|
:branch_code_format: "\\d{5}"
|
48
|
+
:account_number_format: "[A-Z0-9]{16}"
|
40
49
|
AT:
|
41
50
|
:bank_code_position: 5
|
42
51
|
:bank_code_length: 5
|
@@ -46,6 +55,9 @@ AT:
|
|
46
55
|
:account_number_length: 11
|
47
56
|
:total_length: 20
|
48
57
|
:national_id_length: 5
|
58
|
+
:iban_example: AT611904300234573201
|
59
|
+
:bban_example: '1904300234573201'
|
60
|
+
:domestic_account_number_example: BLZ 19043 Kto 234573201
|
49
61
|
:bban_format: "\\d{5}\\d{11}"
|
50
62
|
:bank_code_format: "\\d{5}"
|
51
63
|
:account_number_format: "\\d{11}"
|
@@ -58,6 +70,9 @@ AZ:
|
|
58
70
|
:account_number_length: 20
|
59
71
|
:total_length: 28
|
60
72
|
:national_id_length: 4
|
73
|
+
:iban_example: AZ21NABZ00000000137010001944
|
74
|
+
:bban_example: NABZ00000000137010001944
|
75
|
+
:domestic_account_number_example: NABZ00000000137010001944
|
61
76
|
:bban_format: "[A-Z]{4}[A-Z0-9]{20}"
|
62
77
|
:bank_code_format: "[A-Z]{4}"
|
63
78
|
:account_number_format: "[A-Z0-9]{20}"
|
@@ -70,6 +85,9 @@ BA:
|
|
70
85
|
:account_number_length: 10
|
71
86
|
:total_length: 20
|
72
87
|
:national_id_length: 3
|
88
|
+
:iban_example: BA391290079401028494
|
89
|
+
:bban_example: '1990440001200279'
|
90
|
+
:domestic_account_number_example: 199-044-00012002-79
|
73
91
|
:bban_format: "\\d{3}\\d{3}\\d{8}\\d{2}"
|
74
92
|
:bank_code_format: "\\d{3}"
|
75
93
|
:branch_code_format: "\\d{3}"
|
@@ -83,6 +101,9 @@ BE:
|
|
83
101
|
:account_number_length: 12
|
84
102
|
:total_length: 16
|
85
103
|
:national_id_length: 3
|
104
|
+
:iban_example: BE68539007547034
|
105
|
+
:bban_example: '539007547034'
|
106
|
+
:domestic_account_number_example: BE68 5390 0754 7034
|
86
107
|
:bban_format: "\\d{3}\\d{7}\\d{2}"
|
87
108
|
:bank_code_format: "\\d{3}"
|
88
109
|
:account_number_format: "\\d{7}\\d{2}\\d{3}"
|
@@ -97,6 +118,8 @@ BG:
|
|
97
118
|
:account_number_length: 10
|
98
119
|
:total_length: 22
|
99
120
|
:national_id_length: 8
|
121
|
+
:iban_example: BG80BNBG96611020345678
|
122
|
+
:bban_example: BNBG96611020345678
|
100
123
|
:bban_format: "[A-Z]{4}\\d{4}\\d{2}[A-Z0-9]{8}"
|
101
124
|
:bank_code_format: "[A-Z]{4}"
|
102
125
|
:branch_code_format: "\\d{4}"
|
@@ -110,6 +133,9 @@ BH:
|
|
110
133
|
:account_number_length: 14
|
111
134
|
:total_length: 22
|
112
135
|
:national_id_length: 4
|
136
|
+
:iban_example: BH67BMAG00001299123456
|
137
|
+
:bban_example: BMAG00001299123456
|
138
|
+
:domestic_account_number_example: '00001299123456'
|
113
139
|
:bban_format: "[A-Z]{4}[A-Z0-9]{14}"
|
114
140
|
:bank_code_format: "[A-Z]{4}"
|
115
141
|
:account_number_format: "[A-Z0-9]{14}"
|
@@ -122,10 +148,13 @@ BR:
|
|
122
148
|
:account_number_length: 12
|
123
149
|
:total_length: 29
|
124
150
|
:national_id_length: 8
|
151
|
+
:iban_example: BR1800360305000010009795493C1
|
152
|
+
:bban_example: '00360305000010009795493P1'
|
153
|
+
:domestic_account_number_example: '0009795493C1'
|
125
154
|
:bban_format: "\\d{8}\\d{5}\\d{10}[A-Z]{1}[A-Z0-9]{1}"
|
126
155
|
:bank_code_format: "\\d{8}"
|
127
|
-
:account_number_format: "\\d{10}[A-Z]{1}[A-Z0-9]{1}"
|
128
156
|
:branch_code_format: "\\d{5}"
|
157
|
+
:account_number_format: "\\d{10}[A-Z]{1}[A-Z0-9]{1}"
|
129
158
|
CH:
|
130
159
|
:bank_code_position: 5
|
131
160
|
:bank_code_length: 5
|
@@ -135,6 +164,9 @@ CH:
|
|
135
164
|
:account_number_length: 12
|
136
165
|
:total_length: 21
|
137
166
|
:national_id_length: 5
|
167
|
+
:iban_example: CH9300762011623852957
|
168
|
+
:bban_example: '00762011623852957'
|
169
|
+
:domestic_account_number_example: 762 1162-3852.957
|
138
170
|
:bban_format: "\\d{5}[A-Z0-9]{12}"
|
139
171
|
:bank_code_format: "\\d{5}"
|
140
172
|
:account_number_format: "[A-Z0-9]{12}"
|
@@ -147,6 +179,9 @@ CR:
|
|
147
179
|
:account_number_length: 14
|
148
180
|
:total_length: 22
|
149
181
|
:national_id_length: 4
|
182
|
+
:iban_example: CR05015202001026284066
|
183
|
+
:bban_example: '15202001026284066'
|
184
|
+
:domestic_account_number_example: '02001026284066'
|
150
185
|
:bban_format: "\\d{4}\\d{14}"
|
151
186
|
:bank_code_format: "\\d{4}"
|
152
187
|
:account_number_format: "\\d{14}"
|
@@ -159,6 +194,9 @@ CY:
|
|
159
194
|
:account_number_length: 16
|
160
195
|
:total_length: 28
|
161
196
|
:national_id_length: 8
|
197
|
+
:iban_example: CY17002001280000001200527600
|
198
|
+
:bban_example: '002001280000001200527600'
|
199
|
+
:domestic_account_number_example: '0000001200527600'
|
162
200
|
:bban_format: "\\d{3}\\d{5}[A-Z0-9]{16}"
|
163
201
|
:bank_code_format: "\\d{3}"
|
164
202
|
:branch_code_format: "\\d{5}"
|
@@ -172,6 +210,9 @@ CZ:
|
|
172
210
|
:account_number_length: 16
|
173
211
|
:total_length: 24
|
174
212
|
:national_id_length: 4
|
213
|
+
:iban_example: CZ6508000000192000145399
|
214
|
+
:bban_example: '08000000192000145399'
|
215
|
+
:domestic_account_number_example: 19-2000145399/0800
|
175
216
|
:bban_format: "\\d{4}\\d{6}\\d{10}"
|
176
217
|
:bank_code_format: "\\d{4}"
|
177
218
|
:account_number_format: "\\d{6}\\d{10}"
|
@@ -184,6 +225,9 @@ DE:
|
|
184
225
|
:account_number_length: 10
|
185
226
|
:total_length: 22
|
186
227
|
:national_id_length: 8
|
228
|
+
:iban_example: DE89370400440532013000
|
229
|
+
:bban_example: '370400440532013000'
|
230
|
+
:domestic_account_number_example: '532013000'
|
187
231
|
:bban_format: "\\d{8}\\d{10}"
|
188
232
|
:bank_code_format: "\\d{8}"
|
189
233
|
:account_number_format: "\\d{10}"
|
@@ -196,6 +240,9 @@ DK:
|
|
196
240
|
:account_number_length: 10
|
197
241
|
:total_length: 18
|
198
242
|
:national_id_length: 4
|
243
|
+
:iban_example: DK5000400440116243
|
244
|
+
:bban_example: '00400440116243'
|
245
|
+
:domestic_account_number_example: 0040 0440116243
|
199
246
|
:bban_format: "\\d{4}\\d{9}\\d{1}"
|
200
247
|
:bank_code_format: "\\d{4}"
|
201
248
|
:account_number_format: "\\d{9}\\d{1}"
|
@@ -208,6 +255,9 @@ DO:
|
|
208
255
|
:account_number_length: 20
|
209
256
|
:total_length: 28
|
210
257
|
:national_id_length: 4
|
258
|
+
:iban_example: DO28BAGR00000001212453611324
|
259
|
+
:bban_example: BAGR00000001212453611324
|
260
|
+
:domestic_account_number_example: '00000001212453611324'
|
211
261
|
:bban_format: "[A-Z0-9]{4}\\d{20}"
|
212
262
|
:bank_code_format: "[A-Z0-9]{4}"
|
213
263
|
:account_number_format: "\\d{20}"
|
@@ -220,6 +270,9 @@ EE:
|
|
220
270
|
:account_number_length: 14
|
221
271
|
:total_length: 20
|
222
272
|
:national_id_length: 2
|
273
|
+
:iban_example: EE382200221020145685
|
274
|
+
:bban_example: '2200221020145685'
|
275
|
+
:domestic_account_number_example: '221020145685'
|
223
276
|
:bban_format: "\\d{2}\\d{2}\\d{11}\\d{1}"
|
224
277
|
:bank_code_format: "[1-9][0-9]"
|
225
278
|
:account_number_format: "\\d{2}\\d{11}\\d{1}"
|
@@ -234,6 +287,9 @@ ES:
|
|
234
287
|
:account_number_length: 12
|
235
288
|
:total_length: 24
|
236
289
|
:national_id_length: 4
|
290
|
+
:iban_example: ES9121000418450200051332
|
291
|
+
:bban_example: '21000418450200051332'
|
292
|
+
:domestic_account_number_example: 2100 0418 45 0200051332
|
237
293
|
:bban_format: "\\d{4}\\d{4}\\d{1}\\d{1}\\d{10}"
|
238
294
|
:bank_code_format: "\\d{4}"
|
239
295
|
:branch_code_format: "\\d{4}"
|
@@ -249,6 +305,7 @@ FI:
|
|
249
305
|
:account_number_length: 8
|
250
306
|
:total_length: 18
|
251
307
|
:national_id_length: 3
|
308
|
+
:iban_example: FI2112345600000785
|
252
309
|
:bban_format: "\\d{6}\\d{7}\\d{1}"
|
253
310
|
:bank_code_format: "\\d{6}"
|
254
311
|
:account_number_format: "\\d{7}\\d{1}"
|
@@ -263,6 +320,9 @@ FO:
|
|
263
320
|
:account_number_length: 10
|
264
321
|
:total_length: 18
|
265
322
|
:national_id_length: 4
|
323
|
+
:iban_example: FO6264600001631634
|
324
|
+
:bban_example: '64600001631634'
|
325
|
+
:domestic_account_number_example: 6460 0001631634
|
266
326
|
:bban_format: "\\d{4}\\d{9}\\d{1}"
|
267
327
|
:bank_code_format: "\\d{4}"
|
268
328
|
:account_number_format: "\\d{9}\\d{1}"
|
@@ -275,6 +335,9 @@ FR:
|
|
275
335
|
:account_number_length: 13
|
276
336
|
:total_length: 27
|
277
337
|
:national_id_length: 10
|
338
|
+
:iban_example: FR1420041010050500013M02606
|
339
|
+
:bban_example: 20041010050500013M02606
|
340
|
+
:domestic_account_number_example: 20041 01005 0500013M026 06
|
278
341
|
:bban_format: "\\d{5}\\d{5}[A-Z0-9]{11}\\d{2}"
|
279
342
|
:bank_code_format: "\\d{5}"
|
280
343
|
:account_number_format: "[A-Z0-9]{11}\\d{2}"
|
@@ -290,6 +353,9 @@ GB:
|
|
290
353
|
:account_number_length: 8
|
291
354
|
:total_length: 22
|
292
355
|
:national_id_length: 10
|
356
|
+
:iban_example: GB29NWBK60161331926819
|
357
|
+
:bban_example: NWBK60161331926819
|
358
|
+
:domestic_account_number_example: 60-16-13 31926819
|
293
359
|
:bban_format: "[A-Z]{4}\\d{6}\\d{8}"
|
294
360
|
:bank_code_format: "[A-Z]{4}"
|
295
361
|
:branch_code_format: "\\d{6}"
|
@@ -303,6 +369,9 @@ GE:
|
|
303
369
|
:account_number_length: 16
|
304
370
|
:total_length: 22
|
305
371
|
:national_id_length: 2
|
372
|
+
:iban_example: GE29NB0000000101904917
|
373
|
+
:bban_example: NB0000000101904917
|
374
|
+
:domestic_account_number_example: '0000000101904917'
|
306
375
|
:bban_format: "[A-Z]{2}\\d{16}"
|
307
376
|
:bank_code_format: "[A-Z]{2}"
|
308
377
|
:account_number_format: "\\d{16}"
|
@@ -315,6 +384,9 @@ GI:
|
|
315
384
|
:account_number_length: 15
|
316
385
|
:total_length: 23
|
317
386
|
:national_id_length: 4
|
387
|
+
:iban_example: GI75NWBK000000007099453
|
388
|
+
:bban_example: NWBK000000007099453
|
389
|
+
:domestic_account_number_example: 0000 00007099 453
|
318
390
|
:bban_format: "[A-Z]{4}[A-Z0-9]{15}"
|
319
391
|
:bank_code_format: "[A-Z]{4}"
|
320
392
|
:account_number_format: "[A-Z0-9]{15}"
|
@@ -327,6 +399,9 @@ GL:
|
|
327
399
|
:account_number_length: 10
|
328
400
|
:total_length: 18
|
329
401
|
:national_id_length: 4
|
402
|
+
:iban_example: GL8964710001000206
|
403
|
+
:bban_example: '64710001000206'
|
404
|
+
:domestic_account_number_example: 6471 0001000206
|
330
405
|
:bban_format: "\\d{4}\\d{9}\\d{1}"
|
331
406
|
:bank_code_format: "\\d{4}"
|
332
407
|
:account_number_format: "\\d{9}\\d{1}"
|
@@ -339,6 +414,9 @@ GR:
|
|
339
414
|
:account_number_length: 16
|
340
415
|
:total_length: 27
|
341
416
|
:national_id_length: 3
|
417
|
+
:iban_example: GR1601101250000000012300695
|
418
|
+
:bban_example: '01101250000000012300695'
|
419
|
+
:domestic_account_number_example: '01250000000012300695'
|
342
420
|
:bban_format: "\\d{3}\\d{4}[A-Z0-9]{16}"
|
343
421
|
:bank_code_format: "\\d{3}"
|
344
422
|
:branch_code_format: "\\d{4}"
|
@@ -352,6 +430,9 @@ GT:
|
|
352
430
|
:account_number_length: 20
|
353
431
|
:total_length: 28
|
354
432
|
:national_id_length: 4
|
433
|
+
:iban_example: GT82TRAJ01020000001210029690
|
434
|
+
:bban_example: TRAJ01020000001210029690
|
435
|
+
:domestic_account_number_example: '01020000001210029690'
|
355
436
|
:bban_format: "[A-Z0-9]{4}[A-Z0-9]{20}"
|
356
437
|
:bank_code_format: "[A-Z0-9]{4}"
|
357
438
|
:account_number_format: "[A-Z0-9]{20}"
|
@@ -364,6 +445,9 @@ HR:
|
|
364
445
|
:account_number_length: 10
|
365
446
|
:total_length: 21
|
366
447
|
:national_id_length: 7
|
448
|
+
:iban_example: HR1210010051863000160
|
449
|
+
:bban_example: '10010051863000160'
|
450
|
+
:domestic_account_number_example: 1001005-1863000160
|
367
451
|
:bban_format: "\\d{7}\\d{10}"
|
368
452
|
:bank_code_format: "\\d{7}"
|
369
453
|
:account_number_format: "\\d{10}"
|
@@ -376,6 +460,9 @@ HU:
|
|
376
460
|
:account_number_length: 17
|
377
461
|
:total_length: 28
|
378
462
|
:national_id_length: 7
|
463
|
+
:iban_example: HU42117730161111101800000000
|
464
|
+
:bban_example: '117730161111101800000000'
|
465
|
+
:domestic_account_number_example: 11773016-11111018-00000000
|
379
466
|
:bban_format: "\\d{3}\\d{4}\\d{1}\\d{15}\\d{1}"
|
380
467
|
:bank_code_format: "\\d{3}"
|
381
468
|
:branch_code_format: "\\d{4}"
|
@@ -389,6 +476,9 @@ IE:
|
|
389
476
|
:account_number_length: 8
|
390
477
|
:total_length: 22
|
391
478
|
:national_id_length: 10
|
479
|
+
:iban_example: IE29AIBK93115212345678
|
480
|
+
:bban_example: AIBK93115212345678
|
481
|
+
:domestic_account_number_example: 93-11-52 12345678
|
392
482
|
:bban_format: "[A-Z]{4}\\d{6}\\d{8}"
|
393
483
|
:bank_code_format: "[A-Z]{4}"
|
394
484
|
:branch_code_format: "\\d{6}"
|
@@ -402,6 +492,9 @@ IL:
|
|
402
492
|
:account_number_length: 13
|
403
493
|
:total_length: 23
|
404
494
|
:national_id_length: 6
|
495
|
+
:iban_example: IL620108000000099999999
|
496
|
+
:bban_example: '010800000099999999'
|
497
|
+
:domestic_account_number_example: 10-800-99999999
|
405
498
|
:bban_format: "\\d{3}\\d{3}\\d{13}"
|
406
499
|
:bank_code_format: "\\d{3}"
|
407
500
|
:branch_code_format: "\\d{3}"
|
@@ -415,6 +508,9 @@ IS:
|
|
415
508
|
:account_number_length: 18
|
416
509
|
:total_length: 26
|
417
510
|
:national_id_length: 4
|
511
|
+
:iban_example: IS140159260076545510730339
|
512
|
+
:bban_example: '0159260076545510730339'
|
513
|
+
:domestic_account_number_example: '0159-26-007654-551073-0339'
|
418
514
|
:bban_format: "\\d{4}\\d{2}\\d{6}\\d{10}"
|
419
515
|
:bank_code_format: "\\d{4}"
|
420
516
|
:account_number_format: "\\d{2}\\d{6}\\d{10}"
|
@@ -429,6 +525,9 @@ IT:
|
|
429
525
|
:account_number_length: 12
|
430
526
|
:total_length: 27
|
431
527
|
:national_id_length: 10
|
528
|
+
:iban_example: IT60X0542811101000000123456
|
529
|
+
:bban_example: X0542811101000000123456
|
530
|
+
:domestic_account_number_example: X 05428 11101 000000123456
|
432
531
|
:bban_format: "[A-Z]{1}\\d{5}\\d{5}[A-Z0-9]{12}"
|
433
532
|
:bank_code_format: "\\d{5}"
|
434
533
|
:branch_code_format: "\\d{5}"
|
@@ -444,6 +543,9 @@ KW:
|
|
444
543
|
:account_number_length: 22
|
445
544
|
:total_length: 30
|
446
545
|
:national_id_length: 4
|
546
|
+
:iban_example: KW81CBKU0000000000001234560101
|
547
|
+
:bban_example: CBKU0000000000001234560101
|
548
|
+
:domestic_account_number_example: '1234560101'
|
447
549
|
:bban_format: "[A-Z]{4}[A-Z0-9]{22}"
|
448
550
|
:bank_code_format: "[A-Z]{4}"
|
449
551
|
:account_number_format: "[A-Z0-9]{22}"
|
@@ -456,6 +558,9 @@ KZ:
|
|
456
558
|
:account_number_length: 13
|
457
559
|
:total_length: 20
|
458
560
|
:national_id_length: 3
|
561
|
+
:iban_example: KZ86125KZT5004100100
|
562
|
+
:bban_example: 125KZT5004100100
|
563
|
+
:domestic_account_number_example: KZ86 125K ZT50 0410 0100
|
459
564
|
:bban_format: "\\d{3}[A-Z0-9]{13}"
|
460
565
|
:bank_code_format: "\\d{3}"
|
461
566
|
:account_number_format: "[A-Z0-9]{13}"
|
@@ -464,13 +569,16 @@ LB:
|
|
464
569
|
:bank_code_length: 4
|
465
570
|
:branch_code_position: 0
|
466
571
|
:branch_code_length: 0
|
467
|
-
:account_number_position:
|
468
|
-
:account_number_length:
|
572
|
+
:account_number_position: 9
|
573
|
+
:account_number_length: 20
|
469
574
|
:total_length: 28
|
470
575
|
:national_id_length: 4
|
576
|
+
:iban_example: LB62099900000001001901229114
|
577
|
+
:bban_example: '0999 0000 0001 0019 0122 9114'
|
578
|
+
:domestic_account_number_example: 01 001 901229114
|
471
579
|
:bban_format: "\\d{4}[A-Z0-9]{20}"
|
472
580
|
:bank_code_format: "\\d{4}"
|
473
|
-
:account_number_format: "[A-Z0-9]{
|
581
|
+
:account_number_format: "[A-Z0-9]{20}"
|
474
582
|
LI:
|
475
583
|
:bank_code_position: 5
|
476
584
|
:bank_code_length: 5
|
@@ -480,6 +588,9 @@ LI:
|
|
480
588
|
:account_number_length: 12
|
481
589
|
:total_length: 21
|
482
590
|
:national_id_length: 5
|
591
|
+
:iban_example: LI21088100002324013AA
|
592
|
+
:bban_example: '088100002324013AA'
|
593
|
+
:domestic_account_number_example: 8810 2324013AA
|
483
594
|
:bban_format: "\\d{5}[A-Z0-9]{12}"
|
484
595
|
:bank_code_format: "\\d{5}"
|
485
596
|
:account_number_format: "[A-Z0-9]{12}"
|
@@ -492,6 +603,8 @@ LT:
|
|
492
603
|
:account_number_length: 11
|
493
604
|
:total_length: 20
|
494
605
|
:national_id_length: 5
|
606
|
+
:iban_example: LT121000011101001000
|
607
|
+
:bban_example: '1000011101001000'
|
495
608
|
:bban_format: "\\d{5}\\d{11}"
|
496
609
|
:bank_code_format: "\\d{5}"
|
497
610
|
:account_number_format: "\\d{11}"
|
@@ -504,6 +617,8 @@ LU:
|
|
504
617
|
:account_number_length: 13
|
505
618
|
:total_length: 20
|
506
619
|
:national_id_length: 3
|
620
|
+
:iban_example: LU280019400644750000
|
621
|
+
:bban_example: '0019400644750000'
|
507
622
|
:bban_format: "\\d{3}[A-Z0-9]{13}"
|
508
623
|
:bank_code_format: "\\d{3}"
|
509
624
|
:account_number_format: "[A-Z0-9]{13}"
|
@@ -516,6 +631,9 @@ LV:
|
|
516
631
|
:account_number_length: 13
|
517
632
|
:total_length: 21
|
518
633
|
:national_id_length: 4
|
634
|
+
:iban_example: LV80BANK0000435195001
|
635
|
+
:bban_example: BANK0000435195001
|
636
|
+
:domestic_account_number_example: LV80 BANK 0000 4351 9500 1
|
519
637
|
:bban_format: "[A-Z]{4}[A-Z0-9]{13}"
|
520
638
|
:bank_code_format: "[A-Z]{4}"
|
521
639
|
:account_number_format: "[A-Z0-9]{13}"
|
@@ -528,6 +646,9 @@ MC:
|
|
528
646
|
:account_number_length: 13
|
529
647
|
:total_length: 27
|
530
648
|
:national_id_length: 10
|
649
|
+
:iban_example: MC5811222000010123456789030
|
650
|
+
:bban_example: 11222 00001 01234567890 30
|
651
|
+
:domestic_account_number_example: 0011111000h
|
531
652
|
:bban_format: "\\d{5}\\d{5}[A-Z0-9]{11}\\d{2}"
|
532
653
|
:bank_code_format: "\\d{5}"
|
533
654
|
:branch_code_format: "\\d{5}"
|
@@ -543,6 +664,9 @@ MD:
|
|
543
664
|
:account_number_length: 18
|
544
665
|
:total_length: 24
|
545
666
|
:national_id_length: 2
|
667
|
+
:iban_example: MD24AG000225100013104168
|
668
|
+
:bban_example: AG000225100013104168
|
669
|
+
:domestic_account_number_example: '000225100013104168'
|
546
670
|
:bban_format: "[A-Z0-9]{2}[A-Z0-9]{18}"
|
547
671
|
:bank_code_format: "[A-Z0-9]{2}"
|
548
672
|
:account_number_format: "[A-Z0-9]{18}"
|
@@ -555,6 +679,9 @@ ME:
|
|
555
679
|
:account_number_length: 15
|
556
680
|
:total_length: 22
|
557
681
|
:national_id_length: 3
|
682
|
+
:iban_example: ME25505000012345678951
|
683
|
+
:bban_example: '505000012345678951'
|
684
|
+
:domestic_account_number_example: 505 0000123456789 51
|
558
685
|
:bban_format: "\\d{3}\\d{13}\\d{2}"
|
559
686
|
:bank_code_format: "\\d{3}"
|
560
687
|
:account_number_format: "\\d{13}\\d{2}"
|
@@ -567,6 +694,9 @@ MK:
|
|
567
694
|
:account_number_length: 12
|
568
695
|
:total_length: 19
|
569
696
|
:national_id_length: 3
|
697
|
+
:iban_example: MK07250120000058984
|
698
|
+
:bban_example: '250120000058984'
|
699
|
+
:domestic_account_number_example: MK07 300 0000000424 25
|
570
700
|
:bban_format: "\\d{3}[A-Z0-9]{10}\\d{2}"
|
571
701
|
:bank_code_format: "\\d{3}"
|
572
702
|
:account_number_format: "[A-Z0-9]{10}\\d{2}"
|
@@ -579,6 +709,9 @@ MR:
|
|
579
709
|
:account_number_length: 13
|
580
710
|
:total_length: 27
|
581
711
|
:national_id_length: 10
|
712
|
+
:iban_example: MR1300020001010000123456753
|
713
|
+
:bban_example: '00020001010000123456753'
|
714
|
+
:domestic_account_number_example: 00020 00101 00001234567 53
|
582
715
|
:bban_format: "\\d{5}\\d{5}\\d{11}\\d{2}"
|
583
716
|
:bank_code_format: "\\d{5}"
|
584
717
|
:branch_code_format: "\\d{5}"
|
@@ -592,6 +725,9 @@ MT:
|
|
592
725
|
:account_number_length: 18
|
593
726
|
:total_length: 31
|
594
727
|
:national_id_length: 9
|
728
|
+
:iban_example: MT84MALT011000012345MTLCAST001S
|
729
|
+
:bban_example: MALT011000012345MTLCAST001S
|
730
|
+
:domestic_account_number_example: 12345MTLCAST001S
|
595
731
|
:bban_format: "[A-Z]{4}\\d{5}[A-Z0-9]{18}"
|
596
732
|
:bank_code_format: "[A-Z]{4}"
|
597
733
|
:branch_code_format: "\\d{5}"
|
@@ -605,6 +741,9 @@ MU:
|
|
605
741
|
:account_number_length: 18
|
606
742
|
:total_length: 30
|
607
743
|
:national_id_length: 8
|
744
|
+
:iban_example: MU17BOMM0101101030300200000MUR
|
745
|
+
:bban_example: BOMM0101101030300200000MUR
|
746
|
+
:domestic_account_number_example: MU17 BOMM 0101 1010 3030 0200 000M UR
|
608
747
|
:bban_format: "[A-Z]{4}\\d{2}\\d{2}\\d{12}\\d{3}[A-Z]{3}"
|
609
748
|
:bank_code_format: "[A-Z]{4}\\d{2}"
|
610
749
|
:branch_code_format: "\\d{2}"
|
@@ -618,6 +757,9 @@ NL:
|
|
618
757
|
:account_number_length: 10
|
619
758
|
:total_length: 18
|
620
759
|
:national_id_length: 4
|
760
|
+
:iban_example: NL91ABNA0417164300
|
761
|
+
:bban_example: ABNA0417164300
|
762
|
+
:domestic_account_number_example: 041 71 64 300
|
621
763
|
:bban_format: "[A-Z]{4}\\d{10}"
|
622
764
|
:bank_code_format: "[A-Z]{4}"
|
623
765
|
:account_number_format: "\\d{10}"
|
@@ -632,6 +774,9 @@ NL:
|
|
632
774
|
:account_number_length: 7
|
633
775
|
:total_length: 15
|
634
776
|
:national_id_length: 4
|
777
|
+
:iban_example: NO9386011117947
|
778
|
+
:bban_example: '86011117947'
|
779
|
+
:domestic_account_number_example: 8601 11 17947
|
635
780
|
:bban_format: "\\d{4}\\d{6}\\d{1}"
|
636
781
|
:bank_code_format: "\\d{4}"
|
637
782
|
:account_number_format: "\\d{6}\\d{1}"
|
@@ -646,6 +791,9 @@ PK:
|
|
646
791
|
:account_number_length: 16
|
647
792
|
:total_length: 24
|
648
793
|
:national_id_length: 4
|
794
|
+
:iban_example: PK36SCBL0000001123456702
|
795
|
+
:bban_example: SCBL0000001123456702
|
796
|
+
:domestic_account_number_example: '00260101036360'
|
649
797
|
:bban_format: "[A-Z]{4}[A-Z0-9]{16}"
|
650
798
|
:bank_code_format: "[A-Z]{4}"
|
651
799
|
:account_number_format: "[A-Z0-9]{16}"
|
@@ -658,6 +806,9 @@ PL:
|
|
658
806
|
:account_number_length: 16
|
659
807
|
:total_length: 28
|
660
808
|
:national_id_length: 8
|
809
|
+
:iban_example: PL61109010140000071219812874
|
810
|
+
:bban_example: '109010140000071219812874'
|
811
|
+
:domestic_account_number_example: 61 1090 1014 0000 0712 1981 2874
|
661
812
|
:bban_format: "\\d{8}\\d{16}"
|
662
813
|
:bank_code_format: "\\d{8}"
|
663
814
|
:account_number_format: "\\d{16}"
|
@@ -670,6 +821,9 @@ PS:
|
|
670
821
|
:account_number_length: 21
|
671
822
|
:total_length: 29
|
672
823
|
:national_id_length: 4
|
824
|
+
:iban_example: PS92PALS000000000400123456702
|
825
|
+
:bban_example: PALS000000000400123456702
|
826
|
+
:domestic_account_number_example: '400123456702'
|
673
827
|
:bban_format: "[A-Z]{4}[A-Z0-9]{21}"
|
674
828
|
:bank_code_format: "[A-Z]{4}"
|
675
829
|
:account_number_format: "[A-Z0-9]{21}"
|
@@ -682,6 +836,9 @@ PT:
|
|
682
836
|
:account_number_length: 13
|
683
837
|
:total_length: 25
|
684
838
|
:national_id_length: 4
|
839
|
+
:iban_example: PT50000201231234567890154
|
840
|
+
:bban_example: '000201231234567890154'
|
841
|
+
:domestic_account_number_example: 0002.0123.12345678901.54
|
685
842
|
:bban_format: "\\d{4}\\d{4}\\d{11}\\d{2}"
|
686
843
|
:bank_code_format: "\\d{4}"
|
687
844
|
:account_number_format: "\\d{11}\\d{2}"
|
@@ -697,6 +854,9 @@ RO:
|
|
697
854
|
:account_number_length: 16
|
698
855
|
:total_length: 24
|
699
856
|
:national_id_length: 4
|
857
|
+
:iban_example: RO49AAAA1B31007593840000
|
858
|
+
:bban_example: AAAA1B31007593840000
|
859
|
+
:domestic_account_number_example: RO49 AAAA 1B31 0075 9384 0000
|
700
860
|
:bban_format: "[A-Z]{4}[A-Z0-9]{16}"
|
701
861
|
:bank_code_format: "[A-Z]{4}"
|
702
862
|
:account_number_format: "[A-Z0-9]{16}"
|
@@ -709,6 +869,9 @@ RS:
|
|
709
869
|
:account_number_length: 15
|
710
870
|
:total_length: 22
|
711
871
|
:national_id_length: 3
|
872
|
+
:iban_example: RS35260005601001611379
|
873
|
+
:bban_example: '260005601001611379'
|
874
|
+
:domestic_account_number_example: 260-0056010016113-79
|
712
875
|
:bban_format: "\\d{3}\\d{13}\\d{2}"
|
713
876
|
:bank_code_format: "\\d{3}"
|
714
877
|
:account_number_format: "\\d{13}\\d{2}"
|
@@ -721,6 +884,9 @@ SA:
|
|
721
884
|
:account_number_length: 18
|
722
885
|
:total_length: 24
|
723
886
|
:national_id_length: 2
|
887
|
+
:iban_example: SA0380000000608010167519
|
888
|
+
:bban_example: '80000000608010167519'
|
889
|
+
:domestic_account_number_example: '608010167519'
|
724
890
|
:bban_format: "\\d{2}[A-Z0-9]{18}"
|
725
891
|
:bank_code_format: "\\d{2}"
|
726
892
|
:account_number_format: "[A-Z0-9]{18}"
|
@@ -733,6 +899,9 @@ SE:
|
|
733
899
|
:account_number_length: 17
|
734
900
|
:total_length: 24
|
735
901
|
:national_id_length: 3
|
902
|
+
:iban_example: SE4550000000058398257466
|
903
|
+
:bban_example: '50000000058398257466'
|
904
|
+
:domestic_account_number_example: 1234 12 3456 1
|
736
905
|
:bban_format: "\\d{3}\\d{16}\\d{1}"
|
737
906
|
:bank_code_format: "\\d{3}"
|
738
907
|
:account_number_format: "\\d{16}\\d{1}"
|
@@ -748,6 +917,9 @@ SI:
|
|
748
917
|
:account_number_length: 10
|
749
918
|
:total_length: 19
|
750
919
|
:national_id_length: 5
|
920
|
+
:iban_example: SI56263300012039086
|
921
|
+
:bban_example: '263300012039086'
|
922
|
+
:domestic_account_number_example: 2633 0001 2039 086
|
751
923
|
:bban_format: "\\d{5}\\d{8}\\d{2}"
|
752
924
|
:bank_code_format: "\\d{5}"
|
753
925
|
:account_number_format: "\\d{8}\\d{2}"
|
@@ -760,6 +932,9 @@ SK:
|
|
760
932
|
:account_number_length: 16
|
761
933
|
:total_length: 24
|
762
934
|
:national_id_length: 4
|
935
|
+
:iban_example: SK3112000000198742637541
|
936
|
+
:bban_example: '12000000198742637541'
|
937
|
+
:domestic_account_number_example: 19-8742637541/1200
|
763
938
|
:bban_format: "\\d{4}\\d{6}\\d{10}"
|
764
939
|
:bank_code_format: "\\d{4}"
|
765
940
|
:account_number_format: "\\d{6}\\d{10}"
|
@@ -774,6 +949,8 @@ SM:
|
|
774
949
|
:account_number_length: 12
|
775
950
|
:total_length: 27
|
776
951
|
:national_id_length: 10
|
952
|
+
:iban_example: SM86U0322509800000000270100
|
953
|
+
:bban_example: U0322509800000000270100
|
777
954
|
:bban_format: "[A-Z]{1}\\d{5}\\d{5}[A-Z0-9]{12}"
|
778
955
|
:bank_code_format: "\\d{5}"
|
779
956
|
:branch_code_format: "\\d{5}"
|
@@ -788,7 +965,10 @@ TN:
|
|
788
965
|
:account_number_position: 10
|
789
966
|
:account_number_length: 15
|
790
967
|
:total_length: 24
|
791
|
-
:national_id_length:
|
968
|
+
:national_id_length: 5
|
969
|
+
:iban_example: TN5910006035183598478831
|
970
|
+
:bban_example: '10006035183598478831'
|
971
|
+
:domestic_account_number_example: 10 006 0351835984788 31
|
792
972
|
:bban_format: "\\d{2}\\d{3}\\d{13}\\d{2}"
|
793
973
|
:bank_code_format: "\\d{2}"
|
794
974
|
:branch_code_format: "\\d{3}"
|
@@ -802,6 +982,8 @@ TR:
|
|
802
982
|
:account_number_length: 17
|
803
983
|
:total_length: 26
|
804
984
|
:national_id_length: 5
|
985
|
+
:iban_example: TR330006100519786457841326
|
986
|
+
:bban_example: '0006100519786457841326'
|
805
987
|
:bban_format: "\\d{5}\\d{1}[A-Z0-9]{16}"
|
806
988
|
:bank_code_format: "\\d{5}"
|
807
989
|
:account_number_format: "\\d{1}[A-Z0-9]{16}"
|
@@ -814,21 +996,28 @@ VG:
|
|
814
996
|
:account_number_length: 16
|
815
997
|
:total_length: 24
|
816
998
|
:national_id_length: 4
|
999
|
+
:iban_example: VG96VPVG0000012345678901
|
1000
|
+
:bban_example: VPVG0000012345678901
|
1001
|
+
:domestic_account_number_example: 00000 12 345 678 901
|
817
1002
|
:bban_format: "[A-Z]{4}\\d{16}"
|
818
1003
|
:bank_code_format: "[A-Z]{4}"
|
819
1004
|
:account_number_format: "\\d{16}"
|
820
1005
|
JO:
|
821
1006
|
:bank_code_position: 5
|
822
1007
|
:bank_code_length: 4
|
823
|
-
:branch_code_position:
|
824
|
-
:branch_code_length:
|
825
|
-
:account_number_position:
|
826
|
-
:account_number_length:
|
1008
|
+
:branch_code_position: 9
|
1009
|
+
:branch_code_length: 4
|
1010
|
+
:account_number_position: 13
|
1011
|
+
:account_number_length: 18
|
827
1012
|
:total_length: 30
|
828
1013
|
:national_id_length: 4
|
1014
|
+
:iban_example: JO94CBJO0010000000000131000302
|
1015
|
+
:bban_example: CBJO0010000000000131000302
|
1016
|
+
:domestic_account_number_example: '0001310000302'
|
829
1017
|
:bban_format: "[A-Z]{4}\\d{4}[A-Z0-9]{18}"
|
830
1018
|
:bank_code_format: "[A-Z]{4}"
|
831
|
-
:
|
1019
|
+
:branch_code_format: "\\d{4}"
|
1020
|
+
:account_number_format: "[A-Z0-9]{18}"
|
832
1021
|
QA:
|
833
1022
|
:bank_code_position: 5
|
834
1023
|
:bank_code_length: 4
|
@@ -838,6 +1027,9 @@ QA:
|
|
838
1027
|
:account_number_length: 21
|
839
1028
|
:total_length: 29
|
840
1029
|
:national_id_length: 4
|
1030
|
+
:iban_example: QA58DOHB00001234567890ABCDEFG
|
1031
|
+
:bban_example: DOHB00001234567890ABCDEFG
|
1032
|
+
:domestic_account_number_example: '00001234567890ABCDEFG'
|
841
1033
|
:bban_format: "[A-Z]{4}[A-Z0-9]{21}"
|
842
1034
|
:bank_code_format: "[A-Z]{4}"
|
843
1035
|
:account_number_format: "[A-Z0-9]{21}"
|
@@ -846,14 +1038,17 @@ XK:
|
|
846
1038
|
:bank_code_length: 2
|
847
1039
|
:branch_code_position: 7
|
848
1040
|
:branch_code_length: 2
|
849
|
-
:account_number_position:
|
850
|
-
:account_number_length:
|
1041
|
+
:account_number_position: 5
|
1042
|
+
:account_number_length: 16
|
851
1043
|
:total_length: 20
|
852
|
-
:national_id_length:
|
1044
|
+
:national_id_length: 4
|
1045
|
+
:iban_example: XK051212012345678906
|
1046
|
+
:bban_example: '1212012345678906'
|
1047
|
+
:domestic_account_number_example: 1212 0123456789 06
|
853
1048
|
:bban_format: "\\d{4}\\d{10}\\d{2}"
|
854
1049
|
:bank_code_format: "\\d{2}"
|
855
1050
|
:branch_code_format: "\\d{2}"
|
856
|
-
:account_number_format: "\\d{10}"
|
1051
|
+
:account_number_format: "\\d{4}\\d{10}\\d{2}"
|
857
1052
|
TL:
|
858
1053
|
:bank_code_position: 5
|
859
1054
|
:bank_code_length: 3
|
@@ -863,6 +1058,9 @@ TL:
|
|
863
1058
|
:account_number_length: 16
|
864
1059
|
:total_length: 23
|
865
1060
|
:national_id_length: 3
|
1061
|
+
:iban_example: TL380080012345678910157
|
1062
|
+
:bban_example: '0080012345678910157'
|
1063
|
+
:domestic_account_number_example: '008 00123456789101 57'
|
866
1064
|
:bban_format: "\\d{3}\\d{14}\\d{2}"
|
867
1065
|
:bank_code_format: "\\d{3}"
|
868
1066
|
:account_number_format: "\\d{14}\\d{2}"
|
@@ -875,6 +1073,9 @@ LC:
|
|
875
1073
|
:account_number_length: 24
|
876
1074
|
:total_length: 32
|
877
1075
|
:national_id_length: 4
|
1076
|
+
:iban_example: LC55HEMM000100010012001200023015
|
1077
|
+
:bban_example: HEMM000100010012001200023015
|
1078
|
+
:domestic_account_number_example: 0001 0001 0012 0012 0002 3015
|
878
1079
|
:bban_format: "[A-Z]{4}[A-Z0-9]{24}"
|
879
1080
|
:bank_code_format: "[A-Z]{4}"
|
880
1081
|
:account_number_format: "[A-Z0-9]{24}"
|
@@ -887,6 +1088,9 @@ UA:
|
|
887
1088
|
:account_number_length: 19
|
888
1089
|
:total_length: 29
|
889
1090
|
:national_id_length: 6
|
1091
|
+
:iban_example: UA213223130000026007233566001
|
1092
|
+
:bban_example: '3223130000026007233566001'
|
1093
|
+
:domestic_account_number_example: '26007233566001'
|
890
1094
|
:bban_format: "\\d{6}[A-Z0-9]{19}"
|
891
1095
|
:bank_code_format: "\\d{6}"
|
892
1096
|
:account_number_format: "[A-Z0-9]{19}"
|
@@ -899,22 +1103,27 @@ ST:
|
|
899
1103
|
:account_number_length: 13
|
900
1104
|
:total_length: 25
|
901
1105
|
:national_id_length: 8
|
1106
|
+
:iban_example: ST68000200010192194210112
|
1107
|
+
:bban_example: '000200010192194210112'
|
1108
|
+
:domestic_account_number_example: '01921942101.12'
|
902
1109
|
:bban_format: "\\d{4}\\d{4}\\d{11}\\d{2}"
|
903
1110
|
:bank_code_format: "\\d{4}"
|
904
1111
|
:branch_code_format: "\\d{4}"
|
905
1112
|
:account_number_format: "\\d{11}\\d{2}"
|
906
1113
|
SC:
|
907
1114
|
:bank_code_position: 5
|
908
|
-
:bank_code_length:
|
909
|
-
:branch_code_position:
|
910
|
-
:branch_code_length:
|
1115
|
+
:bank_code_length: 8
|
1116
|
+
:branch_code_position: 0
|
1117
|
+
:branch_code_length: 0
|
911
1118
|
:account_number_position: 13
|
912
1119
|
:account_number_length: 16
|
913
1120
|
:total_length: 31
|
914
1121
|
:national_id_length: 8
|
1122
|
+
:iban_example: SC18SSCB11010000000000001497USD
|
1123
|
+
:bban_example: SSCB11010000000000001497USD
|
1124
|
+
:domestic_account_number_example: '0000000000001497'
|
915
1125
|
:bban_format: "[A-Z]{4}\\d{2}\\d{2}\\d{16}[A-Z]{3}"
|
916
|
-
:bank_code_format: "[A-Z]{4}"
|
917
|
-
:branch_code_format: "\\d{4}"
|
1126
|
+
:bank_code_format: "[A-Z]{4}\\d{4}"
|
918
1127
|
:account_number_format: "\\d{16}"
|
919
1128
|
IQ:
|
920
1129
|
:bank_code_position: 5
|
@@ -924,7 +1133,10 @@ IQ:
|
|
924
1133
|
:account_number_position: 12
|
925
1134
|
:account_number_length: 12
|
926
1135
|
:total_length: 23
|
927
|
-
:national_id_length:
|
1136
|
+
:national_id_length: 7
|
1137
|
+
:iban_example: IQ98NBIQ850123456789012
|
1138
|
+
:bban_example: NBIQ850123456789012
|
1139
|
+
:domestic_account_number_example: '123456789012'
|
928
1140
|
:bban_format: "[A-Z]{4}\\d{3}\\d{12}"
|
929
1141
|
:bank_code_format: "[A-Z]{4}"
|
930
1142
|
:branch_code_format: "\\d{3}"
|
@@ -938,6 +1150,9 @@ SV:
|
|
938
1150
|
:account_number_length: 20
|
939
1151
|
:total_length: 28
|
940
1152
|
:national_id_length: 4
|
1153
|
+
:iban_example: SV62CENR00000000000000700025
|
1154
|
+
:bban_example: CENR00000000000000700025
|
1155
|
+
:domestic_account_number_example: '00000000000000700025'
|
941
1156
|
:bban_format: "[A-Z]{4}\\d{20}"
|
942
1157
|
:bank_code_format: "[A-Z]{4}"
|
943
1158
|
:account_number_format: "\\d{20}"
|
@@ -950,6 +1165,9 @@ BY:
|
|
950
1165
|
:account_number_length: 20
|
951
1166
|
:total_length: 28
|
952
1167
|
:national_id_length: 4
|
1168
|
+
:iban_example: BY13NBRB3600900000002Z00AB00
|
1169
|
+
:bban_example: NBRB 3600900000002Z00AB00
|
1170
|
+
:domestic_account_number_example: 3600 0000 0000 0Z00 AB00
|
953
1171
|
:bban_format: "[A-Z0-9]{4}\\d{4}[A-Z0-9]{16}"
|
954
1172
|
:bank_code_format: "[A-Z0-9]{4}"
|
955
1173
|
:account_number_format: "\\d{4}[A-Z0-9]{16}"
|
@@ -962,9 +1180,210 @@ VA:
|
|
962
1180
|
:account_number_length: 15
|
963
1181
|
:total_length: 22
|
964
1182
|
:national_id_length: 3
|
1183
|
+
:iban_example: VA59001123000012345678
|
1184
|
+
:bban_example: '001123000012345678'
|
1185
|
+
:domestic_account_number_example: '123000012345678'
|
965
1186
|
:bban_format: "\\d{3}\\d{15}"
|
966
1187
|
:bank_code_format: "\\d{3}"
|
967
1188
|
:account_number_format: "\\d{15}"
|
1189
|
+
AO:
|
1190
|
+
:bank_code_position: 5
|
1191
|
+
:bank_code_length: 4
|
1192
|
+
:branch_code_position: 9
|
1193
|
+
:branch_code_length: 4
|
1194
|
+
:account_number_position: 13
|
1195
|
+
:account_number_length: 13
|
1196
|
+
:total_length: 25
|
1197
|
+
:national_id_length: 8
|
1198
|
+
CG:
|
1199
|
+
:bank_code_position: 5
|
1200
|
+
:bank_code_length: 5
|
1201
|
+
:branch_code_position: 10
|
1202
|
+
:branch_code_length: 5
|
1203
|
+
:account_number_position: 15
|
1204
|
+
:account_number_length: 13
|
1205
|
+
:total_length: 27
|
1206
|
+
:national_id_length: 10
|
1207
|
+
GQ:
|
1208
|
+
:bank_code_position: 5
|
1209
|
+
:bank_code_length: 5
|
1210
|
+
:branch_code_position: 10
|
1211
|
+
:branch_code_length: 5
|
1212
|
+
:account_number_position: 15
|
1213
|
+
:account_number_length: 13
|
1214
|
+
:total_length: 27
|
1215
|
+
:national_id_length: 10
|
1216
|
+
CI:
|
1217
|
+
:bank_code_position: 5
|
1218
|
+
:bank_code_length: 5
|
1219
|
+
:branch_code_position: 0
|
1220
|
+
:branch_code_length: 0
|
1221
|
+
:account_number_position: 10
|
1222
|
+
:account_number_length: 19
|
1223
|
+
:total_length: 28
|
1224
|
+
:national_id_length: 5
|
1225
|
+
BF:
|
1226
|
+
:bank_code_position: 5
|
1227
|
+
:bank_code_length: 5
|
1228
|
+
:branch_code_position: 0
|
1229
|
+
:branch_code_length: 0
|
1230
|
+
:account_number_position: 10
|
1231
|
+
:account_number_length: 19
|
1232
|
+
:total_length: 28
|
1233
|
+
:national_id_length: 5
|
1234
|
+
MA:
|
1235
|
+
:bank_code_position: 5
|
1236
|
+
:bank_code_length: 3
|
1237
|
+
:branch_code_position: 15
|
1238
|
+
:branch_code_length: 3
|
1239
|
+
:account_number_position: 18
|
1240
|
+
:account_number_length: 11
|
1241
|
+
:total_length: 28
|
1242
|
+
:national_id_length: 3
|
1243
|
+
SN:
|
1244
|
+
:bank_code_position: 5
|
1245
|
+
:bank_code_length: 5
|
1246
|
+
:branch_code_position: 0
|
1247
|
+
:branch_code_length: 0
|
1248
|
+
:account_number_position: 10
|
1249
|
+
:account_number_length: 19
|
1250
|
+
:total_length: 28
|
1251
|
+
:national_id_length: 5
|
1252
|
+
CV:
|
1253
|
+
:bank_code_position: 5
|
1254
|
+
:bank_code_length: 4
|
1255
|
+
:branch_code_position: 9
|
1256
|
+
:branch_code_length: 4
|
1257
|
+
:account_number_position: 13
|
1258
|
+
:account_number_length: 11
|
1259
|
+
:total_length: 25
|
1260
|
+
:national_id_length: 8
|
1261
|
+
GA:
|
1262
|
+
:bank_code_position: 5
|
1263
|
+
:bank_code_length: 5
|
1264
|
+
:branch_code_position: 10
|
1265
|
+
:branch_code_length: 5
|
1266
|
+
:account_number_position: 15
|
1267
|
+
:account_number_length: 13
|
1268
|
+
:total_length: 27
|
1269
|
+
:national_id_length: 10
|
1270
|
+
BJ:
|
1271
|
+
:bank_code_position: 5
|
1272
|
+
:bank_code_length: 5
|
1273
|
+
:branch_code_position: 0
|
1274
|
+
:branch_code_length: 0
|
1275
|
+
:account_number_position: 10
|
1276
|
+
:account_number_length: 19
|
1277
|
+
:total_length: 28
|
1278
|
+
:national_id_length: 5
|
1279
|
+
CM:
|
1280
|
+
:bank_code_position: 5
|
1281
|
+
:bank_code_length: 5
|
1282
|
+
:branch_code_position: 10
|
1283
|
+
:branch_code_length: 5
|
1284
|
+
:account_number_position: 15
|
1285
|
+
:account_number_length: 13
|
1286
|
+
:total_length: 27
|
1287
|
+
:national_id_length: 10
|
1288
|
+
MZ:
|
1289
|
+
:bank_code_position: 7
|
1290
|
+
:bank_code_length: 2
|
1291
|
+
:branch_code_position: 0
|
1292
|
+
:branch_code_length: 0
|
1293
|
+
:account_number_position: 9
|
1294
|
+
:account_number_length: 17
|
1295
|
+
:total_length: 25
|
1296
|
+
:national_id_length: 2
|
1297
|
+
MG:
|
1298
|
+
:bank_code_position: 5
|
1299
|
+
:bank_code_length: 5
|
1300
|
+
:branch_code_position: 10
|
1301
|
+
:branch_code_length: 5
|
1302
|
+
:account_number_position: 15
|
1303
|
+
:account_number_length: 13
|
1304
|
+
:total_length: 27
|
1305
|
+
:national_id_length: 10
|
1306
|
+
CF:
|
1307
|
+
:bank_code_position: 5
|
1308
|
+
:bank_code_length: 5
|
1309
|
+
:branch_code_position: 10
|
1310
|
+
:branch_code_length: 5
|
1311
|
+
:account_number_position: 15
|
1312
|
+
:account_number_length: 13
|
1313
|
+
:total_length: 27
|
1314
|
+
:national_id_length: 10
|
1315
|
+
TG:
|
1316
|
+
:bank_code_position: 5
|
1317
|
+
:bank_code_length: 5
|
1318
|
+
:branch_code_position: 0
|
1319
|
+
:branch_code_length: 0
|
1320
|
+
:account_number_position: 10
|
1321
|
+
:account_number_length: 19
|
1322
|
+
:total_length: 28
|
1323
|
+
:national_id_length: 5
|
1324
|
+
GW:
|
1325
|
+
:bank_code_position: 5
|
1326
|
+
:bank_code_length: 5
|
1327
|
+
:branch_code_position: 0
|
1328
|
+
:branch_code_length: 0
|
1329
|
+
:account_number_position: 10
|
1330
|
+
:account_number_length: 16
|
1331
|
+
:total_length: 25
|
1332
|
+
:national_id_length: 5
|
1333
|
+
KM:
|
1334
|
+
:bank_code_position: 5
|
1335
|
+
:bank_code_length: 5
|
1336
|
+
:branch_code_position: 10
|
1337
|
+
:branch_code_length: 5
|
1338
|
+
:account_number_position: 15
|
1339
|
+
:account_number_length: 13
|
1340
|
+
:total_length: 27
|
1341
|
+
:national_id_length: 10
|
1342
|
+
ML:
|
1343
|
+
:bank_code_position: 5
|
1344
|
+
:bank_code_length: 5
|
1345
|
+
:branch_code_position: 10
|
1346
|
+
:branch_code_length: 5
|
1347
|
+
:account_number_position: 15
|
1348
|
+
:account_number_length: 14
|
1349
|
+
:total_length: 28
|
1350
|
+
:national_id_length: 5
|
1351
|
+
MN:
|
1352
|
+
:bank_code_position: 5
|
1353
|
+
:bank_code_length: 4
|
1354
|
+
:branch_code_position: 0
|
1355
|
+
:branch_code_length: 0
|
1356
|
+
:account_number_position: 9
|
1357
|
+
:account_number_length: 12
|
1358
|
+
:total_length: 20
|
1359
|
+
:national_id_length: 4
|
1360
|
+
DZ:
|
1361
|
+
:bank_code_position: 5
|
1362
|
+
:bank_code_length: 3
|
1363
|
+
:branch_code_position: 0
|
1364
|
+
:branch_code_length: 0
|
1365
|
+
:account_number_position: 8
|
1366
|
+
:account_number_length: 17
|
1367
|
+
:total_length: 24
|
1368
|
+
:national_id_length: 3
|
1369
|
+
TD:
|
1370
|
+
:bank_code_position: 5
|
1371
|
+
:bank_code_length: 5
|
1372
|
+
:branch_code_position: 10
|
1373
|
+
:branch_code_length: 5
|
1374
|
+
:account_number_position: 15
|
1375
|
+
:account_number_length: 13
|
1376
|
+
:total_length: 27
|
1377
|
+
:national_id_length: 10
|
1378
|
+
NE:
|
1379
|
+
:bank_code_position: 5
|
1380
|
+
:bank_code_length: 5
|
1381
|
+
:branch_code_position: 0
|
1382
|
+
:branch_code_length: 0
|
1383
|
+
:account_number_position: 10
|
1384
|
+
:account_number_length: 19
|
1385
|
+
:total_length: 28
|
1386
|
+
:national_id_length: 5
|
968
1387
|
EG:
|
969
1388
|
:bank_code_position: 5
|
970
1389
|
:bank_code_length: 4
|
@@ -973,13 +1392,93 @@ EG:
|
|
973
1392
|
:account_number_position: 13
|
974
1393
|
:account_number_length: 17
|
975
1394
|
:total_length: 29
|
976
|
-
:national_id_length:
|
1395
|
+
:national_id_length: 8
|
1396
|
+
:iban_example: EG380019000500000000263180002
|
1397
|
+
:bban_example: '0019000500000000263180002'
|
1398
|
+
:domestic_account_number_example: '000263180002'
|
977
1399
|
:bban_format: "\\d{4}\\d{4}\\d{17}"
|
978
1400
|
:bank_code_format: "\\d{4}"
|
979
1401
|
:branch_code_format: "\\d{4}"
|
980
1402
|
:account_number_format: "\\d{17}"
|
981
|
-
|
982
|
-
|
1403
|
+
LY:
|
1404
|
+
:bank_code_position: 5
|
1405
|
+
:bank_code_length: 3
|
1406
|
+
:branch_code_position: 8
|
1407
|
+
:branch_code_length: 3
|
1408
|
+
:account_number_position: 11
|
1409
|
+
:account_number_length: 15
|
1410
|
+
:total_length: 25
|
1411
|
+
:national_id_length: 6
|
1412
|
+
:iban_example: LY83002048000020100120361
|
1413
|
+
:bban_example: '002048000020100120361'
|
1414
|
+
:domestic_account_number_example: '000020100120361'
|
1415
|
+
:bban_format: "\\d{3}\\d{3}\\d{15}"
|
1416
|
+
:bank_code_format: "\\d{3}"
|
1417
|
+
:branch_code_format: "\\d{3}"
|
1418
|
+
:account_number_format: "\\d{15}"
|
1419
|
+
SD:
|
1420
|
+
:bank_code_position: 5
|
1421
|
+
:bank_code_length: 2
|
1422
|
+
:branch_code_position: 0
|
1423
|
+
:branch_code_length: 0
|
1424
|
+
:account_number_position: 7
|
1425
|
+
:account_number_length: 12
|
1426
|
+
:total_length: 18
|
1427
|
+
:national_id_length: 2
|
1428
|
+
:iban_example: SD2129010501234001
|
1429
|
+
:bban_example: '29010501234001'
|
1430
|
+
:domestic_account_number_example: '010501234001'
|
1431
|
+
:bban_format: "\\d{2}\\d{12}"
|
1432
|
+
:bank_code_format: "\\d{2}"
|
1433
|
+
:account_number_format: "\\d{12}"
|
1434
|
+
BI:
|
1435
|
+
:bank_code_position: 5
|
1436
|
+
:bank_code_length: 5
|
1437
|
+
:branch_code_position: 10
|
1438
|
+
:branch_code_length: 5
|
1439
|
+
:account_number_position: 15
|
1440
|
+
:account_number_length: 13
|
1441
|
+
:total_length: 27
|
1442
|
+
:national_id_length: 10
|
1443
|
+
:iban_example: BI4210000100010000332045181
|
1444
|
+
:bban_example: '10000100010000332045181'
|
1445
|
+
:domestic_account_number_example: 00003320451 81
|
1446
|
+
:bban_format: "\\d{5}\\d{5}\\d{11}\\d{2}"
|
1447
|
+
:bank_code_format: "\\d{5}"
|
1448
|
+
:branch_code_format: "\\d{5}"
|
1449
|
+
:account_number_format: "\\d{11}\\d{2}"
|
1450
|
+
DJ:
|
1451
|
+
:bank_code_position: 5
|
1452
|
+
:bank_code_length: 5
|
1453
|
+
:branch_code_position: 10
|
1454
|
+
:branch_code_length: 5
|
1455
|
+
:account_number_position: 15
|
1456
|
+
:account_number_length: 13
|
1457
|
+
:total_length: 27
|
1458
|
+
:national_id_length: 10
|
1459
|
+
:iban_example: DJ2100010000000154000100186
|
1460
|
+
:bban_example: '00010000000154000100186'
|
1461
|
+
:domestic_account_number_example: '0154000100186'
|
1462
|
+
:bban_format: "\\d{5}\\d{5}\\d{11}\\d{2}"
|
1463
|
+
:bank_code_format: "\\d{5}"
|
1464
|
+
:branch_code_format: "\\d{5}"
|
1465
|
+
:account_number_format: "\\d{11}\\d{2}"
|
1466
|
+
RU:
|
1467
|
+
:bank_code_position: 5
|
1468
|
+
:bank_code_length: 9
|
1469
|
+
:branch_code_position: 14
|
1470
|
+
:branch_code_length: 5
|
1471
|
+
:account_number_position: 19
|
1472
|
+
:account_number_length: 15
|
1473
|
+
:total_length: 33
|
1474
|
+
:national_id_length: 14
|
1475
|
+
:iban_example: RU1704452522540817810538091310419
|
1476
|
+
:bban_example: 044525225 40817 810 5 3809 1310419
|
1477
|
+
:domestic_account_number_example: 40817 810 5 3809 1310419
|
1478
|
+
:bban_format: "\\d{9}\\d{5}[A-Z0-9]{15}"
|
1479
|
+
:bank_code_format: "\\d{9}"
|
1480
|
+
:branch_code_format: "\\d{5}"
|
1481
|
+
:account_number_format: "[A-Z0-9]{15}"
|
983
1482
|
AU:
|
984
1483
|
:bank_code_length: 0
|
985
1484
|
:branch_code_length: 6
|
@@ -1026,7 +1525,7 @@ US:
|
|
1026
1525
|
end: 17
|
1027
1526
|
excl: false
|
1028
1527
|
:bank_code_format: "\\d{9}"
|
1029
|
-
:account_number_format:
|
1528
|
+
:account_number_format: _*\d{1,17}
|
1030
1529
|
:national_id_length: 9
|
1031
1530
|
:pseudo_iban_bank_code_length: 9
|
1032
1531
|
:pseudo_iban_branch_code_length: 0
|