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::CF; |
20
|
2
|
|
|
2
|
|
1114
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
216
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
17
|
use strict; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
49
|
|
23
|
2
|
|
|
2
|
|
15
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
53
|
|
24
|
2
|
|
|
2
|
|
14
|
use utf8; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
33
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230307181417; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2 $3 $4', |
30
|
|
|
|
|
|
|
'leading_digits' => '[278]', |
31
|
|
|
|
|
|
|
'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})' |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
]; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
my $validators = { |
36
|
|
|
|
|
|
|
'fixed_line' => '2[12]\\d{6}', |
37
|
|
|
|
|
|
|
'geographic' => '2[12]\\d{6}', |
38
|
|
|
|
|
|
|
'mobile' => '7[024-7]\\d{6}', |
39
|
|
|
|
|
|
|
'pager' => '', |
40
|
|
|
|
|
|
|
'personal_number' => '', |
41
|
|
|
|
|
|
|
'specialrate' => '(8776\\d{4})', |
42
|
|
|
|
|
|
|
'toll_free' => '', |
43
|
|
|
|
|
|
|
'voip' => '' |
44
|
|
|
|
|
|
|
}; |
45
|
|
|
|
|
|
|
my %areanames = (); |
46
|
|
|
|
|
|
|
$areanames{en} = {"2362", "Bangui",}; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
sub new { |
49
|
10
|
|
|
10
|
1
|
35
|
my $class = shift; |
50
|
10
|
|
|
|
|
45
|
my $number = shift; |
51
|
10
|
|
|
|
|
63
|
$number =~ s/(^\+236|\D)//g; |
52
|
10
|
|
|
|
|
65
|
my $self = bless({ country_code => '236', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
53
|
10
|
100
|
|
|
|
51
|
return $self->is_valid() ? $self : undef; |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
1; |