1<?php
2
3/**
4 * @see       https://github.com/laminas/laminas-i18n for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-i18n/blob/master/COPYRIGHT.md
6 * @license   https://github.com/laminas/laminas-i18n/blob/master/LICENSE.md New BSD License
7 */
8
9return [
10    'code' => '92',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:1\\d{8}|[2-8]\\d{5,11}|9(?:[013-9]\\d{4,9}|2\\d(?:111\\d{6}|\\d{3,7})))$/',
14            'fixed' => '/^(?:(?:21|42)[2-9]\\d{7}|(?:2[25]|4[0146-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]\\d{6}|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:1|2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8]))[2-9]\\d{5,6}|58[126]\\d{7})$/',
15            'mobile' => '/^3(?:0\\d|1[1-5]|2[0-5]|3[1-6]|4[1-7]|55|64)\\d{7}$/',
16            'tollfree' => '/^800\\d{5}$/',
17            'premium' => '/^900\\d{5}$/',
18            'personal' => '/^122\\d{6}$/',
19            'uan' => '/^(?:2(?:[125]|3[2358]|4[2-4]|9[2-8])|4(?:[0-246-9]|5[3479])|5(?:[1-35-7]|4[2-467])|6(?:[1-8]|0[468])|7(?:[14]|2[236])|8(?:[16]|2[2-689]|3[23578]|4[3478]|5[2356])|9(?:1|22|3[27-9]|4[2-6]|6[3569]|9[2-7]))111\\d{6}$/',
20            'emergency' => '/^1(?:1(?:22?|5)|[56])$/',
21        ],
22        'possible' => [
23            'general' => '/^\\d{6,12}$/',
24            'fixed' => '/^\\d{6,10}$/',
25            'mobile' => '/^\\d{10}$/',
26            'tollfree' => '/^\\d{8}$/',
27            'premium' => '/^\\d{8}$/',
28            'personal' => '/^\\d{9}$/',
29            'uan' => '/^\\d{11,12}$/',
30            'emergency' => '/^\\d{2,4}$/',
31        ],
32    ],
33];
34