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::KM; |
20
|
2
|
|
|
2
|
|
1162
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
18
|
|
|
2
|
|
|
|
|
225
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
18
|
use strict; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
86
|
|
23
|
2
|
|
|
2
|
|
17
|
use warnings; |
|
2
|
|
|
|
|
11
|
|
|
2
|
|
|
|
|
55
|
|
24
|
2
|
|
|
2
|
|
15
|
use utf8; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
14
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230903131447; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2 $3', |
30
|
|
|
|
|
|
|
'leading_digits' => '[3478]', |
31
|
|
|
|
|
|
|
'pattern' => '(\\d{3})(\\d{2})(\\d{2})' |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
]; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
my $validators = { |
36
|
|
|
|
|
|
|
'fixed_line' => '7[4-7]\\d{5}', |
37
|
|
|
|
|
|
|
'geographic' => '7[4-7]\\d{5}', |
38
|
|
|
|
|
|
|
'mobile' => '[34]\\d{6}', |
39
|
|
|
|
|
|
|
'pager' => '', |
40
|
|
|
|
|
|
|
'personal_number' => '', |
41
|
|
|
|
|
|
|
'specialrate' => '(8\\d{6})', |
42
|
|
|
|
|
|
|
'toll_free' => '', |
43
|
|
|
|
|
|
|
'voip' => '' |
44
|
|
|
|
|
|
|
}; |
45
|
|
|
|
|
|
|
my %areanames = (); |
46
|
|
|
|
|
|
|
$areanames{en} = {"269760", "Domoni", |
47
|
|
|
|
|
|
|
"269769", "Foumbouni", |
48
|
|
|
|
|
|
|
"269775", "Moroni", |
49
|
|
|
|
|
|
|
"269768", "Mitsamiouli", |
50
|
|
|
|
|
|
|
"269771", "Mutsamudu", |
51
|
|
|
|
|
|
|
"269763", "Moroni", |
52
|
|
|
|
|
|
|
"269767", "Mbéni", |
53
|
|
|
|
|
|
|
"269774", "Moroni", |
54
|
|
|
|
|
|
|
"269772", "Mohéli", |
55
|
|
|
|
|
|
|
"269778", "Mitsamiouli", |
56
|
|
|
|
|
|
|
"269770", "Domoni", |
57
|
|
|
|
|
|
|
"269779", "Foumbouni", |
58
|
|
|
|
|
|
|
"269762", "Mohéli", |
59
|
|
|
|
|
|
|
"269761", "Mutsamudu", |
60
|
|
|
|
|
|
|
"269777", "Mbéni", |
61
|
|
|
|
|
|
|
"269773", "Moroni",}; |
62
|
|
|
|
|
|
|
$areanames{fr} = {}; |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
sub new { |
65
|
10
|
|
|
10
|
1
|
25
|
my $class = shift; |
66
|
10
|
|
|
|
|
30
|
my $number = shift; |
67
|
10
|
|
|
|
|
64
|
$number =~ s/(^\+269|\D)//g; |
68
|
10
|
|
|
|
|
59
|
my $self = bless({ country_code => '269', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
69
|
10
|
100
|
|
|
|
55
|
return $self->is_valid() ? $self : undef; |
70
|
|
|
|
|
|
|
} |
71
|
|
|
|
|
|
|
1; |