line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# automatically generated file, don't edit |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# Copyright 2023 David Cantrell, derived from data from libphonenumber |
6
|
|
|
|
|
|
|
# http://code.google.com/p/libphonenumber/ |
7
|
|
|
|
|
|
|
# |
8
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
9
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
10
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
11
|
|
|
|
|
|
|
# |
12
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
13
|
|
|
|
|
|
|
# |
14
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
15
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
16
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
17
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
18
|
|
|
|
|
|
|
# limitations under the License. |
19
|
|
|
|
|
|
|
package Number::Phone::StubCountry::BL; |
20
|
3
|
|
|
3
|
|
1420
|
use base qw(Number::Phone::StubCountry); |
|
3
|
|
|
|
|
10
|
|
|
3
|
|
|
|
|
317
|
|
21
|
|
|
|
|
|
|
|
22
|
3
|
|
|
3
|
|
24
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
65
|
|
23
|
3
|
|
|
3
|
|
17
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
89
|
|
24
|
3
|
|
|
3
|
|
17
|
use utf8; |
|
3
|
|
|
|
|
10
|
|
|
3
|
|
|
|
|
21
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230307181417; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = []; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
my $validators = { |
30
|
|
|
|
|
|
|
'fixed_line' => ' |
31
|
|
|
|
|
|
|
590(?: |
32
|
|
|
|
|
|
|
2[7-9]| |
33
|
|
|
|
|
|
|
5[12]| |
34
|
|
|
|
|
|
|
87 |
35
|
|
|
|
|
|
|
)\\d{4} |
36
|
|
|
|
|
|
|
', |
37
|
|
|
|
|
|
|
'geographic' => ' |
38
|
|
|
|
|
|
|
590(?: |
39
|
|
|
|
|
|
|
2[7-9]| |
40
|
|
|
|
|
|
|
5[12]| |
41
|
|
|
|
|
|
|
87 |
42
|
|
|
|
|
|
|
)\\d{4} |
43
|
|
|
|
|
|
|
', |
44
|
|
|
|
|
|
|
'mobile' => ' |
45
|
|
|
|
|
|
|
69(?: |
46
|
|
|
|
|
|
|
0\\d\\d| |
47
|
|
|
|
|
|
|
1(?: |
48
|
|
|
|
|
|
|
2[2-9]| |
49
|
|
|
|
|
|
|
3[0-5] |
50
|
|
|
|
|
|
|
) |
51
|
|
|
|
|
|
|
)\\d{4} |
52
|
|
|
|
|
|
|
', |
53
|
|
|
|
|
|
|
'pager' => '', |
54
|
|
|
|
|
|
|
'personal_number' => '', |
55
|
|
|
|
|
|
|
'specialrate' => '', |
56
|
|
|
|
|
|
|
'toll_free' => '80[0-5]\\d{6}', |
57
|
|
|
|
|
|
|
'voip' => '976[01]\\d{5}' |
58
|
|
|
|
|
|
|
}; |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
sub new { |
61
|
18
|
|
|
18
|
1
|
38
|
my $class = shift; |
62
|
18
|
|
|
|
|
64
|
my $number = shift; |
63
|
18
|
|
|
|
|
112
|
$number =~ s/(^\+590|\D)//g; |
64
|
18
|
|
|
|
|
81
|
my $self = bless({ country_code => '590', number => $number, formatters => $formatters, validators => $validators, }, $class); |
65
|
18
|
100
|
|
|
|
96
|
return $self if ($self->is_valid()); |
66
|
2
|
|
|
|
|
5
|
$number =~ s/^(?:0)//; |
67
|
2
|
|
|
|
|
20
|
$self = bless({ country_code => '590', number => $number, formatters => $formatters, validators => $validators, }, $class); |
68
|
2
|
50
|
|
|
|
11
|
return $self->is_valid() ? $self : undef; |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
1; |