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' => '49',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[1-35-9]\\d{3,14}|4(?:[0-8]\\d{4,12}|9(?:[0-37]\\d|4(?:[1-35-8]|4\\d?)|5\\d{1,2}|6[1-8]\\d?)\\d{2,7}))$/',
14            'fixed' => '/^(?:[246]\\d{5,13}|3(?:[03-9]\\d{4,13}|2\\d{9})|5(?:0[2-8]|[1256]\\d|[38][0-8]|4\\d{0,2}|[79][0-7])\\d{3,11}|7(?:0[2-8]|[1-9]\\d)\\d{3,10}|8(?:0[2-9]|[1-9]\\d)\\d{3,10}|9(?:0[6-9]|[1-9]\\d)\\d{3,10})$/',
15            'mobile' => '/^1(?:5[0-2579]\\d{8}|6[023]\\d{7,8}|7(?:[0-57-9]\\d?|6\\d)\\d{7})$/',
16            'pager' => '/^16(?:4\\d{1,10}|[89]\\d{1,11})$/',
17            'tollfree' => '/^800\\d{7,10}$/',
18            'premium' => '/^900(?:[135]\\d{6}|9\\d{7})$/',
19            'shared' => '/^180\\d{5,11}$/',
20            'personal' => '/^700\\d{8}$/',
21            'uan' => '/^18(?:1\\d{5,11}|[2-9]\\d{8})$/',
22            'voicemail' => '/^17799\\d{7,8}$/',
23            'shortcode' => '/^115$/',
24            'emergency' => '/^11[02]$/',
25        ],
26        'possible' => [
27            'general' => '/^\\d{2,15}$/',
28            'mobile' => '/^\\d{10,11}$/',
29            'pager' => '/^\\d{4,14}$/',
30            'tollfree' => '/^\\d{10,13}$/',
31            'premium' => '/^\\d{10,11}$/',
32            'shared' => '/^\\d{8,14}$/',
33            'personal' => '/^\\d{11}$/',
34            'uan' => '/^\\d{8,14}$/',
35            'voicemail' => '/^\\d{12,13}$/',
36            'shortcode' => '/^\\d{3}$/',
37            'emergency' => '/^\\d{3}$/',
38        ],
39    ],
40];
41