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::CK; |
20
|
2
|
|
|
2
|
|
1192
|
use base qw(Number::Phone::StubCountry); |
|
2
|
|
|
|
|
15
|
|
|
2
|
|
|
|
|
262
|
|
21
|
|
|
|
|
|
|
|
22
|
2
|
|
|
2
|
|
25
|
use strict; |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
70
|
|
23
|
2
|
|
|
2
|
|
23
|
use warnings; |
|
2
|
|
|
|
|
26
|
|
|
2
|
|
|
|
|
72
|
|
24
|
2
|
|
|
2
|
|
15
|
use utf8; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
11
|
|
25
|
|
|
|
|
|
|
our $VERSION = 1.20230614174401; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
my $formatters = [ |
28
|
|
|
|
|
|
|
{ |
29
|
|
|
|
|
|
|
'format' => '$1 $2', |
30
|
|
|
|
|
|
|
'leading_digits' => '[2-578]', |
31
|
|
|
|
|
|
|
'pattern' => '(\\d{2})(\\d{3})' |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
]; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
my $validators = { |
36
|
|
|
|
|
|
|
'fixed_line' => ' |
37
|
|
|
|
|
|
|
(?: |
38
|
|
|
|
|
|
|
2\\d| |
39
|
|
|
|
|
|
|
3[13-7]| |
40
|
|
|
|
|
|
|
4[1-5] |
41
|
|
|
|
|
|
|
)\\d{3} |
42
|
|
|
|
|
|
|
', |
43
|
|
|
|
|
|
|
'geographic' => ' |
44
|
|
|
|
|
|
|
(?: |
45
|
|
|
|
|
|
|
2\\d| |
46
|
|
|
|
|
|
|
3[13-7]| |
47
|
|
|
|
|
|
|
4[1-5] |
48
|
|
|
|
|
|
|
)\\d{3} |
49
|
|
|
|
|
|
|
', |
50
|
|
|
|
|
|
|
'mobile' => '[578]\\d{4}', |
51
|
|
|
|
|
|
|
'pager' => '', |
52
|
|
|
|
|
|
|
'personal_number' => '', |
53
|
|
|
|
|
|
|
'specialrate' => '', |
54
|
|
|
|
|
|
|
'toll_free' => '', |
55
|
|
|
|
|
|
|
'voip' => '' |
56
|
|
|
|
|
|
|
}; |
57
|
|
|
|
|
|
|
my %areanames = (); |
58
|
|
|
|
|
|
|
$areanames{en} = {"68231", "Aitutaki", |
59
|
|
|
|
|
|
|
"6822", "Rarotonga", |
60
|
|
|
|
|
|
|
"68234", "Mangaia", |
61
|
|
|
|
|
|
|
"68236", "Mitiaro", |
62
|
|
|
|
|
|
|
"68235", "Mauke", |
63
|
|
|
|
|
|
|
"68233", "Atiu", |
64
|
|
|
|
|
|
|
"68245", "Nassau", |
65
|
|
|
|
|
|
|
"68243", "Manihiki", |
66
|
|
|
|
|
|
|
"68241", "Pukapuka", |
67
|
|
|
|
|
|
|
"68237", "Palmerston", |
68
|
|
|
|
|
|
|
"68242", "Penrhyn", |
69
|
|
|
|
|
|
|
"68244", "Rakahanga",}; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
sub new { |
72
|
7
|
|
|
7
|
1
|
16
|
my $class = shift; |
73
|
7
|
|
|
|
|
17
|
my $number = shift; |
74
|
7
|
|
|
|
|
42
|
$number =~ s/(^\+682|\D)//g; |
75
|
7
|
|
|
|
|
45
|
my $self = bless({ country_code => '682', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class); |
76
|
7
|
100
|
|
|
|
37
|
return $self->is_valid() ? $self : undef; |
77
|
|
|
|
|
|
|
} |
78
|
|
|
|
|
|
|
1; |