The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# 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::NE;
use base qw(Number::Phone::StubCountry);

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

my $formatters = [
                {
                  'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})',
                  'format' => '$1 $2 $3 $4',
                  'leading_digits' => '
            09|
            [289]
          '
                },
                {
                  'leading_digits' => '08',
                  'format' => '$1 $2 $3',
                  'pattern' => '(08)(\\d{3})(\\d{3})'
                }
              ];

my $validators = {
                'mobile' => '
          (?:
            8[089]|
            9\\d
          )\\d{6}
        ',
                'specialrate' => '(09\\d{6})',
                'geographic' => '
          2(?:
            0(?:
              20|
              3[1-7]|
              4[134]|
              5[14]|
              6[14578]|
              7[1-578]
            )|
            1(?:
              4[145]|
              5[14]|
              6[14-68]|
              7[169]|
              88
            )
          )\\d{4}
        ',
                'personal_number' => '',
                'pager' => '',
                'toll_free' => '08\\d{6}',
                'fixed_line' => '
          2(?:
            0(?:
              20|
              3[1-7]|
              4[134]|
              5[14]|
              6[14578]|
              7[1-578]
            )|
            1(?:
              4[145]|
              5[14]|
              6[14-68]|
              7[169]|
              88
            )
          )\\d{4}
        ',
                'voip' => ''
              };
my %areanames = (
  2272020 => "Niamey",
  2272031 => "Niamey",
  2272032 => "Niamey",
  2272033 => "Niamey",
  2272034 => "Niamey",
  2272035 => "Niamey",
  2272036 => "Niamey",
  2272037 => "Niamey",
  2272041 => "Maradi",
  2272044 => "Agadez",
  2272045 => "Arlit",
  2272051 => "Zinder",
  2272054 => "Diffa",
  2272061 => "Tahoua",
  2272064 => "Konni",
  2272065 => "Dosso",
  2272068 => "Gaya",
  2272071 => "Tillabéry",
  2272072 => "Niamey",
  2272073 => "Niamey",
  2272074 => "Niamey",
  2272075 => "Niamey",
  2272077 => "Filingué",
  2272078 => "Say",
);
    sub new {
      my $class = shift;
      my $number = shift;
      $number =~ s/(^\+227|\D)//g;
      my $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
        return $self->is_valid() ? $self : undef;
    }
1;