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::EH;
use base qw(Number::Phone::StubCountry);
  
use strict;
use warnings;
our $VERSION = 1.20140617214232;

my $formatters = [];
my $validators = {'voip' => '','special_rate' => '()|(89\\d{7})|()','pager' => '','fixed_line' => '528[89]\\d{5}','personal_number' => '','mobile' => '6(?:0[0-8]|[12-7]\\d|8[01]|9[27-9])\\d{6}','toll_free' => '80\\d{7}','geographic' => '528[89]\\d{5}'};sub areaname { my $self = shift; my $number = $self->{number}; my %map = (212520 => "Casablanca",212521 => "Casablanca\/Central\ Morocco",2125222 => "Casablanca",2125223 => "Casablanca",2125224 => "Casablanca",2125225 => "Casablanca",2125226 => "Casablanca",2125227 => "Casablanca",2125228 => "Casablanca",2125229 => "Casablanca",2125232 => "Mohammedia",2125233 => "El\ Jedida\/Mohammedia",2125234 => "Settai",2125235 => "Oued\ Zem",2125237 => "Settat",2125242 => "El\ Kelaa\ des\ Sraghna",2125243 => "Marrakech",2125244 => "Marrakech",2125246 => "El\ Youssoufia\/Safi",2125247 => "Essaouira",2125248 => "Ouarzazate",212525 => "Southern\ Morocco",2125282 => "Agadir\/Ait\ Meloul\/Inezgane",2125283 => "Inezgane\/Taroudant",2125285 => "Oulad\ Teima\/Taroudant",2125286 => "Tiznit",2125287 => "Guelmim\/Tan\ Tan",2125288 => "Agadir\/Es\-Semara\/Tarfaya",2125289 => "Dakhla\/Laayoune",2125290 => "Casablanca",21252980 => "Marrakech\ area",21252990 => "Agadir\ area",212530 => "Rabat\/K\Ã\¨nitra",212531 => "Tangier\/Al\ Hoceima\/Larache\/T\Ã\¨touan",212532 => "F\Ã\¨s\/Errachidia\/Mekn\Ã\¨s\/Nador\/Oujda\/Taza",2125352 => "Taza",2125353 => "Midelt",2125354 => "Mekn\Ã\¨s",2125355 => "Mekn\Ã\¨s",2125356 => "F\Ã\¨s",2125357 => "Goulmima",2125358 => "Ifrane",2125359 => "F\Ã\¨s",2125362 => "Berkane",2125363 => "Nador",2125365 => "Oujda",2125366 => "Figuig\/Oujda",2125367 => "Bouarfa\/Oujda",2125368 => "Figuig",2125372 => "Rabat",2125373 => "K\Ã\©nitra",2125374 => "Ouazzane",2125375 => "Kh\Ã\©misset",2125376 => "Rabat\/T\Ã\©mara",2125377 => "Rabat",2125378 => "Sal\Ã\©",2125379 => "Souk\ Larbaa",2125380 => "Rabat\ area",21253880 => "Tangier\ area",21253890 => "F\Ã\¨s\/Mekn\Ã\¨s\ areas",2125393 => "Tangier",2125394 => "Asilah",2125395 => "Larache",2125396 => "Fnideq\/Martil\/Mdiq",2125397 => "T\Ã\©touan",2125398 => "Al\ Hoceima\/Chefchaouen",2125399 => "Al\ Hoceima\/Larache\/Tangier",);
      foreach my $prefix (map { substr($number, 0, $_) } reverse(1..length($number))) {
        return $map{"212$prefix"} if exists($map{"212$prefix"});
      }
      return undef;
    }
sub new {
  my $class = shift;
  my $number = shift;
  $number =~ s/(^\+212|\D)//g;
  my $self = bless({ number => $number, formatters => $formatters, validators => $validators }, $class);
  return $self->is_valid() ? $self : undef;
}

1;