This file is indexed.

/usr/share/perl5/Number/Phone/StubCountry/SZ.pm is in libnumber-phone-perl 3.4002-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# automatically generated file, don't edit



# Copyright 2011 David Cantrell, derived from data from libphonenumber
# http://code.google.com/p/libphonenumber/
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
package Number::Phone::StubCountry::SZ;
use base qw(Number::Phone::StubCountry);

use strict;
use warnings;
use utf8;
our $VERSION = 1.20170908113149;

my $formatters = [
                {
                  'leading_digits' => '[027]',
                  'pattern' => '(\\d{4})(\\d{4})'
                }
              ];

my $validators = {
                'voip' => '',
                'fixed_line' => '2[2-9]\\d{6}',
                'specialrate' => '',
                'mobile' => '7[6-9]\\d{6}',
                'toll_free' => '0800\\d{4}',
                'pager' => '',
                'personal_number' => '',
                'geographic' => '2[2-9]\\d{6}'
              };
my %areanames = (
  2682207 => "Nhlangano\,\ Shiselweni\ district",
  2682217 => "Hlathikulu\,\ Shiselweni\ district",
  2682227 => "Hluthi\,\ Shiselweni\ district",
  2682237 => "Mahamba\,\ Shiselweni\ district",
  2682303 => "Nsoko\,\ Lubombo\ district",
  2682312 => "Mhlume\,\ Lubombo\ district",
  2682313 => "Mhlume\,\ Lubombo\ district",
  2682322 => "Tshaneni\,\ Lubombo\ district",
  2682323 => "Tshaneni\,\ Lubombo\ district",
  2682333 => "Mpaka\,\ Lubombo\ district",
  2682343 => "Siteki\,\ Lubombo\ district",
  2682344 => "Siphofaneni\,\ Lubombo\ district",
  2682363 => "Big\ Bend\,\ Lubombo\ district",
  2682364 => "Big\ Bend\,\ Lubombo\ district",
  2682373 => "Maphiveni\,\ Lubombo\ district",
  2682382 => "Simunye\,\ Lubombo\ district",
  2682383 => "Simunye\,\ Lubombo\ district",
  2682404 => "Mbabane\,\ Hhohho\ district",
  2682405 => "Mbabane\,\ Hhohho\ district",
  2682406 => "Mbabane\,\ Hhohho\ district",
  2682416 => "Lobamba\,\ Hhohho\ district",
  2682422 => "Sidwashini\,\ Hhohho\ district",
  2682437 => "Pigg\'s\ Peak\,\ Hhohho\ district",
  2682442 => "Ngwenya\,\ Hhohho\ district",
  2682452 => "Bhunya\,\ Hhohho\ district",
  2682453 => "Bhunya\,\ Hhohho\ district",
  2682467 => "Mhlambanyatsi\,\ Hhohho\ district",
  2682472 => "Mahwalala\,\ Hhohho\ district",
  2682482 => "Siphocosini\,\ Hhohho\ district",
  2682505 => "Manzini",
  2682506 => "Manzini",
  2682517 => "Matsapha\,\ Manzini\ district",
  2682518 => "Matsapha\,\ Manzini\ district",
  2682528 => "Malkerns\,\ Manzini\ district",
  2682538 => "Mankayane\,\ Manzini\ district",
  2682548 => "Ludzeludze\,\ Manzini\ district",
  26826 => "Hhohho",
  26827 => "Manzini",
  26828 => "Lubombo",
  26829 => "Shiselweni",
);
    sub new {
      my $class = shift;
      my $number = shift;
      $number =~ s/(^\+268|\D)//g;
      my $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
  return $self->is_valid() ? $self : undef;
}
1;