2016-10-30 10:47:58 +00:00
( function ( ) { var $jscomp = { scope : { } , checkStringArgs : function ( a , b , c ) { if ( null == a ) throw new TypeError ( "The 'this' value for String.prototype." + c + " must not be null or undefined" ) ; if ( b instanceof RegExp ) throw new TypeError ( "First argument to String.prototype." + c + " must not be a regular expression" ) ; return a + "" } } ;
$jscomp . defineProperty = "function" == typeof Object . defineProperties ? Object . defineProperty : function ( a , b , c ) { if ( c . get || c . set ) throw new TypeError ( "ES3 does not support getters and setters." ) ; a != Array . prototype && a != Object . prototype && ( a [ b ] = c . value ) } ; $jscomp . getGlobal = function ( a ) { return "undefined" != typeof window && window === a ? a : "undefined" != typeof global && null != global ? global : a } ; $jscomp . global = $jscomp . getGlobal ( this ) ;
$jscomp . polyfill = function ( a , b , c , d ) { if ( b ) { c = $jscomp . global ; a = a . split ( "." ) ; for ( d = 0 ; d < a . length - 1 ; d ++ ) { var e = a [ d ] ; e in c || ( c [ e ] = { } ) ; c = c [ e ] } a = a [ a . length - 1 ] ; d = c [ a ] ; b = b ( d ) ; b != d && null != b && $jscomp . defineProperty ( c , a , { configurable : ! 0 , writable : ! 0 , value : b } ) } } ;
$jscomp . polyfill ( "String.prototype.repeat" , function ( a ) { return a ? a : function ( a ) { var b = $jscomp . checkStringArgs ( this , null , "repeat" ) ; if ( 0 > a || 1342177279 < a ) throw new RangeError ( "Invalid count value" ) ; a |= 0 ; for ( var d = "" ; a ; ) if ( a & 1 && ( d += b ) , a >>>= 1 ) b += b ; return d } } , "es6-impl" , "es3" ) ; $jscomp . SYMBOL _PREFIX = "jscomp_symbol_" ; $jscomp . initSymbol = function ( ) { $jscomp . initSymbol = function ( ) { } ; $jscomp . global . Symbol || ( $jscomp . global . Symbol = $jscomp . Symbol ) } ; $jscomp . symbolCounter _ = 0 ;
$jscomp . Symbol = function ( a ) { return $jscomp . SYMBOL _PREFIX + ( a || "" ) + $jscomp . symbolCounter _ ++ } ; $jscomp . initSymbolIterator = function ( ) { $jscomp . initSymbol ( ) ; var a = $jscomp . global . Symbol . iterator ; a || ( a = $jscomp . global . Symbol . iterator = $jscomp . global . Symbol ( "iterator" ) ) ; "function" != typeof Array . prototype [ a ] && $jscomp . defineProperty ( Array . prototype , a , { configurable : ! 0 , writable : ! 0 , value : function ( ) { return $jscomp . arrayIterator ( this ) } } ) ; $jscomp . initSymbolIterator = function ( ) { } } ;
$jscomp . arrayIterator = function ( a ) { var b = 0 ; return $jscomp . iteratorPrototype ( function ( ) { return b < a . length ? { done : ! 1 , value : a [ b ++ ] } : { done : ! 0 } } ) } ; $jscomp . iteratorPrototype = function ( a ) { $jscomp . initSymbolIterator ( ) ; a = { next : a } ; a [ $jscomp . global . Symbol . iterator ] = function ( ) { return this } ; return a } ; $jscomp . array = $jscomp . array || { } ;
$jscomp . iteratorFromArray = function ( a , b ) { $jscomp . initSymbolIterator ( ) ; a instanceof String && ( a += "" ) ; var c = 0 , d = { next : function ( ) { if ( c < a . length ) { var e = c ++ ; return { value : b ( e , a [ e ] ) , done : ! 1 } } d . next = function ( ) { return { done : ! 0 , value : void 0 } } ; return d . next ( ) } } ; d [ Symbol . iterator ] = function ( ) { return d } ; return d } ; var COMPILED = ! 0 , goog = goog || { } ; goog . global = this ; goog . isDef = function ( a ) { return void 0 !== a } ;
goog . exportPath _ = function ( a , b , c ) { a = a . split ( "." ) ; c = c || goog . global ; a [ 0 ] in c || ! c . execScript || c . execScript ( "var " + a [ 0 ] ) ; for ( var d ; a . length && ( d = a . shift ( ) ) ; ) ! a . length && goog . isDef ( b ) ? c [ d ] = b : c = c [ d ] ? c [ d ] : c [ d ] = { } } ;
2016-01-22 23:34:30 +00:00
goog . define = function ( a , b ) { var c = b ; COMPILED || ( goog . global . CLOSURE _UNCOMPILED _DEFINES && Object . prototype . hasOwnProperty . call ( goog . global . CLOSURE _UNCOMPILED _DEFINES , a ) ? c = goog . global . CLOSURE _UNCOMPILED _DEFINES [ a ] : goog . global . CLOSURE _DEFINES && Object . prototype . hasOwnProperty . call ( goog . global . CLOSURE _DEFINES , a ) && ( c = goog . global . CLOSURE _DEFINES [ a ] ) ) ; goog . exportPath _ ( a , c ) } ; goog . DEBUG = ! 0 ; goog . LOCALE = "en" ; goog . TRUSTED _SITE = ! 0 ; goog . STRICT _MODE _COMPATIBLE = ! 1 ; goog . DISALLOW _TEST _ONLY _CODE = COMPILED && ! goog . DEBUG ;
2016-10-30 10:47:58 +00:00
goog . ENABLE _CHROME _APP _SAFE _SCRIPT _LOADING = ! 1 ; goog . provide = function ( a ) { if ( goog . isInModuleLoader _ ( ) ) throw Error ( "goog.provide can not be used within a goog.module." ) ; if ( ! COMPILED && goog . isProvided _ ( a ) ) throw Error ( 'Namespace "' + a + '" already declared.' ) ; goog . constructNamespace _ ( a ) } ; goog . constructNamespace _ = function ( a , b ) { if ( ! COMPILED ) { delete goog . implicitNamespaces _ [ a ] ; for ( var c = a ; ( c = c . substring ( 0 , c . lastIndexOf ( "." ) ) ) && ! goog . getObjectByName ( c ) ; ) goog . implicitNamespaces _ [ c ] = ! 0 } goog . exportPath _ ( a , b ) } ;
goog . VALID _MODULE _RE _ = /^[a-zA-Z_$][a-zA-Z0-9._$]*$/ ;
goog . module = function ( a ) { if ( ! goog . isString ( a ) || ! a || - 1 == a . search ( goog . VALID _MODULE _RE _ ) ) throw Error ( "Invalid module identifier" ) ; if ( ! goog . isInModuleLoader _ ( ) ) throw Error ( "Module " + a + " has been loaded incorrectly. Note, modules cannot be loaded as normal scripts. They require some kind of pre-processing step. You're likely trying to load a module via a script tag or as a part of a concatenated bundle without rewriting the module. For more info see: https://github.com/google/closure-library/wiki/goog.module:-an-ES6-module-like-alternative-to-goog.provide." ) ; if ( goog . moduleLoaderState _ . moduleName ) throw Error ( "goog.module may only be called once per module." ) ;
goog . moduleLoaderState _ . moduleName = a ; if ( ! COMPILED ) { if ( goog . isProvided _ ( a ) ) throw Error ( 'Namespace "' + a + '" already declared.' ) ; delete goog . implicitNamespaces _ [ a ] } } ; goog . module . get = function ( a ) { return goog . module . getInternal _ ( a ) } ; goog . module . getInternal _ = function ( a ) { if ( ! COMPILED ) return goog . isProvided _ ( a ) ? a in goog . loadedModules _ ? goog . loadedModules _ [ a ] : goog . getObjectByName ( a ) : null } ; goog . moduleLoaderState _ = null ; goog . isInModuleLoader _ = function ( ) { return null != goog . moduleLoaderState _ } ;
2014-11-10 02:04:15 +00:00
goog . module . declareLegacyNamespace = function ( ) { if ( ! COMPILED && ! goog . isInModuleLoader _ ( ) ) throw Error ( "goog.module.declareLegacyNamespace must be called from within a goog.module" ) ; if ( ! COMPILED && ! goog . moduleLoaderState _ . moduleName ) throw Error ( "goog.module must be called prior to goog.module.declareLegacyNamespace." ) ; goog . moduleLoaderState _ . declareLegacyNamespace = ! 0 } ;
2016-01-22 23:34:30 +00:00
goog . setTestOnly = function ( a ) { if ( goog . DISALLOW _TEST _ONLY _CODE ) throw a = a || "" , Error ( "Importing test-only code into non-debug environment" + ( a ? ": " + a : "." ) ) ; } ; goog . forwardDeclare = function ( a ) { } ; COMPILED || ( goog . isProvided _ = function ( a ) { return a in goog . loadedModules _ || ! goog . implicitNamespaces _ [ a ] && goog . isDefAndNotNull ( goog . getObjectByName ( a ) ) } , goog . implicitNamespaces _ = { "goog.module" : ! 0 } ) ;
2016-10-30 10:47:58 +00:00
goog . getObjectByName = function ( a , b ) { for ( var c = a . split ( "." ) , d = b || goog . global , e ; e = c . shift ( ) ; ) if ( goog . isDefAndNotNull ( d [ e ] ) ) d = d [ e ] ; else return null ; return d } ; goog . globalize = function ( a , b ) { var c = b || goog . global , d ; for ( d in a ) c [ d ] = a [ d ] } ;
goog . addDependency = function ( a , b , c , d ) { if ( goog . DEPENDENCIES _ENABLED ) { var e ; a = a . replace ( /\\/g , "/" ) ; var f = goog . dependencies _ ; d && "boolean" !== typeof d || ( d = d ? { module : "goog" } : { } ) ; for ( var g = 0 ; e = b [ g ] ; g ++ ) f . nameToPath [ e ] = a , f . loadFlags [ a ] = d ; for ( d = 0 ; b = c [ d ] ; d ++ ) a in f . requires || ( f . requires [ a ] = { } ) , f . requires [ a ] [ b ] = ! 0 } } ; goog . ENABLE _DEBUG _LOADER = ! 0 ; goog . logToConsole _ = function ( a ) { goog . global . console && goog . global . console . error ( a ) } ;
goog . require = function ( a ) { if ( ! COMPILED ) { goog . ENABLE _DEBUG _LOADER && goog . IS _OLD _IE _ && goog . maybeProcessDeferredDep _ ( a ) ; if ( goog . isProvided _ ( a ) ) { if ( goog . isInModuleLoader _ ( ) ) return goog . module . getInternal _ ( a ) } else if ( goog . ENABLE _DEBUG _LOADER ) { var b = goog . getPathFromDeps _ ( a ) ; if ( b ) goog . writeScripts _ ( b ) ; else throw a = "goog.require could not find: " + a , goog . logToConsole _ ( a ) , Error ( a ) ; } return null } } ; goog . basePath = "" ; goog . nullFunction = function ( ) { } ;
goog . abstractMethod = function ( ) { throw Error ( "unimplemented abstract method" ) ; } ; goog . addSingletonGetter = function ( a ) { a . getInstance = function ( ) { if ( a . instance _ ) return a . instance _ ; goog . DEBUG && ( goog . instantiatedSingletons _ [ goog . instantiatedSingletons _ . length ] = a ) ; return a . instance _ = new a } } ; goog . instantiatedSingletons _ = [ ] ; goog . LOAD _MODULE _USING _EVAL = ! 0 ; goog . SEAL _MODULE _EXPORTS = goog . DEBUG ; goog . loadedModules _ = { } ; goog . DEPENDENCIES _ENABLED = ! COMPILED && goog . ENABLE _DEBUG _LOADER ; goog . TRANSPILE = "detect" ;
goog . TRANSPILER = "transpile.js" ;
goog . DEPENDENCIES _ENABLED && ( goog . dependencies _ = { loadFlags : { } , nameToPath : { } , requires : { } , visited : { } , written : { } , deferred : { } } , goog . inHtmlDocument _ = function ( ) { var a = goog . global . document ; return null != a && "write" in a } , goog . findBasePath _ = function ( ) { if ( goog . isDef ( goog . global . CLOSURE _BASE _PATH ) ) goog . basePath = goog . global . CLOSURE _BASE _PATH ; else if ( goog . inHtmlDocument _ ( ) ) for ( var a = goog . global . document . getElementsByTagName ( "SCRIPT" ) , b = a . length - 1 ; 0 <= b ; -- b ) { var c = a [ b ] . src , d = c . lastIndexOf ( "?" ) , d = - 1 == d ? c . length : d ; if ( "base.js" ==
c . substr ( d - 7 , 7 ) ) { goog . basePath = c . substr ( 0 , d - 7 ) ; break } } } , goog . importScript _ = function ( a , b ) { ( goog . global . CLOSURE _IMPORT _SCRIPT || goog . writeScriptTag _ ) ( a , b ) && ( goog . dependencies _ . written [ a ] = ! 0 ) } , goog . IS _OLD _IE _ = ! ( goog . global . atob || ! goog . global . document || ! goog . global . document . all ) , goog . importProcessedScript _ = function ( a , b , c ) { goog . importScript _ ( "" , 'goog.retrieveAndExec_("' + a + '", ' + b + ", " + c + ");" ) } , goog . queuedModules _ = [ ] , goog . wrapModule _ = function ( a , b ) { return goog . LOAD _MODULE _USING _EVAL && goog . isDef ( goog . global . JSON ) ?
"goog.loadModule(" + goog . global . JSON . stringify ( b + "\n//# sourceURL=" + a + "\n" ) + ");" : 'goog.loadModule(function(exports) {"use strict";' + b + "\n;return exports});\n//# sourceURL=" + a + "\n" } , goog . loadQueuedModules _ = function ( ) { var a = goog . queuedModules _ . length ; if ( 0 < a ) { var b = goog . queuedModules _ ; goog . queuedModules _ = [ ] ; for ( var c = 0 ; c < a ; c ++ ) goog . maybeProcessDeferredPath _ ( b [ c ] ) } } , goog . maybeProcessDeferredDep _ = function ( a ) { goog . isDeferredModule _ ( a ) && goog . allDepsAreAvailable _ ( a ) && ( a = goog . getPathFromDeps _ ( a ) , goog . maybeProcessDeferredPath _ ( goog . basePath +
a ) ) } , goog . isDeferredModule _ = function ( a ) { var b = ( a = goog . getPathFromDeps _ ( a ) ) && goog . dependencies _ . loadFlags [ a ] || { } , c = b . lang || "es3" ; return a && ( "goog" == b . module || goog . needsTranspile _ ( c ) ) ? goog . basePath + a in goog . dependencies _ . deferred : ! 1 } , goog . allDepsAreAvailable _ = function ( a ) { if ( ( a = goog . getPathFromDeps _ ( a ) ) && a in goog . dependencies _ . requires ) for ( var b in goog . dependencies _ . requires [ a ] ) if ( ! goog . isProvided _ ( b ) && ! goog . isDeferredModule _ ( b ) ) return ! 1 ; return ! 0 } , goog . maybeProcessDeferredPath _ = function ( a ) { if ( a in
goog . dependencies _ . deferred ) { var b = goog . dependencies _ . deferred [ a ] ; delete goog . dependencies _ . deferred [ a ] ; goog . globalEval ( b ) } } , goog . loadModuleFromUrl = function ( a ) { goog . retrieveAndExec _ ( a , ! 0 , ! 1 ) } , goog . writeScriptSrcNode _ = function ( a ) { goog . global . document . write ( '<script type="text/javascript" src="' + a + '">\x3c/script>' ) } , goog . appendScriptSrcNode _ = function ( a ) { var b = goog . global . document , c = b . createElement ( "script" ) ; c . type = "text/javascript" ; c . src = a ; c . defer = ! 1 ; c . async = ! 1 ; b . head . appendChild ( c ) } , goog . writeScriptTag _ =
function ( a , b ) { if ( goog . inHtmlDocument _ ( ) ) { var c = goog . global . document ; if ( ! goog . ENABLE _CHROME _APP _SAFE _SCRIPT _LOADING && "complete" == c . readyState ) { if ( /\bdeps.js$/ . test ( a ) ) return ! 1 ; throw Error ( 'Cannot write "' + a + '" after document load' ) ; } if ( void 0 === b ) if ( goog . IS _OLD _IE _ ) { var d = " onreadystatechange='goog.onScriptLoad_(this, " + ++ goog . lastNonModuleScriptIndex _ + ")' " ; c . write ( '<script type="text/javascript" src="' + a + '"' + d + ">\x3c/script>" ) } else goog . ENABLE _CHROME _APP _SAFE _SCRIPT _LOADING ? goog . appendScriptSrcNode _ ( a ) :
goog . writeScriptSrcNode _ ( a ) ; else c . write ( '<script type="text/javascript">' + b + "\x3c/script>" ) ; return ! 0 } return ! 1 } , goog . needsTranspile _ = function ( a ) { if ( "always" == goog . TRANSPILE ) return ! 0 ; if ( "never" == goog . TRANSPILE ) return ! 1 ; goog . requiresTranspilation _ || ( goog . requiresTranspilation _ = goog . createRequiresTranspilation _ ( ) ) ; if ( a in goog . requiresTranspilation _ ) return goog . requiresTranspilation _ [ a ] ; throw Error ( "Unknown language mode: " + a ) ; } , goog . requiresTranspilation _ = null , goog . lastNonModuleScriptIndex _ = 0 , goog . onScriptLoad _ =
function ( a , b ) { "complete" == a . readyState && goog . lastNonModuleScriptIndex _ == b && goog . loadQueuedModules _ ( ) ; return ! 0 } , goog . writeScripts _ = function ( a ) { function b ( a ) { if ( ! ( a in e . written || a in e . visited ) ) { e . visited [ a ] = ! 0 ; if ( a in e . requires ) for ( var f in e . requires [ a ] ) if ( ! goog . isProvided _ ( f ) ) if ( f in e . nameToPath ) b ( e . nameToPath [ f ] ) ; else throw Error ( "Undefined nameToPath for " + f ) ; a in d || ( d [ a ] = ! 0 , c . push ( a ) ) } } var c = [ ] , d = { } , e = goog . dependencies _ ; b ( a ) ; for ( a = 0 ; a < c . length ; a ++ ) { var f = c [ a ] ; goog . dependencies _ . written [ f ] =
! 0 } var g = goog . moduleLoaderState _ ; goog . moduleLoaderState _ = null ; for ( a = 0 ; a < c . length ; a ++ ) if ( f = c [ a ] ) { var h = e . loadFlags [ f ] || { } , k = goog . needsTranspile _ ( h . lang || "es3" ) ; "goog" == h . module || k ? goog . importProcessedScript _ ( goog . basePath + f , "goog" == h . module , k ) : goog . importScript _ ( goog . basePath + f ) } else throw goog . moduleLoaderState _ = g , Error ( "Undefined script input" ) ; goog . moduleLoaderState _ = g } , goog . getPathFromDeps _ = function ( a ) { return a in goog . dependencies _ . nameToPath ? goog . dependencies _ . nameToPath [ a ] : null } , goog . findBasePath _ ( ) ,
goog . global . CLOSURE _NO _DEPS || goog . importScript _ ( goog . basePath + "deps.js" ) ) ;
goog . loadModule = function ( a ) { var b = goog . moduleLoaderState _ ; try { goog . moduleLoaderState _ = { moduleName : void 0 , declareLegacyNamespace : ! 1 } ; var c ; if ( goog . isFunction ( a ) ) c = a . call ( void 0 , { } ) ; else if ( goog . isString ( a ) ) c = goog . loadModuleFromSource _ . call ( void 0 , a ) ; else throw Error ( "Invalid module definition" ) ; var d = goog . moduleLoaderState _ . moduleName ; if ( ! goog . isString ( d ) || ! d ) throw Error ( 'Invalid module name "' + d + '"' ) ; goog . moduleLoaderState _ . declareLegacyNamespace ? goog . constructNamespace _ ( d , c ) : goog . SEAL _MODULE _EXPORTS &&
Object . seal && goog . isObject ( c ) && Object . seal ( c ) ; goog . loadedModules _ [ d ] = c } finally { goog . moduleLoaderState _ = b } } ; goog . loadModuleFromSource _ = function ( a ) { eval ( a ) ; return { } } ; goog . normalizePath _ = function ( a ) { a = a . split ( "/" ) ; for ( var b = 0 ; b < a . length ; ) "." == a [ b ] ? a . splice ( b , 1 ) : b && ".." == a [ b ] && a [ b - 1 ] && ".." != a [ b - 1 ] ? a . splice ( -- b , 2 ) : b ++ ; return a . join ( "/" ) } ;
goog . loadFileSync _ = function ( a ) { if ( goog . global . CLOSURE _LOAD _FILE _SYNC ) return goog . global . CLOSURE _LOAD _FILE _SYNC ( a ) ; try { var b = new goog . global . XMLHttpRequest ; b . open ( "get" , a , ! 1 ) ; b . send ( ) ; return 0 == b . status || 200 == b . status ? b . responseText : null } catch ( c ) { return null } } ;
goog . retrieveAndExec _ = function ( a , b , c ) { if ( ! COMPILED ) { var d = a ; a = goog . normalizePath _ ( a ) ; var e = goog . global . CLOSURE _IMPORT _SCRIPT || goog . writeScriptTag _ , f = goog . loadFileSync _ ( a ) ; if ( null == f ) throw Error ( 'Load of "' + a + '" failed' ) ; c && ( f = goog . transpile _ . call ( goog . global , f , a ) ) ; f = b ? goog . wrapModule _ ( a , f ) : f + ( "\n//# sourceURL=" + a ) ; goog . IS _OLD _IE _ ? ( goog . dependencies _ . deferred [ d ] = f , goog . queuedModules _ . push ( d ) ) : e ( a , f ) } } ;
goog . transpile _ = function ( a , b ) { var c = goog . global . $jscomp ; c || ( goog . global . $jscomp = c = { } ) ; var d = c . transpile ; if ( ! d ) { var e = goog . basePath + goog . TRANSPILER , f = goog . loadFileSync _ ( e ) ; if ( f ) { eval ( f + "\n//# sourceURL=" + e ) ; if ( goog . global . $gwtExport && goog . global . $gwtExport . $jscomp && ! goog . global . $gwtExport . $jscomp . transpile ) throw Error ( 'The transpiler did not properly export the "transpile" method. $gwtExport: ' + JSON . stringify ( goog . global . $gwtExport ) ) ; goog . global . $jscomp . transpile = goog . global . $gwtExport . $jscomp . transpile ;
c = goog . global . $jscomp ; d = c . transpile } } d || ( d = c . transpile = function ( a , b ) { goog . logToConsole _ ( b + " requires transpilation but no transpiler was found." ) ; return a } ) ; return d ( a , b ) } ;
2014-11-10 02:04:15 +00:00
goog . typeOf = function ( a ) { var b = typeof a ; if ( "object" == b ) if ( a ) { if ( a instanceof Array ) return "array" ; if ( a instanceof Object ) return b ; var c = Object . prototype . toString . call ( a ) ; if ( "[object Window]" == c ) return "object" ; if ( "[object Array]" == c || "number" == typeof a . length && "undefined" != typeof a . splice && "undefined" != typeof a . propertyIsEnumerable && ! a . propertyIsEnumerable ( "splice" ) ) return "array" ; if ( "[object Function]" == c || "undefined" != typeof a . call && "undefined" != typeof a . propertyIsEnumerable && ! a . propertyIsEnumerable ( "call" ) ) return "function" } else return "null" ;
else if ( "function" == b && "undefined" == typeof a . call ) return "object" ; return b } ; goog . isNull = function ( a ) { return null === a } ; goog . isDefAndNotNull = function ( a ) { return null != a } ; goog . isArray = function ( a ) { return "array" == goog . typeOf ( a ) } ; goog . isArrayLike = function ( a ) { var b = goog . typeOf ( a ) ; return "array" == b || "object" == b && "number" == typeof a . length } ; goog . isDateLike = function ( a ) { return goog . isObject ( a ) && "function" == typeof a . getFullYear } ; goog . isString = function ( a ) { return "string" == typeof a } ;
2016-01-22 23:34:30 +00:00
goog . isBoolean = function ( a ) { return "boolean" == typeof a } ; goog . isNumber = function ( a ) { return "number" == typeof a } ; goog . isFunction = function ( a ) { return "function" == goog . typeOf ( a ) } ; goog . isObject = function ( a ) { var b = typeof a ; return "object" == b && null != a || "function" == b } ; goog . getUid = function ( a ) { return a [ goog . UID _PROPERTY _ ] || ( a [ goog . UID _PROPERTY _ ] = ++ goog . uidCounter _ ) } ; goog . hasUid = function ( a ) { return ! ! a [ goog . UID _PROPERTY _ ] } ;
goog . removeUid = function ( a ) { null !== a && "removeAttribute" in a && a . removeAttribute ( goog . UID _PROPERTY _ ) ; try { delete a [ goog . UID _PROPERTY _ ] } catch ( b ) { } } ; goog . UID _PROPERTY _ = "closure_uid_" + ( 1E9 * Math . random ( ) >>> 0 ) ; goog . uidCounter _ = 0 ; goog . getHashCode = goog . getUid ; goog . removeHashCode = goog . removeUid ; goog . cloneObject = function ( a ) { var b = goog . typeOf ( a ) ; if ( "object" == b || "array" == b ) { if ( a . clone ) return a . clone ( ) ; var b = "array" == b ? [ ] : { } , c ; for ( c in a ) b [ c ] = goog . cloneObject ( a [ c ] ) ; return b } return a } ;
goog . bindNative _ = function ( a , b , c ) { return a . call . apply ( a . bind , arguments ) } ; goog . bindJs _ = function ( a , b , c ) { if ( ! a ) throw Error ( ) ; if ( 2 < arguments . length ) { var d = Array . prototype . slice . call ( arguments , 2 ) ; return function ( ) { var c = Array . prototype . slice . call ( arguments ) ; Array . prototype . unshift . apply ( c , d ) ; return a . apply ( b , c ) } } return function ( ) { return a . apply ( b , arguments ) } } ;
goog . bind = function ( a , b , c ) { Function . prototype . bind && - 1 != Function . prototype . bind . toString ( ) . indexOf ( "native code" ) ? goog . bind = goog . bindNative _ : goog . bind = goog . bindJs _ ; return goog . bind . apply ( null , arguments ) } ; goog . partial = function ( a , b ) { var c = Array . prototype . slice . call ( arguments , 1 ) ; return function ( ) { var b = c . slice ( ) ; b . push . apply ( b , arguments ) ; return a . apply ( this , b ) } } ; goog . mixin = function ( a , b ) { for ( var c in b ) a [ c ] = b [ c ] } ; goog . now = goog . TRUSTED _SITE && Date . now || function ( ) { return + new Date } ;
goog . globalEval = function ( a ) { if ( goog . global . execScript ) goog . global . execScript ( a , "JavaScript" ) ; else if ( goog . global . eval ) { if ( null == goog . evalWorksForGlobals _ ) if ( goog . global . eval ( "var _evalTest_ = 1;" ) , "undefined" != typeof goog . global . _evalTest _ ) { try { delete goog . global . _evalTest _ } catch ( d ) { } goog . evalWorksForGlobals _ = ! 0 } else goog . evalWorksForGlobals _ = ! 1 ; if ( goog . evalWorksForGlobals _ ) goog . global . eval ( a ) ; else { var b = goog . global . document , c = b . createElement ( "SCRIPT" ) ; c . type = "text/javascript" ; c . defer = ! 1 ; c . appendChild ( b . createTextNode ( a ) ) ;
2016-10-30 10:47:58 +00:00
b . body . appendChild ( c ) ; b . body . removeChild ( c ) } } else throw Error ( "goog.globalEval not available" ) ; } ; goog . evalWorksForGlobals _ = null ;
goog . getCssName = function ( a , b ) { if ( "." == String ( a ) . charAt ( 0 ) ) throw Error ( 'className passed in goog.getCssName must not start with ".". You passed: ' + a ) ; var c = function ( a ) { return goog . cssNameMapping _ [ a ] || a } , d = function ( a ) { a = a . split ( "-" ) ; for ( var b = [ ] , d = 0 ; d < a . length ; d ++ ) b . push ( c ( a [ d ] ) ) ; return b . join ( "-" ) } , d = goog . cssNameMapping _ ? "BY_WHOLE" == goog . cssNameMappingStyle _ ? c : d : function ( a ) { return a } , d = b ? a + "-" + d ( b ) : d ( a ) ; return goog . global . CLOSURE _CSS _NAME _MAP _FN ? goog . global . CLOSURE _CSS _NAME _MAP _FN ( d ) : d } ;
2016-01-22 23:34:30 +00:00
goog . setCssNameMapping = function ( a , b ) { goog . cssNameMapping _ = a ; goog . cssNameMappingStyle _ = b } ; ! COMPILED && goog . global . CLOSURE _CSS _NAME _MAPPING && ( goog . cssNameMapping _ = goog . global . CLOSURE _CSS _NAME _MAPPING ) ; goog . getMsg = function ( a , b ) { b && ( a = a . replace ( /\{\$([^}]+)}/g , function ( a , d ) { return null != b && d in b ? b [ d ] : a } ) ) ; return a } ; goog . getMsgWithFallback = function ( a , b ) { return a } ; goog . exportSymbol = function ( a , b , c ) { goog . exportPath _ ( a , b , c ) } ; goog . exportProperty = function ( a , b , c ) { a [ b ] = c } ;
2016-10-30 10:47:58 +00:00
goog . inherits = function ( a , b ) { function c ( ) { } c . prototype = b . prototype ; a . superClass _ = b . prototype ; a . prototype = new c ; a . prototype . constructor = a ; a . base = function ( a , c , f ) { for ( var d = Array ( arguments . length - 2 ) , e = 2 ; e < arguments . length ; e ++ ) d [ e - 2 ] = arguments [ e ] ; return b . prototype [ c ] . apply ( a , d ) } } ;
2016-01-22 23:34:30 +00:00
goog . base = function ( a , b , c ) { var d = arguments . callee . caller ; if ( goog . STRICT _MODE _COMPATIBLE || goog . DEBUG && ! d ) throw Error ( "arguments.caller not defined. goog.base() cannot be used with strict mode code. See http://www.ecma-international.org/ecma-262/5.1/#sec-C" ) ; if ( d . superClass _ ) { for ( var e = Array ( arguments . length - 1 ) , f = 1 ; f < arguments . length ; f ++ ) e [ f - 1 ] = arguments [ f ] ; return d . superClass _ . constructor . apply ( a , e ) } e = Array ( arguments . length - 2 ) ; for ( f = 2 ; f < arguments . length ; f ++ ) e [ f - 2 ] = arguments [ f ] ; for ( var f = ! 1 , g = a . constructor ; g ; g =
2016-10-30 10:47:58 +00:00
g . superClass _ && g . superClass _ . constructor ) if ( g . prototype [ b ] === d ) f = ! 0 ; else if ( f ) return g . prototype [ b ] . apply ( a , e ) ; if ( a [ b ] === d ) return a . constructor . prototype [ b ] . apply ( a , e ) ; throw Error ( "goog.base called from a method of one name to a method of a different name" ) ; } ; goog . scope = function ( a ) { if ( goog . isInModuleLoader _ ( ) ) throw Error ( "goog.scope is not supported within a goog.module." ) ; a . call ( goog . global ) } ; COMPILED || ( goog . global . COMPILED = COMPILED ) ;
2014-11-10 02:04:15 +00:00
goog . defineClass = function ( a , b ) { var c = b . constructor , d = b . statics ; c && c != Object . prototype . constructor || ( c = function ( ) { throw Error ( "cannot instantiate an interface (no constructor defined)." ) ; } ) ; c = goog . defineClass . createSealingConstructor _ ( c , a ) ; a && goog . inherits ( c , a ) ; delete b . constructor ; delete b . statics ; goog . defineClass . applyProperties _ ( c . prototype , b ) ; null != d && ( d instanceof Function ? d ( c ) : goog . defineClass . applyProperties _ ( c , d ) ) ; return c } ; goog . defineClass . SEAL _CLASS _INSTANCES = goog . DEBUG ;
2016-10-30 10:47:58 +00:00
goog . defineClass . createSealingConstructor _ = function ( a , b ) { if ( ! goog . defineClass . SEAL _CLASS _INSTANCES ) return a ; var c = ! goog . defineClass . isUnsealable _ ( b ) , d = function ( ) { var b = a . apply ( this , arguments ) || this ; b [ goog . UID _PROPERTY _ ] = b [ goog . UID _PROPERTY _ ] ; this . constructor === d && c && Object . seal instanceof Function && Object . seal ( b ) ; return b } ; return d } ; goog . defineClass . isUnsealable _ = function ( a ) { return a && a . prototype && a . prototype [ goog . UNSEALABLE _CONSTRUCTOR _PROPERTY _ ] } ; goog . defineClass . OBJECT _PROTOTYPE _FIELDS _ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf" . split ( " " ) ;
goog . defineClass . applyProperties _ = function ( a , b ) { for ( var c in b ) Object . prototype . hasOwnProperty . call ( b , c ) && ( a [ c ] = b [ c ] ) ; for ( var d = 0 ; d < goog . defineClass . OBJECT _PROTOTYPE _FIELDS _ . length ; d ++ ) c = goog . defineClass . OBJECT _PROTOTYPE _FIELDS _ [ d ] , Object . prototype . hasOwnProperty . call ( b , c ) && ( a [ c ] = b [ c ] ) } ; goog . tagUnsealableClass = function ( a ) { ! COMPILED && goog . defineClass . SEAL _CLASS _INSTANCES && ( a . prototype [ goog . UNSEALABLE _CONSTRUCTOR _PROPERTY _ ] = ! 0 ) } ; goog . UNSEALABLE _CONSTRUCTOR _PROPERTY _ = "goog_defineClass_legacy_unsealable" ;
goog . createRequiresTranspilation _ = function ( ) { function a ( a , b ) { d ? c [ a ] = ! 0 : b ( ) ? c [ a ] = ! 1 : d = c [ a ] = ! 0 } function b ( a ) { try { return ! ! eval ( a ) } catch ( f ) { return ! 1 } } var c = { es3 : ! 1 } , d = ! 1 ; a ( "es5" , function ( ) { return b ( "[1,].length==1" ) } ) ; a ( "es6" , function ( ) { return b ( '(()=>{"use strict";class X{constructor(){if(new.target!=String)throw 1;this.x=42}}let q=Reflect.construct(X,[],String);if(q.x!=42||!(q instanceof String))throw 1;for(const a of[2,3]){if(a==2)continue;function f(z={a}){let a=0;return z.a}{function f(){return 0;}}return f()==3}})()' ) } ) ;
a ( "es6-impl" , function ( ) { return ! 0 } ) ; a ( "es7" , function ( ) { return b ( "2 ** 2 == 4" ) } ) ; a ( "es8" , function ( ) { return b ( "async () => 1, true" ) } ) ; return c } ; goog . debug = { } ; goog . debug . Error = function ( a ) { if ( Error . captureStackTrace ) Error . captureStackTrace ( this , goog . debug . Error ) ; else { var b = Error ( ) . stack ; b && ( this . stack = b ) } a && ( this . message = String ( a ) ) ; this . reportErrorToServer = ! 0 } ; goog . inherits ( goog . debug . Error , Error ) ; goog . debug . Error . prototype . name = "CustomError" ; goog . dom = { } ; goog . dom . NodeType = { ELEMENT : 1 , ATTRIBUTE : 2 , TEXT : 3 , CDATA _SECTION : 4 , ENTITY _REFERENCE : 5 , ENTITY : 6 , PROCESSING _INSTRUCTION : 7 , COMMENT : 8 , DOCUMENT : 9 , DOCUMENT _TYPE : 10 , DOCUMENT _FRAGMENT : 11 , NOTATION : 12 } ; goog . string = { } ; goog . string . DETECT _DOUBLE _ESCAPING = ! 1 ; goog . string . FORCE _NON _DOM _HTML _UNESCAPING = ! 1 ; goog . string . Unicode = { NBSP : "\u00a0" } ; goog . string . startsWith = function ( a , b ) { return 0 == a . lastIndexOf ( b , 0 ) } ; goog . string . endsWith = function ( a , b ) { var c = a . length - b . length ; return 0 <= c && a . indexOf ( b , c ) == c } ; goog . string . caseInsensitiveStartsWith = function ( a , b ) { return 0 == goog . string . caseInsensitiveCompare ( b , a . substr ( 0 , b . length ) ) } ;
2016-01-22 23:34:30 +00:00
goog . string . caseInsensitiveEndsWith = function ( a , b ) { return 0 == goog . string . caseInsensitiveCompare ( b , a . substr ( a . length - b . length , b . length ) ) } ; goog . string . caseInsensitiveEquals = function ( a , b ) { return a . toLowerCase ( ) == b . toLowerCase ( ) } ; goog . string . subs = function ( a , b ) { for ( var c = a . split ( "%s" ) , d = "" , e = Array . prototype . slice . call ( arguments , 1 ) ; e . length && 1 < c . length ; ) d += c . shift ( ) + e . shift ( ) ; return d + c . join ( "%s" ) } ; goog . string . collapseWhitespace = function ( a ) { return a . replace ( /[\s\xa0]+/g , " " ) . replace ( /^\s+|\s+$/g , "" ) } ;
goog . string . isEmptyOrWhitespace = function ( a ) { return /^[\s\xa0]*$/ . test ( a ) } ; goog . string . isEmptyString = function ( a ) { return 0 == a . length } ; goog . string . isEmpty = goog . string . isEmptyOrWhitespace ; goog . string . isEmptyOrWhitespaceSafe = function ( a ) { return goog . string . isEmptyOrWhitespace ( goog . string . makeSafe ( a ) ) } ; goog . string . isEmptySafe = goog . string . isEmptyOrWhitespaceSafe ; goog . string . isBreakingWhitespace = function ( a ) { return ! /[^\t\n\r ]/ . test ( a ) } ; goog . string . isAlpha = function ( a ) { return ! /[^a-zA-Z]/ . test ( a ) } ;
goog . string . isNumeric = function ( a ) { return ! /[^0-9]/ . test ( a ) } ; goog . string . isAlphaNumeric = function ( a ) { return ! /[^a-zA-Z0-9]/ . test ( a ) } ; goog . string . isSpace = function ( a ) { return " " == a } ; goog . string . isUnicodeChar = function ( a ) { return 1 == a . length && " " <= a && "~" >= a || "\u0080" <= a && "\ufffd" >= a } ; goog . string . stripNewlines = function ( a ) { return a . replace ( /(\r\n|\r|\n)+/g , " " ) } ; goog . string . canonicalizeNewlines = function ( a ) { return a . replace ( /(\r\n|\r|\n)/g , "\n" ) } ;
goog . string . normalizeWhitespace = function ( a ) { return a . replace ( /\xa0|\s/g , " " ) } ; goog . string . normalizeSpaces = function ( a ) { return a . replace ( /\xa0|[ \t]+/g , " " ) } ; goog . string . collapseBreakingSpaces = function ( a ) { return a . replace ( /[\t\r\n ]+/g , " " ) . replace ( /^[\t\r\n ]+|[\t\r\n ]+$/g , "" ) } ; goog . string . trim = goog . TRUSTED _SITE && String . prototype . trim ? function ( a ) { return a . trim ( ) } : function ( a ) { return a . replace ( /^[\s\xa0]+|[\s\xa0]+$/g , "" ) } ; goog . string . trimLeft = function ( a ) { return a . replace ( /^[\s\xa0]+/ , "" ) } ;
goog . string . trimRight = function ( a ) { return a . replace ( /[\s\xa0]+$/ , "" ) } ; goog . string . caseInsensitiveCompare = function ( a , b ) { var c = String ( a ) . toLowerCase ( ) , d = String ( b ) . toLowerCase ( ) ; return c < d ? - 1 : c == d ? 0 : 1 } ;
goog . string . numberAwareCompare _ = function ( a , b , c ) { if ( a == b ) return 0 ; if ( ! a ) return - 1 ; if ( ! b ) return 1 ; for ( var d = a . toLowerCase ( ) . match ( c ) , e = b . toLowerCase ( ) . match ( c ) , f = Math . min ( d . length , e . length ) , g = 0 ; g < f ; g ++ ) { c = d [ g ] ; var h = e [ g ] ; if ( c != h ) return a = parseInt ( c , 10 ) , ! isNaN ( a ) && ( b = parseInt ( h , 10 ) , ! isNaN ( b ) && a - b ) ? a - b : c < h ? - 1 : 1 } return d . length != e . length ? d . length - e . length : a < b ? - 1 : 1 } ; goog . string . intAwareCompare = function ( a , b ) { return goog . string . numberAwareCompare _ ( a , b , /\d+|\D+/g ) } ;
goog . string . floatAwareCompare = function ( a , b ) { return goog . string . numberAwareCompare _ ( a , b , /\d+|\.\d+|\D+/g ) } ; goog . string . numerateCompare = goog . string . floatAwareCompare ; goog . string . urlEncode = function ( a ) { return encodeURIComponent ( String ( a ) ) } ; goog . string . urlDecode = function ( a ) { return decodeURIComponent ( a . replace ( /\+/g , " " ) ) } ; goog . string . newLineToBr = function ( a , b ) { return a . replace ( /(\r\n|\r|\n)/g , b ? "<br />" : "<br>" ) } ;
2014-11-10 02:04:15 +00:00
goog . string . htmlEscape = function ( a , b ) { if ( b ) a = a . replace ( goog . string . AMP _RE _ , "&" ) . replace ( goog . string . LT _RE _ , "<" ) . replace ( goog . string . GT _RE _ , ">" ) . replace ( goog . string . QUOT _RE _ , """ ) . replace ( goog . string . SINGLE _QUOTE _RE _ , "'" ) . replace ( goog . string . NULL _RE _ , "�" ) , goog . string . DETECT _DOUBLE _ESCAPING && ( a = a . replace ( goog . string . E _RE _ , "e" ) ) ; else { if ( ! goog . string . ALL _RE _ . test ( a ) ) return a ; - 1 != a . indexOf ( "&" ) && ( a = a . replace ( goog . string . AMP _RE _ , "&" ) ) ; - 1 != a . indexOf ( "<" ) && ( a = a . replace ( goog . string . LT _RE _ ,
"<" ) ) ; - 1 != a . indexOf ( ">" ) && ( a = a . replace ( goog . string . GT _RE _ , ">" ) ) ; - 1 != a . indexOf ( '"' ) && ( a = a . replace ( goog . string . QUOT _RE _ , """ ) ) ; - 1 != a . indexOf ( "'" ) && ( a = a . replace ( goog . string . SINGLE _QUOTE _RE _ , "'" ) ) ; - 1 != a . indexOf ( "\x00" ) && ( a = a . replace ( goog . string . NULL _RE _ , "�" ) ) ; goog . string . DETECT _DOUBLE _ESCAPING && - 1 != a . indexOf ( "e" ) && ( a = a . replace ( goog . string . E _RE _ , "e" ) ) } return a } ; goog . string . AMP _RE _ = /&/g ; goog . string . LT _RE _ = /</g ; goog . string . GT _RE _ = />/g ; goog . string . QUOT _RE _ = /"/g ;
2016-01-22 23:34:30 +00:00
goog . string . SINGLE _QUOTE _RE _ = /'/g ; goog . string . NULL _RE _ = /\x00/g ; goog . string . E _RE _ = /e/g ; goog . string . ALL _RE _ = goog . string . DETECT _DOUBLE _ESCAPING ? /[\x00&<>"'e]/ : /[\x00&<>"']/ ; goog . string . unescapeEntities = function ( a ) { return goog . string . contains ( a , "&" ) ? ! goog . string . FORCE _NON _DOM _HTML _UNESCAPING && "document" in goog . global ? goog . string . unescapeEntitiesUsingDom _ ( a ) : goog . string . unescapePureXmlEntities _ ( a ) : a } ;
goog . string . unescapeEntitiesWithDocument = function ( a , b ) { return goog . string . contains ( a , "&" ) ? goog . string . unescapeEntitiesUsingDom _ ( a , b ) : a } ;
2016-10-30 10:47:58 +00:00
goog . string . unescapeEntitiesUsingDom _ = function ( a , b ) { var c = { "&" : "&" , "<" : "<" , ">" : ">" , """ : '"' } , d ; d = b ? b . createElement ( "div" ) : goog . global . document . createElement ( "div" ) ; return a . replace ( goog . string . HTML _ENTITY _PATTERN _ , function ( a , b ) { var e = c [ a ] ; if ( e ) return e ; if ( "#" == b . charAt ( 0 ) ) { var f = Number ( "0" + b . substr ( 1 ) ) ; isNaN ( f ) || ( e = String . fromCharCode ( f ) ) } e || ( d . innerHTML = a + " " , e = d . firstChild . nodeValue . slice ( 0 , - 1 ) ) ; return c [ a ] = e } ) } ;
goog . string . unescapePureXmlEntities _ = function ( a ) { return a . replace ( /&([^;]+);/g , function ( a , c ) { switch ( c ) { case "amp" : return "&" ; case "lt" : return "<" ; case "gt" : return ">" ; case "quot" : return '"' ; default : if ( "#" == c . charAt ( 0 ) ) { var b = Number ( "0" + c . substr ( 1 ) ) ; if ( ! isNaN ( b ) ) return String . fromCharCode ( b ) } return a } } ) } ; goog . string . HTML _ENTITY _PATTERN _ = /&([^;\s<&]+);?/g ; goog . string . whitespaceEscape = function ( a , b ) { return goog . string . newLineToBr ( a . replace ( / /g , "  " ) , b ) } ;
2014-11-10 02:04:15 +00:00
goog . string . preserveSpaces = function ( a ) { return a . replace ( /(^|[\n ]) /g , "$1" + goog . string . Unicode . NBSP ) } ; goog . string . stripQuotes = function ( a , b ) { for ( var c = b . length , d = 0 ; d < c ; d ++ ) { var e = 1 == c ? b : b . charAt ( d ) ; if ( a . charAt ( 0 ) == e && a . charAt ( a . length - 1 ) == e ) return a . substring ( 1 , a . length - 1 ) } return a } ; goog . string . truncate = function ( a , b , c ) { c && ( a = goog . string . unescapeEntities ( a ) ) ; a . length > b && ( a = a . substring ( 0 , b - 3 ) + "..." ) ; c && ( a = goog . string . htmlEscape ( a ) ) ; return a } ;
2016-01-22 23:34:30 +00:00
goog . string . truncateMiddle = function ( a , b , c , d ) { c && ( a = goog . string . unescapeEntities ( a ) ) ; if ( d && a . length > b ) { d > b && ( d = b ) ; var e = a . length - d ; a = a . substring ( 0 , b - d ) + "..." + a . substring ( e ) } else a . length > b && ( d = Math . floor ( b / 2 ) , e = a . length - d , a = a . substring ( 0 , d + b % 2 ) + "..." + a . substring ( e ) ) ; c && ( a = goog . string . htmlEscape ( a ) ) ; return a } ; goog . string . specialEscapeChars _ = { "\x00" : "\\0" , "\b" : "\\b" , "\f" : "\\f" , "\n" : "\\n" , "\r" : "\\r" , "\t" : "\\t" , "\x0B" : "\\x0B" , '"' : '\\"' , "\\" : "\\\\" , "<" : "<" } ; goog . string . jsEscapeCache _ = { "'" : "\\'" } ;
goog . string . quote = function ( a ) { a = String ( a ) ; for ( var b = [ '"' ] , c = 0 ; c < a . length ; c ++ ) { var d = a . charAt ( c ) , e = d . charCodeAt ( 0 ) ; b [ c + 1 ] = goog . string . specialEscapeChars _ [ d ] || ( 31 < e && 127 > e ? d : goog . string . escapeChar ( d ) ) } b . push ( '"' ) ; return b . join ( "" ) } ; goog . string . escapeString = function ( a ) { for ( var b = [ ] , c = 0 ; c < a . length ; c ++ ) b [ c ] = goog . string . escapeChar ( a . charAt ( c ) ) ; return b . join ( "" ) } ;
2016-10-30 10:47:58 +00:00
goog . string . escapeChar = function ( a ) { if ( a in goog . string . jsEscapeCache _ ) return goog . string . jsEscapeCache _ [ a ] ; if ( a in goog . string . specialEscapeChars _ ) return goog . string . jsEscapeCache _ [ a ] = goog . string . specialEscapeChars _ [ a ] ; var b , c = a . charCodeAt ( 0 ) ; if ( 31 < c && 127 > c ) b = a ; else { if ( 256 > c ) { if ( b = "\\x" , 16 > c || 256 < c ) b += "0" } else b = "\\u" , 4096 > c && ( b += "0" ) ; b += c . toString ( 16 ) . toUpperCase ( ) } return goog . string . jsEscapeCache _ [ a ] = b } ; goog . string . contains = function ( a , b ) { return - 1 != a . indexOf ( b ) } ;
goog . string . caseInsensitiveContains = function ( a , b ) { return goog . string . contains ( a . toLowerCase ( ) , b . toLowerCase ( ) ) } ; goog . string . countOf = function ( a , b ) { return a && b ? a . split ( b ) . length - 1 : 0 } ; goog . string . removeAt = function ( a , b , c ) { var d = a ; 0 <= b && b < a . length && 0 < c && ( d = a . substr ( 0 , b ) + a . substr ( b + c , a . length - b - c ) ) ; return d } ; goog . string . remove = function ( a , b ) { return a . replace ( b , "" ) } ; goog . string . removeAll = function ( a , b ) { var c = new RegExp ( goog . string . regExpEscape ( b ) , "g" ) ; return a . replace ( c , "" ) } ;
goog . string . replaceAll = function ( a , b , c ) { b = new RegExp ( goog . string . regExpEscape ( b ) , "g" ) ; return a . replace ( b , c . replace ( /\$/g , "$$$$" ) ) } ; goog . string . regExpEscape = function ( a ) { return String ( a ) . replace ( /([-()\[\]{}+?*.$\^|,:#<!\\])/g , "\\$1" ) . replace ( /\x08/g , "\\x08" ) } ; goog . string . repeat = String . prototype . repeat ? function ( a , b ) { return a . repeat ( b ) } : function ( a , b ) { return Array ( b + 1 ) . join ( a ) } ;
2016-01-22 23:34:30 +00:00
goog . string . padNumber = function ( a , b , c ) { a = goog . isDef ( c ) ? a . toFixed ( c ) : String ( a ) ; c = a . indexOf ( "." ) ; - 1 == c && ( c = a . length ) ; return goog . string . repeat ( "0" , Math . max ( 0 , b - c ) ) + a } ; goog . string . makeSafe = function ( a ) { return null == a ? "" : String ( a ) } ; goog . string . buildString = function ( a ) { return Array . prototype . join . call ( arguments , "" ) } ; goog . string . getRandomString = function ( ) { return Math . floor ( 2147483648 * Math . random ( ) ) . toString ( 36 ) + Math . abs ( Math . floor ( 2147483648 * Math . random ( ) ) ^ goog . now ( ) ) . toString ( 36 ) } ;
2016-10-30 10:47:58 +00:00
goog . string . compareVersions = function ( a , b ) { for ( var c = 0 , d = goog . string . trim ( String ( a ) ) . split ( "." ) , e = goog . string . trim ( String ( b ) ) . split ( "." ) , f = Math . max ( d . length , e . length ) , g = 0 ; 0 == c && g < f ; g ++ ) { var h = d [ g ] || "" , k = e [ g ] || "" ; do { h = /(\d*)(\D*)(.*)/ . exec ( h ) || [ "" , "" , "" , "" ] ; k = /(\d*)(\D*)(.*)/ . exec ( k ) || [ "" , "" , "" , "" ] ; if ( 0 == h [ 0 ] . length && 0 == k [ 0 ] . length ) break ; var c = 0 == h [ 1 ] . length ? 0 : parseInt ( h [ 1 ] , 10 ) , l = 0 == k [ 1 ] . length ? 0 : parseInt ( k [ 1 ] , 10 ) , c = goog . string . compareElements _ ( c , l ) || goog . string . compareElements _ ( 0 == h [ 2 ] . length , 0 == k [ 2 ] . length ) ||
goog . string . compareElements _ ( h [ 2 ] , k [ 2 ] ) , h = h [ 3 ] , k = k [ 3 ] } while ( 0 == c ) } return c } ; goog . string . compareElements _ = function ( a , b ) { return a < b ? - 1 : a > b ? 1 : 0 } ; goog . string . hashCode = function ( a ) { for ( var b = 0 , c = 0 ; c < a . length ; ++ c ) b = 31 * b + a . charCodeAt ( c ) >>> 0 ; return b } ; goog . string . uniqueStringCounter _ = 2147483648 * Math . random ( ) | 0 ; goog . string . createUniqueString = function ( ) { return "goog_" + goog . string . uniqueStringCounter _ ++ } ; goog . string . toNumber = function ( a ) { var b = Number ( a ) ; return 0 == b && goog . string . isEmptyOrWhitespace ( a ) ? NaN : b } ;
goog . string . isLowerCamelCase = function ( a ) { return /^[a-z]+([A-Z][a-z]*)*$/ . test ( a ) } ; goog . string . isUpperCamelCase = function ( a ) { return /^([A-Z][a-z]*)+$/ . test ( a ) } ; goog . string . toCamelCase = function ( a ) { return String ( a ) . replace ( /\-([a-z])/g , function ( a , c ) { return c . toUpperCase ( ) } ) } ; goog . string . toSelectorCase = function ( a ) { return String ( a ) . replace ( /([A-Z])/g , "-$1" ) . toLowerCase ( ) } ;
2016-01-22 23:34:30 +00:00
goog . string . toTitleCase = function ( a , b ) { var c = goog . isString ( b ) ? goog . string . regExpEscape ( b ) : "\\s" ; return a . replace ( new RegExp ( "(^" + ( c ? "|[" + c + "]+" : "" ) + ")([a-z])" , "g" ) , function ( a , b , c ) { return b + c . toUpperCase ( ) } ) } ; goog . string . capitalize = function ( a ) { return String ( a . charAt ( 0 ) ) . toUpperCase ( ) + String ( a . substr ( 1 ) ) . toLowerCase ( ) } ; goog . string . parseInt = function ( a ) { isFinite ( a ) && ( a = String ( a ) ) ; return goog . isString ( a ) ? /^\s*-?0x/i . test ( a ) ? parseInt ( a , 16 ) : parseInt ( a , 10 ) : NaN } ;
2016-10-30 10:47:58 +00:00
goog . string . splitLimit = function ( a , b , c ) { a = a . split ( b ) ; for ( var d = [ ] ; 0 < c && a . length ; ) d . push ( a . shift ( ) ) , c -- ; a . length && d . push ( a . join ( b ) ) ; return d } ; goog . string . lastComponent = function ( a , b ) { if ( b ) "string" == typeof b && ( b = [ b ] ) ; else return a ; for ( var c = - 1 , d = 0 ; d < b . length ; d ++ ) if ( "" != b [ d ] ) { var e = a . lastIndexOf ( b [ d ] ) ; e > c && ( c = e ) } return - 1 == c ? a : a . slice ( c + 1 ) } ;
goog . string . editDistance = function ( a , b ) { var c = [ ] , d = [ ] ; if ( a == b ) return 0 ; if ( ! a . length || ! b . length ) return Math . max ( a . length , b . length ) ; for ( var e = 0 ; e < b . length + 1 ; e ++ ) c [ e ] = e ; for ( e = 0 ; e < a . length ; e ++ ) { d [ 0 ] = e + 1 ; for ( var f = 0 ; f < b . length ; f ++ ) d [ f + 1 ] = Math . min ( d [ f ] + 1 , c [ f + 1 ] + 1 , c [ f ] + Number ( a [ e ] != b [ f ] ) ) ; for ( f = 0 ; f < c . length ; f ++ ) c [ f ] = d [ f ] } return d [ b . length ] } ; goog . asserts = { } ; goog . asserts . ENABLE _ASSERTS = goog . DEBUG ; goog . asserts . AssertionError = function ( a , b ) { b . unshift ( a ) ; goog . debug . Error . call ( this , goog . string . subs . apply ( null , b ) ) ; b . shift ( ) ; this . messagePattern = a } ; goog . inherits ( goog . asserts . AssertionError , goog . debug . Error ) ; goog . asserts . AssertionError . prototype . name = "AssertionError" ; goog . asserts . DEFAULT _ERROR _HANDLER = function ( a ) { throw a ; } ; goog . asserts . errorHandler _ = goog . asserts . DEFAULT _ERROR _HANDLER ;
2014-11-10 02:04:15 +00:00
goog . asserts . doAssertFailure _ = function ( a , b , c , d ) { var e = "Assertion failed" ; if ( c ) var e = e + ( ": " + c ) , f = d ; else a && ( e += ": " + a , f = b ) ; a = new goog . asserts . AssertionError ( "" + e , f || [ ] ) ; goog . asserts . errorHandler _ ( a ) } ; goog . asserts . setErrorHandler = function ( a ) { goog . asserts . ENABLE _ASSERTS && ( goog . asserts . errorHandler _ = a ) } ; goog . asserts . assert = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! a && goog . asserts . doAssertFailure _ ( "" , null , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ;
goog . asserts . fail = function ( a , b ) { goog . asserts . ENABLE _ASSERTS && goog . asserts . errorHandler _ ( new goog . asserts . AssertionError ( "Failure" + ( a ? ": " + a : "" ) , Array . prototype . slice . call ( arguments , 1 ) ) ) } ; goog . asserts . assertNumber = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! goog . isNumber ( a ) && goog . asserts . doAssertFailure _ ( "Expected number but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ;
goog . asserts . assertString = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! goog . isString ( a ) && goog . asserts . doAssertFailure _ ( "Expected string but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ; goog . asserts . assertFunction = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! goog . isFunction ( a ) && goog . asserts . doAssertFailure _ ( "Expected function but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ;
goog . asserts . assertObject = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! goog . isObject ( a ) && goog . asserts . doAssertFailure _ ( "Expected object but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ; goog . asserts . assertArray = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! goog . isArray ( a ) && goog . asserts . doAssertFailure _ ( "Expected array but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ;
goog . asserts . assertBoolean = function ( a , b , c ) { goog . asserts . ENABLE _ASSERTS && ! goog . isBoolean ( a ) && goog . asserts . doAssertFailure _ ( "Expected boolean but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ; goog . asserts . assertElement = function ( a , b , c ) { ! goog . asserts . ENABLE _ASSERTS || goog . isObject ( a ) && a . nodeType == goog . dom . NodeType . ELEMENT || goog . asserts . doAssertFailure _ ( "Expected Element but got %s: %s." , [ goog . typeOf ( a ) , a ] , b , Array . prototype . slice . call ( arguments , 2 ) ) ; return a } ;
goog . asserts . assertInstanceof = function ( a , b , c , d ) { ! goog . asserts . ENABLE _ASSERTS || a instanceof b || goog . asserts . doAssertFailure _ ( "Expected instanceof %s but got %s." , [ goog . asserts . getType _ ( b ) , goog . asserts . getType _ ( a ) ] , c , Array . prototype . slice . call ( arguments , 3 ) ) ; return a } ; goog . asserts . assertObjectPrototypeIsIntact = function ( ) { for ( var a in Object . prototype ) goog . asserts . fail ( a + " should not be enumerable in Object.prototype." ) } ;
2016-01-22 23:34:30 +00:00
goog . asserts . getType _ = function ( a ) { return a instanceof Function ? a . displayName || a . name || "unknown type name" : a instanceof Object ? a . constructor . displayName || a . constructor . name || Object . prototype . toString . call ( a ) : null === a ? "null" : typeof a } ; goog . array = { } ; goog . NATIVE _ARRAY _PROTOTYPES = goog . TRUSTED _SITE ; goog . array . ASSUME _NATIVE _FUNCTIONS = ! 1 ; goog . array . peek = function ( a ) { return a [ a . length - 1 ] } ; goog . array . last = goog . array . peek ;
goog . array . indexOf = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . indexOf ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . indexOf . call ( a , b , c ) } : function ( a , b , c ) { c = null == c ? 0 : 0 > c ? Math . max ( 0 , a . length + c ) : c ; if ( goog . isString ( a ) ) return goog . isString ( b ) && 1 == b . length ? a . indexOf ( b , c ) : - 1 ; for ( ; c < a . length ; c ++ ) if ( c in a && a [ c ] === b ) return c ; return - 1 } ;
goog . array . lastIndexOf = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . lastIndexOf ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . lastIndexOf . call ( a , b , null == c ? a . length - 1 : c ) } : function ( a , b , c ) { c = null == c ? a . length - 1 : c ; 0 > c && ( c = Math . max ( 0 , a . length + c ) ) ; if ( goog . isString ( a ) ) return goog . isString ( b ) && 1 == b . length ? a . lastIndexOf ( b , c ) : - 1 ; for ( ; 0 <= c ; c -- ) if ( c in a && a [ c ] === b ) return c ; return - 1 } ;
goog . array . forEach = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . forEach ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; Array . prototype . forEach . call ( a , b , c ) } : function ( a , b , c ) { for ( var d = a . length , e = goog . isString ( a ) ? a . split ( "" ) : a , f = 0 ; f < d ; f ++ ) f in e && b . call ( c , e [ f ] , f , a ) } ; goog . array . forEachRight = function ( a , b , c ) { for ( var d = a . length , e = goog . isString ( a ) ? a . split ( "" ) : a , d = d - 1 ; 0 <= d ; -- d ) d in e && b . call ( c , e [ d ] , d , a ) } ;
goog . array . filter = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . filter ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . filter . call ( a , b , c ) } : function ( a , b , c ) { for ( var d = a . length , e = [ ] , f = 0 , g = goog . isString ( a ) ? a . split ( "" ) : a , h = 0 ; h < d ; h ++ ) if ( h in g ) { var k = g [ h ] ; b . call ( c , k , h , a ) && ( e [ f ++ ] = k ) } return e } ;
goog . array . map = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . map ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . map . call ( a , b , c ) } : function ( a , b , c ) { for ( var d = a . length , e = Array ( d ) , f = goog . isString ( a ) ? a . split ( "" ) : a , g = 0 ; g < d ; g ++ ) g in f && ( e [ g ] = b . call ( c , f [ g ] , g , a ) ) ; return e } ;
goog . array . reduce = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . reduce ) ? function ( a , b , c , d ) { goog . asserts . assert ( null != a . length ) ; d && ( b = goog . bind ( b , d ) ) ; return Array . prototype . reduce . call ( a , b , c ) } : function ( a , b , c , d ) { var e = c ; goog . array . forEach ( a , function ( c , g ) { e = b . call ( d , e , c , g , a ) } ) ; return e } ;
goog . array . reduceRight = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . reduceRight ) ? function ( a , b , c , d ) { goog . asserts . assert ( null != a . length ) ; goog . asserts . assert ( null != b ) ; d && ( b = goog . bind ( b , d ) ) ; return Array . prototype . reduceRight . call ( a , b , c ) } : function ( a , b , c , d ) { var e = c ; goog . array . forEachRight ( a , function ( c , g ) { e = b . call ( d , e , c , g , a ) } ) ; return e } ;
goog . array . some = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . some ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . some . call ( a , b , c ) } : function ( a , b , c ) { for ( var d = a . length , e = goog . isString ( a ) ? a . split ( "" ) : a , f = 0 ; f < d ; f ++ ) if ( f in e && b . call ( c , e [ f ] , f , a ) ) return ! 0 ; return ! 1 } ;
goog . array . every = goog . NATIVE _ARRAY _PROTOTYPES && ( goog . array . ASSUME _NATIVE _FUNCTIONS || Array . prototype . every ) ? function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . every . call ( a , b , c ) } : function ( a , b , c ) { for ( var d = a . length , e = goog . isString ( a ) ? a . split ( "" ) : a , f = 0 ; f < d ; f ++ ) if ( f in e && ! b . call ( c , e [ f ] , f , a ) ) return ! 1 ; return ! 0 } ; goog . array . count = function ( a , b , c ) { var d = 0 ; goog . array . forEach ( a , function ( a , f , g ) { b . call ( c , a , f , g ) && ++ d } , c ) ; return d } ;
2014-11-10 02:04:15 +00:00
goog . array . find = function ( a , b , c ) { b = goog . array . findIndex ( a , b , c ) ; return 0 > b ? null : goog . isString ( a ) ? a . charAt ( b ) : a [ b ] } ; goog . array . findIndex = function ( a , b , c ) { for ( var d = a . length , e = goog . isString ( a ) ? a . split ( "" ) : a , f = 0 ; f < d ; f ++ ) if ( f in e && b . call ( c , e [ f ] , f , a ) ) return f ; return - 1 } ; goog . array . findRight = function ( a , b , c ) { b = goog . array . findIndexRight ( a , b , c ) ; return 0 > b ? null : goog . isString ( a ) ? a . charAt ( b ) : a [ b ] } ;
goog . array . findIndexRight = function ( a , b , c ) { for ( var d = a . length , e = goog . isString ( a ) ? a . split ( "" ) : a , d = d - 1 ; 0 <= d ; d -- ) if ( d in e && b . call ( c , e [ d ] , d , a ) ) return d ; return - 1 } ; goog . array . contains = function ( a , b ) { return 0 <= goog . array . indexOf ( a , b ) } ; goog . array . isEmpty = function ( a ) { return 0 == a . length } ; goog . array . clear = function ( a ) { if ( ! goog . isArray ( a ) ) for ( var b = a . length - 1 ; 0 <= b ; b -- ) delete a [ b ] ; a . length = 0 } ; goog . array . insert = function ( a , b ) { goog . array . contains ( a , b ) || a . push ( b ) } ;
goog . array . insertAt = function ( a , b , c ) { goog . array . splice ( a , c , 0 , b ) } ; goog . array . insertArrayAt = function ( a , b , c ) { goog . partial ( goog . array . splice , a , c , 0 ) . apply ( null , b ) } ; goog . array . insertBefore = function ( a , b , c ) { var d ; 2 == arguments . length || 0 > ( d = goog . array . indexOf ( a , c ) ) ? a . push ( b ) : goog . array . insertAt ( a , b , d ) } ; goog . array . remove = function ( a , b ) { var c = goog . array . indexOf ( a , b ) , d ; ( d = 0 <= c ) && goog . array . removeAt ( a , c ) ; return d } ;
2016-10-30 10:47:58 +00:00
goog . array . removeLast = function ( a , b ) { var c = goog . array . lastIndexOf ( a , b ) ; return 0 <= c ? ( goog . array . removeAt ( a , c ) , ! 0 ) : ! 1 } ; goog . array . removeAt = function ( a , b ) { goog . asserts . assert ( null != a . length ) ; return 1 == Array . prototype . splice . call ( a , b , 1 ) . length } ; goog . array . removeIf = function ( a , b , c ) { b = goog . array . findIndex ( a , b , c ) ; return 0 <= b ? ( goog . array . removeAt ( a , b ) , ! 0 ) : ! 1 } ; goog . array . removeAllIf = function ( a , b , c ) { var d = 0 ; goog . array . forEachRight ( a , function ( e , f ) { b . call ( c , e , f , a ) && goog . array . removeAt ( a , f ) && d ++ } ) ; return d } ;
goog . array . concat = function ( a ) { return Array . prototype . concat . apply ( Array . prototype , arguments ) } ; goog . array . join = function ( a ) { return Array . prototype . concat . apply ( Array . prototype , arguments ) } ; goog . array . toArray = function ( a ) { var b = a . length ; if ( 0 < b ) { for ( var c = Array ( b ) , d = 0 ; d < b ; d ++ ) c [ d ] = a [ d ] ; return c } return [ ] } ; goog . array . clone = goog . array . toArray ;
goog . array . extend = function ( a , b ) { for ( var c = 1 ; c < arguments . length ; c ++ ) { var d = arguments [ c ] ; if ( goog . isArrayLike ( d ) ) { var e = a . length || 0 , f = d . length || 0 ; a . length = e + f ; for ( var g = 0 ; g < f ; g ++ ) a [ e + g ] = d [ g ] } else a . push ( d ) } } ; goog . array . splice = function ( a , b , c , d ) { goog . asserts . assert ( null != a . length ) ; return Array . prototype . splice . apply ( a , goog . array . slice ( arguments , 1 ) ) } ;
goog . array . slice = function ( a , b , c ) { goog . asserts . assert ( null != a . length ) ; return 2 >= arguments . length ? Array . prototype . slice . call ( a , b ) : Array . prototype . slice . call ( a , b , c ) } ; goog . array . removeDuplicates = function ( a , b , c ) { b = b || a ; var d = function ( a ) { return goog . isObject ( a ) ? "o" + goog . getUid ( a ) : ( typeof a ) . charAt ( 0 ) + a } ; c = c || d ; for ( var d = { } , e = 0 , f = 0 ; f < a . length ; ) { var g = a [ f ++ ] , h = c ( g ) ; Object . prototype . hasOwnProperty . call ( d , h ) || ( d [ h ] = ! 0 , b [ e ++ ] = g ) } b . length = e } ;
goog . array . binarySearch = function ( a , b , c ) { return goog . array . binarySearch _ ( a , c || goog . array . defaultCompare , ! 1 , b ) } ; goog . array . binarySelect = function ( a , b , c ) { return goog . array . binarySearch _ ( a , b , ! 0 , void 0 , c ) } ; goog . array . binarySearch _ = function ( a , b , c , d , e ) { for ( var f = 0 , g = a . length , h ; f < g ; ) { var k = f + g >> 1 , l ; l = c ? b . call ( e , a [ k ] , k , a ) : b ( d , a [ k ] ) ; 0 < l ? f = k + 1 : ( g = k , h = ! l ) } return h ? f : ~ f } ; goog . array . sort = function ( a , b ) { a . sort ( b || goog . array . defaultCompare ) } ;
goog . array . stableSort = function ( a , b ) { for ( var c = Array ( a . length ) , d = 0 ; d < a . length ; d ++ ) c [ d ] = { index : d , value : a [ d ] } ; var e = b || goog . array . defaultCompare ; goog . array . sort ( c , function ( a , b ) { return e ( a . value , b . value ) || a . index - b . index } ) ; for ( d = 0 ; d < a . length ; d ++ ) a [ d ] = c [ d ] . value } ; goog . array . sortByKey = function ( a , b , c ) { var d = c || goog . array . defaultCompare ; goog . array . sort ( a , function ( a , c ) { return d ( b ( a ) , b ( c ) ) } ) } ; goog . array . sortObjectsByKey = function ( a , b , c ) { goog . array . sortByKey ( a , function ( a ) { return a [ b ] } , c ) } ;
goog . array . isSorted = function ( a , b , c ) { b = b || goog . array . defaultCompare ; for ( var d = 1 ; d < a . length ; d ++ ) { var e = b ( a [ d - 1 ] , a [ d ] ) ; if ( 0 < e || 0 == e && c ) return ! 1 } return ! 0 } ; goog . array . equals = function ( a , b , c ) { if ( ! goog . isArrayLike ( a ) || ! goog . isArrayLike ( b ) || a . length != b . length ) return ! 1 ; var d = a . length ; c = c || goog . array . defaultCompareEquality ; for ( var e = 0 ; e < d ; e ++ ) if ( ! c ( a [ e ] , b [ e ] ) ) return ! 1 ; return ! 0 } ;
goog . array . compare3 = function ( a , b , c ) { c = c || goog . array . defaultCompare ; for ( var d = Math . min ( a . length , b . length ) , e = 0 ; e < d ; e ++ ) { var f = c ( a [ e ] , b [ e ] ) ; if ( 0 != f ) return f } return goog . array . defaultCompare ( a . length , b . length ) } ; goog . array . defaultCompare = function ( a , b ) { return a > b ? 1 : a < b ? - 1 : 0 } ; goog . array . inverseDefaultCompare = function ( a , b ) { return - goog . array . defaultCompare ( a , b ) } ; goog . array . defaultCompareEquality = function ( a , b ) { return a === b } ;
goog . array . binaryInsert = function ( a , b , c ) { c = goog . array . binarySearch ( a , b , c ) ; return 0 > c ? ( goog . array . insertAt ( a , b , - ( c + 1 ) ) , ! 0 ) : ! 1 } ; goog . array . binaryRemove = function ( a , b , c ) { b = goog . array . binarySearch ( a , b , c ) ; return 0 <= b ? goog . array . removeAt ( a , b ) : ! 1 } ; goog . array . bucket = function ( a , b , c ) { for ( var d = { } , e = 0 ; e < a . length ; e ++ ) { var f = a [ e ] , g = b . call ( c , f , e , a ) ; goog . isDef ( g ) && ( d [ g ] || ( d [ g ] = [ ] ) ) . push ( f ) } return d } ; goog . array . toObject = function ( a , b , c ) { var d = { } ; goog . array . forEach ( a , function ( e , f ) { d [ b . call ( c , e , f , a ) ] = e } ) ; return d } ;
goog . array . range = function ( a , b , c ) { var d = [ ] , e = 0 , f = a ; c = c || 1 ; void 0 !== b && ( e = a , f = b ) ; if ( 0 > c * ( f - e ) ) return [ ] ; if ( 0 < c ) for ( a = e ; a < f ; a += c ) d . push ( a ) ; else for ( a = e ; a > f ; a += c ) d . push ( a ) ; return d } ; goog . array . repeat = function ( a , b ) { for ( var c = [ ] , d = 0 ; d < b ; d ++ ) c [ d ] = a ; return c } ; goog . array . flatten = function ( a ) { for ( var b = [ ] , c = 0 ; c < arguments . length ; c ++ ) { var d = arguments [ c ] ; if ( goog . isArray ( d ) ) for ( var e = 0 ; e < d . length ; e += 8192 ) for ( var f = goog . array . slice ( d , e , e + 8192 ) , f = goog . array . flatten . apply ( null , f ) , g = 0 ; g < f . length ; g ++ ) b . push ( f [ g ] ) ; else b . push ( d ) } return b } ;
2016-01-22 23:34:30 +00:00
goog . array . rotate = function ( a , b ) { goog . asserts . assert ( null != a . length ) ; a . length && ( b %= a . length , 0 < b ? Array . prototype . unshift . apply ( a , a . splice ( - b , b ) ) : 0 > b && Array . prototype . push . apply ( a , a . splice ( 0 , - b ) ) ) ; return a } ; goog . array . moveItem = function ( a , b , c ) { goog . asserts . assert ( 0 <= b && b < a . length ) ; goog . asserts . assert ( 0 <= c && c < a . length ) ; b = Array . prototype . splice . call ( a , b , 1 ) ; Array . prototype . splice . call ( a , c , 0 , b [ 0 ] ) } ;
2016-10-30 10:47:58 +00:00
goog . array . zip = function ( a ) { if ( ! arguments . length ) return [ ] ; for ( var b = [ ] , c = arguments [ 0 ] . length , d = 1 ; d < arguments . length ; d ++ ) arguments [ d ] . length < c && ( c = arguments [ d ] . length ) ; for ( d = 0 ; d < c ; d ++ ) { for ( var e = [ ] , f = 0 ; f < arguments . length ; f ++ ) e . push ( arguments [ f ] [ d ] ) ; b . push ( e ) } return b } ; goog . array . shuffle = function ( a , b ) { for ( var c = b || Math . random , d = a . length - 1 ; 0 < d ; d -- ) { var e = Math . floor ( c ( ) * ( d + 1 ) ) , f = a [ d ] ; a [ d ] = a [ e ] ; a [ e ] = f } } ; goog . array . copyByIndex = function ( a , b ) { var c = [ ] ; goog . array . forEach ( b , function ( b ) { c . push ( a [ b ] ) } ) ; return c } ;
goog . array . concatMap = function ( a , b , c ) { return goog . array . concat . apply ( [ ] , goog . array . map ( a , b , c ) ) } ; goog . proto2 = { } ;
2016-01-22 23:34:30 +00:00
goog . proto2 . FieldDescriptor = function ( a , b , c ) { this . parent _ = a ; goog . asserts . assert ( goog . string . isNumeric ( b ) ) ; this . tag _ = b ; this . name _ = c . name ; this . isPacked _ = ! ! c . packed ; this . isRepeated _ = ! ! c . repeated ; this . isRequired _ = ! ! c . required ; this . fieldType _ = c . fieldType ; this . nativeType _ = c . type ; this . deserializationConversionPermitted _ = ! 1 ; switch ( this . fieldType _ ) { case goog . proto2 . FieldDescriptor . FieldType . INT64 : case goog . proto2 . FieldDescriptor . FieldType . UINT64 : case goog . proto2 . FieldDescriptor . FieldType . FIXED64 : case goog . proto2 . FieldDescriptor . FieldType . SFIXED64 : case goog . proto2 . FieldDescriptor . FieldType . SINT64 : case goog . proto2 . FieldDescriptor . FieldType . FLOAT : case goog . proto2 . FieldDescriptor . FieldType . DOUBLE : this . deserializationConversionPermitted _ = ! 0 } this . defaultValue _ =
c . defaultValue } ; goog . proto2 . FieldDescriptor . FieldType = { DOUBLE : 1 , FLOAT : 2 , INT64 : 3 , UINT64 : 4 , INT32 : 5 , FIXED64 : 6 , FIXED32 : 7 , BOOL : 8 , STRING : 9 , GROUP : 10 , MESSAGE : 11 , BYTES : 12 , UINT32 : 13 , ENUM : 14 , SFIXED32 : 15 , SFIXED64 : 16 , SINT32 : 17 , SINT64 : 18 } ; goog . proto2 . FieldDescriptor . prototype . getTag = function ( ) { return this . tag _ } ; goog . proto2 . FieldDescriptor . prototype . getContainingType = function ( ) { return this . parent _ . prototype . getDescriptor ( ) } ; goog . proto2 . FieldDescriptor . prototype . getName = function ( ) { return this . name _ } ;
2014-11-10 02:04:15 +00:00
goog . proto2 . FieldDescriptor . prototype . getDefaultValue = function ( ) { if ( void 0 === this . defaultValue _ ) { var a = this . nativeType _ ; if ( a === Boolean ) this . defaultValue _ = ! 1 ; else if ( a === Number ) this . defaultValue _ = 0 ; else if ( a === String ) this . defaultValue _ = this . deserializationConversionPermitted _ ? "0" : "" ; else return new a } return this . defaultValue _ } ; goog . proto2 . FieldDescriptor . prototype . getFieldType = function ( ) { return this . fieldType _ } ; goog . proto2 . FieldDescriptor . prototype . getNativeType = function ( ) { return this . nativeType _ } ;
2016-01-22 23:34:30 +00:00
goog . proto2 . FieldDescriptor . prototype . deserializationConversionPermitted = function ( ) { return this . deserializationConversionPermitted _ } ; goog . proto2 . FieldDescriptor . prototype . getFieldMessageType = function ( ) { return this . nativeType _ . prototype . getDescriptor ( ) } ; goog . proto2 . FieldDescriptor . prototype . isCompositeType = function ( ) { return this . fieldType _ == goog . proto2 . FieldDescriptor . FieldType . MESSAGE || this . fieldType _ == goog . proto2 . FieldDescriptor . FieldType . GROUP } ; goog . proto2 . FieldDescriptor . prototype . isPacked = function ( ) { return this . isPacked _ } ;
2016-10-30 10:47:58 +00:00
goog . proto2 . FieldDescriptor . prototype . isRepeated = function ( ) { return this . isRepeated _ } ; goog . proto2 . FieldDescriptor . prototype . isRequired = function ( ) { return this . isRequired _ } ; goog . proto2 . FieldDescriptor . prototype . isOptional = function ( ) { return ! this . isRepeated _ && ! this . isRequired _ } ; goog . object = { } ; goog . object . is = function ( a , b ) { return a === b ? 0 !== a || 1 / a === 1 / b : a !== a && b !== b } ; goog . object . forEach = function ( a , b , c ) { for ( var d in a ) b . call ( c , a [ d ] , d , a ) } ; goog . object . filter = function ( a , b , c ) { var d = { } , e ; for ( e in a ) b . call ( c , a [ e ] , e , a ) && ( d [ e ] = a [ e ] ) ; return d } ; goog . object . map = function ( a , b , c ) { var d = { } , e ; for ( e in a ) d [ e ] = b . call ( c , a [ e ] , e , a ) ; return d } ; goog . object . some = function ( a , b , c ) { for ( var d in a ) if ( b . call ( c , a [ d ] , d , a ) ) return ! 0 ; return ! 1 } ;
goog . object . every = function ( a , b , c ) { for ( var d in a ) if ( ! b . call ( c , a [ d ] , d , a ) ) return ! 1 ; return ! 0 } ; goog . object . getCount = function ( a ) { var b = 0 , c ; for ( c in a ) b ++ ; return b } ; goog . object . getAnyKey = function ( a ) { for ( var b in a ) return b } ; goog . object . getAnyValue = function ( a ) { for ( var b in a ) return a [ b ] } ; goog . object . contains = function ( a , b ) { return goog . object . containsValue ( a , b ) } ; goog . object . getValues = function ( a ) { var b = [ ] , c = 0 , d ; for ( d in a ) b [ c ++ ] = a [ d ] ; return b } ;
goog . object . getKeys = function ( a ) { var b = [ ] , c = 0 , d ; for ( d in a ) b [ c ++ ] = d ; return b } ; goog . object . getValueByKeys = function ( a , b ) { for ( var c = goog . isArrayLike ( b ) , d = c ? b : arguments , c = c ? 0 : 1 ; c < d . length && ( a = a [ d [ c ] ] , goog . isDef ( a ) ) ; c ++ ) ; return a } ; goog . object . containsKey = function ( a , b ) { return null !== a && b in a } ; goog . object . containsValue = function ( a , b ) { for ( var c in a ) if ( a [ c ] == b ) return ! 0 ; return ! 1 } ; goog . object . findKey = function ( a , b , c ) { for ( var d in a ) if ( b . call ( c , a [ d ] , d , a ) ) return d } ;
goog . object . findValue = function ( a , b , c ) { return ( b = goog . object . findKey ( a , b , c ) ) && a [ b ] } ; goog . object . isEmpty = function ( a ) { for ( var b in a ) return ! 1 ; return ! 0 } ; goog . object . clear = function ( a ) { for ( var b in a ) delete a [ b ] } ; goog . object . remove = function ( a , b ) { var c ; ( c = b in a ) && delete a [ b ] ; return c } ; goog . object . add = function ( a , b , c ) { if ( null !== a && b in a ) throw Error ( 'The object already contains the key "' + b + '"' ) ; goog . object . set ( a , b , c ) } ; goog . object . get = function ( a , b , c ) { return null !== a && b in a ? a [ b ] : c } ;
goog . object . set = function ( a , b , c ) { a [ b ] = c } ; goog . object . setIfUndefined = function ( a , b , c ) { return b in a ? a [ b ] : a [ b ] = c } ; goog . object . setWithReturnValueIfNotSet = function ( a , b , c ) { if ( b in a ) return a [ b ] ; c = c ( ) ; return a [ b ] = c } ; goog . object . equals = function ( a , b ) { for ( var c in a ) if ( ! ( c in b ) || a [ c ] !== b [ c ] ) return ! 1 ; for ( c in b ) if ( ! ( c in a ) ) return ! 1 ; return ! 0 } ; goog . object . clone = function ( a ) { var b = { } , c ; for ( c in a ) b [ c ] = a [ c ] ; return b } ;
2016-01-22 23:34:30 +00:00
goog . object . unsafeClone = function ( a ) { var b = goog . typeOf ( a ) ; if ( "object" == b || "array" == b ) { if ( goog . isFunction ( a . clone ) ) return a . clone ( ) ; var b = "array" == b ? [ ] : { } , c ; for ( c in a ) b [ c ] = goog . object . unsafeClone ( a [ c ] ) ; return b } return a } ; goog . object . transpose = function ( a ) { var b = { } , c ; for ( c in a ) b [ a [ c ] ] = c ; return b } ; goog . object . PROTOTYPE _FIELDS _ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf" . split ( " " ) ;
goog . object . extend = function ( a , b ) { for ( var c , d , e = 1 ; e < arguments . length ; e ++ ) { d = arguments [ e ] ; for ( c in d ) a [ c ] = d [ c ] ; for ( var f = 0 ; f < goog . object . PROTOTYPE _FIELDS _ . length ; f ++ ) c = goog . object . PROTOTYPE _FIELDS _ [ f ] , Object . prototype . hasOwnProperty . call ( d , c ) && ( a [ c ] = d [ c ] ) } } ;
2014-11-10 02:04:15 +00:00
goog . object . create = function ( a ) { var b = arguments . length ; if ( 1 == b && goog . isArray ( arguments [ 0 ] ) ) return goog . object . create . apply ( null , arguments [ 0 ] ) ; if ( b % 2 ) throw Error ( "Uneven number of arguments" ) ; for ( var c = { } , d = 0 ; d < b ; d += 2 ) c [ arguments [ d ] ] = arguments [ d + 1 ] ; return c } ; goog . object . createSet = function ( a ) { var b = arguments . length ; if ( 1 == b && goog . isArray ( arguments [ 0 ] ) ) return goog . object . createSet . apply ( null , arguments [ 0 ] ) ; for ( var c = { } , d = 0 ; d < b ; d ++ ) c [ arguments [ d ] ] = ! 0 ; return c } ;
goog . object . createImmutableView = function ( a ) { var b = a ; Object . isFrozen && ! Object . isFrozen ( a ) && ( b = Object . create ( a ) , Object . freeze ( b ) ) ; return b } ; goog . object . isImmutableView = function ( a ) { return ! ! Object . isFrozen && Object . isFrozen ( a ) } ; goog . proto2 . Descriptor = function ( a , b , c ) { this . messageType _ = a ; this . name _ = b . name || null ; this . fullName _ = b . fullName || null ; this . containingType _ = b . containingType ; this . fields _ = { } ; for ( a = 0 ; a < c . length ; a ++ ) b = c [ a ] , this . fields _ [ b . getTag ( ) ] = b } ; goog . proto2 . Descriptor . prototype . getName = function ( ) { return this . name _ } ; goog . proto2 . Descriptor . prototype . getFullName = function ( ) { return this . fullName _ } ;
goog . proto2 . Descriptor . prototype . getContainingType = function ( ) { return this . containingType _ ? this . containingType _ . getDescriptor ( ) : null } ; goog . proto2 . Descriptor . prototype . getFields = function ( ) { var a = goog . object . getValues ( this . fields _ ) ; goog . array . sort ( a , function ( a , c ) { return a . getTag ( ) - c . getTag ( ) } ) ; return a } ; goog . proto2 . Descriptor . prototype . getFieldsMap = function ( ) { return this . fields _ } ;
goog . proto2 . Descriptor . prototype . findFieldByName = function ( a ) { return goog . object . findValue ( this . fields _ , function ( b , c , d ) { return b . getName ( ) == a } ) || null } ; goog . proto2 . Descriptor . prototype . findFieldByTag = function ( a ) { goog . asserts . assert ( goog . string . isNumeric ( a ) ) ; return this . fields _ [ parseInt ( a , 10 ) ] || null } ; goog . proto2 . Descriptor . prototype . createMessageInstance = function ( ) { return new this . messageType _ } ; goog . proto2 . Message = function ( ) { this . values _ = { } ; this . fields _ = this . getDescriptor ( ) . getFieldsMap ( ) ; this . deserializedFields _ = this . lazyDeserializer _ = null } ; goog . proto2 . Message . FieldType = { DOUBLE : 1 , FLOAT : 2 , INT64 : 3 , UINT64 : 4 , INT32 : 5 , FIXED64 : 6 , FIXED32 : 7 , BOOL : 8 , STRING : 9 , GROUP : 10 , MESSAGE : 11 , BYTES : 12 , UINT32 : 13 , ENUM : 14 , SFIXED32 : 15 , SFIXED64 : 16 , SINT32 : 17 , SINT64 : 18 } ; goog . proto2 . Message . prototype . initializeForLazyDeserializer = function ( a , b ) { this . lazyDeserializer _ = a ; this . values _ = b ; this . deserializedFields _ = { } } ;
2016-10-30 10:47:58 +00:00
goog . proto2 . Message . prototype . setUnknown = function ( a , b ) { goog . asserts . assert ( ! this . fields _ [ a ] , "Field is not unknown in this message" ) ; goog . asserts . assert ( 1 <= a , "Tag " + a + ' has value "' + b + '" in descriptor ' + this . getDescriptor ( ) . getName ( ) ) ; goog . asserts . assert ( null !== b , "Value cannot be null" ) ; this . values _ [ a ] = b ; this . deserializedFields _ && delete this . deserializedFields _ [ a ] } ;
goog . proto2 . Message . prototype . forEachUnknown = function ( a , b ) { var c = b || this , d ; for ( d in this . values _ ) { var e = Number ( d ) ; this . fields _ [ e ] || a . call ( c , e , this . values _ [ d ] ) } } ; goog . proto2 . Message . prototype . getDescriptor = goog . abstractMethod ; goog . proto2 . Message . prototype . has = function ( a ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; return this . has$Value ( a . getTag ( ) ) } ;
goog . proto2 . Message . prototype . arrayOf = function ( a ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; return this . array$Values ( a . getTag ( ) ) } ; goog . proto2 . Message . prototype . countOf = function ( a ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; return this . count$Values ( a . getTag ( ) ) } ;
goog . proto2 . Message . prototype . get = function ( a , b ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; return this . get$Value ( a . getTag ( ) , b ) } ; goog . proto2 . Message . prototype . getOrDefault = function ( a , b ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; return this . get$ValueOrDefault ( a . getTag ( ) , b ) } ;
goog . proto2 . Message . prototype . set = function ( a , b ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; this . set$Value ( a . getTag ( ) , b ) } ; goog . proto2 . Message . prototype . add = function ( a , b ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; this . add$Value ( a . getTag ( ) , b ) } ;
goog . proto2 . Message . prototype . clear = function ( a ) { goog . asserts . assert ( a . getContainingType ( ) == this . getDescriptor ( ) , "The current message does not contain the given field" ) ; this . clear$Field ( a . getTag ( ) ) } ;
2014-11-10 02:04:15 +00:00
goog . proto2 . Message . prototype . equals = function ( a ) { if ( ! a || this . constructor != a . constructor ) return ! 1 ; for ( var b = this . getDescriptor ( ) . getFields ( ) , c = 0 ; c < b . length ; c ++ ) { var d = b [ c ] , e = d . getTag ( ) ; if ( this . has$Value ( e ) != a . has$Value ( e ) ) return ! 1 ; if ( this . has$Value ( e ) ) { var f = d . isCompositeType ( ) , g = this . getValueForTag _ ( e ) , e = a . getValueForTag _ ( e ) ; if ( d . isRepeated ( ) ) { if ( g . length != e . length ) return ! 1 ; for ( d = 0 ; d < g . length ; d ++ ) { var h = g [ d ] , k = e [ d ] ; if ( f ? ! h . equals ( k ) : h != k ) return ! 1 } } else if ( f ? ! g . equals ( e ) : g != e ) return ! 1 } } return ! 0 } ;
goog . proto2 . Message . prototype . copyFrom = function ( a ) { goog . asserts . assert ( this . constructor == a . constructor , "The source message must have the same type." ) ; this != a && ( this . values _ = { } , this . deserializedFields _ && ( this . deserializedFields _ = { } ) , this . mergeFrom ( a ) ) } ;
goog . proto2 . Message . prototype . mergeFrom = function ( a ) { goog . asserts . assert ( this . constructor == a . constructor , "The source message must have the same type." ) ; for ( var b = this . getDescriptor ( ) . getFields ( ) , c = 0 ; c < b . length ; c ++ ) { var d = b [ c ] , e = d . getTag ( ) ; if ( a . has$Value ( e ) ) { this . deserializedFields _ && delete this . deserializedFields _ [ d . getTag ( ) ] ; var f = d . isCompositeType ( ) ; if ( d . isRepeated ( ) ) for ( var d = a . array$Values ( e ) , g = 0 ; g < d . length ; g ++ ) this . add$Value ( e , f ? d [ g ] . clone ( ) : d [ g ] ) ; else d = a . getValueForTag _ ( e ) , f ? ( f = this . getValueForTag _ ( e ) ) ?
f . mergeFrom ( d ) : this . set$Value ( e , d . clone ( ) ) : this . set$Value ( e , d ) } } } ; goog . proto2 . Message . prototype . clone = function ( ) { var a = new this . constructor ; a . copyFrom ( this ) ; return a } ;
goog . proto2 . Message . prototype . initDefaults = function ( a ) { for ( var b = this . getDescriptor ( ) . getFields ( ) , c = 0 ; c < b . length ; c ++ ) { var d = b [ c ] , e = d . getTag ( ) , f = d . isCompositeType ( ) ; this . has$Value ( e ) || d . isRepeated ( ) || ( f ? this . values _ [ e ] = new ( d . getNativeType ( ) ) : a && ( this . values _ [ e ] = d . getDefaultValue ( ) ) ) ; if ( f ) if ( d . isRepeated ( ) ) for ( d = this . array$Values ( e ) , e = 0 ; e < d . length ; e ++ ) d [ e ] . initDefaults ( a ) ; else this . get$Value ( e ) . initDefaults ( a ) } } ; goog . proto2 . Message . prototype . has$Value = function ( a ) { return null != this . values _ [ a ] } ;
goog . proto2 . Message . prototype . getValueForTag _ = function ( a ) { var b = this . values _ [ a ] ; return goog . isDefAndNotNull ( b ) ? this . lazyDeserializer _ ? a in this . deserializedFields _ ? this . deserializedFields _ [ a ] : ( b = this . lazyDeserializer _ . deserializeField ( this , this . fields _ [ a ] , b ) , this . deserializedFields _ [ a ] = b ) : b : null } ;
goog . proto2 . Message . prototype . get$Value = function ( a , b ) { var c = this . getValueForTag _ ( a ) ; if ( this . fields _ [ a ] . isRepeated ( ) ) { var d = b || 0 ; goog . asserts . assert ( 0 <= d && d < c . length , "Given index %s is out of bounds. Repeated field length: %s" , d , c . length ) ; return c [ d ] } return c } ; goog . proto2 . Message . prototype . get$ValueOrDefault = function ( a , b ) { return this . has$Value ( a ) ? this . get$Value ( a , b ) : this . fields _ [ a ] . getDefaultValue ( ) } ; goog . proto2 . Message . prototype . array$Values = function ( a ) { return this . getValueForTag _ ( a ) || [ ] } ;
goog . proto2 . Message . prototype . count$Values = function ( a ) { return this . fields _ [ a ] . isRepeated ( ) ? this . has$Value ( a ) ? this . values _ [ a ] . length : 0 : this . has$Value ( a ) ? 1 : 0 } ; goog . proto2 . Message . prototype . set$Value = function ( a , b ) { goog . asserts . ENABLE _ASSERTS && this . checkFieldType _ ( this . fields _ [ a ] , b ) ; this . values _ [ a ] = b ; this . deserializedFields _ && ( this . deserializedFields _ [ a ] = b ) } ;
2016-01-22 23:34:30 +00:00
goog . proto2 . Message . prototype . add$Value = function ( a , b ) { goog . asserts . ENABLE _ASSERTS && this . checkFieldType _ ( this . fields _ [ a ] , b ) ; this . values _ [ a ] || ( this . values _ [ a ] = [ ] ) ; this . values _ [ a ] . push ( b ) ; this . deserializedFields _ && delete this . deserializedFields _ [ a ] } ; goog . proto2 . Message . prototype . checkFieldType _ = function ( a , b ) { a . getFieldType ( ) == goog . proto2 . FieldDescriptor . FieldType . ENUM ? goog . asserts . assertNumber ( b ) : goog . asserts . assert ( Object ( b ) . constructor == a . getNativeType ( ) ) } ;
2016-10-30 10:47:58 +00:00
goog . proto2 . Message . prototype . clear$Field = function ( a ) { delete this . values _ [ a ] ; this . deserializedFields _ && delete this . deserializedFields _ [ a ] } ; goog . proto2 . Message . createDescriptor = function ( a , b ) { var c = [ ] , d = b [ 0 ] , e ; for ( e in b ) 0 != e && c . push ( new goog . proto2 . FieldDescriptor ( a , e , b [ e ] ) ) ; return new goog . proto2 . Descriptor ( a , d , c ) } ; goog . proto2 . Serializer = function ( ) { } ; goog . proto2 . Serializer . DECODE _SYMBOLIC _ENUMS = ! 1 ; goog . proto2 . Serializer . prototype . serialize = goog . abstractMethod ; goog . proto2 . Serializer . prototype . getSerializedValue = function ( a , b ) { return a . isCompositeType ( ) ? this . serialize ( b ) : goog . isNumber ( b ) && ! isFinite ( b ) ? b . toString ( ) : b } ; goog . proto2 . Serializer . prototype . deserialize = function ( a , b ) { var c = a . createMessageInstance ( ) ; this . deserializeTo ( c , b ) ; goog . asserts . assert ( c instanceof goog . proto2 . Message ) ; return c } ;
goog . proto2 . Serializer . prototype . deserializeTo = goog . abstractMethod ;
goog . proto2 . Serializer . prototype . getDeserializedValue = function ( a , b ) { if ( a . isCompositeType ( ) ) return b instanceof goog . proto2 . Message ? b : this . deserialize ( a . getFieldMessageType ( ) , b ) ; if ( a . getFieldType ( ) == goog . proto2 . FieldDescriptor . FieldType . ENUM ) { if ( goog . proto2 . Serializer . DECODE _SYMBOLIC _ENUMS && goog . isString ( b ) ) { var c = a . getNativeType ( ) ; if ( c . hasOwnProperty ( b ) ) return c [ b ] } return goog . isString ( b ) && goog . proto2 . Serializer . INTEGER _REGEX . test ( b ) && ( c = Number ( b ) , 0 < c ) ? c : b } if ( ! a . deserializationConversionPermitted ( ) ) return b ;
c = a . getNativeType ( ) ; if ( c === String ) { if ( goog . isNumber ( b ) ) return String ( b ) } else if ( c === Number && goog . isString ( b ) && ( "Infinity" === b || "-Infinity" === b || "NaN" === b || goog . proto2 . Serializer . INTEGER _REGEX . test ( b ) ) ) return Number ( b ) ; return b } ; goog . proto2 . Serializer . INTEGER _REGEX = /^-?[0-9]+$/ ; goog . proto2 . LazyDeserializer = function ( ) { } ; goog . inherits ( goog . proto2 . LazyDeserializer , goog . proto2 . Serializer ) ; goog . proto2 . LazyDeserializer . prototype . deserialize = function ( a , b ) { var c = a . createMessageInstance ( ) ; c . initializeForLazyDeserializer ( this , b ) ; goog . asserts . assert ( c instanceof goog . proto2 . Message ) ; return c } ; goog . proto2 . LazyDeserializer . prototype . deserializeTo = function ( a , b ) { throw Error ( "Unimplemented" ) ; } ; goog . proto2 . LazyDeserializer . prototype . deserializeField = goog . abstractMethod ; goog . proto2 . PbLiteSerializer = function ( ) { } ; goog . inherits ( goog . proto2 . PbLiteSerializer , goog . proto2 . LazyDeserializer ) ; goog . proto2 . PbLiteSerializer . prototype . zeroIndexing _ = ! 1 ; goog . proto2 . PbLiteSerializer . prototype . setZeroIndexed = function ( a ) { this . zeroIndexing _ = a } ;
2014-11-10 02:04:15 +00:00
goog . proto2 . PbLiteSerializer . prototype . serialize = function ( a ) { for ( var b = a . getDescriptor ( ) . getFields ( ) , c = [ ] , d = this . zeroIndexing _ , e = 0 ; e < b . length ; e ++ ) { var f = b [ e ] ; if ( a . has ( f ) ) { var g = f . getTag ( ) , g = d ? g - 1 : g ; if ( f . isRepeated ( ) ) { c [ g ] = [ ] ; for ( var h = 0 ; h < a . countOf ( f ) ; h ++ ) c [ g ] [ h ] = this . getSerializedValue ( f , a . get ( f , h ) ) } else c [ g ] = this . getSerializedValue ( f , a . get ( f ) ) } } a . forEachUnknown ( function ( a , b ) { c [ d ? a - 1 : a ] = b } ) ; return c } ;
goog . proto2 . PbLiteSerializer . prototype . deserializeField = function ( a , b , c ) { if ( null == c ) return c ; if ( b . isRepeated ( ) ) { a = [ ] ; goog . asserts . assert ( goog . isArray ( c ) , "Value must be array: %s" , c ) ; for ( var d = 0 ; d < c . length ; d ++ ) a [ d ] = this . getDeserializedValue ( b , c [ d ] ) ; return a } return this . getDeserializedValue ( b , c ) } ;
goog . proto2 . PbLiteSerializer . prototype . getSerializedValue = function ( a , b ) { return a . getFieldType ( ) == goog . proto2 . FieldDescriptor . FieldType . BOOL ? b ? 1 : 0 : goog . proto2 . Serializer . prototype . getSerializedValue . apply ( this , arguments ) } ;
goog . proto2 . PbLiteSerializer . prototype . getDeserializedValue = function ( a , b ) { return a . getFieldType ( ) == goog . proto2 . FieldDescriptor . FieldType . BOOL ? ( goog . asserts . assert ( goog . isNumber ( b ) || goog . isBoolean ( b ) , "Value is expected to be a number or boolean" ) , ! ! b ) : goog . proto2 . Serializer . prototype . getDeserializedValue . apply ( this , arguments ) } ;
2016-01-22 23:34:30 +00:00
goog . proto2 . PbLiteSerializer . prototype . deserialize = function ( a , b ) { var c = b ; if ( this . zeroIndexing _ ) { var c = [ ] , d ; for ( d in b ) c [ parseInt ( d , 10 ) + 1 ] = b [ d ] } return goog . proto2 . PbLiteSerializer . superClass _ . deserialize . call ( this , a , c ) } ; goog . string . StringBuffer = function ( a , b ) { null != a && this . append . apply ( this , arguments ) } ; goog . string . StringBuffer . prototype . buffer _ = "" ; goog . string . StringBuffer . prototype . set = function ( a ) { this . buffer _ = "" + a } ; goog . string . StringBuffer . prototype . append = function ( a , b , c ) { this . buffer _ += String ( a ) ; if ( null != b ) for ( var d = 1 ; d < arguments . length ; d ++ ) this . buffer _ += arguments [ d ] ; return this } ; goog . string . StringBuffer . prototype . clear = function ( ) { this . buffer _ = "" } ; goog . string . StringBuffer . prototype . getLength = function ( ) { return this . buffer _ . length } ;
2014-11-10 02:04:15 +00:00
goog . string . StringBuffer . prototype . toString = function ( ) { return this . buffer _ } ; / *
2014-06-29 22:15:27 +00:00
Protocol Buffer 2 Copyright 2008 Google Inc .
All other code copyright its respective owners .
Copyright ( C ) 2010 The Libphonenumber Authors
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 .
* /
2016-10-30 10:47:58 +00:00
var i18n = { phonenumbers : { } } ; i18n . phonenumbers . NumberFormat = function ( ) { goog . proto2 . Message . call ( this ) } ; goog . inherits ( i18n . phonenumbers . NumberFormat , goog . proto2 . Message ) ; i18n . phonenumbers . NumberFormat . descriptor _ = null ; i18n . phonenumbers . NumberFormat . prototype . getPattern = function ( ) { return this . get$Value ( 1 ) } ; i18n . phonenumbers . NumberFormat . prototype . getPatternOrDefault = function ( ) { return this . get$ValueOrDefault ( 1 ) } ; i18n . phonenumbers . NumberFormat . prototype . setPattern = function ( a ) { this . set$Value ( 1 , a ) } ;
i18n . phonenumbers . NumberFormat . prototype . hasPattern = function ( ) { return this . has$Value ( 1 ) } ; i18n . phonenumbers . NumberFormat . prototype . patternCount = function ( ) { return this . count$Values ( 1 ) } ; i18n . phonenumbers . NumberFormat . prototype . clearPattern = function ( ) { this . clear$Field ( 1 ) } ; i18n . phonenumbers . NumberFormat . prototype . getFormat = function ( ) { return this . get$Value ( 2 ) } ; i18n . phonenumbers . NumberFormat . prototype . getFormatOrDefault = function ( ) { return this . get$ValueOrDefault ( 2 ) } ;
i18n . phonenumbers . NumberFormat . prototype . setFormat = function ( a ) { this . set$Value ( 2 , a ) } ; i18n . phonenumbers . NumberFormat . prototype . hasFormat = function ( ) { return this . has$Value ( 2 ) } ; i18n . phonenumbers . NumberFormat . prototype . formatCount = function ( ) { return this . count$Values ( 2 ) } ; i18n . phonenumbers . NumberFormat . prototype . clearFormat = function ( ) { this . clear$Field ( 2 ) } ; i18n . phonenumbers . NumberFormat . prototype . getLeadingDigitsPattern = function ( a ) { return this . get$Value ( 3 , a ) } ;
i18n . phonenumbers . NumberFormat . prototype . getLeadingDigitsPatternOrDefault = function ( a ) { return this . get$ValueOrDefault ( 3 , a ) } ; i18n . phonenumbers . NumberFormat . prototype . addLeadingDigitsPattern = function ( a ) { this . add$Value ( 3 , a ) } ; i18n . phonenumbers . NumberFormat . prototype . leadingDigitsPatternArray = function ( ) { return this . array$Values ( 3 ) } ; i18n . phonenumbers . NumberFormat . prototype . hasLeadingDigitsPattern = function ( ) { return this . has$Value ( 3 ) } ; i18n . phonenumbers . NumberFormat . prototype . leadingDigitsPatternCount = function ( ) { return this . count$Values ( 3 ) } ;
i18n . phonenumbers . NumberFormat . prototype . clearLeadingDigitsPattern = function ( ) { this . clear$Field ( 3 ) } ; i18n . phonenumbers . NumberFormat . prototype . getNationalPrefixFormattingRule = function ( ) { return this . get$Value ( 4 ) } ; i18n . phonenumbers . NumberFormat . prototype . getNationalPrefixFormattingRuleOrDefault = function ( ) { return this . get$ValueOrDefault ( 4 ) } ; i18n . phonenumbers . NumberFormat . prototype . setNationalPrefixFormattingRule = function ( a ) { this . set$Value ( 4 , a ) } ;
i18n . phonenumbers . NumberFormat . prototype . hasNationalPrefixFormattingRule = function ( ) { return this . has$Value ( 4 ) } ; i18n . phonenumbers . NumberFormat . prototype . nationalPrefixFormattingRuleCount = function ( ) { return this . count$Values ( 4 ) } ; i18n . phonenumbers . NumberFormat . prototype . clearNationalPrefixFormattingRule = function ( ) { this . clear$Field ( 4 ) } ; i18n . phonenumbers . NumberFormat . prototype . getNationalPrefixOptionalWhenFormatting = function ( ) { return this . get$Value ( 6 ) } ;
i18n . phonenumbers . NumberFormat . prototype . getNationalPrefixOptionalWhenFormattingOrDefault = function ( ) { return this . get$ValueOrDefault ( 6 ) } ; i18n . phonenumbers . NumberFormat . prototype . setNationalPrefixOptionalWhenFormatting = function ( a ) { this . set$Value ( 6 , a ) } ; i18n . phonenumbers . NumberFormat . prototype . hasNationalPrefixOptionalWhenFormatting = function ( ) { return this . has$Value ( 6 ) } ; i18n . phonenumbers . NumberFormat . prototype . nationalPrefixOptionalWhenFormattingCount = function ( ) { return this . count$Values ( 6 ) } ;
i18n . phonenumbers . NumberFormat . prototype . clearNationalPrefixOptionalWhenFormatting = function ( ) { this . clear$Field ( 6 ) } ; i18n . phonenumbers . NumberFormat . prototype . getDomesticCarrierCodeFormattingRule = function ( ) { return this . get$Value ( 5 ) } ; i18n . phonenumbers . NumberFormat . prototype . getDomesticCarrierCodeFormattingRuleOrDefault = function ( ) { return this . get$ValueOrDefault ( 5 ) } ; i18n . phonenumbers . NumberFormat . prototype . setDomesticCarrierCodeFormattingRule = function ( a ) { this . set$Value ( 5 , a ) } ;
i18n . phonenumbers . NumberFormat . prototype . hasDomesticCarrierCodeFormattingRule = function ( ) { return this . has$Value ( 5 ) } ; i18n . phonenumbers . NumberFormat . prototype . domesticCarrierCodeFormattingRuleCount = function ( ) { return this . count$Values ( 5 ) } ; i18n . phonenumbers . NumberFormat . prototype . clearDomesticCarrierCodeFormattingRule = function ( ) { this . clear$Field ( 5 ) } ; i18n . phonenumbers . PhoneNumberDesc = function ( ) { goog . proto2 . Message . call ( this ) } ; goog . inherits ( i18n . phonenumbers . PhoneNumberDesc , goog . proto2 . Message ) ;
i18n . phonenumbers . PhoneNumberDesc . descriptor _ = null ; i18n . phonenumbers . PhoneNumberDesc . prototype . getNationalNumberPattern = function ( ) { return this . get$Value ( 2 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getNationalNumberPatternOrDefault = function ( ) { return this . get$ValueOrDefault ( 2 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . setNationalNumberPattern = function ( a ) { this . set$Value ( 2 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasNationalNumberPattern = function ( ) { return this . has$Value ( 2 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . nationalNumberPatternCount = function ( ) { return this . count$Values ( 2 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . clearNationalNumberPattern = function ( ) { this . clear$Field ( 2 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleNumberPattern = function ( ) { return this . get$Value ( 3 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleNumberPatternOrDefault = function ( ) { return this . get$ValueOrDefault ( 3 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . setPossibleNumberPattern = function ( a ) { this . set$Value ( 3 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasPossibleNumberPattern = function ( ) { return this . has$Value ( 3 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . possibleNumberPatternCount = function ( ) { return this . count$Values ( 3 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . clearPossibleNumberPattern = function ( ) { this . clear$Field ( 3 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleLength = function ( a ) { return this . get$Value ( 9 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleLengthOrDefault = function ( a ) { return this . get$ValueOrDefault ( 9 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . addPossibleLength = function ( a ) { this . add$Value ( 9 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . possibleLengthArray = function ( ) { return this . array$Values ( 9 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasPossibleLength = function ( ) { return this . has$Value ( 9 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . possibleLengthCount = function ( ) { return this . count$Values ( 9 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . clearPossibleLength = function ( ) { this . clear$Field ( 9 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleLengthLocalOnly = function ( a ) { return this . get$Value ( 10 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleLengthLocalOnlyOrDefault = function ( a ) { return this . get$ValueOrDefault ( 10 , a ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . addPossibleLengthLocalOnly = function ( a ) { this . add$Value ( 10 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . possibleLengthLocalOnlyArray = function ( ) { return this . array$Values ( 10 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasPossibleLengthLocalOnly = function ( ) { return this . has$Value ( 10 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . possibleLengthLocalOnlyCount = function ( ) { return this . count$Values ( 10 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . clearPossibleLengthLocalOnly = function ( ) { this . clear$Field ( 10 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getExampleNumber = function ( ) { return this . get$Value ( 6 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getExampleNumberOrDefault = function ( ) { return this . get$ValueOrDefault ( 6 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . setExampleNumber = function ( a ) { this . set$Value ( 6 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasExampleNumber = function ( ) { return this . has$Value ( 6 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . exampleNumberCount = function ( ) { return this . count$Values ( 6 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . clearExampleNumber = function ( ) { this . clear$Field ( 6 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getNationalNumberMatcherData = function ( ) { return this . get$Value ( 7 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getNationalNumberMatcherDataOrDefault = function ( ) { return this . get$ValueOrDefault ( 7 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . setNationalNumberMatcherData = function ( a ) { this . set$Value ( 7 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasNationalNumberMatcherData = function ( ) { return this . has$Value ( 7 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . nationalNumberMatcherDataCount = function ( ) { return this . count$Values ( 7 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . clearNationalNumberMatcherData = function ( ) { this . clear$Field ( 7 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleNumberMatcherData = function ( ) { return this . get$Value ( 8 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . getPossibleNumberMatcherDataOrDefault = function ( ) { return this . get$ValueOrDefault ( 8 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . setPossibleNumberMatcherData = function ( a ) { this . set$Value ( 8 , a ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . hasPossibleNumberMatcherData = function ( ) { return this . has$Value ( 8 ) } ;
i18n . phonenumbers . PhoneNumberDesc . prototype . possibleNumberMatcherDataCount = function ( ) { return this . count$Values ( 8 ) } ; i18n . phonenumbers . PhoneNumberDesc . prototype . clearPossibleNumberMatcherData = function ( ) { this . clear$Field ( 8 ) } ; i18n . phonenumbers . PhoneMetadata = function ( ) { goog . proto2 . Message . call ( this ) } ; goog . inherits ( i18n . phonenumbers . PhoneMetadata , goog . proto2 . Message ) ; i18n . phonenumbers . PhoneMetadata . descriptor _ = null ; i18n . phonenumbers . PhoneMetadata . prototype . getGeneralDesc = function ( ) { return this . get$Value ( 1 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getGeneralDescOrDefault = function ( ) { return this . get$ValueOrDefault ( 1 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setGeneralDesc = function ( a ) { this . set$Value ( 1 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasGeneralDesc = function ( ) { return this . has$Value ( 1 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . generalDescCount = function ( ) { return this . count$Values ( 1 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearGeneralDesc = function ( ) { this . clear$Field ( 1 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getFixedLine = function ( ) { return this . get$Value ( 2 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getFixedLineOrDefault = function ( ) { return this . get$ValueOrDefault ( 2 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setFixedLine = function ( a ) { this . set$Value ( 2 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasFixedLine = function ( ) { return this . has$Value ( 2 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . fixedLineCount = function ( ) { return this . count$Values ( 2 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . clearFixedLine = function ( ) { this . clear$Field ( 2 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getMobile = function ( ) { return this . get$Value ( 3 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getMobileOrDefault = function ( ) { return this . get$ValueOrDefault ( 3 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setMobile = function ( a ) { this . set$Value ( 3 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasMobile = function ( ) { return this . has$Value ( 3 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . mobileCount = function ( ) { return this . count$Values ( 3 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearMobile = function ( ) { this . clear$Field ( 3 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getTollFree = function ( ) { return this . get$Value ( 4 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getTollFreeOrDefault = function ( ) { return this . get$ValueOrDefault ( 4 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setTollFree = function ( a ) { this . set$Value ( 4 , a ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . hasTollFree = function ( ) { return this . has$Value ( 4 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . tollFreeCount = function ( ) { return this . count$Values ( 4 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearTollFree = function ( ) { this . clear$Field ( 4 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPremiumRate = function ( ) { return this . get$Value ( 5 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPremiumRateOrDefault = function ( ) { return this . get$ValueOrDefault ( 5 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . setPremiumRate = function ( a ) { this . set$Value ( 5 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasPremiumRate = function ( ) { return this . has$Value ( 5 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . premiumRateCount = function ( ) { return this . count$Values ( 5 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearPremiumRate = function ( ) { this . clear$Field ( 5 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getSharedCost = function ( ) { return this . get$Value ( 6 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getSharedCostOrDefault = function ( ) { return this . get$ValueOrDefault ( 6 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setSharedCost = function ( a ) { this . set$Value ( 6 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasSharedCost = function ( ) { return this . has$Value ( 6 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . sharedCostCount = function ( ) { return this . count$Values ( 6 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearSharedCost = function ( ) { this . clear$Field ( 6 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getPersonalNumber = function ( ) { return this . get$Value ( 7 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPersonalNumberOrDefault = function ( ) { return this . get$ValueOrDefault ( 7 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setPersonalNumber = function ( a ) { this . set$Value ( 7 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasPersonalNumber = function ( ) { return this . has$Value ( 7 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . personalNumberCount = function ( ) { return this . count$Values ( 7 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . clearPersonalNumber = function ( ) { this . clear$Field ( 7 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getVoip = function ( ) { return this . get$Value ( 8 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getVoipOrDefault = function ( ) { return this . get$ValueOrDefault ( 8 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setVoip = function ( a ) { this . set$Value ( 8 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasVoip = function ( ) { return this . has$Value ( 8 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . voipCount = function ( ) { return this . count$Values ( 8 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearVoip = function ( ) { this . clear$Field ( 8 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPager = function ( ) { return this . get$Value ( 21 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPagerOrDefault = function ( ) { return this . get$ValueOrDefault ( 21 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setPager = function ( a ) { this . set$Value ( 21 , a ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . hasPager = function ( ) { return this . has$Value ( 21 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . pagerCount = function ( ) { return this . count$Values ( 21 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearPager = function ( ) { this . clear$Field ( 21 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getUan = function ( ) { return this . get$Value ( 25 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getUanOrDefault = function ( ) { return this . get$ValueOrDefault ( 25 ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneMetadata . prototype . setUan = function ( a ) { this . set$Value ( 25 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasUan = function ( ) { return this . has$Value ( 25 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . uanCount = function ( ) { return this . count$Values ( 25 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearUan = function ( ) { this . clear$Field ( 25 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getEmergency = function ( ) { return this . get$Value ( 27 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getEmergencyOrDefault = function ( ) { return this . get$ValueOrDefault ( 27 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setEmergency = function ( a ) { this . set$Value ( 27 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasEmergency = function ( ) { return this . has$Value ( 27 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . emergencyCount = function ( ) { return this . count$Values ( 27 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearEmergency = function ( ) { this . clear$Field ( 27 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getVoicemail = function ( ) { return this . get$Value ( 28 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getVoicemailOrDefault = function ( ) { return this . get$ValueOrDefault ( 28 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setVoicemail = function ( a ) { this . set$Value ( 28 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasVoicemail = function ( ) { return this . has$Value ( 28 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . voicemailCount = function ( ) { return this . count$Values ( 28 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . clearVoicemail = function ( ) { this . clear$Field ( 28 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNoInternationalDialling = function ( ) { return this . get$Value ( 24 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNoInternationalDiallingOrDefault = function ( ) { return this . get$ValueOrDefault ( 24 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setNoInternationalDialling = function ( a ) { this . set$Value ( 24 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasNoInternationalDialling = function ( ) { return this . has$Value ( 24 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . noInternationalDiallingCount = function ( ) { return this . count$Values ( 24 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearNoInternationalDialling = function ( ) { this . clear$Field ( 24 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getId = function ( ) { return this . get$Value ( 9 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getIdOrDefault = function ( ) { return this . get$ValueOrDefault ( 9 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setId = function ( a ) { this . set$Value ( 9 , a ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . hasId = function ( ) { return this . has$Value ( 9 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . idCount = function ( ) { return this . count$Values ( 9 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearId = function ( ) { this . clear$Field ( 9 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getCountryCode = function ( ) { return this . get$Value ( 10 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getCountryCodeOrDefault = function ( ) { return this . get$ValueOrDefault ( 10 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . setCountryCode = function ( a ) { this . set$Value ( 10 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasCountryCode = function ( ) { return this . has$Value ( 10 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . countryCodeCount = function ( ) { return this . count$Values ( 10 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearCountryCode = function ( ) { this . clear$Field ( 10 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getInternationalPrefix = function ( ) { return this . get$Value ( 11 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getInternationalPrefixOrDefault = function ( ) { return this . get$ValueOrDefault ( 11 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setInternationalPrefix = function ( a ) { this . set$Value ( 11 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasInternationalPrefix = function ( ) { return this . has$Value ( 11 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . internationalPrefixCount = function ( ) { return this . count$Values ( 11 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearInternationalPrefix = function ( ) { this . clear$Field ( 11 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getPreferredInternationalPrefix = function ( ) { return this . get$Value ( 17 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPreferredInternationalPrefixOrDefault = function ( ) { return this . get$ValueOrDefault ( 17 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setPreferredInternationalPrefix = function ( a ) { this . set$Value ( 17 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasPreferredInternationalPrefix = function ( ) { return this . has$Value ( 17 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . preferredInternationalPrefixCount = function ( ) { return this . count$Values ( 17 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearPreferredInternationalPrefix = function ( ) { this . clear$Field ( 17 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNationalPrefix = function ( ) { return this . get$Value ( 12 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNationalPrefixOrDefault = function ( ) { return this . get$ValueOrDefault ( 12 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . setNationalPrefix = function ( a ) { this . set$Value ( 12 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasNationalPrefix = function ( ) { return this . has$Value ( 12 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . nationalPrefixCount = function ( ) { return this . count$Values ( 12 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearNationalPrefix = function ( ) { this . clear$Field ( 12 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getPreferredExtnPrefix = function ( ) { return this . get$Value ( 13 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getPreferredExtnPrefixOrDefault = function ( ) { return this . get$ValueOrDefault ( 13 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setPreferredExtnPrefix = function ( a ) { this . set$Value ( 13 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasPreferredExtnPrefix = function ( ) { return this . has$Value ( 13 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . preferredExtnPrefixCount = function ( ) { return this . count$Values ( 13 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearPreferredExtnPrefix = function ( ) { this . clear$Field ( 13 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getNationalPrefixForParsing = function ( ) { return this . get$Value ( 15 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNationalPrefixForParsingOrDefault = function ( ) { return this . get$ValueOrDefault ( 15 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setNationalPrefixForParsing = function ( a ) { this . set$Value ( 15 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasNationalPrefixForParsing = function ( ) { return this . has$Value ( 15 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . nationalPrefixForParsingCount = function ( ) { return this . count$Values ( 15 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearNationalPrefixForParsing = function ( ) { this . clear$Field ( 15 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNationalPrefixTransformRule = function ( ) { return this . get$Value ( 16 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNationalPrefixTransformRuleOrDefault = function ( ) { return this . get$ValueOrDefault ( 16 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . setNationalPrefixTransformRule = function ( a ) { this . set$Value ( 16 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasNationalPrefixTransformRule = function ( ) { return this . has$Value ( 16 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . nationalPrefixTransformRuleCount = function ( ) { return this . count$Values ( 16 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearNationalPrefixTransformRule = function ( ) { this . clear$Field ( 16 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getSameMobileAndFixedLinePattern = function ( ) { return this . get$Value ( 18 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getSameMobileAndFixedLinePatternOrDefault = function ( ) { return this . get$ValueOrDefault ( 18 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setSameMobileAndFixedLinePattern = function ( a ) { this . set$Value ( 18 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasSameMobileAndFixedLinePattern = function ( ) { return this . has$Value ( 18 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . sameMobileAndFixedLinePatternCount = function ( ) { return this . count$Values ( 18 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearSameMobileAndFixedLinePattern = function ( ) { this . clear$Field ( 18 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNumberFormat = function ( a ) { return this . get$Value ( 19 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getNumberFormatOrDefault = function ( a ) { return this . get$ValueOrDefault ( 19 , a ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . addNumberFormat = function ( a ) { this . add$Value ( 19 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . numberFormatArray = function ( ) { return this . array$Values ( 19 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasNumberFormat = function ( ) { return this . has$Value ( 19 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . numberFormatCount = function ( ) { return this . count$Values ( 19 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearNumberFormat = function ( ) { this . clear$Field ( 19 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getIntlNumberFormat = function ( a ) { return this . get$Value ( 20 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getIntlNumberFormatOrDefault = function ( a ) { return this . get$ValueOrDefault ( 20 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . addIntlNumberFormat = function ( a ) { this . add$Value ( 20 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . intlNumberFormatArray = function ( ) { return this . array$Values ( 20 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasIntlNumberFormat = function ( ) { return this . has$Value ( 20 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . intlNumberFormatCount = function ( ) { return this . count$Values ( 20 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearIntlNumberFormat = function ( ) { this . clear$Field ( 20 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getMainCountryForCode = function ( ) { return this . get$Value ( 22 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getMainCountryForCodeOrDefault = function ( ) { return this . get$ValueOrDefault ( 22 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . setMainCountryForCode = function ( a ) { this . set$Value ( 22 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasMainCountryForCode = function ( ) { return this . has$Value ( 22 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . mainCountryForCodeCount = function ( ) { return this . count$Values ( 22 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearMainCountryForCode = function ( ) { this . clear$Field ( 22 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getLeadingDigits = function ( ) { return this . get$Value ( 23 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getLeadingDigitsOrDefault = function ( ) { return this . get$ValueOrDefault ( 23 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setLeadingDigits = function ( a ) { this . set$Value ( 23 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasLeadingDigits = function ( ) { return this . has$Value ( 23 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . leadingDigitsCount = function ( ) { return this . count$Values ( 23 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . clearLeadingDigits = function ( ) { this . clear$Field ( 23 ) } ;
i18n . phonenumbers . PhoneMetadata . prototype . getLeadingZeroPossible = function ( ) { return this . get$Value ( 26 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . getLeadingZeroPossibleOrDefault = function ( ) { return this . get$ValueOrDefault ( 26 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . setLeadingZeroPossible = function ( a ) { this . set$Value ( 26 , a ) } ; i18n . phonenumbers . PhoneMetadata . prototype . hasLeadingZeroPossible = function ( ) { return this . has$Value ( 26 ) } ; i18n . phonenumbers . PhoneMetadata . prototype . leadingZeroPossibleCount = function ( ) { return this . count$Values ( 26 ) } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneMetadata . prototype . clearLeadingZeroPossible = function ( ) { this . clear$Field ( 26 ) } ; i18n . phonenumbers . PhoneMetadataCollection = function ( ) { goog . proto2 . Message . call ( this ) } ; goog . inherits ( i18n . phonenumbers . PhoneMetadataCollection , goog . proto2 . Message ) ; i18n . phonenumbers . PhoneMetadataCollection . descriptor _ = null ; i18n . phonenumbers . PhoneMetadataCollection . prototype . getMetadata = function ( a ) { return this . get$Value ( 1 , a ) } ;
i18n . phonenumbers . PhoneMetadataCollection . prototype . getMetadataOrDefault = function ( a ) { return this . get$ValueOrDefault ( 1 , a ) } ; i18n . phonenumbers . PhoneMetadataCollection . prototype . addMetadata = function ( a ) { this . add$Value ( 1 , a ) } ; i18n . phonenumbers . PhoneMetadataCollection . prototype . metadataArray = function ( ) { return this . array$Values ( 1 ) } ; i18n . phonenumbers . PhoneMetadataCollection . prototype . hasMetadata = function ( ) { return this . has$Value ( 1 ) } ; i18n . phonenumbers . PhoneMetadataCollection . prototype . metadataCount = function ( ) { return this . count$Values ( 1 ) } ;
i18n . phonenumbers . PhoneMetadataCollection . prototype . clearMetadata = function ( ) { this . clear$Field ( 1 ) } ;
i18n . phonenumbers . NumberFormat . prototype . getDescriptor = function ( ) { var a = i18n . phonenumbers . NumberFormat . descriptor _ ; a || ( i18n . phonenumbers . NumberFormat . descriptor _ = a = goog . proto2 . Message . createDescriptor ( i18n . phonenumbers . NumberFormat , { 0 : { name : "NumberFormat" , fullName : "i18n.phonenumbers.NumberFormat" } , 1 : { name : "pattern" , required : ! 0 , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 2 : { name : "format" , required : ! 0 , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 3 : { name : "leading_digits_pattern" ,
repeated : ! 0 , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 4 : { name : "national_prefix_formatting_rule" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 6 : { name : "national_prefix_optional_when_formatting" , fieldType : goog . proto2 . Message . FieldType . BOOL , type : Boolean } , 5 : { name : "domestic_carrier_code_formatting_rule" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } } ) ) ; return a } ; i18n . phonenumbers . NumberFormat . getDescriptor = i18n . phonenumbers . NumberFormat . prototype . getDescriptor ;
i18n . phonenumbers . PhoneNumberDesc . prototype . getDescriptor = function ( ) { var a = i18n . phonenumbers . PhoneNumberDesc . descriptor _ ; a || ( i18n . phonenumbers . PhoneNumberDesc . descriptor _ = a = goog . proto2 . Message . createDescriptor ( i18n . phonenumbers . PhoneNumberDesc , { 0 : { name : "PhoneNumberDesc" , fullName : "i18n.phonenumbers.PhoneNumberDesc" } , 2 : { name : "national_number_pattern" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 3 : { name : "possible_number_pattern" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } ,
9 : { name : "possible_length" , repeated : ! 0 , fieldType : goog . proto2 . Message . FieldType . INT32 , type : Number } , 10 : { name : "possible_length_local_only" , repeated : ! 0 , fieldType : goog . proto2 . Message . FieldType . INT32 , type : Number } , 6 : { name : "example_number" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 7 : { name : "national_number_matcher_data" , fieldType : goog . proto2 . Message . FieldType . BYTES , type : String } , 8 : { name : "possible_number_matcher_data" , fieldType : goog . proto2 . Message . FieldType . BYTES , type : String } } ) ) ; return a } ;
i18n . phonenumbers . PhoneNumberDesc . getDescriptor = i18n . phonenumbers . PhoneNumberDesc . prototype . getDescriptor ;
i18n . phonenumbers . PhoneMetadata . prototype . getDescriptor = function ( ) { var a = i18n . phonenumbers . PhoneMetadata . descriptor _ ; a || ( i18n . phonenumbers . PhoneMetadata . descriptor _ = a = goog . proto2 . Message . createDescriptor ( i18n . phonenumbers . PhoneMetadata , { 0 : { name : "PhoneMetadata" , fullName : "i18n.phonenumbers.PhoneMetadata" } , 1 : { name : "general_desc" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 2 : { name : "fixed_line" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } ,
2016-01-22 23:34:30 +00:00
3 : { name : "mobile" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 4 : { name : "toll_free" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 5 : { name : "premium_rate" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 6 : { name : "shared_cost" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 7 : { name : "personal_number" , fieldType : goog . proto2 . Message . FieldType . MESSAGE ,
type : i18n . phonenumbers . PhoneNumberDesc } , 8 : { name : "voip" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 21 : { name : "pager" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 25 : { name : "uan" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 27 : { name : "emergency" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 28 : { name : "voicemail" , fieldType : goog . proto2 . Message . FieldType . MESSAGE ,
type : i18n . phonenumbers . PhoneNumberDesc } , 24 : { name : "no_international_dialling" , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneNumberDesc } , 9 : { name : "id" , required : ! 0 , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 10 : { name : "country_code" , fieldType : goog . proto2 . Message . FieldType . INT32 , type : Number } , 11 : { name : "international_prefix" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 17 : { name : "preferred_international_prefix" , fieldType : goog . proto2 . Message . FieldType . STRING ,
2014-11-10 02:04:15 +00:00
type : String } , 12 : { name : "national_prefix" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 13 : { name : "preferred_extn_prefix" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 15 : { name : "national_prefix_for_parsing" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 16 : { name : "national_prefix_transform_rule" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 18 : { name : "same_mobile_and_fixed_line_pattern" , fieldType : goog . proto2 . Message . FieldType . BOOL , defaultValue : ! 1 ,
type : Boolean } , 19 : { name : "number_format" , repeated : ! 0 , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . NumberFormat } , 20 : { name : "intl_number_format" , repeated : ! 0 , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . NumberFormat } , 22 : { name : "main_country_for_code" , fieldType : goog . proto2 . Message . FieldType . BOOL , defaultValue : ! 1 , type : Boolean } , 23 : { name : "leading_digits" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 26 : { name : "leading_zero_possible" , fieldType : goog . proto2 . Message . FieldType . BOOL ,
2016-10-30 10:47:58 +00:00
defaultValue : ! 1 , type : Boolean } } ) ) ; return a } ; i18n . phonenumbers . PhoneMetadata . getDescriptor = i18n . phonenumbers . PhoneMetadata . prototype . getDescriptor ;
i18n . phonenumbers . PhoneMetadataCollection . prototype . getDescriptor = function ( ) { var a = i18n . phonenumbers . PhoneMetadataCollection . descriptor _ ; a || ( i18n . phonenumbers . PhoneMetadataCollection . descriptor _ = a = goog . proto2 . Message . createDescriptor ( i18n . phonenumbers . PhoneMetadataCollection , { 0 : { name : "PhoneMetadataCollection" , fullName : "i18n.phonenumbers.PhoneMetadataCollection" } , 1 : { name : "metadata" , repeated : ! 0 , fieldType : goog . proto2 . Message . FieldType . MESSAGE , type : i18n . phonenumbers . PhoneMetadata } } ) ) ; return a } ;
i18n . phonenumbers . PhoneMetadataCollection . getDescriptor = i18n . phonenumbers . PhoneMetadataCollection . prototype . getDescriptor ; i18n . phonenumbers . PhoneNumber = function ( ) { goog . proto2 . Message . call ( this ) } ; goog . inherits ( i18n . phonenumbers . PhoneNumber , goog . proto2 . Message ) ; i18n . phonenumbers . PhoneNumber . prototype . getCountryCode = function ( ) { return this . get$Value ( 1 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getCountryCodeOrDefault = function ( ) { return this . get$ValueOrDefault ( 1 ) } ; i18n . phonenumbers . PhoneNumber . prototype . setCountryCode = function ( a ) { this . set$Value ( 1 , a ) } ; i18n . phonenumbers . PhoneNumber . prototype . hasCountryCode = function ( ) { return this . has$Value ( 1 ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumber . prototype . countryCodeCount = function ( ) { return this . count$Values ( 1 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearCountryCode = function ( ) { this . clear$Field ( 1 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getNationalNumber = function ( ) { return this . get$Value ( 2 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getNationalNumberOrDefault = function ( ) { return this . get$ValueOrDefault ( 2 ) } ; i18n . phonenumbers . PhoneNumber . prototype . setNationalNumber = function ( a ) { this . set$Value ( 2 , a ) } ;
i18n . phonenumbers . PhoneNumber . prototype . hasNationalNumber = function ( ) { return this . has$Value ( 2 ) } ; i18n . phonenumbers . PhoneNumber . prototype . nationalNumberCount = function ( ) { return this . count$Values ( 2 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearNationalNumber = function ( ) { this . clear$Field ( 2 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getExtension = function ( ) { return this . get$Value ( 3 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getExtensionOrDefault = function ( ) { return this . get$ValueOrDefault ( 3 ) } ;
i18n . phonenumbers . PhoneNumber . prototype . setExtension = function ( a ) { this . set$Value ( 3 , a ) } ; i18n . phonenumbers . PhoneNumber . prototype . hasExtension = function ( ) { return this . has$Value ( 3 ) } ; i18n . phonenumbers . PhoneNumber . prototype . extensionCount = function ( ) { return this . count$Values ( 3 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearExtension = function ( ) { this . clear$Field ( 3 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getItalianLeadingZero = function ( ) { return this . get$Value ( 4 ) } ;
i18n . phonenumbers . PhoneNumber . prototype . getItalianLeadingZeroOrDefault = function ( ) { return this . get$ValueOrDefault ( 4 ) } ; i18n . phonenumbers . PhoneNumber . prototype . setItalianLeadingZero = function ( a ) { this . set$Value ( 4 , a ) } ; i18n . phonenumbers . PhoneNumber . prototype . hasItalianLeadingZero = function ( ) { return this . has$Value ( 4 ) } ; i18n . phonenumbers . PhoneNumber . prototype . italianLeadingZeroCount = function ( ) { return this . count$Values ( 4 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearItalianLeadingZero = function ( ) { this . clear$Field ( 4 ) } ;
i18n . phonenumbers . PhoneNumber . prototype . getNumberOfLeadingZeros = function ( ) { return this . get$Value ( 8 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getNumberOfLeadingZerosOrDefault = function ( ) { return this . get$ValueOrDefault ( 8 ) } ; i18n . phonenumbers . PhoneNumber . prototype . setNumberOfLeadingZeros = function ( a ) { this . set$Value ( 8 , a ) } ; i18n . phonenumbers . PhoneNumber . prototype . hasNumberOfLeadingZeros = function ( ) { return this . has$Value ( 8 ) } ; i18n . phonenumbers . PhoneNumber . prototype . numberOfLeadingZerosCount = function ( ) { return this . count$Values ( 8 ) } ;
i18n . phonenumbers . PhoneNumber . prototype . clearNumberOfLeadingZeros = function ( ) { this . clear$Field ( 8 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getRawInput = function ( ) { return this . get$Value ( 5 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getRawInputOrDefault = function ( ) { return this . get$ValueOrDefault ( 5 ) } ; i18n . phonenumbers . PhoneNumber . prototype . setRawInput = function ( a ) { this . set$Value ( 5 , a ) } ; i18n . phonenumbers . PhoneNumber . prototype . hasRawInput = function ( ) { return this . has$Value ( 5 ) } ;
i18n . phonenumbers . PhoneNumber . prototype . rawInputCount = function ( ) { return this . count$Values ( 5 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearRawInput = function ( ) { this . clear$Field ( 5 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getCountryCodeSource = function ( ) { return this . get$Value ( 6 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getCountryCodeSourceOrDefault = function ( ) { return this . get$ValueOrDefault ( 6 ) } ; i18n . phonenumbers . PhoneNumber . prototype . setCountryCodeSource = function ( a ) { this . set$Value ( 6 , a ) } ;
i18n . phonenumbers . PhoneNumber . prototype . hasCountryCodeSource = function ( ) { return this . has$Value ( 6 ) } ; i18n . phonenumbers . PhoneNumber . prototype . countryCodeSourceCount = function ( ) { return this . count$Values ( 6 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearCountryCodeSource = function ( ) { this . clear$Field ( 6 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getPreferredDomesticCarrierCode = function ( ) { return this . get$Value ( 7 ) } ; i18n . phonenumbers . PhoneNumber . prototype . getPreferredDomesticCarrierCodeOrDefault = function ( ) { return this . get$ValueOrDefault ( 7 ) } ;
i18n . phonenumbers . PhoneNumber . prototype . setPreferredDomesticCarrierCode = function ( a ) { this . set$Value ( 7 , a ) } ; i18n . phonenumbers . PhoneNumber . prototype . hasPreferredDomesticCarrierCode = function ( ) { return this . has$Value ( 7 ) } ; i18n . phonenumbers . PhoneNumber . prototype . preferredDomesticCarrierCodeCount = function ( ) { return this . count$Values ( 7 ) } ; i18n . phonenumbers . PhoneNumber . prototype . clearPreferredDomesticCarrierCode = function ( ) { this . clear$Field ( 7 ) } ;
i18n . phonenumbers . PhoneNumber . CountryCodeSource = { FROM _NUMBER _WITH _PLUS _SIGN : 1 , FROM _NUMBER _WITH _IDD : 5 , FROM _NUMBER _WITHOUT _PLUS _SIGN : 10 , FROM _DEFAULT _COUNTRY : 20 } ;
2016-01-22 23:34:30 +00:00
i18n . phonenumbers . PhoneNumber . prototype . getDescriptor = function ( ) { i18n . phonenumbers . PhoneNumber . descriptor _ || ( i18n . phonenumbers . PhoneNumber . descriptor _ = goog . proto2 . Message . createDescriptor ( i18n . phonenumbers . PhoneNumber , { 0 : { name : "PhoneNumber" , fullName : "i18n.phonenumbers.PhoneNumber" } , 1 : { name : "country_code" , required : ! 0 , fieldType : goog . proto2 . Message . FieldType . INT32 , type : Number } , 2 : { name : "national_number" , required : ! 0 , fieldType : goog . proto2 . Message . FieldType . UINT64 , type : Number } , 3 : { name : "extension" , fieldType : goog . proto2 . Message . FieldType . STRING ,
type : String } , 4 : { name : "italian_leading_zero" , fieldType : goog . proto2 . Message . FieldType . BOOL , type : Boolean } , 8 : { name : "number_of_leading_zeros" , fieldType : goog . proto2 . Message . FieldType . INT32 , defaultValue : 1 , type : Number } , 5 : { name : "raw_input" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } , 6 : { name : "country_code_source" , fieldType : goog . proto2 . Message . FieldType . ENUM , defaultValue : i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITH _PLUS _SIGN , type : i18n . phonenumbers . PhoneNumber . CountryCodeSource } ,
7 : { name : "preferred_domestic_carrier_code" , fieldType : goog . proto2 . Message . FieldType . STRING , type : String } } ) ) ; return i18n . phonenumbers . PhoneNumber . descriptor _ } ; i18n . phonenumbers . PhoneNumber . ctor = i18n . phonenumbers . PhoneNumber ; i18n . phonenumbers . PhoneNumber . ctor . getDescriptor = i18n . phonenumbers . PhoneNumber . prototype . getDescriptor ; / *
2014-06-29 22:15:27 +00:00
Copyright ( C ) 2010 The Libphonenumber Authors
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 .
* /
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . metadata = { } ;
2016-01-22 23:34:30 +00:00
i18n . phonenumbers . metadata . countryCodeToRegionCodeMap = { 1 : "US AG AI AS BB BM BS CA DM DO GD GU JM KN KY LC MP MS PR SX TC TT VC VG VI" . split ( " " ) , 7 : [ "RU" , "KZ" ] , 20 : [ "EG" ] , 27 : [ "ZA" ] , 30 : [ "GR" ] , 31 : [ "NL" ] , 32 : [ "BE" ] , 33 : [ "FR" ] , 34 : [ "ES" ] , 36 : [ "HU" ] , 39 : [ "IT" , "VA" ] , 40 : [ "RO" ] , 41 : [ "CH" ] , 43 : [ "AT" ] , 44 : [ "GB" , "GG" , "IM" , "JE" ] , 45 : [ "DK" ] , 46 : [ "SE" ] , 47 : [ "NO" , "SJ" ] , 48 : [ "PL" ] , 49 : [ "DE" ] , 51 : [ "PE" ] , 52 : [ "MX" ] , 53 : [ "CU" ] , 54 : [ "AR" ] , 55 : [ "BR" ] , 56 : [ "CL" ] , 57 : [ "CO" ] , 58 : [ "VE" ] , 60 : [ "MY" ] , 61 : [ "AU" , "CC" , "CX" ] , 62 : [ "ID" ] , 63 : [ "PH" ] , 64 : [ "NZ" ] ,
65 : [ "SG" ] , 66 : [ "TH" ] , 81 : [ "JP" ] , 82 : [ "KR" ] , 84 : [ "VN" ] , 86 : [ "CN" ] , 90 : [ "TR" ] , 91 : [ "IN" ] , 92 : [ "PK" ] , 93 : [ "AF" ] , 94 : [ "LK" ] , 95 : [ "MM" ] , 98 : [ "IR" ] , 211 : [ "SS" ] , 212 : [ "MA" , "EH" ] , 213 : [ "DZ" ] , 216 : [ "TN" ] , 218 : [ "LY" ] , 220 : [ "GM" ] , 221 : [ "SN" ] , 222 : [ "MR" ] , 223 : [ "ML" ] , 224 : [ "GN" ] , 225 : [ "CI" ] , 226 : [ "BF" ] , 227 : [ "NE" ] , 228 : [ "TG" ] , 229 : [ "BJ" ] , 230 : [ "MU" ] , 231 : [ "LR" ] , 232 : [ "SL" ] , 233 : [ "GH" ] , 234 : [ "NG" ] , 235 : [ "TD" ] , 236 : [ "CF" ] , 237 : [ "CM" ] , 238 : [ "CV" ] , 239 : [ "ST" ] , 240 : [ "GQ" ] , 241 : [ "GA" ] , 242 : [ "CG" ] , 243 : [ "CD" ] , 244 : [ "AO" ] , 245 : [ "GW" ] , 246 : [ "IO" ] , 247 : [ "AC" ] , 248 : [ "SC" ] ,
249 : [ "SD" ] , 250 : [ "RW" ] , 251 : [ "ET" ] , 252 : [ "SO" ] , 253 : [ "DJ" ] , 254 : [ "KE" ] , 255 : [ "TZ" ] , 256 : [ "UG" ] , 257 : [ "BI" ] , 258 : [ "MZ" ] , 260 : [ "ZM" ] , 261 : [ "MG" ] , 262 : [ "RE" , "YT" ] , 263 : [ "ZW" ] , 264 : [ "NA" ] , 265 : [ "MW" ] , 266 : [ "LS" ] , 267 : [ "BW" ] , 268 : [ "SZ" ] , 269 : [ "KM" ] , 290 : [ "SH" , "TA" ] , 291 : [ "ER" ] , 297 : [ "AW" ] , 298 : [ "FO" ] , 299 : [ "GL" ] , 350 : [ "GI" ] , 351 : [ "PT" ] , 352 : [ "LU" ] , 353 : [ "IE" ] , 354 : [ "IS" ] , 355 : [ "AL" ] , 356 : [ "MT" ] , 357 : [ "CY" ] , 358 : [ "FI" , "AX" ] , 359 : [ "BG" ] , 370 : [ "LT" ] , 371 : [ "LV" ] , 372 : [ "EE" ] , 373 : [ "MD" ] , 374 : [ "AM" ] , 375 : [ "BY" ] , 376 : [ "AD" ] , 377 : [ "MC" ] , 378 : [ "SM" ] , 380 : [ "UA" ] ,
2014-11-10 02:04:15 +00:00
381 : [ "RS" ] , 382 : [ "ME" ] , 385 : [ "HR" ] , 386 : [ "SI" ] , 387 : [ "BA" ] , 389 : [ "MK" ] , 420 : [ "CZ" ] , 421 : [ "SK" ] , 423 : [ "LI" ] , 500 : [ "FK" ] , 501 : [ "BZ" ] , 502 : [ "GT" ] , 503 : [ "SV" ] , 504 : [ "HN" ] , 505 : [ "NI" ] , 506 : [ "CR" ] , 507 : [ "PA" ] , 508 : [ "PM" ] , 509 : [ "HT" ] , 590 : [ "GP" , "BL" , "MF" ] , 591 : [ "BO" ] , 592 : [ "GY" ] , 593 : [ "EC" ] , 594 : [ "GF" ] , 595 : [ "PY" ] , 596 : [ "MQ" ] , 597 : [ "SR" ] , 598 : [ "UY" ] , 599 : [ "CW" , "BQ" ] , 670 : [ "TL" ] , 672 : [ "NF" ] , 673 : [ "BN" ] , 674 : [ "NR" ] , 675 : [ "PG" ] , 676 : [ "TO" ] , 677 : [ "SB" ] , 678 : [ "VU" ] , 679 : [ "FJ" ] , 680 : [ "PW" ] , 681 : [ "WF" ] , 682 : [ "CK" ] , 683 : [ "NU" ] , 685 : [ "WS" ] , 686 : [ "KI" ] , 687 : [ "NC" ] ,
688 : [ "TV" ] , 689 : [ "PF" ] , 690 : [ "TK" ] , 691 : [ "FM" ] , 692 : [ "MH" ] , 800 : [ "001" ] , 808 : [ "001" ] , 850 : [ "KP" ] , 852 : [ "HK" ] , 853 : [ "MO" ] , 855 : [ "KH" ] , 856 : [ "LA" ] , 870 : [ "001" ] , 878 : [ "001" ] , 880 : [ "BD" ] , 881 : [ "001" ] , 882 : [ "001" ] , 883 : [ "001" ] , 886 : [ "TW" ] , 888 : [ "001" ] , 960 : [ "MV" ] , 961 : [ "LB" ] , 962 : [ "JO" ] , 963 : [ "SY" ] , 964 : [ "IQ" ] , 965 : [ "KW" ] , 966 : [ "SA" ] , 967 : [ "YE" ] , 968 : [ "OM" ] , 970 : [ "PS" ] , 971 : [ "AE" ] , 972 : [ "IL" ] , 973 : [ "BH" ] , 974 : [ "QA" ] , 975 : [ "BT" ] , 976 : [ "MN" ] , 977 : [ "NP" ] , 979 : [ "001" ] , 992 : [ "TJ" ] , 993 : [ "TM" ] , 994 : [ "AZ" ] , 995 : [ "GE" ] , 996 : [ "KG" ] , 998 : [ "UZ" ] } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . metadata . countryToMetadata = { AC : [ , [ , , "[46]\\d{4}|[01589]\\d{5}" , "\\d{5,6}" , , , , , , [ 5 , 6 ] ] , [ , , "6[2-467]\\d{3}" , "\\d{5}" , , , "62889" , , , [ 5 ] ] , [ , , "4\\d{4}" , "\\d{5}" , , , "40123" , , , [ 5 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AC" , 247 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "[01589]\\d{5}" , "\\d{6}" , , , "542011" , , , [ 6 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AD : [ , [ , , "(?:[346-9]|180)\\d{5}" , "\\d{6,8}" , , , ,
, , [ 6 , 8 ] ] , [ , , "[78]\\d{5}" , "\\d{6}" , , , "712345" , , , [ 6 ] ] , [ , , "[346]\\d{5}" , "\\d{6}" , , , "312345" , , , [ 6 ] ] , [ , , "180[02]\\d{4}" , "\\d{8}" , , , "18001234" , , , [ 8 ] ] , [ , , "9\\d{5}" , "\\d{6}" , , , "912345" , , , [ 6 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AD" , 376 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{3})" , "$1 $2" , [ "[346-9]" ] ] , [ , "(180[02])(\\d{4})" , "$1 $2" , [ "1" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AE : [ , [ , , "[2-79]\\d{7,8}|800\\d{2,9}" , "\\d{5,12}" ,
, , , , , [ 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "[2-4679][2-8]\\d{6}" , "\\d{7,8}" , , , "22345678" , , , [ 8 ] ] , [ , , "5[024-6]\\d{7}" , "\\d{9}" , , , "501234567" , , , [ 9 ] ] , [ , , "400\\d{6}|800\\d{2,9}" , "\\d{5,12}" , , , "800123456" ] , [ , , "900[02]\\d{5}" , "\\d{9}" , , , "900234567" , , , [ 9 ] ] , [ , , "700[05]\\d{5}" , "\\d{9}" , , , "700012345" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AE" , 971 , "00" , "0" , , , "0" , , , , [ [ , "([2-4679])(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[2-4679][2-8]" ] , "0$1" ] , [ , "(5\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "5" ] , "0$1" ] , [ , "([479]00)(\\d)(\\d{5})" ,
"$1 $2 $3" , [ "[479]0" ] , "$1" ] , [ , "([68]00)(\\d{2,9})" , "$1 $2" , [ "60|8" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "600[25]\\d{5}" , "\\d{9}" , , , "600212345" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AF : [ , [ , , "[2-7]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "(?:[25][0-8]|[34][0-4]|6[0-5])[2-9]\\d{6}" , "\\d{7,9}" , , , "234567890" ] , [ , , "7(?:[014-9]\\d{7}|2[89]\\d{6})" , "\\d{9}" , , , "701234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
"AF" , 93 , "00" , "0" , , , "0" , , , , [ [ , "([2-7]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[2-7]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AG : [ , [ , , "[2589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "268(?:4(?:6[0-38]|84)|56[0-2])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2684601234" ] , [ , , "268(?:464|7(?:2\\d|3[246]|64|7[0-689]|8[02-68]))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2684641234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" ,
"\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "26848[01]\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2684801234" ] , "AG" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "26840[69]\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2684061234" ] , , "268" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AI : [ , [ , , "[2589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "2644(?:6[12]|9[78])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2644612345" ] , [ , , "264(?:235|476|5(?:3[6-9]|8[1-4])|7(?:29|72))\\d{4}" ,
"\\d{7}(?:\\d{3})?" , , , "2642351234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AI" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "264" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AL : [ , [ , , "[2-57]\\d{7}|6\\d{8}|8\\d{5,7}|9\\d{5}" , "\\d{5,9}" , , , , , , [ 6 , 7 , 8 , 9 ] , [ 5 ] ] , [ , , "(?:2(?:[168][1-9]|[247]\\d|9[1-7])|3(?:1[1-3]|[2-6]\\d|[79][1-8]|8[1-9])|4\\d{2}|5(?:1[1-4]|[2-578]\\d|6[1-5]|9[1-7])|8(?:[19][1-5]|[2-6]\\d|[78][1-7]))\\d{5}" ,
"\\d{5,8}" , , , "22345678" , , , [ 8 ] ] , [ , , "6[6-9]\\d{7}" , "\\d{9}" , , , "661234567" , , , [ 9 ] ] , [ , , "800\\d{4}" , "\\d{7}" , , , "8001234" , , , [ 7 ] ] , [ , , "900\\d{3}" , "\\d{6}" , , , "900123" , , , [ 6 ] ] , [ , , "808\\d{3}" , "\\d{6}" , , , "808123" , , , [ 6 ] ] , [ , , "700\\d{5}" , "\\d{8}" , , , "70012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AL" , 355 , "00" , "0" , , , "0" , , , , [ [ , "(4)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "4[0-6]" ] , "0$1" ] , [ , "(6[6-9])(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "6" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[2358][2-5]|4[7-9]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3,5})" ,
"$1 $2" , [ "[235][16-9]|8[016-9]|[79]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AM : [ , [ , , "[1-9]\\d{7}" , "\\d{5,8}" , , , , , , [ 8 ] , [ 5 , 6 ] ] , [ , , "(?:1[0-2]\\d|2(?:2[2-46]|3[1-8]|4[2-69]|5[2-7]|6[1-9]|8[1-7])|3[12]2|47\\d)\\d{5}" , "\\d{5,8}" , , , "10123456" ] , [ , , "(?:4[139]|55|77|9[1-9])\\d{6}" , "\\d{8}" , , , "77123456" ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" ] , [ , , "90[016]\\d{5}" , "\\d{8}" , , , "90012345" ] , [ , , "80[1-4]\\d{5}" , "\\d{8}" , , , "80112345" ] , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "60(?:2[078]|[3-7]\\d|8[0-5])\\d{4}" , "\\d{8}" , , , "60271234" ] , "AM" , 374 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{6})" , "$1 $2" , [ "1|47" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{6})" , "$1 $2" , [ "4[139]|[5-7]|9[1-9]" ] , "0$1" ] , [ , "(\\d{3})(\\d{5})" , "$1 $2" , [ "[23]" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "8|90" ] , "0 $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AO : [ , [ , , "[29]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "2\\d(?:[26-9]\\d|\\d[26-9])\\d{5}" , "\\d{9}" ,
, , "222123456" ] , [ , , "9[1-49]\\d{7}" , "\\d{9}" , , , "923123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AO" , 244 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AR : [ , [ , , "11\\d{8}|[2368]\\d{9}|9\\d{10}" , "\\d{6,11}" , , , , , , [ 10 , 11 ] , [ 6 , 7 , 8 ] ] , [ , , "11\\d{8}|(?:2(?:2(?:[013]\\d|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[067]\\d)|4(?:7[3-8]|9\\d)|6(?:[01346]\\d|2[24-6]|5[15-8])|80\\d|9(?:[0124789]\\d|3[1-6]|5[234]|6[2-46]))|3(?:3(?:2[79]|6\\d|8[2578])|4(?:[78]\\d|0[0124-9]|[1-35]\\d|4[24-7]|6[02-9]|9[123678])|5(?:[138]\\d|2[1245]|4[1-9]|6[2-4]|7[1-6])|6[24]\\d|7(?:[0469]\\d|1[1568]|2[013-9]|3[145]|5[14-8]|7[2-57]|8[0-24-9])|8(?:[013578]\\d|2[15-7]|4[13-6]|6[1-357-9]|9[124]))|670\\d)\\d{6}" ,
"\\d{6,10}" , , , "1123456789" , , , [ 10 ] ] , [ , , "675\\d{7}|9(?:11[2-9]\\d{7}|(?:2(?:2[013]|3[067]|49|6[01346]|80|9[147-9])|3(?:36|4[12358]|5[138]|6[24]|7[069]|8[013578]))[2-9]\\d{6}|\\d{4}[2-9]\\d{5})" , "\\d{6,11}" , , , "91123456789" , , , [ 11 ] ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "60[04579]\\d{7}" , "\\d{10}" , , , "6001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AR" , 54 , "00" , "0" , , , "0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))?15)?" ,
2016-01-22 23:34:30 +00:00
"9$1" , , , [ [ , "([68]\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[68]" ] , "0$1" ] , [ , "(\\d{2})(\\d{4})" , "$1-$2" , [ "[2-9]" ] , "$1" ] , [ , "(\\d{3})(\\d{4})" , "$1-$2" , [ "[2-9]" ] , "$1" ] , [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "[2-9]" ] , "$1" ] , [ , "(9)(11)(\\d{4})(\\d{4})" , "$2 15-$3-$4" , [ "911" ] , "0$1" ] , [ , "(9)(\\d{3})(\\d{3})(\\d{4})" , "$2 15-$3-$4" , [ "9(?:2[234689]|3[3-8])" , "9(?:2(?:2[013]|3[067]|49|6[01346]|80|9[147-9])|3(?:36|4[1-358]|5[138]|6[24]|7[069]|8[013578]))" , "9(?:2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3[456]|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45])))" ,
"9(?:2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3(?:4|5[014]|6[1239])|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45])))" ] , "0$1" ] , [ , "(9)(\\d{4})(\\d{2})(\\d{4})" , "$2 15-$3-$4" , [ "9[23]" ] , "0$1" ] , [ , "(11)(\\d{4})(\\d{4})" , "$1 $2-$3" , [ "1" ] , "0$1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2-$3" , [ "2(?:2[013]|3[067]|49|6[01346]|80|9[147-9])|3(?:36|4[1-358]|5[138]|6[24]|7[069]|8[013578])" , "2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3[456]|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45]))" ,
"2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3(?:4|5[014]|6[1239])|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45]))" ] , "0$1" , , 1 ] , [ , "(\\d{4})(\\d{2})(\\d{4})" , "$1 $2-$3" , [ "[23]" ] , "0$1" , , 1 ] , [ , "(\\d{3})" , "$1" , [ "1[012]|911" ] , "$1" ] ] , [ [ , "([68]\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[68]" ] , "0$1" ] , [ , "(9)(11)(\\d{4})(\\d{4})" , "$1 $2 $3-$4" , [ "911" ] ] , [ , "(9)(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3-$4" , [ "9(?:2[234689]|3[3-8])" , "9(?:2(?:2[013]|3[067]|49|6[01346]|80|9[147-9])|3(?:36|4[1-358]|5[138]|6[24]|7[069]|8[013578]))" ,
"9(?:2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3[456]|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45])))" , "9(?:2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3(?:4|5[014]|6[1239])|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45])))" ] ] , [ , "(9)(\\d{4})(\\d{2})(\\d{4})" , "$1 $2 $3-$4" , [ "9[23]" ] ] , [ , "(11)(\\d{4})(\\d{4})" , "$1 $2-$3" , [ "1" ] , "0$1" ,
, 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2-$3" , [ "2(?:2[013]|3[067]|49|6[01346]|80|9[147-9])|3(?:36|4[1-358]|5[138]|6[24]|7[069]|8[013578])" , "2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3[456]|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45]))" , "2(?:2(?:0[013-9]|[13])|3(?:0[013-9]|[67])|49|6(?:[0136]|4[0-59])|8|9(?:[19]|44|7[013-9]|8[14]))|3(?:36|4(?:[12]|3(?:4|5[014]|6[1239])|[58]4)|5(?:1|3[0-24-689]|8[46])|6|7[069]|8(?:[01]|34|[578][45]))" ] ,
2016-10-30 10:47:58 +00:00
"0$1" , , 1 ] , [ , "(\\d{4})(\\d{2})(\\d{4})" , "$1 $2-$3" , [ "[23]" ] , "0$1" , , 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "810\\d{7}" , "\\d{10}" , , , "8101234567" , , , [ 10 ] ] , [ , , "810\\d{7}" , "\\d{10}" , , , "8101234567" , , , [ 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AS : [ , [ , , "[5689]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "6846(?:22|33|44|55|77|88|9[19])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6846221234" ] , [ , , "684(?:2(?:5[2468]|72)|7(?:3[13]|70))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6847331234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] ,
[ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AS" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "684" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AT : [ , [ , , "[1-9]\\d{3,12}" , "\\d{3,13}" , , , , , , [ 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 ] , [ 3 ] ] , [ , , "1\\d{3,12}|(?:2(?:1[467]|2[13-8]|5[2357]|6[1-46-8]|7[1-8]|8[124-7]|9[1458])|3(?:1[1-8]|3[23568]|4[5-7]|5[1378]|6[1-38]|8[3-68])|4(?:2[1-8]|35|63|7[1368]|8[2457])|5(?:12|2[1-8]|3[357]|4[147]|5[12578]|6[37])|6(?:13|2[1-47]|4[1-35-8]|5[468]|62)|7(?:2[1-8]|3[25]|4[13478]|5[68]|6[16-8]|7[1-6]|9[45]))\\d{3,10}" ,
"\\d{3,13}" , , , "1234567890" ] , [ , , "6(?:5[0-3579]|6[013-9]|[7-9]\\d)\\d{4,10}" , "\\d{7,13}" , , , "664123456" , , , [ 7 , 8 , 9 , 10 , 11 , 12 , 13 ] ] , [ , , "800\\d{6,10}" , "\\d{9,13}" , , , "800123456" , , , [ 9 , 10 , 11 , 12 , 13 ] ] , [ , , "9(?:0[01]|3[019])\\d{6,10}" , "\\d{9,13}" , , , "900123456" , , , [ 9 , 10 , 11 , 12 , 13 ] ] , [ , , "8(?:10\\d|2(?:[01]\\d|8\\d?))\\d{5,9}" , "\\d{8,13}" , , , "810123456" , , , [ 8 , 9 , 10 , 11 , 12 , 13 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "780\\d{6,10}" , "\\d{9,13}" , , , "780123456" , , , [ 9 , 10 , 11 , 12 , 13 ] ] , "AT" , 43 , "00" , "0" , , , "0" , , , , [ [ , "(116\\d{3})" , "$1" , [ "116" ] , "$1" ] ,
[ , "(1)(\\d{3,12})" , "$1 $2" , [ "1" ] , "0$1" ] , [ , "(5\\d)(\\d{3,5})" , "$1 $2" , [ "5[079]" ] , "0$1" ] , [ , "(5\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "5[079]" ] , "0$1" ] , [ , "(5\\d)(\\d{4})(\\d{4,7})" , "$1 $2 $3" , [ "5[079]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3,10})" , "$1 $2" , [ "316|46|51|732|6(?:5[0-3579]|[6-9])|7(?:[28]0)|[89]" ] , "0$1" ] , [ , "(\\d{4})(\\d{3,9})" , "$1 $2" , [ "2|3(?:1[1-578]|[3-8])|4[2378]|5[2-6]|6(?:[12]|4[1-9]|5[468])|7(?:2[1-8]|35|4[1-8]|[5-79])" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:(?:0[1-9]|17)\\d{2,10}|[79]\\d{3,11})|720\\d{6,10}" ,
"\\d{5,13}" , , , "50123" , , , [ 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AU : [ , [ , , "[1-578]\\d{5,9}" , "\\d{6,10}" , , , , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] ] , [ , , "[237]\\d{8}|8(?:[6-8]\\d{3}|9(?:[02-9]\\d{2}|1(?:[0-57-9]\\d|6[0135-9])))\\d{4}" , "\\d{8,9}" , , , "212345678" , , , [ 9 ] ] , [ , , "14(?:5\\d|71)\\d{5}|4(?:[0-3]\\d|4[47-9]|5[0-25-9]|6[6-9]|7[02-9]|8[147-9]|9[017-9])\\d{6}" , "\\d{9}" , , , "412345678" , , , [ 9 ] ] , [ , , "180(?:0\\d{3}|2)\\d{3}" , "\\d{7,10}" , , , "1800123456" , , , [ 7 , 10 ] ] , [ , , "19(?:0[0126]\\d|[679])\\d{5}" , "\\d{8,10}" , , , "1900123456" ,
, , [ 8 , 10 ] ] , [ , , "13(?:00\\d{3}|45[0-4]|\\d)\\d{3}" , "\\d{6,10}" , , , "1300123456" , , , [ 6 , 8 , 10 ] ] , [ , , "500\\d{6}" , "\\d{9}" , , , "500123456" , , , [ 9 ] ] , [ , , "550\\d{6}" , "\\d{9}" , , , "550123456" , , , [ 9 ] ] , "AU" , 61 , "(?:14(?:1[14]|34|4[17]|[56]6|7[47]|88))?001[14-689]" , "0" , , , "0" , , "0011" , , [ [ , "([2378])(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "[2378]" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[45]|14" ] , "0$1" ] , [ , "(16)(\\d{3})(\\d{2,4})" , "$1 $2 $3" , [ "16" ] , "0$1" ] , [ , "(1[389]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1(?:[38]0|90)" , "1(?:[38]00|90)" ] ,
"$1" ] , [ , "(180)(2\\d{3})" , "$1 $2" , [ "180" , "1802" ] , "$1" ] , [ , "(19\\d)(\\d{3})" , "$1 $2" , [ "19[13]" ] , "$1" ] , [ , "(19\\d{2})(\\d{4})" , "$1 $2" , [ "19[679]" ] , "$1" ] , [ , "(13)(\\d{2})(\\d{2})" , "$1 $2 $3" , [ "13[1-9]" ] , "$1" ] ] , , [ , , "16\\d{3,7}" , "\\d{5,9}" , , , "1612345" , , , [ 5 , 6 , 7 , 8 , 9 ] ] , 1 , , [ , , "1(?:3(?:00\\d{3}|45[0-4]|\\d)\\d{3}|80(?:0\\d{6}|2\\d{3}))" , "\\d{6,10}" , , , "1300123456" , , , [ 6 , 7 , 8 , 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AW : [ , [ , , "[25-9]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "5(?:2\\d|8[1-9])\\d{4}" , "\\d{7}" , , , "5212345" ] ,
[ , , "(?:5(?:6\\d|9[2-478])|6(?:[039]0|22|4[01]|6[0-2])|7[34]\\d|9(?:6[45]|9[4-8]))\\d{4}" , "\\d{7}" , , , "5601234" ] , [ , , "800\\d{4}" , "\\d{7}" , , , "8001234" ] , [ , , "900\\d{4}" , "\\d{7}" , , , "9001234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "28\\d{5}|501\\d{4}" , "\\d{7}" , , , "5011234" ] , "AW" , 297 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AX : [ , [ , , "[135]\\d{5,9}|[27]\\d{4,9}|4\\d{5,10}|6\\d{7,8}|8\\d{6,9}" ,
"\\d{5,12}" , , , , , , [ 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "18[1-8]\\d{3,9}" , "\\d{6,12}" , , , "1812345678" , , , [ 6 , 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "4\\d{5,10}|50\\d{4,8}" , "\\d{6,11}" , , , "412345678" , , , [ 6 , 7 , 8 , 9 , 10 , 11 ] ] , [ , , "800\\d{4,7}" , "\\d{7,10}" , , , "8001234567" , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "[67]00\\d{5,6}" , "\\d{8,9}" , , , "600123456" , , , [ 8 , 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AX" , 358 , "00|99(?:[02469]|5(?:11|33|5[59]|88|9[09]))" , "0" , , , "0" , , "00" , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "[13]00\\d{3,7}|2(?:0(?:0\\d{3,7}|2[023]\\d{1,6}|9[89]\\d{1,6}))|60(?:[12]\\d{5,6}|6\\d{7})|7(?:1\\d{7}|3\\d{8}|5[03-9]\\d{2,7})" ,
"\\d{5,10}" , , , "100123" , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] ] , [ , , "[13]0\\d{4,8}|2(?:0(?:[016-8]\\d{3,7}|[2-59]\\d{2,7})|9\\d{4,8})|60(?:[12]\\d{5,6}|6\\d{7})|7(?:1\\d{7}|3\\d{8}|5[03-9]\\d{2,7})" , "\\d{5,10}" , , , "10112345" , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , AZ : [ , [ , , "[1-9]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "(?:1[28]\\d{3}|2(?:02|1[24]|2[2-4]|33|[45]2|6[23])\\d{2}|365(?:[0-46-9]\\d|5[0-35-9]))\\d{4}" , "\\d{7,9}" , , , "123123456" ] , [ , , "(?:36554|(?:4[04]|5[015]|60|7[07])\\d{3})\\d{4}" , "\\d{9}" , , , "401234567" ] , [ , , "88\\d{7}" ,
"\\d{9}" , , , "881234567" ] , [ , , "900200\\d{3}" , "\\d{9}" , , , "900200123" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "AZ" , 994 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "(?:1[28]|2(?:[45]2|[0-36])|365)" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[4-8]" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "9" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BA : [ ,
[ , , "[3-9]\\d{7,8}" , "\\d{6,9}" , , , , , , [ 8 , 9 ] , [ 6 ] ] , [ , , "(?:[35]\\d|49)\\d{6}" , "\\d{6,8}" , , , "30123456" , , , [ 8 ] ] , [ , , "6(?:03|44|71|[1-356])\\d{6}" , "\\d{8,9}" , , , "61123456" ] , [ , , "8[08]\\d{6}" , "\\d{8}" , , , "80123456" , , , [ 8 ] ] , [ , , "9[0246]\\d{6}" , "\\d{8}" , , , "90123456" , , , [ 8 ] ] , [ , , "8[12]\\d{6}" , "\\d{8}" , , , "82123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BA" , 387 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2-$3" , [ "[3-5]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "6[1-356]|[7-9]" ] , "0$1" ] , [ ,
"(\\d{2})(\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3 $4" , [ "6[047]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "70[23]\\d{5}" , "\\d{8}" , , , "70223456" , , , [ 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BB : [ , [ , , "[2589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "246(?:2(?:2[78]|7[0-4])|4(?:1[024-6]|2\\d|3[2-9])|5(?:20|[34]\\d|54|7[1-3])|6(?:2\\d|38)|7(?:37|57)|9(?:1[89]|63))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2464123456" ] , [ , , "246(?:2(?:[356]\\d|4[0-57-9]|8[0-79])|45\\d|8(?:[2-5]\\d|83))\\d{4}" , "\\d{7}(?:\\d{3})?" ,
, , "2462501234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900\\d{7}|246976\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "24631\\d{5}" , "\\d{7}(?:\\d{3})?" , , , "2463101234" ] , "BB" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "246" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "246(?:292|41[7-9]|43[01])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2464301234" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BD : [ , [ , , "[2-79]\\d{5,9}|1\\d{9}|8[0-7]\\d{4,8}" ,
"\\d{6,10}" , , , , , , [ 6 , 7 , 8 , 9 , 10 ] ] , [ , , "2(?:550\\d|7(?:1[0-267]|2[0-289]|3[0-29]|4[01]|5[1-3]|6[013]|7[017]|91)|8(?:0[125]|[139][1-6]|2[0157-9]|6[1-35]|7[1-5]|8[1-8]|90)|9(?:0[0-2]|1[0-4]|2[568]|3[3-6]|5[5-7]|6[0167]|7[15]|8[0146-8]))\\d{4}|3(?:12?[5-7]\\d{2}|0(?:2(?:[025-79]\\d|[348]\\d{1,2})|3(?:[2-4]\\d|[56]\\d?))|2(?:1\\d{2}|2(?:[12]\\d|[35]\\d{1,2}|4\\d?))|3(?:1\\d{2}|2(?:[2356]\\d|4\\d{1,2}))|4(?:1\\d{2}|2(?:2\\d{1,2}|[47]|5\\d{2}))|5(?:1\\d{2}|29)|[67]1\\d{2}|8(?:1\\d{2}|2(?:2\\d{2}|3|4\\d)))\\d{3}|4(?:0(?:2(?:[09]\\d|7)|33\\d{2})|1\\d{3}|2(?:1\\d{2}|2(?:[25]\\d?|[348]\\d|[67]\\d{1,2}))|3(?:1\\d{2}(?:\\d{2})?|2(?:[045]\\d|[236-9]\\d{1,2})|32\\d{2})|4(?:[18]\\d{2}|2(?:[2-46]\\d{2}|3)|5[25]\\d{2})|5(?:1\\d{2}|2(?:3\\d|5))|6(?:[18]\\d{2}|2(?:3(?:\\d{2})?|[46]\\d{1,2}|5\\d{2}|7\\d)|5(?:3\\d?|4\\d|[57]\\d{1,2}|6\\d{2}|8))|71\\d{2}|8(?:[18]\\d{2}|23\\d{2}|54\\d{2})|9(?:[18]\\d{2}|2[2-5]\\d{2}|53\\d{1,2}))\\d{3}|5(?:02[03489]\\d{2}|1\\d{2}|2(?:1\\d{2}|2(?:2(?:\\d{2})?|[457]\\d{2}))|3(?:1\\d{2}|2(?:[37](?:\\d{2})?|[569]\\d{2}))|4(?:1\\d{2}|2[46]\\d{2})|5(?:1\\d{2}|26\\d{1,2})|6(?:[18]\\d{2}|2|53\\d{2})|7(?:1|24)\\d{2}|8(?:1|26)\\d{2}|91\\d{2})\\d{3}|6(?:0(?:1\\d{2}|2(?:3\\d{2}|4\\d{1,2}))|2(?:2[2-5]\\d{2}|5(?:[3-5]\\d{2}|7)|8\\d{2})|3(?:1|2[3478])\\d{2}|4(?:1|2[34])\\d{2}|5(?:1|2[47])\\d{2}|6(?:[18]\\d{2}|6(?:2(?:2\\d|[34]\\d{2})|5(?:[24]\\d{2}|3\\d|5\\d{1,2})))|72[2-5]\\d{2}|8(?:1\\d{2}|2[2-5]\\d{2})|9(?:1\\d{2}|2[2-6]\\d{2}))\\d{3}|7(?:(?:02|[3-589]1|6[12]|72[24])\\d{2}|21\\d{3}|32)\\d{3}|8(?:(?:4[12]|[5-7]2|1\\d?)|(?:0|3[12]|[5-7]1|217)\\d)\\d{4}|9(?:[35]1|(?:[024]2|81)\\d|(?:1|[24]1)\\d{2})\\d{3}" ,
"\\d{6,9}" , , , "27111234" , , , [ 6 , 7 , 8 , 9 ] ] , [ , , "(?:1[13-9]\\d|(?:3[78]|44)[02-9]|6(?:44|6[02-9]))\\d{7}" , "\\d{10}" , , , "1812345678" , , , [ 10 ] ] , [ , , "80[03]\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "96(?:0[49]|1[0-4]|6[69])\\d{6}" , "\\d{10}" , , , "9604123456" , , , [ 10 ] ] , "BD" , 880 , "00" , "0" , , , "0" , , , , [ [ , "(2)(\\d{7,8})" , "$1-$2" , [ "2" ] , "0$1" ] , [ , "(\\d{2})(\\d{4,6})" , "$1-$2" , [ "[3-79]1" ] , "0$1" ] , [ , "(\\d{4})(\\d{3,6})" , "$1-$2" , [ "1|3(?:0|[2-58]2)|4(?:0|[25]2|3[23]|[4689][25])|5(?:[02-578]2|6[25])|6(?:[0347-9]2|[26][25])|7[02-9]2|8(?:[023][23]|[4-7]2)|9(?:[02][23]|[458]2|6[016])" ] ,
"0$1" ] , [ , "(\\d{3})(\\d{3,7})" , "$1-$2" , [ "[3-79][2-9]|8" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BE : [ , [ , , "[1-9]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "(?:1[0-69]|[23][2-8]|4[23]|5\\d|6[013-57-9]|71|8[1-79]|9[2-4])\\d{6}|80[2-8]\\d{5}" , "\\d{8}" , , , "12345678" , , , [ 8 ] ] , [ , , "4(?:6[0135-8]|[79]\\d|8[3-9])\\d{6}" , "\\d{9}" , , , "470123456" , , , [ 9 ] ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "(?:70[2-467]|90[0-79])\\d{5}" , "\\d{8}" , , , "90123456" ,
, , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BE" , 32 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "4[6-9]" ] , "0$1" ] , [ , "(\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[23]|4[23]|9[2-4]" ] , "0$1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[156]|7[018]|8(?:0[1-9]|[1-79])" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "(?:80|9)0" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "78\\d{6}" , "\\d{8}" , , , "78123456" , , , [ 8 ] ] ,
, , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BF : [ , [ , , "[25-7]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:0(?:49|5[23]|9[016-9])|4(?:4[569]|5[4-6]|7[0179])|5(?:[34]\\d|50))\\d{4}" , "\\d{8}" , , , "20491234" ] , [ , , "(?:55[0-5]|6(?:[0-689]\\d|7[0-5]))\\d{5}|7\\d{7}" , "\\d{8}" , , , "70123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BF" , 226 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BG : [ , [ , , "[23567]\\d{5,7}|[489]\\d{6,8}" , "\\d{5,9}" , , , , , , [ 6 , 7 , 8 , 9 ] , [ 4 , 5 ] ] , [ , , "2\\d{5,7}|(?:[36]\\d|5[1-9]|8[1-6]|9[1-7])\\d{5,6}|(?:4(?:[124-7]\\d|3[1-6])|7(?:0[1-9]|[1-9]\\d))\\d{4,5}" , "\\d{5,8}" , , , "2123456" , , , [ 6 , 7 , 8 ] ] , [ , , "(?:8[7-9]\\d|9(?:8\\d|99))\\d{6}|4(?:3[0789]|8\\d)\\d{5}" , "\\d{8,9}" , , , "48123456" , , , [ 8 , 9 ] ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "90\\d{6}" , "\\d{8}" , , , "90123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "700\\d{5}" , "\\d{5,9}" , , , "70012345" ,
, , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BG" , 359 , "00" , "0" , , , "0" , , , , [ [ , "(2)(\\d)(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "2" ] , "0$1" ] , [ , "(2)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "2" ] , "0$1" ] , [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "43[124-7]|70[1-9]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{2})" , "$1 $2 $3" , [ "43[124-7]|70[1-9]" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "[78]00" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "999" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{2,3})" , "$1 $2 $3" , [ "[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3,4})" ,
"$1 $2 $3" , [ "48|8[7-9]|9[08]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BH : [ , [ , , "[136-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "(?:1(?:3[1356]|6[0156]|7\\d)\\d|6(?:1[16]\\d|500|6(?:0\\d|3[12]|44|7[7-9])|9[69][69])|7(?:1(?:11|78)|7\\d{2}))\\d{4}" , "\\d{8}" , , , "17001234" ] , [ , , "(?:3(?:[1-4679]\\d|5[013-69]|8[0-47-9])\\d|6(?:3(?:00|33|6[16])|6(?:[69]\\d|3[03-9]|7[0-6])))\\d{4}" , "\\d{8}" , , , "36001234" ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80123456" ] , [ , , "(?:87|9[014578])\\d{6}" ,
"\\d{8}" , , , "90123456" ] , [ , , "84\\d{6}" , "\\d{8}" , , , "84123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BH" , 973 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BI : [ , [ , , "[267]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "22\\d{6}" , "\\d{8}" , , , "22201234" ] , [ , , "(?:29|6[189]|7[124-9])\\d{6}" , "\\d{8}" , , , "79561234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , "BI" , 257 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BJ : [ , [ , , "[2689]\\d{7}|7\\d{3}" , "\\d{4,8}" , , , , , , [ 4 , 8 ] ] , [ , , "2(?:02|1[037]|2[45]|3[68])\\d{5}" , "\\d{8}" , , , "20211234" , , , [ 8 ] ] , [ , , "(?:6[1-8]|9[03-9])\\d{6}" , "\\d{8}" , , , "90011234" , , , [ 8 ] ] , [ , , "7[3-5]\\d{2}" , "\\d{4}" , , , "7312" , , , [ 4 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "857[58]\\d{4}" ,
"\\d{8}" , , , "85751234" , , , [ 8 ] ] , "BJ" , 229 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "81\\d{6}" , "\\d{8}" , , , "81123456" , , , [ 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BL : [ , [ , , "[56]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "590(?:2[7-9]|5[12]|87)\\d{4}" , "\\d{9}" , , , "590271234" ] , [ , , "690(?:0[0-7]|[1-9]\\d)\\d{4}" , "\\d{9}" , , , "690301234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
"BL" , 590 , "00" , "0" , , , "0" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BM : [ , [ , , "[4589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "441(?:2(?:02|23|61|[3479]\\d)|[46]\\d{2}|5(?:4\\d|60|89)|824)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "4412345678" ] , [ , , "441(?:[37]\\d|5[0-39])\\d{5}" , "\\d{7}(?:\\d{3})?" , , , "4413701234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BM" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "441" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BN : [ , [ , , "[2-578]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "2(?:[013-9]\\d|2[0-7])\\d{4}|[3-5]\\d{6}" , "\\d{7}" , , , "2345678" ] , [ , , "22[89]\\d{4}|[78]\\d{6}" , "\\d{7}" , , , "7123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , ,
, [ - 1 ] ] , "BN" , 673 , "00" , , , , , , , , [ [ , "([2-578]\\d{2})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BO : [ , [ , , "[23467]\\d{7}" , "\\d{7,8}" , , , , , , [ 8 ] , [ 7 ] ] , [ , , "(?:2(?:2\\d{2}|5(?:11|[258]\\d|9[67])|6(?:12|2\\d|9[34])|8(?:2[34]|39|62))|3(?:3\\d{2}|4(?:6\\d|8[24])|8(?:25|42|5[257]|86|9[25])|9(?:2\\d|3[234]|4[248]|5[24]|6[2-6]|7\\d))|4(?:4\\d{2}|6(?:11|[24689]\\d|72)))\\d{4}" , "\\d{7,8}" , , , "22123456" ] , [ , , "[67]\\d{7}" , "\\d{8}" , , , "71234567" ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BO" , 591 , "00(1\\d)?" , "0" , , , "0(1\\d)?" , , , , [ [ , "([234])(\\d{7})" , "$1 $2" , [ "[234]" ] , , "0$CC $1" ] , [ , "([67]\\d{7})" , "$1" , [ "[67]" ] , , "0$CC $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BQ : [ , [ , , "[347]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "(?:318[023]|416[023]|7(?:1[578]|50)\\d)\\d{3}" , "\\d{7}" , , , "7151234" ] , [ , , "(?:318[14-68]|416[15-9]|7(?:0[01]|7[07]|[89]\\d)\\d)\\d{3}" ,
"\\d{7}" , , , "3181234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BQ" , 599 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BR : [ , [ , , "[1-46-9]\\d{7,10}|5(?:[0-4]\\d{7,9}|5(?:[2-8]\\d{7}|9\\d{7,8}))" , "\\d{8,11}" , , , , , , [ 8 , 9 , 10 , 11 ] ] , [ , , "(?:[14689][1-9]|2[12478]|3[1-578]|5[1-5]|7[13-579])[2-5]\\d{7}" , "\\d{8,11}" , , , "1123456789" , , , [ 10 ] ] , [ , , "1[1-9](?:7|9\\d)\\d{7}|(?:2[12478]|3[1-578]|[4689][1-9]|5[1-5]|7[13-579])(?:[6-8]|9\\d?)\\d{7}" ,
"\\d{8,11}" , , , "11961234567" , , , [ 10 , 11 ] ] , [ , , "800\\d{6,7}" , "\\d{8,11}" , , , "800123456" , , , [ 9 , 10 ] ] , [ , , "(?:300|[59]00\\d?)\\d{6}" , "\\d{8,11}" , , , "300123456" , , , [ 9 , 10 ] ] , [ , , "(?:300\\d(?:\\d{2})?|40(?:0\\d|20))\\d{4}" , "\\d{8,10}" , , , "40041234" , , , [ 8 , 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BR" , 55 , "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)" , "0" , , , "0(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?" , "$2" , , , [ [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "[2-9](?:[1-9]|0[1-9])" ] , "$1" ] , [ , "(\\d{5})(\\d{4})" , "$1-$2" , [ "9(?:[1-9]|0[1-9])" ] ,
"$1" ] , [ , "(\\d{3,5})" , "$1" , [ "1[125689]" ] , "$1" ] , [ , "(\\d{2})(\\d{5})(\\d{4})" , "$1 $2-$3" , [ "(?:[14689][1-9]|2[12478]|3[1-578]|5[1-5]|7[13-579])9" ] , "($1)" , "0 $CC ($1)" ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1 $2-$3" , [ "[1-9][1-9]" ] , "($1)" , "0 $CC ($1)" ] , [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "(?:300|40(?:0|20))" ] ] , [ , "([3589]00)(\\d{2,3})(\\d{4})" , "$1 $2 $3" , [ "[3589]00" ] , "0$1" ] ] , [ [ , "(\\d{2})(\\d{5})(\\d{4})" , "$1 $2-$3" , [ "(?:[14689][1-9]|2[12478]|3[1-578]|5[1-5]|7[13-579])9" ] , "($1)" , "0 $CC ($1)" ] , [ , "(\\d{2})(\\d{4})(\\d{4})" ,
"$1 $2-$3" , [ "[1-9][1-9]" ] , "($1)" , "0 $CC ($1)" ] , [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "(?:300|40(?:0|20))" ] ] , [ , "([3589]00)(\\d{2,3})(\\d{4})" , "$1 $2 $3" , [ "[3589]00" ] , "0$1" ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "(?:300\\d|40(?:0\\d|20))\\d{4}" , "\\d{8}" , , , "40041234" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BS : [ , [ , , "[2589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "242(?:3(?:02|[236][1-9]|4[0-24-9]|5[0-68]|7[3467]|8[0-4]|9[2-467])|461|502|6(?:0[1-3]|12|7[67]|8[78]|9[89])|7(?:02|88))\\d{4}" , "\\d{7}(?:\\d{3})?" ,
, , "2423456789" ] , [ , , "242(?:3(?:5[79]|[79]5)|4(?:[2-4][1-9]|5[1-8]|6[2-8]|7\\d|81)|5(?:2[45]|3[35]|44|5[1-9]|65|77)|6[34]6|727)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "2423591234" ] , [ , , "242300\\d{4}|8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{7}(?:\\d{3})?" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BS" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "242" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BT : [ , [ , , "[1-8]\\d{6,7}" , "\\d{6,8}" , , , , , , [ 7 , 8 ] , [ 6 ] ] , [ , , "(?:2[3-6]|[34][5-7]|5[236]|6[2-46]|7[246]|8[2-4])\\d{5}" , "\\d{6,7}" , , , "2345678" , , , [ 7 ] ] , [ , , "(?:1[67]|77)\\d{6}" , "\\d{8}" , , , "17123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BT" , 975 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "1|77" ] ] , [ , "([2-8])(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[2-68]|7[246]" ] ] ] ,
, [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BW : [ , [ , , "[2-79]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:2(?:4[0-48]|6[0-24]|9[0578])|3(?:1[0235-9]|55|[69]\\d|7[01])|4(?:6[03]|7[1267]|9[0-5])|5(?:3[0389]|4[0489]|7[1-47]|88|9[0-49])|6(?:2[1-35]|5[149]|8[067]))\\d{4}" , "\\d{7}" , , , "2401234" , , , [ 7 ] ] , [ , , "7(?:[1-6]\\d|7[014-8])\\d{5}" , "\\d{8}" , , , "71123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "90\\d{5}" , "\\d{7}" , , , "9012345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "79[12][01]\\d{4}" , "\\d{8}" , , , "79101234" , , , [ 8 ] ] , "BW" , 267 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[2-6]" ] ] , [ , "(7\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "7" ] ] , [ , "(90)(\\d{5})" , "$1 $2" , [ "9" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BY : [ , [ , , "[1-4]\\d{8}|800\\d{3,7}|[89]\\d{9,10}" , "\\d{5,11}" , , , , , , [ 6 , 7 , 8 , 9 , 10 , 11 ] , [ 5 ] ] , [ , , "(?:1(?:5(?:1[1-5]|[24]\\d|6[2-4]|9[1-7])|6(?:[235]\\d|4[1-7])|7\\d{2})|2(?:1(?:[246]\\d|3[0-35-9]|5[1-9])|2(?:[235]\\d|4[0-8])|3(?:[26]\\d|3[02-79]|4[024-7]|5[03-7])))\\d{5}" ,
"\\d{5,9}" , , , "152450911" , , , [ 9 ] ] , [ , , "(?:2(?:5[5679]|9[1-9])|33\\d|44\\d)\\d{6}" , "\\d{9}" , , , "294911911" , , , [ 9 ] ] , [ , , "8(?:0[13]|20\\d)\\d{7}|800\\d{3,7}" , "\\d{5,11}" , , , "8011234567" ] , [ , , "(?:810|902)\\d{7}" , "\\d{10}" , , , "9021234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "249\\d{6}" , "\\d{9}" , , , "249123456" , , , [ 9 ] ] , "BY" , 375 , "810" , "8" , , , "8?0?" , , "8~10" , , [ [ , "(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2-$3-$4" , [ "17[0-3589]|2[4-9]|[34]" , "17(?:[02358]|1[0-2]|9[0189])|2[4-9]|[34]" ] , "8 0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" ,
"$1 $2-$3-$4" , [ "1(?:5[24]|6[235]|7[467])|2(?:1[246]|2[25]|3[26])" , "1(?:5[24]|6(?:2|3[04-9]|5[0346-9])|7(?:[46]|7[37-9]))|2(?:1[246]|2[25]|3[26])" ] , "8 0$1" ] , [ , "(\\d{4})(\\d{2})(\\d{3})" , "$1 $2-$3" , [ "1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])" , "1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])" ] , "8 0$1" ] , [ , "([89]\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "8[01]|9" ] , "8 $1" ] , [ , "(82\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "82" ] , "8 $1" ] , [ , "(800)(\\d{3})" , "$1 $2" , [ "800" ] , "8 $1" ] ,
[ , "(800)(\\d{2})(\\d{2,4})" , "$1 $2 $3" , [ "800" ] , "8 $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "8(?:[013]|[12]0)\\d{8}|800\\d{3,7}|902\\d{7}" , "\\d{5,11}" , , , "82012345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , BZ : [ , [ , , "[2-8]\\d{6}|0\\d{10}" , "\\d{7}(?:\\d{4})?" , , , , , , [ 7 , 11 ] ] , [ , , "(?:[23458][02]\\d|7(?:[02]\\d|32))\\d{4}" , "\\d{7}" , , , "2221234" , , , [ 7 ] ] , [ , , "6[0-35-7]\\d{5}" , "\\d{7}" , , , "6221234" , , , [ 7 ] ] , [ , , "0800\\d{7}" , "\\d{11}" , , , "08001234123" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , ,
"NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "BZ" , 501 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1-$2" , [ "[2-8]" ] ] , [ , "(0)(800)(\\d{4})(\\d{3})" , "$1-$2-$3-$4" , [ "0" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CA : [ , [ , , "[2-9]\\d{9}|3\\d{6}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 7 , 10 ] ] , [ , , "(?:2(?:04|[23]6|[48]9|50)|3(?:06|43|65)|4(?:03|1[68]|3[178]|50)|5(?:06|1[49]|48|79|8[17])|6(?:0[04]|13|22|39|47)|7(?:0[59]|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}|310\\d{4}" ,
"\\d{7}(?:\\d{3})?" , , , "2042345678" , , , [ 10 ] ] , [ , , "(?:2(?:04|[23]6|[48]9|50)|3(?:06|43|65)|4(?:03|1[68]|3[178]|50)|5(?:06|1[49]|48|79|8[17])|6(?:0[04]|13|22|39|47)|7(?:0[59]|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}" , "\\d{7}(?:\\d{3})?" , , , "2042345678" , , , [ 10 ] ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}|310\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" , , , [ 10 ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , "CA" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CC : [ , [ , , "[1458]\\d{5,9}" , "\\d{6,10}" , , , , , , [ 6 , 7 , 9 , 10 ] , [ 8 ] ] , [ , , "89162\\d{4}" , "\\d{8,9}" , , , "891621234" , , , [ 9 ] ] , [ , , "14(?:5\\d|71)\\d{5}|4(?:[0-2]\\d|3[0-57-9]|4[47-9]|5[0-25-9]|6[6-9]|7[02-9]|8[147-9]|9[017-9])\\d{6}" , "\\d{9}" , , , "412345678" , , , [ 9 ] ] , [ , , "180(?:0\\d{3}|2)\\d{3}" , "\\d{7,10}" , , , "1800123456" , , , [ 7 , 10 ] ] , [ , , "190[0126]\\d{6}" , "\\d{10}" , , , "1900123456" ,
, , [ 10 ] ] , [ , , "13(?:00\\d{2})?\\d{4}" , "\\d{6,10}" , , , "1300123456" , , , [ 6 , 10 ] ] , [ , , "500\\d{6}" , "\\d{9}" , , , "500123456" , , , [ 9 ] ] , [ , , "550\\d{6}" , "\\d{9}" , , , "550123456" , , , [ 9 ] ] , "CC" , 61 , "(?:14(?:1[14]|34|4[17]|[56]6|7[47]|88))?001[14-689]" , "0" , , , "0" , , "0011" , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CD : [ , [ , , "[2-6]\\d{6}|[18]\\d{6,8}|9\\d{8}" , "\\d{7,9}" , , , , , , [ 7 , 9 ] ] , [ , , "1(?:2\\d{7}|\\d{6})|[2-6]\\d{6}" , "\\d{7,9}" , , , "1234567" ] , [ , , "8(?:[0-2459]\\d{2}|8)\\d{5}|9[017-9]\\d{7}" ,
"\\d{7,9}" , , , "991234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CD" , 243 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "12" ] , "0$1" ] , [ , "([89]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "8[0-2459]|9" ] , "0$1" ] , [ , "(\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "88" ] , "0$1" ] , [ , "(\\d{2})(\\d{5})" , "$1 $2" , [ "[1-6]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CF : [ ,
[ , , "[278]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2[12]\\d{6}" , "\\d{8}" , , , "21612345" ] , [ , , "7[0257]\\d{6}" , "\\d{8}" , , , "70012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "8776\\d{4}" , "\\d{8}" , , , "87761234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CF" , 236 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CG : [ , [ , , "[028]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "222[1-589]\\d{5}" , "\\d{9}" ,
, , "222123456" ] , [ , , "0[14-6]\\d{7}" , "\\d{9}" , , , "061234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CG" , 242 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[02]" ] ] , [ , "(\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "8" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CH : [ , [ , , "[2-9]\\d{8}|860\\d{9}" , "\\d{9}(?:\\d{3})?" , , , , , , [ 9 , 12 ] ] , [ , , "(?:2[12467]|3[1-4]|4[134]|5[256]|6[12]|[7-9]1)\\d{7}" ,
"\\d{9}" , , , "212345678" , , , [ 9 ] ] , [ , , "7[5-9]\\d{7}" , "\\d{9}" , , , "781234567" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "90[016]\\d{6}" , "\\d{9}" , , , "900123456" , , , [ 9 ] ] , [ , , "84[0248]\\d{6}" , "\\d{9}" , , , "840123456" , , , [ 9 ] ] , [ , , "878\\d{6}" , "\\d{9}" , , , "878123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CH" , 41 , "00" , "0" , , , "0" , , , , [ [ , "([2-9]\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[2-7]|[89]1" ] , "0$1" ] , [ , "([89]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "8[047]|90" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})" ,
"$1 $2 $3 $4 $5" , [ "860" ] , "0$1" ] ] , , [ , , "74[0248]\\d{6}" , "\\d{9}" , , , "740123456" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5[18]\\d{7}" , "\\d{9}" , , , "581234567" , , , [ 9 ] ] , , , [ , , "860\\d{9}" , "\\d{12}" , , , "860123456789" , , , [ 12 ] ] ] , CI : [ , [ , , "[02-8]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "(?:2(?:0[023]|1[02357]|[23][045]|4[03-5])|3(?:0[06]|1[069]|[2-4][07]|5[09]|6[08]))\\d{5}" , "\\d{8}" , , , "21234567" ] , [ , , "(?:0[1-9]|4\\d|5[14-9]|6[015-79]|7[578]|8[79])\\d{6}" , "\\d{8}" , , , "01234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , ,
"NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CI" , 225 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CK : [ , [ , , "[2-8]\\d{4}" , "\\d{5}" , , , , , , [ 5 ] ] , [ , , "(?:2\\d|3[13-7]|4[1-5])\\d{3}" , "\\d{5}" , , , "21234" ] , [ , , "[5-8]\\d{4}" , "\\d{5}" , , , "71234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CK" ,
682 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CL : [ , [ , , "(?:[2-9]|600|123)\\d{7,8}" , "\\d{7,11}" , , , , , , [ 9 , 10 , 11 ] , [ 7 , 8 ] ] , [ , , "2(?:1962\\d{4}|2\\d{7}|32[0-267]\\d{5})|(?:3[2-5]|[47][1-35]|5[1-3578]|6[13-57])\\d{7}" , "\\d{7,9}" , , , "221234567" , , , [ 9 ] ] , [ , , "9[3-9]\\d{7}" , "\\d{8,9}" , , , "961234567" , , , [ 9 ] ] , [ , , "800\\d{6}|1230\\d{7}" , "\\d{9,11}" , , , "800123456" , , , [ 9 , 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "600\\d{7,8}" , "\\d{10,11}" ,
, , "6001234567" , , , [ 10 , 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "44\\d{7}" , "\\d{9}" , , , "441234567" , , , [ 9 ] ] , "CL" , 56 , "(?:0|1(?:1[0-69]|2[0-57]|5[13-58]|69|7[0167]|8[018]))0" , "0" , , , "0|(1(?:1[0-69]|2[0-57]|5[13-58]|69|7[0167]|8[018]))" , , , , [ [ , "(\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "2[23]" ] , "($1)" , "$CC ($1)" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[357]|4[1-35]|6[13-57]" ] , "($1)" , "$CC ($1)" ] , [ , "(9)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(44)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "44" ] , "0$1" ] , [ , "([68]00)(\\d{3})(\\d{3,4})" ,
"$1 $2 $3" , [ "60|8" ] , "$1" ] , [ , "(600)(\\d{3})(\\d{2})(\\d{3})" , "$1 $2 $3 $4" , [ "60" ] , "$1" ] , [ , "(1230)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1" ] , "$1" ] , [ , "(\\d{5})(\\d{4})" , "$1 $2" , [ "219" ] , "($1)" , "$CC ($1)" ] , [ , "(\\d{4,5})" , "$1" , [ "[1-9]" ] , "$1" ] ] , [ [ , "(\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "2[23]" ] , "($1)" , "$CC ($1)" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[357]|4[1-35]|6[13-57]" ] , "($1)" , "$CC ($1)" ] , [ , "(9)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(44)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "44" ] , "0$1" ] , [ , "([68]00)(\\d{3})(\\d{3,4})" ,
"$1 $2 $3" , [ "60|8" ] , "$1" ] , [ , "(600)(\\d{3})(\\d{2})(\\d{3})" , "$1 $2 $3 $4" , [ "60" ] , "$1" ] , [ , "(1230)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1" ] , "$1" ] , [ , "(\\d{5})(\\d{4})" , "$1 $2" , [ "219" ] , "($1)" , "$CC ($1)" ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "600\\d{7,8}" , "\\d{10,11}" , , , "6001234567" , , , [ 10 , 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CM : [ , [ , , "[2368]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "2(?:22|33|4[23])\\d{6}" , "\\d{9}" , , , "222123456" , , , [ 9 ] ] , [ , , "6[5-9]\\d{7}" , "\\d{9}" , , , "671234567" , , , [ 9 ] ] , [ , , "800\\d{5}" , "\\d{8}" ,
, , "80012345" , , , [ 8 ] ] , [ , , "88\\d{6}" , "\\d{8}" , , , "88012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CM" , 237 , "00" , , , , , , , , [ [ , "([26])(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4 $5" , [ "[26]" ] ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[23]|88" ] ] , [ , "(800)(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "80" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CN : [ , [ , , "[1-7]\\d{6,11}|8[0-357-9]\\d{6,9}|9\\d{7,10}" , "\\d{4,12}" ,
, , , , , [ 7 , 8 , 9 , 10 , 11 , 12 ] , [ 5 , 6 ] ] , [ , , "21(?:100\\d{2}|95\\d{3,4}|\\d{8,10})|(?:10|2[02-57-9]|3(?:11|7[179])|4(?:[15]1|3[1-35])|5(?:1\\d|2[37]|3[12]|51|7[13-79]|9[15])|7(?:31|5[457]|6[09]|91)|8(?:[57]1|98))(?:100\\d{2}|95\\d{3,4}|\\d{8})|(?:3(?:1[02-9]|35|49|5\\d|7[02-68]|9[1-68])|4(?:1[02-9]|2[179]|3[3-9]|5[2-9]|6[4789]|7\\d|8[23])|5(?:3[03-9]|4[36]|5[02-9]|6[1-46]|7[028]|80|9[2-46-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[17]\\d|2[248]|3[04-9]|4[3-6]|5[0-4689]|6[2368]|9[02-9])|8(?:078|1[236-8]|2[5-7]|3\\d|5[1-9]|7[02-9]|8[3678]|9[1-7])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100\\d{2}|95\\d{3,4}|\\d{7})|80(?:29|6[03578]|7[018]|81)\\d{4}" ,
"\\d{4,12}" , , , "1012345678" ] , [ , , "1(?:[38]\\d|4[57]|5[0-35-9]|7[0136-8])\\d{8}" , "\\d{11}" , , , "13123456789" , , , [ 11 ] ] , [ , , "(?:10)?800\\d{7}" , "\\d{10,12}" , , , "8001234567" , , , [ 10 , 12 ] ] , [ , , "16[08]\\d{5}" , "\\d{8}" , , , "16812345" , , , [ 8 ] ] , [ , , "400\\d{7}|950\\d{7,8}|(?:10|2[0-57-9]|3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[4789]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[3678]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))96\\d{3,4}" ,
"\\d{7,11}" , , , "4001234567" , , , [ 7 , 8 , 9 , 10 , 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CN" , 86 , "(1(?:[129]\\d{3}|79\\d{2}))?00" , "0" , , , "(1(?:[129]\\d{3}|79\\d{2}))|0" , , "00" , , [ [ , "(80\\d{2})(\\d{4})" , "$1 $2" , [ "80[2678]" ] , "0$1" , "$CC $1" , 1 ] , [ , "([48]00)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[48]00" ] ] , [ , "(\\d{5,6})" , "$1" , [ "100|95" ] ] , [ , "(\\d{2})(\\d{5,6})" , "$1 $2" , [ "(?:10|2\\d)[19]" , "(?:10|2\\d)(?:10|9[56])" , "(?:10|2\\d)(?:100|9[56])" ] , "0$1" , "$CC $1" ] , [ , "(\\d{3})(\\d{5,6})" , "$1 $2" , [ "[3-9]" , "[3-9]\\d{2}[19]" ,
"[3-9]\\d{2}(?:10|9[56])" ] , "0$1" , "$CC $1" ] , [ , "(\\d{3,4})(\\d{4})" , "$1 $2" , [ "[2-9]" ] ] , [ , "(21)(\\d{4})(\\d{4,6})" , "$1 $2 $3" , [ "21" ] , "0$1" , "$CC $1" , 1 ] , [ , "([12]\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "10[1-9]|2[02-9]" , "10[1-9]|2[02-9]" , "10(?:[1-79]|8(?:[1-9]|0[1-9]))|2[02-9]" ] , "0$1" , "$CC $1" , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "3(?:1[02-9]|35|49|5|7[02-68]|9[1-68])|4(?:1[02-9]|2[179]|[35][2-9]|6[4789]|7\\d|8[23])|5(?:3[03-9]|4[36]|5[02-9]|6[1-46]|7[028]|80|9[2-46-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[04-9]|4[3-6]|6[2368])|8(?:1[236-8]|2[5-7]|3|5[1-9]|7[02-9]|8[3678]|9[1-7])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])" ] ,
"0$1" , "$CC $1" , 1 ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "3(?:11|7[179])|4(?:[15]1|3[1-35])|5(?:1|2[37]|3[12]|51|7[13-79]|9[15])|7(?:31|5[457]|6[09]|91)|8(?:[57]1|98)" ] , "0$1" , "$CC $1" , 1 ] , [ , "(\\d{4})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "807" , "8078" ] , "0$1" , "$CC $1" , 1 ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "1[3-578]" ] , , "$CC $1" ] , [ , "(10800)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "108" , "1080" , "10800" ] ] , [ , "(\\d{3})(\\d{7,8})" , "$1 $2" , [ "950" ] ] ] , [ [ , "(80\\d{2})(\\d{4})" , "$1 $2" , [ "80[2678]" ] , "0$1" , "$CC $1" , 1 ] , [ , "([48]00)(\\d{3})(\\d{4})" ,
"$1 $2 $3" , [ "[48]00" ] ] , [ , "(\\d{2})(\\d{5,6})" , "$1 $2" , [ "(?:10|2\\d)[19]" , "(?:10|2\\d)(?:10|9[56])" , "(?:10|2\\d)(?:100|9[56])" ] , "0$1" , "$CC $1" ] , [ , "(\\d{3})(\\d{5,6})" , "$1 $2" , [ "[3-9]" , "[3-9]\\d{2}[19]" , "[3-9]\\d{2}(?:10|9[56])" ] , "0$1" , "$CC $1" ] , [ , "(21)(\\d{4})(\\d{4,6})" , "$1 $2 $3" , [ "21" ] , "0$1" , "$CC $1" , 1 ] , [ , "([12]\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "10[1-9]|2[02-9]" , "10[1-9]|2[02-9]" , "10(?:[1-79]|8(?:[1-9]|0[1-9]))|2[02-9]" ] , "0$1" , "$CC $1" , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "3(?:1[02-9]|35|49|5|7[02-68]|9[1-68])|4(?:1[02-9]|2[179]|[35][2-9]|6[4789]|7\\d|8[23])|5(?:3[03-9]|4[36]|5[02-9]|6[1-46]|7[028]|80|9[2-46-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[04-9]|4[3-6]|6[2368])|8(?:1[236-8]|2[5-7]|3|5[1-9]|7[02-9]|8[3678]|9[1-7])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])" ] ,
"0$1" , "$CC $1" , 1 ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "3(?:11|7[179])|4(?:[15]1|3[1-35])|5(?:1|2[37]|3[12]|51|7[13-79]|9[15])|7(?:31|5[457]|6[09]|91)|8(?:[57]1|98)" ] , "0$1" , "$CC $1" , 1 ] , [ , "(\\d{4})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "807" , "8078" ] , "0$1" , "$CC $1" , 1 ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "1[3-578]" ] , , "$CC $1" ] , [ , "(10800)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "108" , "1080" , "10800" ] ] , [ , "(\\d{3})(\\d{7,8})" , "$1 $2" , [ "950" ] ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "(?:4|(?:10)?8)00\\d{7}|950\\d{7,8}" , "\\d{10,12}" ,
, , "4001234567" , , , [ 10 , 11 , 12 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CO : [ , [ , , "(?:[13]\\d{0,3}|[24-8])\\d{7}" , "\\d{7,11}" , , , , , , [ 8 , 10 , 11 ] , [ 7 ] ] , [ , , "[124-8][2-9]\\d{6}" , "\\d{8}" , , , "12345678" , , , [ 8 ] ] , [ , , "3(?:0[0-5]|1\\d|2[0-3]|5[01])\\d{7}" , "\\d{10}" , , , "3211234567" , , , [ 10 ] ] , [ , , "1800\\d{7}" , "\\d{11}" , , , "18001234567" , , , [ 11 ] ] , [ , , "19(?:0[01]|4[78])\\d{7}" , "\\d{11}" , , , "19001234567" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CO" , 57 , "00(?:4(?:[14]4|56)|[579])" , "0" ,
, , "0([3579]|4(?:44|56))?" , , , , [ [ , "(\\d)(\\d{7})" , "$1 $2" , [ "1(?:8[2-9]|9[0-3]|[2-7])|[24-8]" , "1(?:8[2-9]|9(?:09|[1-3])|[2-7])|[24-8]" ] , "($1)" , "0$CC $1" ] , [ , "(\\d{3})(\\d{7})" , "$1 $2" , [ "3" ] , , "0$CC $1" ] , [ , "(1)(\\d{3})(\\d{7})" , "$1-$2-$3" , [ "1(?:80|9[04])" , "1(?:800|9(?:0[01]|4[78]))" ] , "0$1" ] ] , [ [ , "(\\d)(\\d{7})" , "$1 $2" , [ "1(?:8[2-9]|9[0-3]|[2-7])|[24-8]" , "1(?:8[2-9]|9(?:09|[1-3])|[2-7])|[24-8]" ] , "($1)" , "0$CC $1" ] , [ , "(\\d{3})(\\d{7})" , "$1 $2" , [ "3" ] , , "0$CC $1" ] , [ , "(1)(\\d{3})(\\d{7})" , "$1 $2 $3" , [ "1(?:80|9[04])" ,
"1(?:800|9(?:0[01]|4[78]))" ] ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CR : [ , [ , , "[24-9]\\d{7,9}" , "\\d{8,10}" , , , , , , [ 8 , 10 ] ] , [ , , "2[0-24-7]\\d{6}" , "\\d{8}" , , , "22123456" , , , [ 8 ] ] , [ , , "5(?:0[01]|7[0-3])\\d{5}|(?:[67][0-3]|8[3-9])\\d{6}" , "\\d{8}" , , , "83123456" , , , [ 8 ] ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "90[059]\\d{7}" , "\\d{10}" , , , "9001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "210[0-6]\\d{4}|4\\d{7}|5100\\d{4}" ,
"\\d{8}" , , , "40001234" , , , [ 8 ] ] , "CR" , 506 , "00" , , , , "(19(?:0[012468]|1[09]|20|66|77|99))" , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[24-7]|8[3-9]" ] , , "$CC $1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[89]0" ] , , "$CC $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CU : [ , [ , , "[2-57]\\d{5,7}" , "\\d{4,8}" , , , , , , [ 6 , 7 , 8 ] , [ 4 , 5 ] ] , [ , , "2[1-4]\\d{5,6}|3(?:1\\d{6}|[23]\\d{4,6})|4(?:[125]\\d{5,6}|[36]\\d{6}|[78]\\d{4,6})|7\\d{6,7}" , "\\d{4,8}" , , , "71234567" ] , [ , , "5\\d{7}" ,
"\\d{8}" , , , "51234567" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CU" , 53 , "119" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{6,7})" , "$1 $2" , [ "7" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{4,6})" , "$1 $2" , [ "[2-4]" ] , "(0$1)" ] , [ , "(\\d)(\\d{7})" , "$1 $2" , [ "5" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CV : [ , [ , , "[259]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "2(?:2[1-7]|3[0-8]|4[12]|5[1256]|6\\d|7[1-3]|8[1-5])\\d{4}" ,
"\\d{7}" , , , "2211234" ] , [ , , "(?:9\\d|59)\\d{5}" , "\\d{7}" , , , "9911234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CV" , 238 , "0" , , , , , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CW : [ , [ , , "[169]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "9(?:[48]\\d{2}|50\\d|7(?:2[0-24]|[34]\\d|6[35-7]|77|8[7-9]))\\d{4}" , "\\d{7,8}" , , , "94151234" , , , [ 8 ] ] ,
[ , , "9(?:5(?:[12467]\\d|3[01])|6(?:[15-9]\\d|3[01]))\\d{4}" , "\\d{7,8}" , , , "95181234" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "60[0-2]\\d{4}" , "\\d{7}" , , , "6001234" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CW" , 599 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[13-7]" ] ] , [ , "(9)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "9" ] ] ] , , [ , , "955\\d{5}" , "\\d{7,8}" , , , "95581234" , , , [ 8 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CX : [ , [ , , "[1458]\\d{5,9}" , "\\d{6,10}" ,
, , , , , [ 6 , 7 , 8 , 9 , 10 ] ] , [ , , "89164\\d{4}" , "\\d{8,9}" , , , "891641234" , , , [ 9 ] ] , [ , , "14(?:5\\d|71)\\d{5}|4(?:[0-2]\\d|3[0-57-9]|4[47-9]|5[0-25-9]|6[6-9]|7[02-9]|8[147-9]|9[017-9])\\d{6}" , "\\d{9}" , , , "412345678" , , , [ 9 ] ] , [ , , "180(?:0\\d{3}|2)\\d{3}" , "\\d{7,10}" , , , "1800123456" , , , [ 7 , 10 ] ] , [ , , "190[0126]\\d{6}" , "\\d{10}" , , , "1900123456" , , , [ 10 ] ] , [ , , "13(?:00\\d{2})?\\d{4}" , "\\d{6,10}" , , , "1300123456" , , , [ 6 , 8 , 10 ] ] , [ , , "500\\d{6}" , "\\d{9}" , , , "500123456" , , , [ 9 ] ] , [ , , "550\\d{6}" , "\\d{9}" , , , "550123456" , , , [ 9 ] ] , "CX" , 61 , "(?:14(?:1[14]|34|4[17]|[56]6|7[47]|88))?001[14-689]" ,
"0" , , , "0" , , "0011" , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CY : [ , [ , , "[257-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2[2-6]\\d{6}" , "\\d{8}" , , , "22345678" ] , [ , , "9[4-79]\\d{6}" , "\\d{8}" , , , "96123456" ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80001234" ] , [ , , "90[09]\\d{5}" , "\\d{8}" , , , "90012345" ] , [ , , "80[1-9]\\d{5}" , "\\d{8}" , , , "80112345" ] , [ , , "700\\d{5}" , "\\d{8}" , , , "70012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "CY" , 357 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{6})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , ,
, , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:50|77)\\d{6}" , "\\d{8}" , , , "77123456" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , CZ : [ , [ , , "[2-8]\\d{8}|9\\d{8,11}" , "\\d{9,12}" , , , , , , [ 9 , 10 , 11 , 12 ] ] , [ , , "2\\d{8}|(?:3[1257-9]|4[16-9]|5[13-9])\\d{7}" , "\\d{9,12}" , , , "212345678" , , , [ 9 ] ] , [ , , "(?:60[1-8]|7(?:0[2-5]|[2379]\\d))\\d{6}" , "\\d{9,12}" , , , "601123456" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9,12}" , , , "800123456" , , , [ 9 ] ] , [ , , "9(?:0[05689]|76)\\d{6}" , "\\d{9,12}" , , , "900123456" , , , [ 9 ] ] , [ , , "8[134]\\d{7}" , "\\d{9,12}" , , , "811234567" , , , [ 9 ] ] , [ , , "70[01]\\d{6}" ,
"\\d{9,12}" , , , "700123456" , , , [ 9 ] ] , [ , , "9[17]0\\d{6}" , "\\d{9,12}" , , , "910123456" , , , [ 9 ] ] , "CZ" , 420 , "00" , , , , , , , , [ [ , "([2-9]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[2-8]|9[015-7]" ] ] , [ , "(96\\d)(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "96" ] ] , [ , "(9\\d)(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "9[36]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "9(?:5\\d|7[234])\\d{6}" , "\\d{9,12}" , , , "972123456" , , , [ 9 ] ] , , , [ , , "9(?:3\\d{9}|6\\d{7,10})" , "\\d{9,12}" , , , "93123456789" ] ] , DE : [ , [ , , "[1-35-9]\\d{3,14}|4(?:[0-8]\\d{4,12}|9(?:[0-37]\\d|4(?:[1-35-8]|4\\d?)|5\\d{1,2}|6[1-8]\\d?)\\d{2,8})" ,
"\\d{2,15}" , , , , , , [ 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 ] , [ 3 ] ] , [ , , "[246]\\d{5,13}|3(?:0\\d{3,13}|2\\d{9}|[3-9]\\d{4,13})|5(?:0[2-8]|[1256]\\d|[38][0-8]|4\\d{0,2}|[79][0-7])\\d{3,11}|7(?:0[2-8]|[1-9]\\d)\\d{3,10}|8(?:0[2-9]|[1-9]\\d)\\d{3,10}|9(?:0[6-9]\\d{3,10}|1\\d{4,12}|[2-9]\\d{4,11})" , "\\d{2,15}" , , , "30123456" , , , [ 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 ] ] , [ , , "1(?:5[0-25-9]\\d{8}|6[023]\\d{7,8}|7(?:[0-57-9]\\d?|6\\d)\\d{7})" , "\\d{10,11}" , , , "15123456789" , , , [ 10 , 11 ] ] , [ , , "800\\d{7,12}" , "\\d{10,15}" , , , "8001234567890" , , , [ 10 ,
11 , 12 , 13 , 14 , 15 ] ] , [ , , "137[7-9]\\d{6}|900(?:[135]\\d{6}|9\\d{7})" , "\\d{10,11}" , , , "9001234567" , , , [ 10 , 11 ] ] , [ , , "1(?:3(?:7[1-6]\\d{6}|8\\d{4})|80\\d{5,11})" , "\\d{7,14}" , , , "18012345" , , , [ 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 ] ] , [ , , "700\\d{8}" , "\\d{11}" , , , "70012345678" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "DE" , 49 , "00" , "0" , , , "0" , , , , [ [ , "(1\\d{2})(\\d{7,8})" , "$1 $2" , [ "1[67]" ] , "0$1" ] , [ , "(15\\d{3})(\\d{6})" , "$1 $2" , [ "15[0568]" ] , "0$1" ] , [ , "(1\\d{3})(\\d{7})" , "$1 $2" , [ "15" ] , "0$1" ] , [ , "(\\d{2})(\\d{3,11})" , "$1 $2" , [ "3[02]|40|[68]9" ] , "0$1" ] ,
[ , "(\\d{3})(\\d{3,11})" , "$1 $2" , [ "2(?:\\d1|0[2389]|1[24]|28|34)|3(?:[3-9][15]|40)|[4-8][1-9]1|9(?:06|[1-9]1)" ] , "0$1" ] , [ , "(\\d{4})(\\d{2,11})" , "$1 $2" , [ "[24-6]|[7-9](?:\\d[1-9]|[1-9]\\d)|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])" , "[24-6]|[7-9](?:\\d[1-9]|[1-9]\\d)|3(?:3(?:0[1-467]|2[127-9]|3[124578]|[46][1246]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|3[1357]|4[13578]|6[1246]|7[1356]|9[1346])|5(?:0[14]|2[1-3589]|3[1357]|4[1246]|6[1-4]|7[1346]|8[13568]|9[1246])|6(?:0[356]|2[1-489]|3[124-6]|4[1347]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|3[1357]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|4[1347]|6[0135-9]|7[1467]|8[136])|9(?:0[12479]|2[1358]|3[1357]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))" ] ,
"0$1" ] , [ , "(3\\d{4})(\\d{1,10})" , "$1 $2" , [ "3" ] , "0$1" ] , [ , "(800)(\\d{7,12})" , "$1 $2" , [ "800" ] , "0$1" ] , [ , "(\\d{3})(\\d)(\\d{4,10})" , "$1 $2 $3" , [ "(?:18|90)0|137" , "1(?:37|80)|900[1359]" ] , "0$1" ] , [ , "(1\\d{2})(\\d{5,11})" , "$1 $2" , [ "181" ] , "0$1" ] , [ , "(18\\d{3})(\\d{6})" , "$1 $2" , [ "185" , "1850" , "18500" ] , "0$1" ] , [ , "(18\\d{2})(\\d{7})" , "$1 $2" , [ "18[68]" ] , "0$1" ] , [ , "(18\\d)(\\d{8})" , "$1 $2" , [ "18[2-579]" ] , "0$1" ] , [ , "(700)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "700" ] , "0$1" ] , [ , "(138)(\\d{4})" , "$1 $2" , [ "138" ] , "0$1" ] , [ , "(15[013-68])(\\d{2})(\\d{8})" ,
"$1 $2 $3" , [ "15[013-68]" ] , "0$1" ] , [ , "(15[279]\\d)(\\d{2})(\\d{7})" , "$1 $2 $3" , [ "15[279]" ] , "0$1" ] , [ , "(1[67]\\d)(\\d{2})(\\d{7,8})" , "$1 $2 $3" , [ "1(?:6[023]|7)" ] , "0$1" ] ] , , [ , , "16(?:4\\d{1,10}|[89]\\d{1,11})" , "\\d{4,14}" , , , "16412345" , , , [ 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "18(?:1\\d{5,11}|[2-9]\\d{8})" , "\\d{8,14}" , , , "18500123456" , , , [ 8 , 9 , 10 , 11 , 12 , 13 , 14 ] ] , , , [ , , "1(?:5(?:(?:2\\d55|7\\d99|9\\d33)\\d{7}|(?:[034568]00|113)\\d{8})|6(?:013|255|399)\\d{7,8}|7(?:[015]13|[234]55|[69]33|[78]99)\\d{7,8})" ,
"\\d{12,13}" , , , "177991234567" , , , [ 12 , 13 ] ] ] , DJ : [ , [ , , "[27]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:1[2-5]|7[45])\\d{5}" , "\\d{8}" , , , "21360003" ] , [ , , "77[0-26-8]\\d{5}" , "\\d{8}" , , , "77831001" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "DJ" , 253 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , DK : [ , [ , , "[2-9]\\d{7}" , "\\d{8}" ,
, , , , , [ 8 ] ] , [ , , "(?:[2-7]\\d|8[126-9]|9[1-36-9])\\d{6}" , "\\d{8}" , , , "32123456" ] , [ , , "(?:[2-7]\\d|8[126-9]|9[1-36-9])\\d{6}" , "\\d{8}" , , , "20123456" ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80123456" ] , [ , , "90\\d{6}" , "\\d{8}" , , , "90123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "DK" , 45 , "00" , , , , , , , 1 , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , DM : [ , [ , , "[57-9]\\d{9}" , "\\d{7}(?:\\d{3})?" ,
, , , , , [ 10 ] , [ 7 ] ] , [ , , "767(?:2(?:55|66)|4(?:2[01]|4[0-25-9])|50[0-4]|70[1-3])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7674201234" ] , [ , , "767(?:2(?:[234689]5|7[5-7])|31[5-7]|61[2-7])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7672251234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "DM" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "767" , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , DO : [ , [ , , "[589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "8(?:[04]9[2-9]\\d{6}|29(?:2(?:[0-59]\\d|6[04-9]|7[0-27]|8[0237-9])|3(?:[0-35-9]\\d|4[7-9])|[45]\\d{2}|6(?:[0-27-9]\\d|[3-5][1-9]|6[0135-8])|7(?:0[013-9]|[1-37]\\d|4[1-35689]|5[1-4689]|6[1-57-9]|8[1-79]|9[1-8])|8(?:0[146-9]|1[0-48]|[248]\\d|3[1-79]|5[01589]|6[013-68]|7[124-8]|9[0-8])|9(?:[0-24]\\d|3[02-46-9]|5[0-79]|60|7[0169]|8[57-9]|9[02-9]))\\d{4})" , "\\d{7}(?:\\d{3})?" ,
, , "8092345678" ] , [ , , "8[024]9[2-9]\\d{6}" , "\\d{7}(?:\\d{3})?" , , , "8092345678" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "DO" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "8[024]9" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , DZ : [ , [ , , "(?:[1-4]|[5-9]\\d)\\d{7}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ ,
, "(?:1\\d|2[013-79]|3[0-8]|4[0135689])\\d{6}|9619\\d{5}" , "\\d{8,9}" , , , "12345678" ] , [ , , "(?:5[4-6]|7[7-9])\\d{7}|6(?:[569]\\d|7[0-6])\\d{6}" , "\\d{9}" , , , "551234567" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "80[3-689]1\\d{5}" , "\\d{9}" , , , "808123456" , , , [ 9 ] ] , [ , , "80[12]1\\d{5}" , "\\d{9}" , , , "801123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "98[23]\\d{6}" , "\\d{9}" , , , "983123456" , , , [ 9 ] ] , "DZ" , 213 , "00" , "0" , , , "0" , , , , [ [ , "([1-4]\\d)(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[1-4]" ] , "0$1" ] , [ , "([5-8]\\d{2})(\\d{2})(\\d{2})(\\d{2})" ,
"$1 $2 $3 $4" , [ "[5-8]" ] , "0$1" ] , [ , "(9\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "9" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , EC : [ , [ , , "1\\d{9,10}|[2-8]\\d{7}|9\\d{8}" , "\\d{7,11}" , , , , , , [ 8 , 9 , 10 , 11 ] , [ 7 ] ] , [ , , "[2-7][2-7]\\d{6}" , "\\d{7,8}" , , , "22123456" , , , [ 8 ] ] , [ , , "9(?:(?:39|[45][89]|7[7-9]|[89]\\d)\\d|6(?:[017-9]\\d|2[0-4]))\\d{5}" , "\\d{9}" , , , "991234567" , , , [ 9 ] ] , [ , , "1800\\d{6,7}" , "\\d{10,11}" , , , "18001234567" , , , [ 10 , 11 ] ] , [ , , "NA" , "NA" , , , ,
, , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "[2-7]890\\d{4}" , "\\d{8}" , , , "28901234" , , , [ 8 ] ] , "EC" , 593 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{4})" , "$1 $2-$3" , [ "[247]|[356][2-8]" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(1800)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "1" ] , "$1" ] ] , [ [ , "(\\d)(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[247]|[356][2-8]" ] ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(1800)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "1" ] , "$1" ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , ,
"NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , EE : [ , [ , , "1\\d{3,4}|[3-9]\\d{6,7}|800\\d{6,7}" , "\\d{4,10}" , , , , , , [ 4 , 5 , 7 , 8 , 10 ] ] , [ , , "(?:3[23589]|4[3-8]|6\\d|7[1-9]|88)\\d{5}" , "\\d{7}" , , , "3212345" , , , [ 7 ] ] , [ , , "(?:5\\d|8[1-5])\\d{6}|5(?:[02]\\d{2}|1(?:[0-8]\\d|95)|5[0-478]\\d|64[0-4]|65[1-589])\\d{3}" , "\\d{7,8}" , , , "51234567" , , , [ 7 , 8 ] ] , [ , , "800(?:0\\d{3}|1\\d|[2-9])\\d{3}" , "\\d{7,10}" , , , "80012345" , , , [ 7 , 8 , 10 ] ] , [ , , "(?:40\\d{2}|900)\\d{4}" , "\\d{7,8}" , , , "9001234" , , , [ 7 , 8 ] ] , [ , , "NA" , "NA" , , ,
, , , [ - 1 ] ] , [ , , "70[0-2]\\d{5}" , "\\d{8}" , , , "70012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "EE" , 372 , "00" , , , , , , , , [ [ , "([3-79]\\d{2})(\\d{4})" , "$1 $2" , [ "[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]" , "[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]" ] ] , [ , "(70)(\\d{2})(\\d{4})" , "$1 $2 $3" , [ "70" ] ] , [ , "(8000)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "800" , "8000" ] ] , [ , "([458]\\d{3})(\\d{3,4})" , "$1 $2" , [ "40|5|8(?:00|[1-5])" , "40|5|8(?:00[1-9]|[1-5])" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "1\\d{3,4}|800[2-9]\\d{3}" ,
"\\d{4,7}" , , , "8002123" , , , [ 4 , 5 , 7 ] ] , [ , , "1(?:2[01245]|3[0-6]|4[1-489]|5[0-59]|6[1-46-9]|7[0-27-9]|8[189]|9[012])\\d{1,2}" , "\\d{4,5}" , , , "12123" , , , [ 4 , 5 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , EG : [ , [ , , "1\\d{4,9}|[2456]\\d{8}|3\\d{7}|[89]\\d{8,9}" , "\\d{5,10}" , , , , , , [ 5 , 8 , 9 , 10 ] , [ 7 ] ] , [ , , "(?:1(?:3[23]\\d|5(?:[23]|9\\d))|2[2-4]\\d{2}|3\\d{2}|4(?:0[2-5]|[578][23]|64)\\d|5(?:0[2-7]|[57][23])\\d|6[24-689]3\\d|8(?:2[2-57]|4[26]|6[237]|8[2-4])\\d|9(?:2[27]|3[24]|52|6[2356]|7[2-4])\\d)\\d{5}|1[69]\\d{3}" , "\\d{5,9}" , , , "234567890" ,
, , [ 5 , 8 , 9 ] ] , [ , , "1(?:0[0-269]|1[0-245]|2[0-278])\\d{7}" , "\\d{10}" , , , "1001234567" , , , [ 10 ] ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "900\\d{7}" , "\\d{10}" , , , "9001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "EG" , 20 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{7,8})" , "$1 $2" , [ "[23]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1[012]|[89]00" ] , "0$1" ] , [ , "(\\d{2})(\\d{6,7})" , "$1 $2" , [ "1[35]|[4-6]|[89][2-9]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , ,
[ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , EH : [ , [ , , "[5-9]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "528[89]\\d{5}" , "\\d{9}" , , , "528812345" ] , [ , , "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[07][07]|6[12]))\\d{6}" , "\\d{9}" , , , "650123456" ] , [ , , "80\\d{7}" , "\\d{9}" , , , "801234567" ] , [ , , "89\\d{7}" , "\\d{9}" , , , "891234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5924[01]\\d{4}" , "\\d{9}" , , , "592401234" ] , "EH" , 212 , "00" , "0" , , , "0" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "528[89]" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
, , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ER : [ , [ , , "[178]\\d{6}" , "\\d{6,7}" , , , , , , [ 7 ] , [ 6 ] ] , [ , , "1(?:1[12568]|20|40|55|6[146])\\d{4}|8\\d{6}" , "\\d{6,7}" , , , "8370362" ] , [ , , "17[1-3]\\d{4}|7\\d{6}" , "\\d{7}" , , , "7123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ER" , 291 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ES : [ , [ , , "[5-9]\\d{8}" ,
"\\d{9}" , , , , , , [ 9 ] ] , [ , , "8(?:[13]0|[28][0-8]|[47][1-9]|5[01346-9]|6[0457-9])\\d{6}|9(?:[1238][0-8]\\d{6}|4[1-9]\\d{6}|5\\d{7}|6(?:[0-8]\\d{6}|9(?:0(?:[0-57-9]\\d{4}|6(?:0[0-8]|1[1-9]|[2-9]\\d)\\d{2})|[1-9]\\d{5}))|7(?:[124-9]\\d{2}|3(?:[0-8]\\d|9[1-9]))\\d{4})" , "\\d{9}" , , , "810123456" ] , [ , , "(?:6\\d{6}|7[1-4]\\d{5}|9(?:6906(?:09|10)|7390\\d{2}))\\d{2}" , "\\d{9}" , , , "612345678" ] , [ , , "[89]00\\d{6}" , "\\d{9}" , , , "800123456" ] , [ , , "80[367]\\d{6}" , "\\d{9}" , , , "803123456" ] , [ , , "90[12]\\d{6}" , "\\d{9}" , , , "901123456" ] ,
[ , , "70\\d{7}" , "\\d{9}" , , , "701234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ES" , 34 , "00" , , , , , , , , [ [ , "([89]00)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[89]00" ] ] , [ , "([5-9]\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[568]|[79][0-8]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "51\\d{7}" , "\\d{9}" , , , "511234567" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ET : [ , [ , , "[1-59]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "(?:11(?:1(?:1[124]|2[2-57]|3[1-5]|5[5-8]|8[6-8])|2(?:13|3[6-8]|5[89]|7[05-9]|8[2-6])|3(?:2[01]|3[0-289]|4[1289]|7[1-4]|87)|4(?:1[69]|3[2-49]|4[0-3]|6[5-8])|5(?:1[578]|44|5[0-4])|6(?:18|2[69]|39|4[5-7]|5[1-5]|6[0-59]|8[015-8]))|2(?:2(?:11[1-9]|22[0-7]|33\\d|44[1467]|66[1-68])|5(?:11[124-6]|33[2-8]|44[1467]|55[14]|66[1-3679]|77[124-79]|880))|3(?:3(?:11[0-46-8]|22[0-6]|33[0134689]|44[04]|55[0-6]|66[01467])|4(?:44[0-8]|55[0-69]|66[0-3]|77[1-5]))|4(?:6(?:22[0-24-7]|33[1-5]|44[13-69]|55[14-689]|660|88[1-4])|7(?:11[1-9]|22[1-9]|33[13-7]|44[13-6]|55[1-689]))|5(?:7(?:227|55[05]|(?:66|77)[14-8])|8(?:11[149]|22[013-79]|33[0-68]|44[013-8]|550|66[1-5]|77\\d)))\\d{4}" ,
"\\d{7,9}" , , , "111112345" ] , [ , , "9(?:[1-468]\\d|5[89])\\d{6}" , "\\d{9}" , , , "911234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ET" , 251 , "00" , "0" , , , "0" , , , , [ [ , "([1-59]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , FI : [ , [ , , "1\\d{4,11}|[2-9]\\d{4,10}" , "\\d{5,12}" , , , , , , [ 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "1(?:[3569][1-8]\\d{3,9}|[47]\\d{5,10})|2[1-8]\\d{3,9}|3(?:[1-8]\\d{3,9}|9\\d{4,8})|[5689][1-8]\\d{3,9}" ,
"\\d{5,12}" , , , "1312345678" ] , [ , , "4\\d{5,10}|50\\d{4,8}" , "\\d{6,11}" , , , "412345678" , , , [ 6 , 7 , 8 , 9 , 10 , 11 ] ] , [ , , "800\\d{4,7}" , "\\d{7,10}" , , , "8001234567" , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "[67]00\\d{5,6}" , "\\d{8,9}" , , , "600123456" , , , [ 8 , 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "FI" , 358 , "00|99(?:[02469]|5(?:11|33|5[59]|88|9[09]))" , "0" , , , "0" , , "00" , , [ [ , "(\\d{3})(\\d{3,7})" , "$1 $2" , [ "(?:[1-3]00|[6-8]0)" ] , "0$1" ] , [ , "(116\\d{3})" , "$1" , [ "116" ] , "$1" ] , [ , "(\\d{2})(\\d{4,10})" , "$1 $2" , [ "[14]|2[09]|50|7[135]" ] ,
"0$1" ] , [ , "(\\d)(\\d{4,11})" , "$1 $2" , [ "[25689][1-8]|3" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "[13]00\\d{3,7}|2(?:0(?:0\\d{3,7}|2[023]\\d{1,6}|9[89]\\d{1,6}))|60(?:[12]\\d{5,6}|6\\d{7})|7(?:1\\d{7}|3\\d{8}|5[03-9]\\d{2,7})" , "\\d{5,10}" , , , "100123" , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] ] , [ , , "[13]0\\d{4,8}|2(?:0(?:[016-8]\\d{3,7}|[2-59]\\d{2,7})|9\\d{4,8})|60(?:[12]\\d{5,6}|6\\d{7})|7(?:1\\d{7}|3\\d{8}|5[03-9]\\d{2,7})" , "\\d{5,10}" , , , "10112345" , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , FJ : [ , [ , , "[36-9]\\d{6}|0\\d{10}" ,
"\\d{7}(?:\\d{4})?" , , , , , , [ 7 , 11 ] ] , [ , , "(?:3[0-5]|6[25-7]|8[58])\\d{5}" , "\\d{7}" , , , "3212345" , , , [ 7 ] ] , [ , , "(?:7[0-8]|8[034679]|9\\d)\\d{5}" , "\\d{7}" , , , "7012345" , , , [ 7 ] ] , [ , , "0800\\d{7}" , "\\d{11}" , , , "08001234567" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "FJ" , 679 , "0(?:0|52)" , , , , , , "00" , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[36-9]" ] ] , [ , "(\\d{4})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "0" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , FK : [ , [ , , "[2-7]\\d{4}" , "\\d{5}" , , , , , , [ 5 ] ] , [ , , "[2-47]\\d{4}" , "\\d{5}" , , , "31234" ] , [ , , "[56]\\d{4}" , "\\d{5}" , , , "51234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "FK" , 500 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , FM : [ , [ , , "[39]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "3[2357]0[1-9]\\d{3}|9[2-6]\\d{5}" , "\\d{7}" , , , "3201234" ] , [ , , "3[2357]0[1-9]\\d{3}|9[2-7]\\d{5}" ,
"\\d{7}" , , , "3501234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "FM" , 691 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , FO : [ , [ , , "[2-9]\\d{5}" , "\\d{6}" , , , , , , [ 6 ] ] , [ , , "(?:20|[3-4]\\d|8[19])\\d{4}" , "\\d{6}" , , , "201234" ] , [ , , "(?:[27][1-9]|5\\d)\\d{4}" , "\\d{6}" , , , "211234" ] , [ , , "80[257-9]\\d{3}" , "\\d{6}" , , , "802123" ] , [ , , "90(?:[1345][15-7]|2[125-7]|99)\\d{2}" ,
"\\d{6}" , , , "901123" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:6[0-36]|88)\\d{4}" , "\\d{6}" , , , "601234" ] , "FO" , 298 , "00" , , , , "(10(?:01|[12]0|88))" , , , , [ [ , "(\\d{6})" , "$1" , , , "$CC $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , FR : [ , [ , , "[1-9]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "[1-5]\\d{8}" , "\\d{9}" , , , "123456789" ] , [ , , "(?:6\\d|7[3-9])\\d{7}" , "\\d{9}" , , , "612345678" ] , [ , , "80[0-5]\\d{6}" , "\\d{9}" , , , "801234567" ] , [ , , "89[1-37-9]\\d{6}" , "\\d{9}" , , ,
"891123456" ] , [ , , "8(?:1[019]|2[0156]|84|90)\\d{6}" , "\\d{9}" , , , "810123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "9\\d{8}" , "\\d{9}" , , , "912345678" ] , "FR" , 33 , "00" , "0" , , , "0" , , , , [ [ , "([1-79])(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4 $5" , [ "[1-79]" ] , "0$1" ] , [ , "(1\\d{2})(\\d{3})" , "$1 $2" , [ "11" ] , "$1" ] , [ , "(8\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "8" ] , "0 $1" ] ] , [ [ , "([1-79])(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4 $5" , [ "[1-79]" ] , "0$1" ] , [ , "(8\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "8" ] , "0 $1" ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "80[6-9]\\d{6}" , "\\d{9}" , , , "806123456" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GA : [ , [ , , "0?\\d{7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "01\\d{6}" , "\\d{8}" , , , "01441234" , , , [ 8 ] ] , [ , , "0?[2-7]\\d{6}" , "\\d{7,8}" , , , "06031234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GA" , 241 , "00" , , , , , , , , [ [ , "(\\d)(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[2-7]" ] , "0$1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ,
[ "0" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GB : [ , [ , , "\\d{7,10}" , "\\d{4,10}" , , , , , , [ 7 , 9 , 10 ] , [ 4 , 5 , 6 , 8 ] ] , [ , , "2(?:0[01378]|3[0189]|4[017]|8[0-46-9]|9[012])\\d{7}|1(?:(?:1(?:3[0-48]|[46][0-4]|5[012789]|7[0-49]|8[01349])|21[0-7]|31[0-8]|[459]1\\d|61[0-46-9]))\\d{6}|1(?:2(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-4789]|7[013-9]|9\\d)|3(?:0\\d|[25][02-9]|3[02-579]|[468][0-46-9]|7[1235679]|9[24578])|4(?:0[03-9]|[28][02-5789]|[37]\\d|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1235-9]|2[024-9]|3[015689]|4[02-9]|5[03-9]|6\\d|7[0-35-9]|8[0-468]|9[0-5789])|6(?:0[034689]|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0124578])|7(?:0[0246-9]|2\\d|3[023678]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-5789]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|2[02-689]|3[1-5789]|4[2-9]|5[0-579]|6[234789]|7[0124578]|8\\d|9[2-57]))\\d{6}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-4789]|8[345])))|3(?:638[2-5]|647[23]|8(?:47[04-9]|64[015789]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[123]))|5(?:24(?:3[2-79]|6\\d)|276\\d|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[567]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|955[0-4])|7(?:26(?:6[13-9]|7[0-7])|442\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|84(?:3[2-58]))|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}|176888[234678]\\d{2}|16977[23]\\d{3}" ,
"\\d{4,10}" , , , "1212345678" , , , [ 9 , 10 ] ] , [ , , "7(?:[1-4]\\d\\d|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[04-9]\\d|1[02-9]|2[0-35-9]|3[0-689]))\\d{6}" , "\\d{10}" , , , "7400123456" , , , [ 10 ] ] , [ , , "80(?:0(?:1111|\\d{6,7})|8\\d{7})|500\\d{6}" , "\\d{7}(?:\\d{2,3})?" , , , "8001234567" ] , [ , , "(?:87[123]|9(?:[01]\\d|8[2349]))\\d{7}" , "\\d{10}" , , , "9012345678" , , , [ 10 ] ] , [ , , "8(?:4(?:5464\\d|[2-5]\\d{7})|70\\d{7})" , "\\d{7}(?:\\d{3})?" , , , "8431234567" , , , [ 7 , 10 ] ] , [ , , "70\\d{8}" ,
"\\d{10}" , , , "7012345678" , , , [ 10 ] ] , [ , , "56\\d{8}" , "\\d{10}" , , , "5612345678" , , , [ 10 ] ] , "GB" , 44 , "00" , "0" , " x" , , "0" , , , , [ [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "2|5[56]|7(?:0|6[013-9])" , "2|5[56]|7(?:0|6(?:[013-9]|2[0-35-9]))" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1(?:1|\\d1)|3|9[018]" ] , "0$1" ] , [ , "(\\d{5})(\\d{4,5})" , "$1 $2" , [ "1(?:38|5[23]|69|76|94)" , "1(?:387|5(?:24|39)|697|768|946)" , "1(?:3873|5(?:242|39[456])|697[347]|768[347]|9467)" ] , "0$1" ] , [ , "(1\\d{3})(\\d{5,6})" , "$1 $2" , [ "1" ] , "0$1" ] , [ , "(7\\d{3})(\\d{6})" ,
"$1 $2" , [ "7(?:[1-5789]|62)" , "7(?:[1-5789]|624)" ] , "0$1" ] , [ , "(800)(\\d{4})" , "$1 $2" , [ "800" , "8001" , "80011" , "800111" , "8001111" ] , "0$1" ] , [ , "(845)(46)(4\\d)" , "$1 $2 $3" , [ "845" , "8454" , "84546" , "845464" ] , "0$1" ] , [ , "(8\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "8(?:4[2-5]|7[0-3])" ] , "0$1" ] , [ , "(80\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "80" ] , "0$1" ] , [ , "([58]00)(\\d{6})" , "$1 $2" , [ "[58]00" ] , "0$1" ] ] , , [ , , "76(?:0[012]|2[356]|4[0134]|5[49]|6[0-369]|77|81|9[39])\\d{6}" , "\\d{10}" , , , "7640123456" , , , [ 10 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ ,
, "(?:3[0347]|55)\\d{8}" , "\\d{10}" , , , "5512345678" , , , [ 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GD : [ , [ , , "[4589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "473(?:2(?:3[0-2]|69)|3(?:2[89]|86)|4(?:[06]8|3[5-9]|4[0-49]|5[5-79]|68|73|90)|63[68]|7(?:58|84)|800|938)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "4732691234" ] , [ , , "473(?:4(?:0[2-79]|1[04-9]|20|58)|5(?:2[01]|3[3-8])|901)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "4734031234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GD" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "473" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GE : [ , [ , , "[34578]\\d{8}" , "\\d{6,9}" , , , , , , [ 9 ] , [ 6 ] ] , [ , , "(?:3(?:[256]\\d|4[124-9]|7[0-4])|4(?:1\\d|2[2-7]|3[1-79]|4[2-8]|7[239]|9[1-7]))\\d{6}" , "\\d{6,9}" , , , "322123456" ] , [ , , "5(?:14|5[01578]|68|7[0147-9]|9[0-35-9])\\d{6}" , "\\d{9}" , , , "555123456" ] , [ , , "800\\d{6}" ,
"\\d{9}" , , , "800123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "706\\d{6}" , "\\d{9}" , , , "706123456" ] , "GE" , 995 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[348]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "7" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "5" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "706\\d{6}" , "\\d{9}" , , , "706123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GF : [ , [ , , "[56]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] ,
[ , , "594(?:10|2[012457-9]|3[0-57-9]|4[3-9]|5[7-9]|6[0-3]|9[014])\\d{4}" , "\\d{9}" , , , "594101234" ] , [ , , "694(?:[04][0-7]|1[0-5]|3[018]|[29]\\d)\\d{4}" , "\\d{9}" , , , "694201234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GF" , 594 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GG : [ , [ , , "[135789]\\d{6,9}" ,
"\\d{6,10}" , , , , , , [ 7 , 9 , 10 ] , [ 6 ] ] , [ , , "1481\\d{6}" , "\\d{6,10}" , , , "1481456789" , , , [ 10 ] ] , [ , , "7(?:781|839|911)\\d{6}" , "\\d{10}" , , , "7781123456" , , , [ 10 ] ] , [ , , "80(?:0(?:1111|\\d{6,7})|8\\d{7})|500\\d{6}" , "\\d{7}(?:\\d{2,3})?" , , , "8001234567" ] , [ , , "(?:87[123]|9(?:[01]\\d|8[0-3]))\\d{7}" , "\\d{10}" , , , "9012345678" , , , [ 10 ] ] , [ , , "8(?:4(?:5464\\d|[2-5]\\d{7})|70\\d{7})" , "\\d{7}(?:\\d{3})?" , , , "8431234567" , , , [ 7 , 10 ] ] , [ , , "70\\d{8}" , "\\d{10}" , , , "7012345678" , , , [ 10 ] ] , [ , , "56\\d{8}" , "\\d{10}" , , , "5612345678" , , , [ 10 ] ] , "GG" , 44 , "00" ,
"0" , " x" , , "0" , , , , , , [ , , "76(?:0[012]|2[356]|4[0134]|5[49]|6[0-369]|77|81|9[39])\\d{6}" , "\\d{10}" , , , "7640123456" , , , [ 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:3[0347]|55)\\d{8}" , "\\d{10}" , , , "5512345678" , , , [ 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GH : [ , [ , , "[235]\\d{8}|8\\d{7}" , "\\d{7,9}" , , , , , , [ 8 , 9 ] , [ 7 ] ] , [ , , "3(?:0[237]\\d|[167](?:2[0-6]|7\\d)|2(?:2[0-5]|7\\d)|3(?:2[0-3]|7\\d)|4(?:2[013-9]|3[01]|7\\d)|5(?:2[0-7]|7\\d)|8(?:2[0-2]|7\\d)|9(?:20|7\\d))\\d{5}" , "\\d{7,9}" , , , "302345678" , , , [ 9 ] ] , [ , , "(?:2[034678]\\d|5(?:[047]\\d|5[3-6]|6[01]))\\d{6}" ,
"\\d{9}" , , , "231234567" , , , [ 9 ] ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GH" , 233 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[235]" ] , "0$1" ] , [ , "(\\d{3})(\\d{5})" , "$1 $2" , [ "8" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GI : [ , [ , , "[2568]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:00\\d|1(?:6[24-7]|9\\d)|2(?:00|2[2457]))\\d{4}" ,
"\\d{8}" , , , "20012345" ] , [ , , "(?:5[46-8]|62)\\d{6}" , "\\d{8}" , , , "57123456" ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80123456" ] , [ , , "8[1-689]\\d{6}" , "\\d{8}" , , , "88123456" ] , [ , , "87\\d{6}" , "\\d{8}" , , , "87123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GI" , 350 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{5})" , "$1 $2" , [ "2" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GL : [ , [ , , "[1-689]\\d{5}" , "\\d{6}" , , , , , , [ 6 ] ] , [ , , "(?:19|3[1-6]|6[14689]|8[14-79]|9\\d)\\d{4}" , "\\d{6}" , , , "321000" ] ,
[ , , "[245][2-9]\\d{4}" , "\\d{6}" , , , "221234" ] , [ , , "80\\d{4}" , "\\d{6}" , , , "801234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3[89]\\d{4}" , "\\d{6}" , , , "381234" ] , "GL" , 299 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GM : [ , [ , , "[2-9]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "(?:4(?:[23]\\d{2}|4(?:1[024679]|[6-9]\\d))|5(?:54[0-7]|6(?:[67]\\d)|7(?:1[04]|2[035]|3[58]|48))|8\\d{3})\\d{3}" ,
"\\d{7}" , , , "5661234" ] , [ , , "[23679]\\d{6}" , "\\d{7}" , , , "3012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GM" , 220 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GN : [ , [ , , "[367]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "30(?:24|3[12]|4[1-35-7]|5[13]|6[189]|[78]1|9[1478])\\d{4}" , "\\d{8}" , , , "30241234" , , , [ 8 ] ] , [ , , "6[02356]\\d{7}" , "\\d{9}" ,
, , "601123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "722\\d{6}" , "\\d{9}" , , , "722123456" , , , [ 9 ] ] , "GN" , 224 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "3" ] ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[67]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GP : [ , [ , , "[56]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "590(?:0[13468]|1[012]|2[0-68]|3[28]|4[0-8]|5[579]|6[0189]|70|8[0-689]|9\\d)\\d{4}" ,
"\\d{9}" , , , "590201234" ] , [ , , "690(?:0[0-7]|[1-9]\\d)\\d{4}" , "\\d{9}" , , , "690301234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GP" , 590 , "00" , "0" , , , "0" , , , , [ [ , "([56]90)(\\d{2})(\\d{4})" , "$1 $2-$3" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GQ : [ , [ , , "[23589]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "3(?:3(?:3\\d[7-9]|[0-24-9]\\d[46])|5\\d{2}[7-9])\\d{4}" , "\\d{9}" , , , "333091234" ] ,
[ , , "(?:222|55[15])\\d{6}" , "\\d{9}" , , , "222123456" ] , [ , , "80\\d[1-9]\\d{5}" , "\\d{9}" , , , "800123456" ] , [ , , "90\\d[1-9]\\d{5}" , "\\d{9}" , , , "900123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GQ" , 240 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[235]" ] ] , [ , "(\\d{3})(\\d{6})" , "$1 $2" , [ "[89]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GR : [ , [ , , "[26-9]\\d{9}" , "\\d{10}" , , , , , , [ 10 ] ] , [ , , "2(?:1\\d{2}|2(?:2[1-46-9]|3[1-8]|4[1-7]|5[1-4]|6[1-8]|7[1-5]|[89][1-9])|3(?:1\\d|2[1-57]|[35][1-3]|4[13]|7[1-7]|8[124-6]|9[1-79])|4(?:1\\d|2[1-8]|3[1-4]|4[13-5]|6[1-578]|9[1-5])|5(?:1\\d|[29][1-4]|3[1-5]|4[124]|5[1-6])|6(?:1\\d|3[1245]|4[1-7]|5[13-9]|[269][1-6]|7[14]|8[1-5])|7(?:1\\d|2[1-5]|3[1-6]|4[1-7]|5[1-57]|6[135]|9[125-7])|8(?:1\\d|2[1-5]|[34][1-4]|9[1-57]))\\d{6}" ,
"\\d{10}" , , , "2123456789" ] , [ , , "69\\d{8}" , "\\d{10}" , , , "6912345678" ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" ] , [ , , "90[19]\\d{7}" , "\\d{10}" , , , "9091234567" ] , [ , , "8(?:0[16]|12|25)\\d{7}" , "\\d{10}" , , , "8011234567" ] , [ , , "70\\d{8}" , "\\d{10}" , , , "7012345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GR" , 30 , "00" , , , , , , , , [ [ , "([27]\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "21|7" ] ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "2[2-9]1|[689]" ] ] , [ , "(2\\d{3})(\\d{6})" , "$1 $2" , [ "2[2-9][02-9]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GT : [ , [ , , "[2-7]\\d{7}|1[89]\\d{9}" , "\\d{8}(?:\\d{3})?" , , , , , , [ 8 , 11 ] ] , [ , , "[267][2-9]\\d{6}" , "\\d{8}" , , , "22456789" , , , [ 8 ] ] , [ , , "[345]\\d{7}" , "\\d{8}" , , , "51234567" , , , [ 8 ] ] , [ , , "18[01]\\d{8}" , "\\d{11}" , , , "18001112222" , , , [ 11 ] ] , [ , , "19\\d{9}" , "\\d{11}" , , , "19001112222" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GT" , 502 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[2-7]" ] ] , [ , "(\\d{4})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1" ] ] ] , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GU : [ , [ , , "[5689]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "671(?:3(?:00|3[39]|4[349]|55|6[26])|4(?:56|7[1-9]|8[236-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[5-9])|7(?:[079]7|2[0167]|3[45]|47|8[789])|8(?:[2-5789]8|6[48])|9(?:2[29]|6[79]|7[179]|8[789]|9[78]))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6713001234" ] , [ , , "671(?:3(?:00|3[39]|4[349]|55|6[26])|4(?:56|7[1-9]|8[236-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[5-9])|7(?:[079]7|2[0167]|3[45]|47|8[789])|8(?:[2-5789]8|6[48])|9(?:2[29]|6[79]|7[179]|8[789]|9[78]))\\d{4}" ,
"\\d{7}(?:\\d{3})?" , , , "6713001234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GU" , 1 , "011" , "1" , , , "1" , , , 1 , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "671" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GW : [ , [ , , "(?:4(?:0\\d{5}|4\\d{7})|9\\d{8})" , "\\d{7,9}" , , , , , , [ 7 , 9 ] ] , [ , , "443(?:2[0125]|3[1245]|4[12]|5[1-4]|70|9[1-467])\\d{4}" ,
"\\d{9}" , , , "443201234" , , , [ 9 ] ] , [ , , "9(?:55\\d|6(?:6\\d|9[012])|77\\d)\\d{5}" , "\\d{9}" , , , "955012345" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "40\\d{5}" , "\\d{7}" , , , "4012345" , , , [ 7 ] ] , "GW" , 245 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "44|9[567]" ] ] , [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "40" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , GY : [ , [ , , "[2-4679]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] ,
[ , , "(?:2(?:1[6-9]|2[0-35-9]|3[1-4]|5[3-9]|6\\d|7[0-24-79])|3(?:2[25-9]|3\\d)|4(?:4[0-24]|5[56])|77[1-57])\\d{4}" , "\\d{7}" , , , "2201234" ] , [ , , "6\\d{6}" , "\\d{7}" , , , "6091234" ] , [ , , "(?:289|862)\\d{4}" , "\\d{7}" , , , "2891234" ] , [ , , "9008\\d{3}" , "\\d{7}" , , , "9008123" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "GY" , 592 , "001" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , HK : [ , [ , , "[235-7]\\d{7}|8\\d{7,8}|9\\d{4,10}" ,
"\\d{5,11}" , , , , , , [ 5 , 6 , 7 , 8 , 9 , 11 ] ] , [ , , "(?:[23]\\d|58)\\d{6}" , "\\d{8}" , , , "21234567" , , , [ 8 ] ] , [ , , "(?:5[1-79]\\d|6\\d{2}|8[4-79]\\d|9(?:0[1-9]|[1-8]\\d))\\d{5}" , "\\d{8}" , , , "51234567" , , , [ 8 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "900(?:[0-24-9]\\d{7}|3\\d{1,4})" , "\\d{5,11}" , , , "90012345678" , , , [ 5 , 6 , 7 , 8 , 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "8[1-3]\\d{6}" , "\\d{8}" , , , "81123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "HK" , 852 , "00(?:[126-9]|30|5[09])?" , , , , , , "00" , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[235-7]|[89](?:0[1-9]|[1-9])" ] ] ,
[ , "(800)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "800" ] ] , [ , "(900)(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "900" ] ] , [ , "(900)(\\d{2,5})" , "$1 $2" , [ "900" ] ] ] , , [ , , "7\\d{7}" , "\\d{8}" , , , "71234567" , , , [ 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , HN : [ , [ , , "[237-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:2(?:0[019]|1[1-36]|[23]\\d|4[056]|5[57]|7[01389]|8[0146-9]|9[012])|4(?:07|2[3-59]|3[13-689]|4[0-68]|5[1-35])|5(?:16|4[3-5]|5\\d|6[4-6]|74)|6(?:[056]\\d|17|3[04]|4[0-378]|[78][0-8]|9[01])|7(?:6[46-9]|7[02-9]|8[034])|8(?:79|8[0-35789]|9[1-57-9]))\\d{4}" ,
"\\d{8}" , , , "22123456" ] , [ , , "[37-9]\\d{7}" , "\\d{8}" , , , "91234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "HN" , 504 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1-$2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , HR : [ , [ , , "[1-7]\\d{5,8}|[89]\\d{6,11}" , "\\d{6,12}" , , , , , , [ 6 , 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "1\\d{7}|(?:2[0-3]|3[1-5]|4[02-47-9]|5[1-3])\\d{6,7}" , "\\d{6,9}" , , , "12345678" , , , [ 8 , 9 ] ] ,
[ , , "9(?:[1-9]\\d{6,10}|01\\d{6,9})" , "\\d{8,12}" , , , "912345678" , , , [ 8 , 9 , 10 , 11 , 12 ] ] , [ , , "80[01]\\d{4,7}" , "\\d{7,10}" , , , "8001234567" , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "6(?:[01459]\\d{4,7})" , "\\d{6,9}" , , , "611234" , , , [ 6 , 7 , 8 , 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7[45]\\d{4,7}" , "\\d{6,9}" , , , "741234567" , , , [ 6 , 7 , 8 , 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "HR" , 385 , "00" , "0" , , , "0" , , , , [ [ , "(1)(\\d{4})(\\d{3})" , "$1 $2 $3" , [ "1" ] , "0$1" ] , [ , "(6[09])(\\d{4})(\\d{3})" , "$1 $2 $3" , [ "6[09]" ] , "0$1" ] , [ , "([67]2)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[67]2" ] , "0$1" ] , [ , "([2-5]\\d)(\\d{3})(\\d{3,4})" ,
"$1 $2 $3" , [ "[2-5]" ] , "0$1" ] , [ , "(9\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(9\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(9\\d)(\\d{3,4})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "9" ] , "0$1" ] , [ , "(\\d{2})(\\d{2})(\\d{2,3})" , "$1 $2 $3" , [ "6[0145]|7" ] , "0$1" ] , [ , "(\\d{2})(\\d{3,4})(\\d{3})" , "$1 $2 $3" , [ "6[0145]|7" ] , "0$1" ] , [ , "(80[01])(\\d{2})(\\d{2,3})" , "$1 $2 $3" , [ "8" ] , "0$1" ] , [ , "(80[01])(\\d{3,4})(\\d{3})" , "$1 $2 $3" , [ "8" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "[76]2\\d{6,7}" ,
"\\d{8,9}" , , , "62123456" , , , [ 8 , 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , HT : [ , [ , , "[2-489]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:[248]\\d|5[1-5]|94)\\d{5}" , "\\d{8}" , , , "22453300" ] , [ , , "(?:3[1-9]\\d|4\\d{2}|9(?:8[0-35]|9[5-9]))\\d{5}" , "\\d{8}" , , , "34101234" ] , [ , , "8\\d{7}" , "\\d{8}" , , , "80012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "98[89]\\d{5}" , "\\d{8}" , , , "98901234" ] , "HT" , 509 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{4})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , HU : [ , [ , , "[1-9]\\d{7,8}" , "\\d{6,9}" , , , , , , [ 8 , 9 ] , [ 6 ] ] , [ , , "(?:1\\d|2[2-9]|3[2-7]|4[24-9]|5[2-79]|6[23689]|7[2-9]|8[2-57-9]|9[2-69])\\d{6}" , "\\d{6,8}" , , , "12345678" , , , [ 8 ] ] , [ , , "(?:[257]0|3[01])\\d{7}" , "\\d{9}" , , , "201234567" , , , [ 9 ] ] , [ , , "[48]0\\d{6}" , "\\d{8}" , , , "80123456" , , , [ 8 ] ] , [ , , "9[01]\\d{6}" , "\\d{8}" , , , "90123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "21\\d{7}" , "\\d{9}" , , , "211234567" , , , [ 9 ] ] , "HU" , 36 , "00" , "06" , , , "06" , , , , [ [ , "(1)(\\d{3})(\\d{4})" ,
"$1 $2 $3" , [ "1" ] , "($1)" ] , [ , "(\\d{2})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[2-9]" ] , "($1)" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "[48]0\\d{6}" , "\\d{8}" , , , "80123456" , , , [ 8 ] ] , [ , , "38\\d{7}" , "\\d{6,9}" , , , "381234567" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ID : [ , [ , , "(?:[1-79]\\d{6,10}|8\\d{7,11})" , "\\d{5,12}" , , , , , , [ 7 , 8 , 9 , 10 , 11 , 12 ] , [ 5 , 6 ] ] , [ , , "2(?:1(?:14\\d{3}|[0-8]\\d{6,7}|500\\d{3}|9\\d{6})|2\\d{6,8}|4\\d{7,8})|(?:2(?:[35][1-4]|6[0-8]|7[1-6]|8\\d|9[1-8])|3(?:1|[25][1-8]|3[1-68]|4[1-3]|6[1-3568]|7[0-469]|8\\d)|4(?:0[1-589]|1[01347-9]|2[0-36-8]|3[0-24-68]|43|5[1-378]|6[1-5]|7[134]|8[1245])|5(?:1[1-35-9]|2[25-8]|3[124-9]|4[1-3589]|5[1-46]|6[1-8])|6(?:19?|[25]\\d|3[1-69]|4[1-6])|7(?:02|[125][1-9]|[36]\\d|4[1-8]|7[0-36-9])|9(?:0[12]|1[013-8]|2[0-479]|5[125-8]|6[23679]|7[159]|8[01346]))\\d{5,8}" ,
"\\d{5,11}" , , , "612345678" , , , [ 7 , 8 , 9 , 10 , 11 ] ] , [ , , "(?:2(?:1(?:3[145]|4[01]|5[1-469]|60|8[0359]|9\\d)|2(?:88|9[1256])|3[1-4]9|4(?:36|91)|5(?:1[349]|[2-4]9)|6[0-7]9|7(?:[1-36]9|4[39])|8[1-5]9|9[1-48]9)|3(?:19[1-3]|2[12]9|3[13]9|4(?:1[69]|39)|5[14]9|6(?:1[69]|2[89])|709)|4[13]19|5(?:1(?:19|8[39])|4[129]9|6[12]9)|6(?:19[12]|2(?:[23]9|77))|7(?:1[13]9|2[15]9|419|5(?:1[89]|29)|6[15]9|7[178]9))\\d{5,6}|8[1-35-9]\\d{7,10}" , "\\d{9,12}" , , , "812345678" , , , [ 9 , 10 , 11 , 12 ] ] , [ , , "177\\d{6,8}|800\\d{5,7}" , "\\d{8,11}" , , , "8001234567" ,
, , [ 8 , 9 , 10 , 11 ] ] , [ , , "809\\d{7}" , "\\d{10}" , , , "8091234567" , , , [ 10 ] ] , [ , , "804\\d{7}" , "\\d{10}" , , , "8041234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ID" , 62 , "0(?:0[1789]|10(?:00|1[67]))" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{5,8})" , "$1 $2" , [ "2[124]|[36]1" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{5,8})" , "$1 $2" , [ "[4579]|2[035-9]|[36][02-9]" ] , "(0$1)" ] , [ , "(8\\d{2})(\\d{3,4})(\\d{3,5})" , "$1-$2-$3" , [ "8[1-35-9]" ] , "0$1" ] , [ , "(1)(500)(\\d{3})" , "$1 $2 $3" , [ "15" ] , "$1" ] , [ , "(177)(\\d{6,8})" , "$1 $2" , [ "17" ] , "0$1" ] , [ , "(800)(\\d{5,7})" ,
"$1 $2" , [ "800" ] , "0$1" ] , [ , "(804)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "804" ] , "0$1" ] , [ , "(80\\d)(\\d)(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "80[79]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "8071\\d{6}" , "\\d{10}" , , , "8071123456" , , , [ 10 ] ] , [ , , "1500\\d{3}|8071\\d{6}" , "\\d{7,10}" , , , "8071123456" , , , [ 7 , 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IE : [ , [ , , "[124-9]\\d{6,9}" , "\\d{5,10}" , , , , , , [ 7 , 8 , 9 , 10 ] , [ 5 , 6 ] ] , [ , , "1\\d{7,8}|2(?:1\\d{6,7}|3\\d{7}|[24-9]\\d{5})|4(?:0[24]\\d{5}|[1-469]\\d{7}|5\\d{6}|7\\d{5}|8[0-46-9]\\d{7})|5(?:0[45]\\d{5}|1\\d{6}|[23679]\\d{7}|8\\d{5})|6(?:1\\d{6}|[237-9]\\d{5}|[4-6]\\d{7})|7[14]\\d{7}|9(?:1\\d{6}|[04]\\d{7}|[35-9]\\d{5})" ,
"\\d{5,10}" , , , "2212345" ] , [ , , "8(?:22\\d{6}|[35-9]\\d{7})" , "\\d{9}" , , , "850123456" , , , [ 9 ] ] , [ , , "1800\\d{6}" , "\\d{10}" , , , "1800123456" , , , [ 10 ] ] , [ , , "15(?:1[2-8]|[2-8]0|9[089])\\d{6}" , "\\d{10}" , , , "1520123456" , , , [ 10 ] ] , [ , , "18[59]0\\d{6}" , "\\d{10}" , , , "1850123456" , , , [ 10 ] ] , [ , , "700\\d{6}" , "\\d{9}" , , , "700123456" , , , [ 9 ] ] , [ , , "76\\d{7}" , "\\d{9}" , , , "761234567" , , , [ 9 ] ] , "IE" , 353 , "00" , "0" , , , "0" , , , , [ [ , "(1)(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "1" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{5})" , "$1 $2" , [ "2[24-9]|47|58|6[237-9]|9[35-9]" ] , "(0$1)" ] ,
[ , "(\\d{3})(\\d{5})" , "$1 $2" , [ "40[24]|50[45]" ] , "(0$1)" ] , [ , "(48)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "48" ] , "(0$1)" ] , [ , "(818)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "81" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[24-69]|7[14]" ] , "(0$1)" ] , [ , "([78]\\d)(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "76|8[35-9]" ] , "0$1" ] , [ , "(700)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "70" ] , "0$1" ] , [ , "(\\d{4})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1(?:8[059]|5)" , "1(?:8[059]0|5)" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "18[59]0\\d{6}" , "\\d{10}" , , , "1850123456" , , ,
[ 10 ] ] , [ , , "818\\d{6}" , "\\d{9}" , , , "818123456" , , , [ 9 ] ] , , , [ , , "8[35-9]\\d{8}" , "\\d{10}" , , , "8501234567" , , , [ 10 ] ] ] , IL : [ , [ , , "[17]\\d{6,9}|[2-589]\\d{3}(?:\\d{3,6})?|6\\d{3}" , "\\d{4,10}" , , , , , , [ 4 , 7 , 8 , 9 , 10 ] ] , [ , , "[2-489]\\d{7}" , "\\d{7,8}" , , , "21234567" , , , [ 8 ] ] , [ , , "5(?:[02-47-9]\\d{2}|5(?:01|2[23]|3[2-4]|4[45]|5[5689]|6[67]|7[0178]|8[6-9]|9[4-9])|6[2-9]\\d)\\d{5}" , "\\d{9}" , , , "501234567" , , , [ 9 ] ] , [ , , "1(?:80[019]\\d{3}|255)\\d{3}" , "\\d{7,10}" , , , "1800123456" , , , [ 7 , 10 ] ] , [ , , "1(?:212|(?:9(?:0[01]|19)|200)\\d{2})\\d{4}" , "\\d{8,10}" ,
, , "1919123456" , , , [ 8 , 9 , 10 ] ] , [ , , "1700\\d{6}" , "\\d{10}" , , , "1700123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7(?:18\\d|2[23]\\d|3[237]\\d|47\\d|6(?:5\\d|8[0168])|7\\d{2}|8(?:2\\d|33|55|77|81)|9[29]\\d)\\d{5}" , "\\d{9}" , , , "771234567" , , , [ 9 ] ] , "IL" , 972 , "0(?:0|1[2-9])" , "0" , , , "0" , , , , [ [ , "([2-489])(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[2-489]" ] , "0$1" ] , [ , "([57]\\d)(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[57]" ] , "0$1" ] , [ , "(1)([7-9]\\d{2})(\\d{3})(\\d{3})" , "$1-$2-$3-$4" , [ "1[7-9]" ] , "$1" ] , [ , "(1255)(\\d{3})" , "$1-$2" , [ "125" ] , "$1" ] , [ ,
"(1200)(\\d{3})(\\d{3})" , "$1-$2-$3" , [ "120" ] , "$1" ] , [ , "(1212)(\\d{2})(\\d{2})" , "$1-$2-$3" , [ "121" ] , "$1" ] , [ , "(1599)(\\d{6})" , "$1-$2" , [ "15" ] , "$1" ] , [ , "(\\d{4})" , "*$1" , [ "[2-689]" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "1700\\d{6}|[2-689]\\d{3}" , "\\d{4,10}" , , , "1700123456" , , , [ 4 , 10 ] ] , [ , , "[2-689]\\d{3}|1599\\d{6}" , "\\d{4}(?:\\d{6})?" , , , "1599123456" , , , [ 4 , 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IM : [ , [ , , "[135789]\\d{6,9}" , "\\d{6,10}" , , , , , , [ 10 ] , [ 6 ] ] , [ , , "1624\\d{6}" , "\\d{6,10}" , , , "1624456789" ] , [ , , "7[569]24\\d{6}" , "\\d{10}" ,
, , "7924123456" ] , [ , , "808162\\d{4}" , "\\d{10}" , , , "8081624567" ] , [ , , "(?:872299|90[0167]624)\\d{4}" , "\\d{10}" , , , "9016247890" ] , [ , , "8(?:4(?:40[49]06|5624\\d)|70624\\d)\\d{3}" , "\\d{10}" , , , "8456247890" ] , [ , , "70\\d{8}" , "\\d{10}" , , , "7012345678" ] , [ , , "56\\d{8}" , "\\d{10}" , , , "5612345678" ] , "IM" , 44 , "00" , "0" , " x" , , "0" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3(?:08162\\d|3\\d{5}|4(?:40[49]06|5624\\d)|7(?:0624\\d|2299\\d))\\d{3}|55\\d{8}" , "\\d{10}" , , , "5512345678" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IN : [ , [ , ,
"008\\d{9}|1\\d{7,12}|[2-9]\\d{9,10}" , "\\d{6,13}" , , , , , , [ 8 , 9 , 10 , 11 , 12 , 13 ] , [ 6 , 7 ] ] , [ , , "(?:11|2[02]|33|4[04]|79)[2-7]\\d{7}|80[2-467]\\d{7}|(?:1(?:2[0-249]|3[0-25]|4[145]|[59][14]|6[014]|7[1257]|8[01346])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|[36][25]|22|4[28]|5[12]|[78]1|9[15])|6(?:12|[2345]1|57|6[13]|7[14]|80)|7(?:12|2[14]|3[134]|4[47]|5[15]|[67]1|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91))[2-7]\\d{6}|(?:(?:1(?:2[35-8]|3[346-9]|4[236-9]|[59][0235-9]|6[235-9]|7[34689]|8[257-9])|2(?:1[134689]|3[24-8]|4[2-8]|5[25689]|6[2-4679]|7[13-79]|8[2-479]|9[235-9])|3(?:01|1[79]|2[1-5]|4[25-8]|5[125689]|6[235-7]|7[157-9]|8[2-467])|4(?:1[14578]|2[5689]|3[2-467]|5[4-7]|6[35]|73|8[2689]|9[2389])|5(?:[16][146-9]|2[14-8]|3[1346]|4[14-69]|5[46]|7[2-4]|8[2-8]|9[246])|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|[57][2-689]|6[24-578]|8[1-6])|8(?:1[1357-9]|2[235-8]|3[03-57-9]|4[0-24-9]|5\\d|6[2457-9]|7[1-6]|8[1256]|9[2-4]))\\d|7(?:(?:1[013-9]|2[0235-9]|3[2679]|4[1-35689]|5[2-46-9]|[67][02-9]|9\\d)\\d|8(?:2[0-6]|[013-8]\\d)))[2-7]\\d{5}" ,
"\\d{6,10}" , , , "1123456789" , , , [ 10 ] ] , [ , , "(?:7(?:0\\d{3}|2(?:[0235679]\\d{2}|[14][017-9]\\d|8(?:[0-59]\\d|6[089]|78)|9[389]\\d)|3(?:[05-8]\\d{2}|1(?:[089]\\d|7[5-8])|2(?:[5-8]\\d|[01][089])|3(?:07|[17-9]\\d)|4(?:[07-9]\\d|11)|9(?:[01689]\\d|59|70))|4(?:0[1-9]\\d|1(?:[015-9]\\d|2[089]|4[08])|2(?:09|[1-7][089]|[89]\\d)|3(?:[0-8][089]|9\\d)|4(?:[089]\\d|11|7[02-8])|5(?:0[089]|[59]9)|7(?:0[3-9]|11|7[02-8]|[89]\\d)|8(?:[0-24-7][089]|[389]\\d)|9(?:[0-6][089]|7[08]|[89]\\d))|5(?:[034678]\\d|2[03-9]|5[017-9]|9[7-9])\\d|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9]\\d)\\d|7(?:0[2-9]|[1-79]\\d|8[1-9])\\d|8(?:[0-79]\\d{2}|88[01])|99[4-9]\\d)|8(?:0(?:[01589]\\d|6[67])|1(?:[02-57-9]\\d|1[0135-9])|2(?:[236-9]\\d|5[1-9])|3(?:[0357-9]\\d|4[1-9])|[45]\\d{2}|6[02457-9]\\d|7(?:07|[1-69]\\d)|8(?:[0-26-9]\\d|44|5[2-9])|9(?:[035-9]\\d|2[2-9]|4[0-8]))\\d|9\\d{4})\\d{5}" ,
"\\d{10}" , , , "9987654321" , , , [ 10 ] ] , [ , , "00800\\d{7}|1(?:600\\d{6}|80(?:0\\d{4,9}|3\\d{9}))" , "\\d{8,13}" , , , "1800123456" ] , [ , , "186[12]\\d{9}" , "\\d{13}" , , , "1861123456789" , , , [ 13 ] ] , [ , , "1860\\d{7}" , "\\d{11}" , , , "18603451234" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "IN" , 91 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{5})(\\d{5})" , "$1 $2" , [ "7(?:[023578]|4[0-57-9]|6[0-35-9]|99)|8(?:0[015689]|1[0-57-9]|2[2356-9]|3[0-57-9]|[45]|6[02457-9]|7[01-69]|8[0-24-9]|9[02-9])|9" , "7(?:[08]|2(?:[0235679]|[14][017-9]|8[0-79]|9[389])|3(?:[05-8]|1[07-9]|2[015-8]|[34][017-9]|9[015-9])|4(?:0[1-9]|1[0-24-9]|[2389]|[47][017-9]|5[059])|5(?:[034678]|2[03-9]|5[017-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9])|7(?:0[2-9]|[1-79]|8[1-9])|99[4-9])|8(?:0(?:[01589]|6[67])|1(?:[02-57-9]|1[0135-9])|2(?:[236-9]|5[1-9])|3(?:[0357-9]|4[1-9])|[45]|6[02457-9]|7(?:07|[1-69])|8(?:[0-26-9]|44|5[2-9])|9(?:[035-9]|2[2-9]|4[0-8]))|9" ,
"7(?:0|2(?:[0235679]|[14][017-9]|8(?:[0-569]|78)|9[389])|3(?:[05-8]|1(?:[089]|7[5-9])|2(?:[5-8]|[01][089])|3[017-9]|4(?:[07-9]|11)|9(?:[01689]|59|70))|4(?:0[1-9]|1(?:[015-9]|2[089]|4[08])|2(?:09|[1-7][089]|[89])|3(?:[0-8][089]|9)|4(?:[089]|11|7[02-8])|5(?:0[089]|[59]9)|7(?:0[3-9]|11|7[02-8]|[89])|8(?:[0-24-7][089]|[389])|9(?:[0-6][089]|7[08]|[89]))|5(?:[034678]|2[03-9]|5[017-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589]|[6-9])|7(?:0[2-9]|[1-79]|8[1-9])|8(?:[0-79]|88[01])|99[4-9])|8(?:0(?:[01589]|6[67])|1(?:[02-57-9]|1[0135-9])|2(?:[236-9]|5[1-9])|3(?:[0357-9]|4[1-9])|[45]|6[02457-9]|7(?:07|[1-69])|8(?:[0-26-9]|44|5[2-9])|9(?:[035-9]|2[2-9]|4[0-8]))|9" ] ,
2016-01-22 23:34:30 +00:00
"0$1" , , 1 ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "11|2[02]|33|4[04]|79|80[2-46]" ] , "0$1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1(?:2[0-249]|3[0-25]|4[145]|[569][14]|7[1257]|8[1346]|[68][1-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|[36][25]|22|4[28]|5[12]|[78]1|9[15])|6(?:12|[2345]1|57|6[13]|7[14]|80)" ] , "0$1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" ,
2016-10-30 10:47:58 +00:00
[ "7(?:12|2[14]|3[134]|4[47]|5[15]|[67]1|88)" , "7(?:12|2[14]|3[134]|4[47]|5(?:1|5[2-6])|[67]1|88)" ] , "0$1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)" ] , "0$1" , , 1 ] , [ , "(\\d{4})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1(?:[23579]|[468][1-9])|[2-8]" ] , "0$1" , , 1 ] , [ , "(\\d{2})(\\d{3})(\\d{4})(\\d{3})" , "$1 $2 $3 $4" , [ "008" ] , "0$1" , , 1 ] , [ , "(1600)(\\d{2})(\\d{4})" , "$1 $2 $3" , [ "160" , "1600" ] , "$1" , , 1 ] , [ , "(1800)(\\d{4,5})" , "$1 $2" , [ "180" , "1800" ] , "$1" , , 1 ] , [ , "(18[06]0)(\\d{2,4})(\\d{4})" ,
"$1 $2 $3" , [ "18[06]" , "18[06]0" ] , "$1" , , 1 ] , [ , "(140)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "140" ] , "$1" , , 1 ] , [ , "(\\d{4})(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "18[06]" , "18(?:0[03]|6[12])" ] , "$1" , , 1 ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "00800\\d{7}|1(?:600\\d{6}|8(?:0(?:0\\d{4,9}|3\\d{9})|6(?:0\\d{7}|[12]\\d{9})))" , "\\d{8,13}" , , , "1800123456" ] , [ , , "140\\d{7}" , "\\d{10}" , , , "1409305260" , , , [ 10 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IO : [ , [ , , "3\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "37\\d{5}" , "\\d{7}" , , , "3709100" ] , [ , , "38\\d{5}" , "\\d{7}" , , , "3801234" ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "IO" , 246 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IQ : [ , [ , , "[1-7]\\d{7,9}" , "\\d{6,10}" , , , , , , [ 8 , 9 , 10 ] , [ 6 , 7 ] ] , [ , , "1\\d{7}|(?:2[13-5]|3[02367]|4[023]|5[03]|6[026])\\d{6,7}" , "\\d{6,9}" , , , "12345678" , , , [ 8 , 9 ] ] , [ , , "7[3-9]\\d{8}" , "\\d{10}" , , , "7912345678" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "IQ" , 964 , "00" , "0" , , , "0" , , , , [ [ , "(1)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1" ] , "0$1" ] , [ , "([2-6]\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[2-6]" ] , "0$1" ] , [ , "(7\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "7" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IR : [ , [ , , "[1-8]\\d{9}|9(?:[0-4]\\d{8}|9\\d{2,8})" , "\\d{4,10}" , , , , , , [ 4 , 5 , 6 , 7 , 8 , 9 , 10 ] ] , [ , , "(?:1[137]|2[13-68]|3[1458]|4[145]|5[146-8]|6[146]|7[1467]|8[13467])\\d{8}" ,
"\\d{10}" , , , "2123456789" , , , [ 10 ] ] , [ , , "9(?:0[1-3]|[13]\\d|2[0-2]|90)\\d{7}" , "\\d{10}" , , , "9123456789" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:[2-6]0\\d|993)\\d{7}" , "\\d{10}" , , , "9932123456" , , , [ 10 ] ] , "IR" , 98 , "00" , "0" , , , "0" , , , , [ [ , "(21)(\\d{3,5})" , "$1 $2" , [ "21" ] , "0$1" ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "[1-8]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{2,3})" , "$1 $2 $3" , [ "9" ] , "0$1" ] , [ ,
"(\\d{3})(\\d{3})" , "$1 $2" , [ "9" ] , "0$1" ] ] , , [ , , "943\\d{7}" , "\\d{10}" , , , "9432123456" , , , [ 10 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "9990\\d{0,6}" , "\\d{4,10}" , , , "9990123456" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , IS : [ , [ , , "[4-9]\\d{6}|38\\d{7}" , "\\d{7,9}" , , , , , , [ 7 , 9 ] ] , [ , , "(?:4(?:1[0-24-6]|2[0-7]|[37][0-8]|4[0-245]|5[0-68]|6\\d|8[0-36-8])|5(?:05|[156]\\d|2[02578]|3[013-79]|4[03-7]|7[0-2578]|8[0-35-9]|9[013-689])|87[23])\\d{4}" , "\\d{7}" , , , "4101234" , , , [ 7 ] ] , [ , , "38[589]\\d{6}|(?:6(?:1[1-8]|2[056]|3[089]|4[0167]|5[0159]|[67][0-69]|9\\d)|7(?:5[057]|6[0-2]|[78]\\d)|8(?:2[0-59]|3[0-4]|[469]\\d|5[1-9]))\\d{4}" ,
"\\d{7,9}" , , , "6111234" ] , [ , , "800\\d{4}" , "\\d{7}" , , , "8001234" , , , [ 7 ] ] , [ , , "90\\d{5}" , "\\d{7}" , , , "9011234" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "49\\d{5}" , "\\d{7}" , , , "4921234" , , , [ 7 ] ] , "IS" , 354 , "1(?:0(?:01|10|20)|100)|00" , , , , , , "00" , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[4-9]" ] ] , [ , "(3\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "3" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "809\\d{4}" , "\\d{7}" , , , "8091234" , , , [ 7 ] ] , , , [ , , "(?:6(?:2[1-478]|49|8\\d)|8(?:7[0189]|80)|95[48])\\d{4}" , "\\d{7}" ,
, , "6211234" , , , [ 7 ] ] ] , IT : [ , [ , , "[01589]\\d{5,10}|3(?:[12457-9]\\d{8}|[36]\\d{7,9})" , "\\d{6,11}" , , , , , , [ 6 , 7 , 8 , 9 , 10 , 11 ] ] , [ , , "0(?:[26]\\d{4,9}|(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2346]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[34578]|3[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7})" ,
"\\d{6,11}" , , , "0212345678" ] , [ , , "3(?:[12457-9]\\d{8}|6\\d{7,8}|3\\d{7,9})" , "\\d{9,11}" , , , "3123456789" , , , [ 9 , 10 , 11 ] ] , [ , , "80(?:0\\d{6}|3\\d{3})" , "\\d{6,9}" , , , "800123456" , , , [ 6 , 9 ] ] , [ , , "0878\\d{5}|1(?:44|6[346])\\d{6}|89(?:2\\d{3}|4(?:[0-4]\\d{2}|[5-9]\\d{4})|5(?:[0-4]\\d{2}|[5-9]\\d{6})|9\\d{6})" , "\\d{6,10}" , , , "899123456" , , , [ 6 , 8 , 9 , 10 ] ] , [ , , "84(?:[08]\\d{6}|[17]\\d{3})" , "\\d{6,9}" , , , "848123456" , , , [ 6 , 9 ] ] , [ , , "1(?:78\\d|99)\\d{6}" , "\\d{9,10}" , , , "1781234567" , , , [ 9 , 10 ] ] , [ , , "55\\d{8}" , "\\d{10}" , , , "5512345678" , ,
, [ 10 ] ] , "IT" , 39 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "0[26]|55" ] ] , [ , "(0[26])(\\d{4})(\\d{5})" , "$1 $2 $3" , [ "0[26]" ] ] , [ , "(0[26])(\\d{4,6})" , "$1 $2" , [ "0[26]" ] ] , [ , "(0\\d{2})(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "0[13-57-9][0159]" ] ] , [ , "(\\d{3})(\\d{3,6})" , "$1 $2" , [ "0[13-57-9][0159]|8(?:03|4[17]|9[245])" , "0[13-57-9][0159]|8(?:03|4[17]|9(?:2|[45][0-4]))" ] ] , [ , "(0\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "0[13-57-9][2-46-8]" ] ] , [ , "(0\\d{3})(\\d{2,6})" , "$1 $2" , [ "0[13-57-9][2-46-8]" ] ] , [ , "(\\d{3})(\\d{3})(\\d{3,4})" ,
"$1 $2 $3" , [ "[13]|8(?:00|4[08]|9[59])" , "[13]|8(?:00|4[08]|9(?:5[5-9]|9))" ] ] , [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "894" , "894[5-9]" ] ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "3" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "848\\d{6}" , "\\d{9}" , , , "848123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , JE : [ , [ , , "[135789]\\d{6,9}" , "\\d{6,10}" , , , , , , [ 10 ] , [ 6 ] ] , [ , , "1534\\d{6}" , "\\d{6,10}" , , , "1534456789" ] , [ , , "7(?:509|7(?:00|97)|829|937)\\d{6}" , "\\d{10}" , , , "7797123456" ] , [ , , "80(?:07(?:35|81)|8901)\\d{4}" , "\\d{10}" ,
, , "8007354567" ] , [ , , "(?:871206|90(?:066[59]|1810|71(?:07|55)))\\d{4}" , "\\d{10}" , , , "9018105678" ] , [ , , "8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|70002)\\d{4}" , "\\d{10}" , , , "8447034567" ] , [ , , "701511\\d{4}" , "\\d{10}" , , , "7015115678" ] , [ , , "56\\d{8}" , "\\d{10}" , , , "5612345678" ] , "JE" , 44 , "00" , "0" , " x" , , "0" , , , , , , [ , , "76(?:0[012]|2[356]|4[0134]|5[49]|6[0-369]|77|81|9[39])\\d{6}" , "\\d{10}" , , , "7640123456" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))\\d{4}|55\\d{8}" ,
"\\d{10}" , , , "5512345678" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , JM : [ , [ , , "[589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "876(?:5(?:0[12]|1[0-468]|2[35]|63)|6(?:0[1-3579]|1[027-9]|[23]\\d|40|5[06]|6[2-589]|7[05]|8[04]|9[4-9])|7(?:0[2-689]|[1-6]\\d|8[056]|9[45])|9(?:0[1-8]|1[02378]|[2-8]\\d|9[2-468]))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "8765123456" ] , [ , , "876(?:2(?:[16-9]\\d|58)|[348]\\d{2}|5(?:0[3-9]|2[0-246-9]|6[0-24-9]|[3-578]\\d)|7(?:0[07]|7\\d|8[1-47-9]|9[0-36-9])|9(?:[01]9|9[0579]))\\d{4}" , "\\d{7}(?:\\d{3})?" ,
, , "8762101234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "JM" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "876" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , JO : [ , [ , , "[235-9]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "(?:2(?:6(?:2[0-35-9]|3[0-57-8]|4[24-7]|5[0-24-8]|[6-8][023]|9[0-3])|7(?:0[1-79]|10|2[014-7]|3[0-689]|4[019]|5[0-3578]))|32(?:0[1-69]|1[1-35-7]|2[024-7]|3\\d|4[0-3]|[57][023]|6[03])|53(?:0[0-3]|[13][023]|2[0-59]|49|5[0-35-9]|6[15]|7[45]|8[1-6]|9[0-36-9])|6(?:2[50]0|3(?:00|33)|4(?:0[0125]|1[2-7]|2[0569]|[38][07-9]|4[025689]|6[0-589]|7\\d|9[0-2])|5(?:[01][056]|2[034]|3[0-57-9]|4[17-8]|5[0-69]|6[0-35-9]|7[1-379]|8[0-68]|9[02-39]))|87(?:[02]0|7[08]|90))\\d{4}" ,
"\\d{8}" , , , "62001234" , , , [ 8 ] ] , [ , , "7(?:55|7[025-9]|8[015-9]|9[0-25-9])\\d{6}" , "\\d{9}" , , , "790123456" , , , [ 9 ] ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "900\\d{5}" , "\\d{8}" , , , "90012345" , , , [ 8 ] ] , [ , , "85\\d{6}" , "\\d{8}" , , , "85012345" , , , [ 8 ] ] , [ , , "70\\d{7}" , "\\d{9}" , , , "700123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "JO" , 962 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[2356]|87" ] , "(0$1)" ] , [ , "(7)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "7[457-9]" ] , "0$1" ] , [ , "(\\d{3})(\\d{5,6})" , "$1 $2" , [ "70|8[0158]|9" ] , "0$1" ] ] ,
, [ , , "74(?:66|77)\\d{5}" , "\\d{9}" , , , "746612345" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "8(?:10|8\\d)\\d{5}" , "\\d{8}" , , , "88101234" , , , [ 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , JP : [ , [ , , "[1-9]\\d{8,9}|00(?:[36]\\d{7,14}|7\\d{5,7}|8\\d{7})" , "\\d{8,17}" , , , , , , [ 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 , 17 ] ] , [ , , "(?:1(?:1[235-8]|2[3-6]|3[3-9]|4[2-6]|[58][2-8]|6[2-7]|7[2-9]|9[1-9])|2[2-9]\\d|[36][1-9]\\d|4(?:6[02-8]|[2-578]\\d|9[2-59])|5(?:6[1-9]|7[2-8]|[2-589]\\d)|7(?:3[4-9]|4[02-9]|[25-9]\\d)|8(?:3[2-9]|4[5-9]|5[1-9]|8[03-9]|[2679]\\d)|9(?:[679][1-9]|[2-58]\\d))\\d{6}" ,
"\\d{9}" , , , "312345678" , , , [ 9 ] ] , [ , , "[7-9]0[1-9]\\d{7}" , "\\d{10}" , , , "9012345678" , , , [ 10 ] ] , [ , , "120\\d{6}|800\\d{7}|00(?:37\\d{6,13}|66\\d{6,13}|777(?:[01]\\d{2}|5\\d{3}|8\\d{4})|882[1245]\\d{4})" , "\\d{8,17}" , , , "120123456" ] , [ , , "990\\d{6}" , "\\d{9}" , , , "990123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "60\\d{7}" , "\\d{9}" , , , "601234567" , , , [ 9 ] ] , [ , , "50[1-9]\\d{7}" , "\\d{10}" , , , "5012345678" , , , [ 10 ] ] , "JP" , 81 , "010" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1-$2-$3" , [ "(?:12|57|99)0" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" ,
"$1-$2-$3" , [ "800" ] , "0$1" ] , [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "0077" ] , "$1" ] , [ , "(\\d{4})(\\d{2})(\\d{3,4})" , "$1-$2-$3" , [ "0077" ] , "$1" ] , [ , "(\\d{4})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "0088" ] , "$1" ] , [ , "(\\d{4})(\\d{3})(\\d{3,4})" , "$1-$2-$3" , [ "00(?:37|66)" ] , "$1" ] , [ , "(\\d{4})(\\d{4})(\\d{4,5})" , "$1-$2-$3" , [ "00(?:37|66)" ] , "$1" ] , [ , "(\\d{4})(\\d{5})(\\d{5,6})" , "$1-$2-$3" , [ "00(?:37|66)" ] , "$1" ] , [ , "(\\d{4})(\\d{6})(\\d{6,7})" , "$1-$2-$3" , [ "00(?:37|66)" ] , "$1" ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1-$2-$3" , [ "[2579]0|80[1-9]" ] , "0$1" ] ,
[ , "(\\d{4})(\\d)(\\d{4})" , "$1-$2-$3" , [ "1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|5(?:76|97)|499|746|8(?:3[89]|63|47|51)|9(?:49|80|9[16])" , "1(?:267|3(?:7[247]|9[278])|4(?:5[67]|66)|5(?:47|58|64|8[67])|6(?:3[245]|48|5[4-68]))|5(?:76|97)9|499[2468]|7468|8(?:3(?:8[78]|96)|636|477|51[24])|9(?:496|802|9(?:1[23]|69))" , "1(?:267|3(?:7[247]|9[278])|4(?:5[67]|66)|5(?:47|58|64|8[67])|6(?:3[245]|48|5[4-68]))|5(?:769|979[2-69])|499[2468]|7468|8(?:3(?:8[78]|96[2457-9])|636[2-57-9]|477|51[24])|9(?:496|802|9(?:1[23]|69))" ] ,
"0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "1(?:2[3-6]|3[3-9]|4[2-6]|5[2-8]|[68][2-7]|7[2-689]|9[1-578])|2(?:2[03-689]|3[3-58]|4[0-468]|5[04-8]|6[013-8]|7[06-9]|8[02-57-9]|9[13])|4(?:2[28]|3[689]|6[035-7]|7[05689]|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9[4-9])|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9[014-9])|8(?:2[49]|3[3-8]|4[5-8]|5[2-9]|6[35-9]|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9[3-7])" , "1(?:2[3-6]|3[3-9]|4[2-6]|5(?:[236-8]|[45][2-69])|[68][2-7]|7[2-689]|9[1-578])|2(?:2(?:[04-689]|3[23])|3[3-58]|4[0-468]|5(?:5[78]|7[2-4]|[0468][2-9])|6(?:[0135-8]|4[2-5])|7(?:[0679]|8[2-7])|8(?:[024578]|3[25-9]|9[6-9])|9(?:11|3[2-4]))|4(?:2(?:2[2-9]|8[237-9])|3[689]|6[035-7]|7(?:[059][2-8]|[68])|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9(?:[89][2-8]|[4-7]))|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9(?:[017-9]|4[6-8]|5[2-478]|6[2-589]))|8(?:2(?:4[4-8]|9[2-8])|3(?:7[2-6]|[3-6][2-9]|8[2-5])|4[5-8]|5[2-9]|6(?:[37]|5[4-7]|6[2-9]|8[2-8]|9[236-9])|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9(?:3[34]|[4-7]))" ,
2014-06-29 22:15:27 +00:00
"1(?:2[3-6]|3[3-9]|4[2-6]|5(?:[236-8]|[45][2-69])|[68][2-7]|7[2-689]|9[1-578])|2(?:2(?:[04-689]|3[23])|3[3-58]|4[0-468]|5(?:5[78]|7[2-4]|[0468][2-9])|6(?:[0135-8]|4[2-5])|7(?:[0679]|8[2-7])|8(?:[024578]|3[25-9]|9[6-9])|9(?:11|3[2-4]))|4(?:2(?:2[2-9]|8[237-9])|3[689]|6[035-7]|7(?:[059][2-8]|[68])|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9(?:[89][2-8]|[4-7]))|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9(?:[017-9]|4[6-8]|5[2-478]|6[2-589]))|8(?:2(?:4[4-8]|9(?:[3578]|20|4[04-9]|6[56]))|3(?:7(?:[2-5]|6[0-59])|[3-6][2-9]|8[2-5])|4[5-8]|5[2-9]|6(?:[37]|5(?:[467]|5[014-9])|6(?:[2-8]|9[02-69])|8[2-8]|9(?:[236-8]|9[23]))|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9(?:3(?:3[02-9]|4[0-24689])|4[2-69]|[5-7]))" ,
"1(?:2[3-6]|3[3-9]|4[2-6]|5(?:[236-8]|[45][2-69])|[68][2-7]|7[2-689]|9[1-578])|2(?:2(?:[04-689]|3[23])|3[3-58]|4[0-468]|5(?:5[78]|7[2-4]|[0468][2-9])|6(?:[0135-8]|4[2-5])|7(?:[0679]|8[2-7])|8(?:[024578]|3[25-9]|9[6-9])|9(?:11|3[2-4]))|4(?:2(?:2[2-9]|8[237-9])|3[689]|6[035-7]|7(?:[059][2-8]|[68])|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9(?:[89][2-8]|[4-7]))|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9(?:[017-9]|4[6-8]|5[2-478]|6[2-589]))|8(?:2(?:4[4-8]|9(?:[3578]|20|4[04-9]|6(?:5[25]|60)))|3(?:7(?:[2-5]|6[0-59])|[3-6][2-9]|8[2-5])|4[5-8]|5[2-9]|6(?:[37]|5(?:[467]|5[014-9])|6(?:[2-8]|9[02-69])|8[2-8]|9(?:[236-8]|9[23]))|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9(?:3(?:3[02-9]|4[0-24689])|4[2-69]|[5-7]))" ] ,
2016-01-22 23:34:30 +00:00
"0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "1|2(?:2[37]|5[5-9]|64|78|8[39]|91)|4(?:2[2689]|64|7[347])|5(?:[2-589]|39)|60|8(?:[46-9]|3[279]|2[124589])|9(?:[235-8]|93)" , "1|2(?:2[37]|5(?:[57]|[68]0|9[19])|64|78|8[39]|917)|4(?:2(?:[68]|20|9[178])|64|7[347])|5(?:[2-589]|39[67])|60|8(?:[46-9]|3[279]|2[124589])|9(?:[235-8]|93[34])" , "1|2(?:2[37]|5(?:[57]|[68]0|9(?:17|99))|64|78|8[39]|917)|4(?:2(?:[68]|20|9[178])|64|7[347])|5(?:[2-589]|39[67])|60|8(?:[46-9]|3[279]|2[124589])|9(?:[235-8]|93(?:31|4))" ] ,
"0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "2(?:9[14-79]|74|[34]7|[56]9)|82|993" ] , "0$1" ] , [ , "(\\d)(\\d{4})(\\d{4})" , "$1-$2-$3" , [ "3|4(?:2[09]|7[01])|6[1-9]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[2479][1-9]" ] , "0$1" ] ] , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1-$2-$3" , [ "(?:12|57|99)0" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "800" ] , "0$1" ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1-$2-$3" , [ "[2579]0|80[1-9]" ] , "0$1" ] , [ , "(\\d{4})(\\d)(\\d{4})" , "$1-$2-$3" , [ "1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|5(?:76|97)|499|746|8(?:3[89]|63|47|51)|9(?:49|80|9[16])" ,
"1(?:267|3(?:7[247]|9[278])|4(?:5[67]|66)|5(?:47|58|64|8[67])|6(?:3[245]|48|5[4-68]))|5(?:76|97)9|499[2468]|7468|8(?:3(?:8[78]|96)|636|477|51[24])|9(?:496|802|9(?:1[23]|69))" , "1(?:267|3(?:7[247]|9[278])|4(?:5[67]|66)|5(?:47|58|64|8[67])|6(?:3[245]|48|5[4-68]))|5(?:769|979[2-69])|499[2468]|7468|8(?:3(?:8[78]|96[2457-9])|636[2-57-9]|477|51[24])|9(?:496|802|9(?:1[23]|69))" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "1(?:2[3-6]|3[3-9]|4[2-6]|5[2-8]|[68][2-7]|7[2-689]|9[1-578])|2(?:2[03-689]|3[3-58]|4[0-468]|5[04-8]|6[013-8]|7[06-9]|8[02-57-9]|9[13])|4(?:2[28]|3[689]|6[035-7]|7[05689]|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9[4-9])|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9[014-9])|8(?:2[49]|3[3-8]|4[5-8]|5[2-9]|6[35-9]|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9[3-7])" ,
2014-06-29 22:15:27 +00:00
"1(?:2[3-6]|3[3-9]|4[2-6]|5(?:[236-8]|[45][2-69])|[68][2-7]|7[2-689]|9[1-578])|2(?:2(?:[04-689]|3[23])|3[3-58]|4[0-468]|5(?:5[78]|7[2-4]|[0468][2-9])|6(?:[0135-8]|4[2-5])|7(?:[0679]|8[2-7])|8(?:[024578]|3[25-9]|9[6-9])|9(?:11|3[2-4]))|4(?:2(?:2[2-9]|8[237-9])|3[689]|6[035-7]|7(?:[059][2-8]|[68])|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9(?:[89][2-8]|[4-7]))|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9(?:[017-9]|4[6-8]|5[2-478]|6[2-589]))|8(?:2(?:4[4-8]|9[2-8])|3(?:7[2-6]|[3-6][2-9]|8[2-5])|4[5-8]|5[2-9]|6(?:[37]|5[4-7]|6[2-9]|8[2-8]|9[236-9])|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9(?:3[34]|[4-7]))" ,
"1(?:2[3-6]|3[3-9]|4[2-6]|5(?:[236-8]|[45][2-69])|[68][2-7]|7[2-689]|9[1-578])|2(?:2(?:[04-689]|3[23])|3[3-58]|4[0-468]|5(?:5[78]|7[2-4]|[0468][2-9])|6(?:[0135-8]|4[2-5])|7(?:[0679]|8[2-7])|8(?:[024578]|3[25-9]|9[6-9])|9(?:11|3[2-4]))|4(?:2(?:2[2-9]|8[237-9])|3[689]|6[035-7]|7(?:[059][2-8]|[68])|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9(?:[89][2-8]|[4-7]))|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9(?:[017-9]|4[6-8]|5[2-478]|6[2-589]))|8(?:2(?:4[4-8]|9(?:[3578]|20|4[04-9]|6[56]))|3(?:7(?:[2-5]|6[0-59])|[3-6][2-9]|8[2-5])|4[5-8]|5[2-9]|6(?:[37]|5(?:[467]|5[014-9])|6(?:[2-8]|9[02-69])|8[2-8]|9(?:[236-8]|9[23]))|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9(?:3(?:3[02-9]|4[0-24689])|4[2-69]|[5-7]))" ,
"1(?:2[3-6]|3[3-9]|4[2-6]|5(?:[236-8]|[45][2-69])|[68][2-7]|7[2-689]|9[1-578])|2(?:2(?:[04-689]|3[23])|3[3-58]|4[0-468]|5(?:5[78]|7[2-4]|[0468][2-9])|6(?:[0135-8]|4[2-5])|7(?:[0679]|8[2-7])|8(?:[024578]|3[25-9]|9[6-9])|9(?:11|3[2-4]))|4(?:2(?:2[2-9]|8[237-9])|3[689]|6[035-7]|7(?:[059][2-8]|[68])|80|9[3-5])|5(?:3[1-36-9]|4[4578]|5[013-8]|6[1-9]|7[2-8]|8[14-7]|9(?:[89][2-8]|[4-7]))|7(?:2[15]|3[5-9]|4[02-9]|6[135-8]|7[0-4689]|9(?:[017-9]|4[6-8]|5[2-478]|6[2-589]))|8(?:2(?:4[4-8]|9(?:[3578]|20|4[04-9]|6(?:5[25]|60)))|3(?:7(?:[2-5]|6[0-59])|[3-6][2-9]|8[2-5])|4[5-8]|5[2-9]|6(?:[37]|5(?:[467]|5[014-9])|6(?:[2-8]|9[02-69])|8[2-8]|9(?:[236-8]|9[23]))|7[579]|8[03-579]|9[2-8])|9(?:[23]0|4[02-46-9]|5[024-79]|6[4-9]|7[2-47-9]|8[02-7]|9(?:3(?:3[02-9]|4[0-24689])|4[2-69]|[5-7]))" ] ,
2016-01-22 23:34:30 +00:00
"0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "1|2(?:2[37]|5[5-9]|64|78|8[39]|91)|4(?:2[2689]|64|7[347])|5(?:[2-589]|39)|60|8(?:[46-9]|3[279]|2[124589])|9(?:[235-8]|93)" , "1|2(?:2[37]|5(?:[57]|[68]0|9[19])|64|78|8[39]|917)|4(?:2(?:[68]|20|9[178])|64|7[347])|5(?:[2-589]|39[67])|60|8(?:[46-9]|3[279]|2[124589])|9(?:[235-8]|93[34])" , "1|2(?:2[37]|5(?:[57]|[68]0|9(?:17|99))|64|78|8[39]|917)|4(?:2(?:[68]|20|9[178])|64|7[347])|5(?:[2-589]|39[67])|60|8(?:[46-9]|3[279]|2[124589])|9(?:[235-8]|93(?:31|4))" ] ,
2016-10-30 10:47:58 +00:00
"0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "2(?:9[14-79]|74|[34]7|[56]9)|82|993" ] , "0$1" ] , [ , "(\\d)(\\d{4})(\\d{4})" , "$1-$2-$3" , [ "3|4(?:2[09]|7[01])|6[1-9]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "[2479][1-9]" ] , "0$1" ] ] , [ , , "20\\d{8}" , "\\d{10}" , , , "2012345678" , , , [ 10 ] ] , , , [ , , "00(?:37\\d{6,13}|66\\d{6,13}|777(?:[01]\\d{2}|5\\d{3}|8\\d{4})|882[1245]\\d{4})" , "\\d{8,17}" , , , "00777012" ] , [ , , "570\\d{6}" , "\\d{9}" , , , "570123456" , , , [ 9 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KE : [ , [ , , "20\\d{6,7}|[4-9]\\d{6,9}" , "\\d{7,10}" ,
, , , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "20\\d{6,7}|4(?:[0136]\\d{7}|[245]\\d{5,7})|5(?:[08]\\d{7}|[1-79]\\d{5,7})|6(?:[01457-9]\\d{5,7}|[26]\\d{7})" , "\\d{7,9}" , , , "202012345" , , , [ 7 , 8 , 9 ] ] , [ , , "7(?:[0-369]\\d|4[0-2]|5[0-6]|7[0-7]|8[0-25-9])\\d{6}" , "\\d{9}" , , , "712123456" , , , [ 9 ] ] , [ , , "800[24-8]\\d{5,6}" , "\\d{9,10}" , , , "800223456" , , , [ 9 , 10 ] ] , [ , , "900[02-9]\\d{5}" , "\\d{9}" , , , "900223456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KE" , 254 , "000" , "0" , , , "005|0" , , , , [ [ , "(\\d{2})(\\d{5,7})" , "$1 $2" , [ "[24-6]" ] ,
"0$1" ] , [ , "(\\d{3})(\\d{6})" , "$1 $2" , [ "7" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[89]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KG : [ , [ , , "[235-8]\\d{8,9}" , "\\d{5,10}" , , , , , , [ 9 , 10 ] , [ 5 , 6 ] ] , [ , , "(?:3(?:1(?:[256]\\d|3[1-9]|47)|2(?:22|3[0-479]|6[0-7])|4(?:22|5[6-9]|6\\d)|5(?:22|3[4-7]|59|6\\d)|6(?:22|5[35-7]|6\\d)|7(?:22|3[468]|4[1-9]|59|[67]\\d)|9(?:22|4[1-8]|6\\d))|6(?:09|12|2[2-4])\\d)\\d{5}" , "\\d{5,10}" , , , "312123456" , , ,
[ 9 ] ] , [ , , "(?:20[0-35]|5[124-7]\\d|7[07]\\d)\\d{6}" , "\\d{9}" , , , "700123456" , , , [ 9 ] ] , [ , , "800\\d{6,7}" , "\\d{9,10}" , , , "800123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KG" , 996 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[25-7]|31[25]" ] , "0$1" ] , [ , "(\\d{4})(\\d{5})" , "$1 $2" , [ "3(?:1[36]|[2-9])" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d)(\\d{3})" , "$1 $2 $3 $4" , [ "8" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , ,
[ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KH : [ , [ , , "[1-9]\\d{7,9}" , "\\d{6,10}" , , , , , , [ 8 , 9 , 10 ] , [ 6 , 7 ] ] , [ , , "(?:2[3-6]|3[2-6]|4[2-4]|[5-7][2-5])(?:[237-9]|4[56]|5\\d|6\\d?)\\d{5}|23(?:4[234]|8\\d{2})\\d{4}" , "\\d{6,9}" , , , "23756789" , , , [ 8 , 9 ] ] , [ , , "(?:1(?:[013-79]\\d|[28]\\d{1,2})|2[3-6]48|3(?:[18]\\d{2}|[2-6]48)|4[2-4]48|5[2-5]48|6(?:[016-9]\\d|[2-5]48)|7(?:[07-9]\\d|[16]\\d{2}|[2-5]48)|8(?:[013-79]\\d|8\\d{2})|9(?:6\\d{2}|7\\d{1,2}|[0-589]\\d))\\d{5}" , "\\d{8,9}" , , , "91234567" , , , [ 8 , 9 ] ] , [ , , "1800(?:1\\d|2[019])\\d{4}" ,
"\\d{10}" , , , "1800123456" , , , [ 10 ] ] , [ , , "1900(?:1\\d|2[09])\\d{4}" , "\\d{10}" , , , "1900123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KH" , 855 , "00[14-9]" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "1\\d[1-9]|[2-9]" ] , "0$1" ] , [ , "(1[89]00)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1[89]0" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KI : [ , [ , , "[2458]\\d{4}|3\\d{4,7}|7\\d{7}" , "\\d{5,8}" , , , , , , [ 5 , 8 ] ] , [ , , "(?:[24]\\d|3[1-9]|50|8[0-5])\\d{3}" ,
"\\d{5}" , , , "31234" , , , [ 5 ] ] , [ , , "7\\d{7}" , "\\d{8}" , , , "72012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3001\\d{4}" , "\\d{5,8}" , , , "30010000" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KI" , 686 , "00" , , , , "0" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KM : [ , [ , , "[379]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "7(?:6[0-37-9]|7[0-57-9])\\d{4}" , "\\d{7}" , , , "7712345" ] , [ , , "3[234]\\d{5}" , "\\d{7}" , , , "3212345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "(?:39[01]|9[01]0)\\d{4}" , "\\d{7}" , , , "9001234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KM" , 269 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KN : [ , [ , , "[589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "869(?:2(?:29|36)|302|4(?:6[015-9]|70))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "8692361234" ] , [ , , "869(?:5(?:5[6-8]|6[5-7])|66\\d|76[02-7])\\d{4}" , "\\d{7}(?:\\d{3})?" ,
, , "8697652917" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KN" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "869" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KP : [ , [ , , "1\\d{9}|[28]\\d{7}" , "\\d{6,8}|\\d{10}" , , , , , , [ 8 , 10 ] , [ 6 , 7 ] ] , [ , , "2\\d{7}|85\\d{6}" , "\\d{6,8}" , , , "21234567" , , , [ 8 ] ] , [ , , "19[123]\\d{7}" ,
"\\d{10}" , , , "1921234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KP" , 850 , "00|99" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1" ] , "0$1" ] , [ , "(\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "2" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "8" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "2(?:[0-24-9]\\d{2}|3(?:[0-79]\\d|8[02-9]))\\d{4}" , "\\d{8}" , , , "23821234" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] ,
KR : [ , [ , , "007\\d{9,11}|[1-7]\\d{3,9}|8\\d{8}" , "\\d{3,14}" , , , , , , [ 4 , 5 , 6 , 8 , 9 , 10 , 12 , 13 , 14 ] , [ 3 , 7 ] ] , [ , , "(?:2|3[1-3]|[46][1-4]|5[1-5])(?:1\\d{2,3}|[1-9]\\d{6,7})" , "\\d{3,10}" , , , "22123456" , , , [ 4 , 5 , 6 , 8 , 9 , 10 ] ] , [ , , "1[0-26-9]\\d{7,8}" , "\\d{9,10}" , , , "1000000000" , , , [ 9 , 10 ] ] , [ , , "(?:00798\\d{0,2}|80)\\d{7}" , "\\d{9,14}" , , , "801234567" , , , [ 9 , 12 , 13 , 14 ] ] , [ , , "60[2-9]\\d{6}" , "\\d{9}" , , , "602345678" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "50\\d{8}" , "\\d{10}" , , , "5012345678" , , , [ 10 ] ] , [ , , "70\\d{8}" , "\\d{10}" , , , "7012345678" , , , [ 10 ] ] , "KR" ,
82 , "00(?:[124-68]|3\\d{2}|7(?:[0-8]\\d|9[0-79]))" , "0" , , , "0(8[1-46-8]|85\\d{2})?" , , , , [ [ , "(\\d{5})(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "00798" ] , "$1" , "0$CC-$1" ] , [ , "(\\d{5})(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3 $4" , [ "00798" ] , "$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1-$2-$3" , [ "1(?:0|1[19]|[69]9|5[458])|[57]0" , "1(?:0|1[19]|[69]9|5(?:44|59|8))|[57]0" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{3,4})(\\d{4})" , "$1-$2-$3" , [ "1(?:[01]|5[1-4]|6[2-8]|[7-9])|[68]0|[3-6][1-9][1-9]" , "1(?:[01]|5(?:[1-3]|4[56])|6[2-8]|[7-9])|[68]0|[3-6][1-9][1-9]" ] ,
"0$1" , "0$CC-$1" ] , [ , "(\\d{3})(\\d)(\\d{4})" , "$1-$2-$3" , [ "131" , "1312" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{3})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "131" , "131[13-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "13[2-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3-$4" , [ "30" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d)(\\d{3,4})(\\d{4})" , "$1-$2-$3" , [ "2[1-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d)(\\d{3,4})" , "$1-$2" , [ "21[0-46-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{3,4})" , "$1-$2" , [ "[3-6][1-9]1" , "[3-6][1-9]1(?:[0-46-9])" ] ,
"0$1" , "0$CC-$1" ] , [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "1(?:5[46-9]|6[04678]|8[03579])" , "1(?:5(?:44|66|77|88|99)|6(?:00|44|6[16]|70|88)|8(?:00|33|55|77|99))" ] , "$1" , "0$CC-$1" ] ] , [ [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1-$2-$3" , [ "1(?:0|1[19]|[69]9|5[458])|[57]0" , "1(?:0|1[19]|[69]9|5(?:44|59|8))|[57]0" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{3,4})(\\d{4})" , "$1-$2-$3" , [ "1(?:[01]|5[1-4]|6[2-8]|[7-9])|[68]0|[3-6][1-9][1-9]" , "1(?:[01]|5(?:[1-3]|4[56])|6[2-8]|[7-9])|[68]0|[3-6][1-9][1-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{3})(\\d)(\\d{4})" ,
"$1-$2-$3" , [ "131" , "1312" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{3})(\\d{2})(\\d{4})" , "$1-$2-$3" , [ "131" , "131[13-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1-$2-$3" , [ "13[2-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{2})(\\d{3})(\\d{4})" , "$1-$2-$3-$4" , [ "30" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d)(\\d{3,4})(\\d{4})" , "$1-$2-$3" , [ "2[1-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d)(\\d{3,4})" , "$1-$2" , [ "21[0-46-9]" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{2})(\\d{3,4})" , "$1-$2" , [ "[3-6][1-9]1" , "[3-6][1-9]1(?:[0-46-9])" ] , "0$1" , "0$CC-$1" ] , [ , "(\\d{4})(\\d{4})" ,
"$1-$2" , [ "1(?:5[46-9]|6[04678]|8[03579])" , "1(?:5(?:44|66|77|88|99)|6(?:00|44|6[16]|70|88)|8(?:00|33|55|77|99))" ] , "$1" , "0$CC-$1" ] ] , [ , , "15\\d{7,8}" , "\\d{9,10}" , , , "1523456789" , , , [ 9 , 10 ] ] , , , [ , , "00798\\d{7,9}" , "\\d{12,14}" , , , "007981234567" , , , [ 12 , 13 , 14 ] ] , [ , , "1(?:5(?:44|66|77|88|99)|6(?:00|44|6[16]|70|88)|8(?:00|33|55|77|99))\\d{4}" , "\\d{8}" , , , "15441234" , , , [ 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KW : [ , [ , , "[12569]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:18\\d|2(?:[23]\\d{2}|4(?:[1-35-9]\\d|44)|5(?:0[034]|[2-46]\\d|5[1-3]|7[1-7])))\\d{4}" ,
"\\d{7,8}" , , , "22345678" ] , [ , , "(?:5(?:[05]\\d{2}|1[0-7]\\d|2(?:22|5[25])|66\\d)|6(?:0[034679]\\d|222|5[015-9]\\d|6\\d{2}|7[067]\\d|9[0369]\\d)|9(?:0[09]\\d|22\\d|4[01479]\\d|55\\d|6[0679]\\d|[79]\\d{2}|8[057-9]\\d))\\d{4}" , "\\d{8}" , , , "50012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KW" , 965 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{3,4})" , "$1 $2" , [ "[16]|2(?:[0-35-9]|4[0-35-9])|9[024-9]|52[25]" ] ] , [ , "(\\d{3})(\\d{5})" , "$1 $2" , [ "244|5(?:[015]|66)" ] ] ] ,
, [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KY : [ , [ , , "[3589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "345(?:2(?:22|44)|444|6(?:23|38|40)|7(?:4[35-79]|6[6-9]|77)|8(?:00|1[45]|25|[48]8)|9(?:14|4[035-9]))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "3452221234" ] , [ , , "345(?:32[1-9]|5(?:1[67]|2[5-7]|4[6-8]|76)|9(?:1[67]|2[2-9]|3[689]))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "3453231234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}|345976\\d{4}" ,
"\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "KY" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "345849\\d{4}" , "\\d{10}" , , , "3458491234" ] , , "345" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , KZ : [ , [ , , "(?:33\\d|7\\d{2}|80[09])\\d{7}" , "\\d{10}" , , , , , , [ 10 ] ] , [ , , "33622\\d{5}|7(?:1(?:0(?:[23]\\d|4[023]|59|63)|1(?:[23]\\d|4[0-79]|59)|2(?:[23]\\d|59)|3(?:2\\d|3[1-79]|4[0-35-9]|59)|4(?:2\\d|3[013-79]|4[0-8]|5[1-79])|5(?:2\\d|3[1-8]|4[1-7]|59)|6(?:[234]\\d|5[19]|61)|72\\d|8(?:[27]\\d|3[1-46-9]|4[0-5]))|2(?:1(?:[23]\\d|4[46-9]|5[3469])|2(?:2\\d|3[0679]|46|5[12679])|3(?:[234]\\d|5[139])|4(?:2\\d|3[1235-9]|59)|5(?:[23]\\d|4[01246-8]|59|61)|6(?:2\\d|3[1-9]|4[0-4]|59)|7(?:[2379]\\d|40|5[279])|8(?:[23]\\d|4[0-3]|59)|9(?:2\\d|3[124578]|59)))\\d{5}" ,
"\\d{10}" , , , "7123456789" ] , [ , , "7(?:0[012578]|47|6[02-4]|7[15-8]|85)\\d{7}" , "\\d{10}" , , , "7710009998" ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" ] , [ , , "809\\d{7}" , "\\d{10}" , , , "8091234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "751\\d{7}" , "\\d{10}" , , , "7511234567" ] , "KZ" , 7 , "810" , "8" , , , "8" , , "8~10" , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "751\\d{7}" , "\\d{10}" , , , "7511234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LA : [ , [ , , "[2-8]\\d{7,9}" , "\\d{6,10}" , , , , , , [ 8 , 9 , 10 ] , [ 6 ] ] , [ , , "(?:2[13]|3(?:0\\d|[14])|[5-7][14]|41|8[1468])\\d{6}" ,
"\\d{6,9}" , , , "21212862" , , , [ 8 , 9 ] ] , [ , , "20(?:2[2389]|5[4-689]|7[6-8]|9[15-9])\\d{6}" , "\\d{10}" , , , "2023123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LA" , 856 , "00" , "0" , , , "0" , , , , [ [ , "(20)(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "20" ] , "0$1" ] , [ , "([2-8]\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "2[13]|3[14]|[4-8]" ] , "0$1" ] , [ , "(30)(\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3 $4" , [ "30" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , ,
, [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LB : [ , [ , , "[13-9]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:[14-6]\\d{2}|7(?:[2-57]\\d|62|8[0-7]|9[04-9])|8[02-9]\\d|9\\d{2})\\d{4}" , "\\d{7}" , , , "1123456" , , , [ 7 ] ] , [ , , "(?:3\\d|7(?:[01]\\d|6[013-9]|8[89]|9[1-3])|81\\d)\\d{5}" , "\\d{7,8}" , , , "71123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "9[01]\\d{6}" , "\\d{8}" , , , "90123456" , , , [ 8 ] ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LB" , 961 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{3})" ,
"$1 $2 $3" , [ "[13-6]|7(?:[2-57]|62|8[0-7]|9[04-9])|8[02-9]|9" ] , "0$1" ] , [ , "([7-9]\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[89][01]|7(?:[01]|6[013-9]|8[89]|9[1-3])" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LC : [ , [ , , "[5789]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "758(?:4(?:30|5[0-9]|6[2-9]|8[0-2])|57[0-2]|638)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7584305678" ] , [ , , "758(?:28[4-7]|384|4(?:6[01]|8[4-9])|5(?:1[89]|20|84)|7(?:1[2-9]|2[0-8]))\\d{4}" , "\\d{7}(?:\\d{3})?" ,
, , "7582845678" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LC" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "758" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LI : [ , [ , , "6\\d{8}|[23789]\\d{6}" , "\\d{7,9}" , , , , , , [ 7 , 9 ] ] , [ , , "(?:2(?:01|1[27]|3\\d|6[02-578]|96)|3(?:7[0135-7]|8[048]|9[0269]))\\d{4}" ,
"\\d{7}" , , , "2345678" , , , [ 7 ] ] , [ , , "6(?:51[01]|6(?:0[0-6]|2[016-9]|39))\\d{5}|7(?:[37-9]\\d|42|56)\\d{4}" , "\\d{7,9}" , , , "660234567" ] , [ , , "80(?:02[28]|9\\d{2})\\d{2}" , "\\d{7}" , , , "8002222" , , , [ 7 ] ] , [ , , "90(?:02[258]|1(?:23|3[14])|66[136])\\d{2}" , "\\d{7}" , , , "9002222" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LI" , 423 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3" , [ "[23789]" ] ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "6[56]" ] ] , [ , "(69)(7\\d{2})(\\d{4})" , "$1 $2 $3" ,
[ "697" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "870(?:28|87)\\d{2}" , "\\d{7}" , , , "8702812" , , , [ 7 ] ] , , , [ , , "697(?:42|56|[7-9]\\d)\\d{4}" , "\\d{9}" , , , "697861234" , , , [ 9 ] ] ] , LK : [ , [ , , "[1-9]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "(?:[189]1|2[13-7]|3[1-8]|4[157]|5[12457]|6[35-7])[2-57]\\d{6}" , "\\d{7,9}" , , , "112345678" ] , [ , , "7[0125-8]\\d{7}" , "\\d{9}" , , , "712345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LK" , 94 , "00" , "0" ,
, , "0" , , , , [ [ , "(\\d{2})(\\d{1})(\\d{6})" , "$1 $2 $3" , [ "[1-689]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "7" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LR : [ , [ , , "2\\d{7,8}|[378]\\d{8}|4\\d{6}|5\\d{6,8}" , "\\d{7,9}" , , , , , , [ 7 , 8 , 9 ] ] , [ , , "2\\d{7}" , "\\d{8}" , , , "21234567" , , , [ 8 ] ] , [ , , "(?:20\\d{3}|330\\d{2}|4[67]\\d|5(?:55)?\\d{2}|77\\d{3}|88\\d{3})\\d{4}" , "\\d{7,9}" , , , "770123456" , , , [ 7 , 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "332(?:02|[25]\\d)\\d{4}" , "\\d{9}" , , , "332021234" , , , [ 9 ] ] , "LR" , 231 , "00" , "0" , , , "0" , , , , [ [ , "(2\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "2" ] , "0$1" ] , [ , "([4-5])(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[45]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[23578]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LS : [ , [ , , "[2568]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2\\d{7}" , "\\d{8}" , , , "22123456" ] , [ , , "[56]\\d{7}" , "\\d{8}" ,
, , "50123456" ] , [ , , "800[256]\\d{4}" , "\\d{8}" , , , "80021234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LS" , 266 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LT : [ , [ , , "[3-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "(?:3[1478]|4[124-6]|52)\\d{6}" , "\\d{8}" , , , "31234567" ] , [ , , "6\\d{7}" , "\\d{8}" , , , "61234567" ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" ] , [ , , "9(?:0[0239]|10)\\d{5}" ,
"\\d{8}" , , , "90012345" ] , [ , , "808\\d{5}" , "\\d{8}" , , , "80812345" ] , [ , , "700\\d{5}" , "\\d{8}" , , , "70012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LT" , 370 , "00" , "8" , , , "[08]" , , , , [ [ , "([34]\\d)(\\d{6})" , "$1 $2" , [ "37|4(?:1|5[45]|6[2-4])" ] , "(8-$1)" , , 1 ] , [ , "([3-6]\\d{2})(\\d{5})" , "$1 $2" , [ "3[148]|4(?:[24]|6[09])|528|6" ] , "(8-$1)" , , 1 ] , [ , "([7-9]\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "[7-9]" ] , "8 $1" , , 1 ] , [ , "(5)(2\\d{2})(\\d{4})" , "$1 $2 $3" , [ "52[0-79]" ] , "(8-$1)" , , 1 ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "70[67]\\d{5}" ,
"\\d{8}" , , , "70712345" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LU : [ , [ , , "[24-9]\\d{3,10}|3(?:[0-46-9]\\d{2,9}|5[013-9]\\d{1,8})" , "\\d{4,11}" , , , , , , [ 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 ] ] , [ , , "(?:2[2-9]\\d{2,9}|(?:[3457]\\d{2}|8(?:0[2-9]|[13-9]\\d)|9(?:0[89]|[2-579]\\d))\\d{1,8})" , "\\d{4,11}" , , , "27123456" ] , [ , , "6[2679][18]\\d{6}" , "\\d{9}" , , , "628123456" , , , [ 9 ] ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "90[015]\\d{5}" , "\\d{8}" , , , "90012345" , , , [ 8 ] ] , [ , , "801\\d{5}" , "\\d{8}" , , , "80112345" , , , [ 8 ] ] , [ , , "70\\d{6}" , "\\d{8}" , , , "70123456" , , , [ 8 ] ] ,
[ , , "20(?:1\\d{5}|[2-689]\\d{1,7})" , "\\d{4,10}" , , , "20201234" , , , [ 4 , 5 , 6 , 7 , 8 , 9 , 10 ] ] , "LU" , 352 , "00" , , , , "(15(?:0[06]|1[12]|35|4[04]|55|6[26]|77|88|99)\\d)" , , , , [ [ , "(\\d{2})(\\d{3})" , "$1 $2" , [ "[2-5]|7[1-9]|[89](?:[1-9]|0[2-9])" ] , , "$CC $1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3" , [ "[2-5]|7[1-9]|[89](?:[1-9]|0[2-9])" ] , , "$CC $1" ] , [ , "(\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "20" ] , , "$CC $1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})" , "$1 $2 $3 $4" , [ "2(?:[0367]|4[3-8])" ] , , "$CC $1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{3})" ,
"$1 $2 $3 $4" , [ "20" ] , , "$CC $1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})" , "$1 $2 $3 $4 $5" , [ "2(?:[0367]|4[3-8])" ] , , "$CC $1" ] , [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{1,4})" , "$1 $2 $3 $4" , [ "2(?:[12589]|4[12])|[3-5]|7[1-9]|8(?:[1-9]|0[2-9])|9(?:[1-9]|0[2-46-9])" ] , , "$CC $1" ] , [ , "(\\d{3})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "70|80[01]|90[015]" ] , , "$CC $1" ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "6" ] , , "$CC $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] ,
LV : [ , [ , , "[2689]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "6\\d{7}" , "\\d{8}" , , , "63123456" ] , [ , , "2\\d{7}" , "\\d{8}" , , , "21234567" ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80123456" ] , [ , , "90\\d{6}" , "\\d{8}" , , , "90123456" ] , [ , , "81\\d{6}" , "\\d{8}" , , , "81123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LV" , 371 , "00" , , , , , , , , [ [ , "([2689]\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , LY : [ , [ , , "[25679]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "(?:2[1345]|5[1347]|6[123479]|71)\\d{7}" ,
"\\d{7,9}" , , , "212345678" ] , [ , , "9[1-6]\\d{7}" , "\\d{9}" , , , "912345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "LY" , 218 , "00" , "0" , , , "0" , , , , [ [ , "([25679]\\d)(\\d{7})" , "$1-$2" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MA : [ , [ , , "[5-9]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "5(?:2(?:(?:[015-7]\\d|2[02-9]|3[2-57]|4[2-8]|8[235-7])\\d|9(?:0\\d|[89]0))|3(?:(?:[0-4]\\d|[57][2-9]|6[2-8]|9[3-9])\\d|8(?:0\\d|[89]0))|(?:4[067]|5[03])\\d{2})\\d{4}" ,
"\\d{9}" , , , "520123456" ] , [ , , "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[07][07]|6[12]))\\d{6}" , "\\d{9}" , , , "650123456" ] , [ , , "80\\d{7}" , "\\d{9}" , , , "801234567" ] , [ , , "89\\d{7}" , "\\d{9}" , , , "891234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5924[01]\\d{4}" , "\\d{9}" , , , "592401234" ] , "MA" , 212 , "00" , "0" , , , "0" , , , , [ [ , "([5-7]\\d{2})(\\d{6})" , "$1-$2" , [ "5(?:2[015-7]|3[0-4])|[67]" ] , "0$1" ] , [ , "([58]\\d{3})(\\d{5})" , "$1-$2" , [ "5(?:2[2-489]|3[5-9]|92)|892" , "5(?:2(?:[2-48]|90)|3(?:[5-79]|80)|924)|892" ] , "0$1" ] , [ , "(5\\d{4})(\\d{4})" ,
"$1-$2" , [ "5(?:29|38)" , "5(?:29|38)[89]" ] , "0$1" ] , [ , "([5]\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "5(?:4[067]|5[03])" ] , "0$1" ] , [ , "(8[09])(\\d{7})" , "$1-$2" , [ "8(?:0|9[013-9])" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MC : [ , [ , , "[4689]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "870\\d{5}|9[2-47-9]\\d{6}" , "\\d{8}" , , , "99123456" , , , [ 8 ] ] , [ , , "6\\d{8}|4(?:4\\d|5[1-9])\\d{5}" , "\\d{8,9}" , , , "612345678" ] , [ , , "90\\d{6}" , "\\d{8}" , , , "90123456" , , , [ 8 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MC" , 377 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "9" ] , "$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "4" ] , "0$1" ] , [ , "(6)(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4 $5" , [ "6" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{2})" , "$1 $2 $3" , [ "8" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "8\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MD : [ , [ , , "[235-9]\\d{7}" , "\\d{8}" ,
, , , , , [ 8 ] ] , [ , , "(?:2[1-9]\\d|3[1-79]\\d|5(?:33|5[257]))\\d{5}" , "\\d{8}" , , , "22212345" ] , [ , , "(?:562|6\\d{2}|7(?:[189]\\d|6[07]|7[457-9]))\\d{5}" , "\\d{8}" , , , "62112345" ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" ] , [ , , "90[056]\\d{5}" , "\\d{8}" , , , "90012345" ] , [ , , "808\\d{5}" , "\\d{8}" , , , "80812345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3[08]\\d{6}" , "\\d{8}" , , , "30123456" ] , "MD" , 373 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "22|3" ] , "0$1" ] , [ , "([25-7]\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "2[13-9]|[5-7]" ] , "0$1" ] , [ ,
"([89]\\d{2})(\\d{5})" , "$1 $2" , [ "[89]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "803\\d{5}" , "\\d{8}" , , , "80312345" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ME : [ , [ , , "[2-9]\\d{7,8}" , "\\d{6,9}" , , , , , , [ 8 , 9 ] , [ 6 ] ] , [ , , "(?:20[2-8]|3(?:0[2-7]|[12][35-7]|3[4-7])|4(?:0[2367]|1[267])|5(?:0[467]|1[267]|2[367]))\\d{5}" , "\\d{6,8}" , , , "30234567" , , , [ 8 ] ] , [ , , "6(?:00\\d|3[24]\\d|61\\d|7(?:[0-8]\\d|9(?:[3-9]|[0-2]\\d))|[89]\\d{2})\\d{4}" , "\\d{8,9}" , , , "67622901" ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80080002" , , , [ 8 ] ] , [ , , "(?:9(?:4[1568]|5[178]))\\d{5}" ,
"\\d{8}" , , , "94515151" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "78[1-9]\\d{5}" , "\\d{8}" , , , "78108780" , , , [ 8 ] ] , "ME" , 382 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[2-57-9]|6[036-9]" , "[2-57-9]|6(?:[03689]|7(?:[0-8]|9[3-9]))" ] , "0$1" ] , [ , "(67)(9)(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "679" , "679[0-2]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "77\\d{6}" , "\\d{8}" , , , "77273012" , , , [ 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MF : [ , [ , , "[56]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "590(?:[02][79]|13|5[0-268]|[78]7)\\d{4}" ,
"\\d{9}" , , , "590271234" ] , [ , , "690(?:0[0-7]|[1-9]\\d)\\d{4}" , "\\d{9}" , , , "690301234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MF" , 590 , "00" , "0" , , , "0" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MG : [ , [ , , "[23]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "20(?:2\\d{2}|4[47]\\d|5[3467]\\d|6[279]\\d|7(?:2[29]|[35]\\d)|8[268]\\d|9[245]\\d)\\d{4}" , "\\d{7,9}" , , , "202123456" ] , [ , ,
"3[2-49]\\d{7}" , "\\d{9}" , , , "321234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "22\\d{7}" , "\\d{9}" , , , "221234567" ] , "MG" , 261 , "00" , "0" , , , "0" , , , , [ [ , "([23]\\d)(\\d{2})(\\d{3})(\\d{2})" , "$1 $2 $3 $4" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MH : [ , [ , , "[2-6]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "(?:247|528|625)\\d{4}" , "\\d{7}" , , , "2471234" ] , [ , , "(?:235|329|45[56]|545)\\d{4}" , "\\d{7}" , , , "2351234" ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "635\\d{4}" , "\\d{7}" , , , "6351234" ] , "MH" , 692 , "011" , "1" , , , "1" , , , , [ [ , "(\\d{3})(\\d{4})" , "$1-$2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MK : [ , [ , , "[2-578]\\d{7}" , "\\d{6,8}" , , , , , , [ 8 ] , [ 6 , 7 ] ] , [ , , "(?:2(?:[23]\\d|5[124578]|6[01])|3(?:1[3-6]|[23][2-6]|4[2356])|4(?:[23][2-6]|4[3-6]|5[256]|6[25-8]|7[24-6]|8[4-6]))\\d{5}" , "\\d{6,8}" , , , "22212345" ] , [ , , "7(?:[0-25-8]\\d{2}|32\\d|421)\\d{4}" ,
"\\d{6,8}" , , , "72345678" ] , [ , , "800\\d{5}" , "\\d{6,8}" , , , "80012345" ] , [ , , "5[02-9]\\d{6}" , "\\d{6,8}" , , , "50012345" ] , [ , , "8(?:0[1-9]|[1-9]\\d)\\d{5}" , "\\d{6,8}" , , , "80123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MK" , 389 , "00" , "0" , , , "0" , , , , [ [ , "(2)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "2" ] , "0$1" ] , [ , "([347]\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[347]" ] , "0$1" ] , [ , "([58]\\d{2})(\\d)(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[58]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] ] , ML : [ , [ , , "[246-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "(?:2(?:0(?:2\\d|7[0-8])|1(?:2[5-7]|[3-689]\\d))|44[1239]\\d)\\d{4}" , "\\d{8}" , , , "20212345" ] , [ , , "(?:2(?:079|17\\d)|[679]\\d{3}|8[239]\\d{2})\\d{4}" , "\\d{8}" , , , "65012345" ] , [ , , "80\\d{6}" , "\\d{8}" , , , "80012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ML" , 223 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[246-9]" ] ] , [ , "(\\d{4})" , "$1" , [ "67|74" ] ] ] , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" ,
"$1 $2 $3 $4" , [ "[246-9]" ] ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "80\\d{6}" , "\\d{8}" , , , "80012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MM : [ , [ , , "[14578]\\d{5,7}|[26]\\d{5,8}|9(?:2\\d{0,2}|[58]|3\\d|4\\d{1,2}|6\\d?|[79]\\d{0,2})\\d{6}" , "\\d{5,10}" , , , , , , [ 6 , 7 , 8 , 9 , 10 ] , [ 5 ] ] , [ , , "1(?:2\\d{1,2}|[3-5]\\d|6\\d?|[89][0-6]\\d)\\d{4}|2(?:2(?:000\\d{3}|\\d{4})|3\\d{4}|4(?:0\\d{5}|\\d{4})|5(?:1\\d{3,6}|[02-9]\\d{3,5})|[6-9]\\d{4})|4(?:2[245-8]|[346][2-6]|5[3-5])\\d{4}|5(?:2(?:20?|[3-8])|3[2-68]|4(?:21?|[4-8])|5[23]|6[2-4]|7[2-8]|8[24-7]|9[2-7])\\d{4}|6(?:0[23]|1[2356]|[24][2-6]|3[24-6]|5[2-4]|6[2-8]|7(?:[2367]|4\\d|5\\d?|8[145]\\d)|8[245]|9[24])\\d{4}|7(?:[04][24-8]|[15][2-7]|22|3[2-4])\\d{4}|8(?:1(?:2\\d{1,2}|[3-689]\\d)|2(?:2\\d|3(?:\\d|20)|[4-8]\\d)|3[24]\\d|4[24-7]\\d|5[245]\\d|6[23]\\d)\\d{3}" ,
"\\d{5,9}" , , , "1234567" , , , [ 6 , 7 , 8 , 9 ] ] , [ , , "17[01]\\d{4}|9(?:2(?:[0-4]|5\\d{2}|6[0-5]\\d)|3[0-36]\\d|4(?:0[0-4]\\d|[1379]\\d|2\\d{2}|4[0-589]\\d|5\\d{2}|88)|5[0-6]|61?\\d|7(?:3\\d|[789]\\d{2})|8\\d|9(?:1\\d|[67]\\d{2}|[089]))\\d{5}" , "\\d{7,10}" , , , "92123456" , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "1333\\d{4}" , "\\d{8}" , , , "13331234" , , , [ 8 ] ] , "MM" , 95 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "1|2[245]" ] , "0$1" ] , [ , "(2)(\\d{4})(\\d{4})" ,
"$1 $2 $3" , [ "251" ] , "0$1" ] , [ , "(\\d)(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "16|2" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "67|81" ] , "0$1" ] , [ , "(\\d{2})(\\d{2})(\\d{3,4})" , "$1 $2 $3" , [ "[4-8]" ] , "0$1" ] , [ , "(9)(\\d{3})(\\d{4,6})" , "$1 $2 $3" , [ "9(?:2[0-4]|[35-9]|4[137-9])" ] , "0$1" ] , [ , "(9)([34]\\d{4})(\\d{4})" , "$1 $2 $3" , [ "9(?:3[0-36]|4[0-57-9])" ] , "0$1" ] , [ , "(9)(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "92[56]" ] , "0$1" ] , [ , "(9)(\\d{3})(\\d{3})(\\d{2})" , "$1 $2 $3 $4" , [ "93" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , ,
"NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MN : [ , [ , , "[12]\\d{7,9}|[57-9]\\d{7}" , "\\d{6,10}" , , , , , , [ 8 , 9 , 10 ] , [ 6 , 7 ] ] , [ , , "[12](?:1\\d|2(?:[1-3]\\d?|7\\d)|3[2-8]\\d{1,2}|4[2-68]\\d{1,2}|5[1-4689]\\d{1,2})\\d{5}|5[0568]\\d{6}" , "\\d{6,10}" , , , "50123456" ] , [ , , "(?:8(?:[05689]\\d|3[01])|9[013-9]\\d)\\d{5}" , "\\d{8}" , , , "88123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7[05-8]\\d{6}" , "\\d{8}" , , , "75123456" , , , [ 8 ] ] , "MN" ,
976 , "001" , "0" , , , "0" , , , , [ [ , "([12]\\d)(\\d{2})(\\d{4})" , "$1 $2 $3" , [ "[12]1" ] , "0$1" ] , [ , "([12]2\\d)(\\d{5,6})" , "$1 $2" , [ "[12]2[1-3]" ] , "0$1" ] , [ , "([12]\\d{3})(\\d{5})" , "$1 $2" , [ "[12](?:27|[3-5])" , "[12](?:27|[3-5]\\d)2" ] , "0$1" ] , [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[57-9]" ] , "$1" ] , [ , "([12]\\d{4})(\\d{4,5})" , "$1 $2" , [ "[12](?:27|[3-5])" , "[12](?:27|[3-5]\\d)[4-9]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MO : [ , [ , , "[268]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] ,
[ , , "(?:28[2-57-9]|8[2-57-9]\\d)\\d{5}" , "\\d{8}" , , , "28212345" ] , [ , , "6(?:[2356]\\d|8[158])\\d{5}" , "\\d{8}" , , , "66123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MO" , 853 , "00" , , , , , , , , [ [ , "([268]\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MP : [ , [ , , "[5689]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "670(?:2(?:3[3-7]|56|8[5-8])|32[1238]|4(?:33|8[348])|5(?:32|55|88)|6(?:64|70|82)|78[589]|8[3-9]8|989)\\d{4}" ,
"\\d{7}(?:\\d{3})?" , , , "6702345678" ] , [ , , "670(?:2(?:3[3-7]|56|8[5-8])|32[1238]|4(?:33|8[348])|5(?:32|55|88)|6(?:64|70|82)|78[589]|8[3-9]8|989)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6702345678" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MP" , 1 , "011" , "1" , , , "1" , , , 1 , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "670" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MQ : [ , [ , , "[56]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "596(?:0[2-5]|[12]0|3[05-9]|4[024-8]|[5-7]\\d|89|9[4-8])\\d{4}" , "\\d{9}" , , , "596301234" ] , [ , , "696(?:[0-479]\\d|5[013]|8[0-689])\\d{4}" , "\\d{9}" , , , "696201234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MQ" , 596 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MR : [ , [ , , "[2-48]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "25[08]\\d{5}|35\\d{6}|45[1-7]\\d{5}" , "\\d{8}" , , , "35123456" ] , [ , , "[234][0-46-9]\\d{6}" , "\\d{8}" , , , "22123456" ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MR" , 222 , "00" , , , , , , , , [ [ , "([2-48]\\d)(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] ] , MS : [ , [ , , "[5689]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "664491\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6644912345" ] , [ , , "66449[2-6]\\d{4}" , "\\d{10}" , , , "6644923456" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MS" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "664" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , ,
, , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MT : [ , [ , , "[2357-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:0(?:1[0-6]|3[1-4]|[69]\\d)|[1-357]\\d{2})\\d{4}" , "\\d{8}" , , , "21001234" ] , [ , , "(?:7(?:210|[79]\\d{2})|9(?:2(?:1[01]|31)|696|8(?:1[1-3]|89|97)|9\\d{2}))\\d{4}" , "\\d{8}" , , , "96961234" ] , [ , , "800[3467]\\d{4}" , "\\d{8}" , , , "80071234" ] , [ , , "5(?:0(?:0(?:37|43)|6\\d{2}|70\\d|9[0168]\\d)|[12]\\d0[1-5])\\d{3}" , "\\d{8}" , , , "50037123" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3550\\d{4}" , "\\d{8}" , , , "35501234" ] , "MT" , 356 ,
"00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" ] ] , , [ , , "7117\\d{4}" , "\\d{8}" , , , "71171234" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "501\\d{5}" , "\\d{8}" , , , "50112345" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MU : [ , [ , , "[2-9]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:2(?:[03478]\\d|1[0-7]|6[1-69])|4(?:[013568]\\d|2[4-7])|5(?:44\\d|471)|6\\d{2}|8(?:14|3[129]))\\d{4}" , "\\d{7,8}" , , , "2012345" ] , [ , , "5(?:2[59]\\d|4(?:2[1-389]|4\\d|7[1-9]|9\\d)|7\\d{2}|8(?:[0-25689]\\d|7[15-8])|9[0-8]\\d)\\d{4}" , "\\d{8}" , , , "52512345" , , , [ 8 ] ] , [ , , "80[012]\\d{4}" ,
"\\d{7}" , , , "8001234" , , , [ 7 ] ] , [ , , "30\\d{5}" , "\\d{7}" , , , "3012345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3(?:20|9\\d)\\d{4}" , "\\d{7}" , , , "3201234" , , , [ 7 ] ] , "MU" , 230 , "0(?:0|[2-7]0|33)" , , , , , , "020" , , [ [ , "([2-46-9]\\d{2})(\\d{4})" , "$1 $2" , [ "[2-46-9]" ] ] , [ , "(5\\d{3})(\\d{4})" , "$1 $2" , [ "5" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MV : [ , [ , , "[3467]\\d{6}|9(?:00\\d{7}|\\d{6})" , "\\d{7,10}" , , , , , , [ 7 , 10 ] ] , [ , , "(?:3(?:0[01]|3[0-59])|6(?:[567][02468]|8[024689]|90))\\d{4}" ,
"\\d{7}" , , , "6701234" , , , [ 7 ] ] , [ , , "(?:46[46]|7[3-9]\\d|9[15-9]\\d)\\d{4}" , "\\d{7}" , , , "7712345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "900\\d{7}" , "\\d{10}" , , , "9001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MV" , 960 , "0(?:0|19)" , , , , , , "00" , , [ [ , "(\\d{3})(\\d{4})" , "$1-$2" , [ "[3467]|9(?:[1-9]|0[1-9])" ] ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "900" ] ] ] , , [ , , "781\\d{4}" , "\\d{7}" , , , "7812345" , , , [ 7 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] ,
MW : [ , [ , , "(?:1(?:\\d{2})?|[2789]\\d{2})\\d{6}" , "\\d{7,9}" , , , , , , [ 7 , 9 ] ] , [ , , "(?:1[2-9]|21\\d{2})\\d{5}" , "\\d{7,9}" , , , "1234567" ] , [ , , "(?:111|77\\d|88\\d|99\\d)\\d{6}" , "\\d{9}" , , , "991234567" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MW" , 265 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1" ] , "0$1" ] , [ , "(2\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "2" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[1789]" ] ,
"0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MX : [ , [ , , "[1-9]\\d{9,10}" , "\\d{7,11}" , , , , , , [ 10 , 11 ] , [ 7 , 8 ] ] , [ , , "(?:33|55|81)\\d{8}|(?:2(?:0[01]|2[2-9]|3[1-35-8]|4[13-9]|7[1-689]|8[1-578]|9[467])|3(?:1[1-79]|[2458][1-9]|7[1-8]|9[1-5])|4(?:1[1-57-9]|[24-6][1-9]|[37][1-8]|8[1-35-9]|9[2-689])|5(?:88|9[1-79])|6(?:1[2-68]|[234][1-9]|5[1-3689]|6[12457-9]|7[1-7]|8[67]|9[4-8])|7(?:[13467][1-9]|2[1-8]|5[13-9]|8[1-69]|9[17])|8(?:2[13-689]|3[1-6]|4[124-6]|6[1246-9]|7[1-378]|9[12479])|9(?:1[346-9]|2[1-4]|3[2-46-8]|5[1348]|[69][1-9]|7[12]|8[1-8]))\\d{7}" ,
"\\d{7,10}" , , , "2221234567" , , , [ 10 ] ] , [ , , "1(?:(?:33|55|81)\\d{8}|(?:2(?:2[2-9]|3[1-35-8]|4[13-9]|7[1-689]|8[1-578]|9[467])|3(?:1[1-79]|[2458][1-9]|7[1-8]|9[1-5])|4(?:1[1-57-9]|[24-6][1-9]|[37][1-8]|8[1-35-9]|9[2-689])|5(?:88|9[1-79])|6(?:1[2-68]|[2-4][1-9]|5[1-3689]|6[12457-9]|7[1-7]|8[67]|9[4-8])|7(?:[13467][1-9]|2[1-8]|5[13-9]|8[1-69]|9[17])|8(?:2[13-689]|3[1-6]|4[124-6]|6[1246-9]|7[1-378]|9[12479])|9(?:1[346-9]|2[1-4]|3[2-46-8]|5[1348]|[69][1-9]|7[12]|8[1-8]))\\d{7})" , "\\d{11}" , , , "12221234567" , , ,
[ 11 ] ] , [ , , "8(?:00|88)\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "900\\d{7}" , "\\d{10}" , , , "9001234567" , , , [ 10 ] ] , [ , , "300\\d{7}" , "\\d{10}" , , , "3001234567" , , , [ 10 ] ] , [ , , "500\\d{7}" , "\\d{10}" , , , "5001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MX" , 52 , "0[09]" , "01" , , , "0[12]|04[45](\\d{10})" , "1$1" , , , [ [ , "([358]\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "33|55|81" ] , "01 $1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[2467]|3[0-2457-9]|5[089]|8[02-9]|9[0-35-9]" ] , "01 $1" , , 1 ] , [ , "(1)([358]\\d)(\\d{4})(\\d{4})" , "044 $2 $3 $4" ,
[ "1(?:33|55|81)" ] , "$1" , , 1 ] , [ , "(1)(\\d{3})(\\d{3})(\\d{4})" , "044 $2 $3 $4" , [ "1(?:[2467]|3[0-2457-9]|5[089]|8[2-9]|9[1-35-9])" ] , "$1" , , 1 ] ] , [ [ , "([358]\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "33|55|81" ] , "01 $1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[2467]|3[0-2457-9]|5[089]|8[02-9]|9[0-35-9]" ] , "01 $1" , , 1 ] , [ , "(1)([358]\\d)(\\d{4})(\\d{4})" , "$1 $2 $3 $4" , [ "1(?:33|55|81)" ] ] , [ , "(1)(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3 $4" , [ "1(?:[2467]|3[0-2457-9]|5[089]|8[2-9]|9[1-35-9])" ] ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MY : [ , [ , , "[13-9]\\d{7,9}" , "\\d{6,10}" , , , , , , [ 8 , 9 , 10 ] , [ 6 , 7 ] ] , [ , , "(?:3[2-9]\\d|[4-9][2-9])\\d{6}" , "\\d{6,9}" , , , "323456789" , , , [ 8 , 9 ] ] , [ , , "1(?:1[1-5]\\d{2}|[02-4679][2-9]\\d|59\\d{2}|8(?:1[23]|[2-9]\\d))\\d{5}" , "\\d{9,10}" , , , "123456789" , , , [ 9 , 10 ] ] , [ , , "1[378]00\\d{6}" , "\\d{10}" , , , "1300123456" , , , [ 10 ] ] , [ , , "1600\\d{6}" , "\\d{10}" , , , "1600123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "154\\d{7}" , "\\d{10}" , , , "1541234567" , , , [ 10 ] ] ,
"MY" , 60 , "00" , "0" , , , "0" , , , , [ [ , "([4-79])(\\d{3})(\\d{4})" , "$1-$2 $3" , [ "[4-79]" ] , "0$1" ] , [ , "(3)(\\d{4})(\\d{4})" , "$1-$2 $3" , [ "3" ] , "0$1" ] , [ , "([18]\\d)(\\d{3})(\\d{3,4})" , "$1-$2 $3" , [ "1[02-46-9][1-9]|8" ] , "0$1" ] , [ , "(1)([36-8]00)(\\d{2})(\\d{4})" , "$1-$2-$3-$4" , [ "1[36-8]0" ] ] , [ , "(11)(\\d{4})(\\d{4})" , "$1-$2 $3" , [ "11" ] , "0$1" ] , [ , "(15[49])(\\d{3})(\\d{4})" , "$1-$2 $3" , [ "15" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , MZ : [ , [ , , "[28]\\d{7,8}" , "\\d{8,9}" ,
, , , , , [ 8 , 9 ] ] , [ , , "2(?:[1346]\\d|5[0-2]|[78][12]|93)\\d{5}" , "\\d{8}" , , , "21123456" , , , [ 8 ] ] , [ , , "8[23467]\\d{7}" , "\\d{9}" , , , "821234567" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "MZ" , 258 , "00" , , , , , , , , [ [ , "([28]\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "2|8[2-7]" ] ] , [ , "(80\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "80" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] ,
NA : [ , [ , , "[68]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "6(?:1(?:17|2(?:[0189]\\d|[2-6]|7\\d?)|3(?:[01378]|2\\d)|4(?:[024]|10?|3[15]?)|69|7[014])|2(?:17|5(?:[0-36-8]|4\\d?)|69|70)|3(?:17|2(?:[0237]\\d?|[14-689])|34|6[289]|7[01]|81)|4(?:17|2(?:[012]|7\\d?)|4(?:[06]|1\\d?)|5(?:[01357]|[25]\\d?)|69|7[01])|5(?:17|2(?:[0459]|[23678]\\d?)|69|7[01])|6(?:17|2(?:5|6\\d?)|38|42|69|7[01])|7(?:17|2(?:[569]|[234]\\d?)|3(?:0\\d?|[13])|69|7[01]))\\d{4}" , "\\d{8,9}" , , , "61221234" ] , [ , , "(?:60|8[125])\\d{7}" , "\\d{9}" , , , "811234567" ,
, , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "8701\\d{5}" , "\\d{9}" , , , "870123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "8(?:3\\d{2}|86)\\d{5}" , "\\d{8,9}" , , , "88612345" ] , "NA" , 264 , "00" , "0" , , , "0" , , , , [ [ , "(8\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "8[1235]" ] , "0$1" ] , [ , "(6\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "6" ] , "0$1" ] , [ , "(88)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "88" ] , "0$1" ] , [ , "(870)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "870" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] ] , NC : [ , [ , , "[2-57-9]\\d{5}" , "\\d{6}" , , , , , , [ 6 ] ] , [ , , "(?:2[03-9]|3[0-5]|4[1-7]|88)\\d{4}" , "\\d{6}" , , , "201234" ] , [ , , "(?:5[0-4]|[79]\\d|8[0-79])\\d{4}" , "\\d{6}" , , , "751234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "36\\d{4}" , "\\d{6}" , , , "366711" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NC" , 687 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})" , "$1.$2.$3" , [ "[2-46-9]|5[0-4]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NE : [ ,
[ , , "[0289]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "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}" , "\\d{8}" , , , "20201234" ] , [ , , "(?:8[089]|9\\d)\\d{6}" , "\\d{8}" , , , "93123456" ] , [ , , "08\\d{6}" , "\\d{8}" , , , "08123456" ] , [ , , "09\\d{6}" , "\\d{8}" , , , "09123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NE" , 227 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[289]|09" ] ] , [ , "(08)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "08" ] ] ] , , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NF : [ , [ , , "[13]\\d{5}" , "\\d{5,6}" , , , , , , [ 6 ] , [ 5 ] ] , [ , , "(?:1(?:06|17|28|39)|3[012]\\d)\\d{3}" , "\\d{5,6}" , , , "106609" ] , [ , , "3[58]\\d{4}" , "\\d{5,6}" , , , "381234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NF" , 672 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{4})" , "$1 $2" , [ "1" ] ] , [ , "(\\d)(\\d{5})" , "$1 $2" , [ "3" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NG : [ , [ , , "[1-6]\\d{5,8}|9\\d{5,9}|[78]\\d{5,13}" , "\\d{5,14}" , , , , , , [ 7 , 8 , 10 , 11 , 12 , 13 , 14 ] , [ 5 , 6 ] ] , [ , , "[12]\\d{6,7}|9(?:0[3-9]|[1-9]\\d)\\d{5}|(?:3\\d|4[023568]|5[02368]|6[02-469]|7[4-69]|8[2-9])\\d{6}|(?:4[47]|5[14579]|6[1578]|7[0-357])\\d{5,6}|(?:78|41)\\d{5}" , "\\d{5,8}" , , , "12345678" , , , [ 7 , 8 ] ] , [ , , "(?:1(?:7[34]\\d|8(?:04|[124579]\\d|8[0-3])|95\\d)|287[0-7]|3(?:18[1-8]|88[0-7]|9(?:8[5-9]|6[1-5]))|4(?:28[0-2]|6(?:7[1-9]|8[02-47])|88[0-2])|5(?:2(?:7[7-9]|8\\d)|38[1-79]|48[0-7]|68[4-7])|6(?:2(?:7[7-9]|8\\d)|4(?:3[7-9]|[68][129]|7[04-69]|9[1-8])|58[0-2]|98[7-9])|7(?:38[0-7]|69[1-8]|78[2-4])|8(?:28[3-9]|38[0-2]|4(?:2[12]|3[147-9]|5[346]|7[4-9]|8[014-689]|90)|58[1-8]|78[2-9]|88[5-7])|98[07]\\d)\\d{4}|(?:70[1-689]\\d|8(?:0(?:1[01]|[2-9]\\d)|1(?:[0-8]\\d|9[01]))|90[2357-9]\\d)\\d{6}" ,
"\\d{8,10}" , , , "8021234567" , , , [ 8 , 10 ] ] , [ , , "800\\d{7,11}" , "\\d{10,14}" , , , "80017591759" , , , [ 10 , 11 , 12 , 13 , 14 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NG" , 234 , "009" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[12]|9(?:0[3-9]|[1-9])" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "70|8[01]|90[2357-9]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{2,3})" , "$1 $2 $3" , [ "[3-6]|7(?:[1-79]|0[1-9])|8[2-9]" ] , "0$1" ] , [ , "([78]00)(\\d{4})(\\d{4,5})" , "$1 $2 $3" ,
[ "[78]00" ] , "0$1" ] , [ , "([78]00)(\\d{5})(\\d{5,6})" , "$1 $2 $3" , [ "[78]00" ] , "0$1" ] , [ , "(78)(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "78" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "700\\d{7,11}" , "\\d{10,14}" , , , "7001234567" , , , [ 10 , 11 , 12 , 13 , 14 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NI : [ , [ , , "[12578]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2\\d{7}" , "\\d{8}" , , , "21234567" ] , [ , , "5(?:5[0-7]\\d{5}|[78]\\d{6})|7[5-8]\\d{6}|8\\d{7}" , "\\d{8}" , , , "81234567" ] , [ , , "1800\\d{4}" , "\\d{8}" , , , "18001234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NI" , 505 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NL : [ , [ , , "1\\d{4,8}|[2-7]\\d{8}|[89]\\d{6,9}" , "\\d{5,10}" , , , , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] ] , [ , , "(?:1[0135-8]|2[02-69]|3[0-68]|4[0135-9]|[57]\\d|8[478])\\d{7}" , "\\d{9}" , , , "101234567" , , , [ 9 ] ] , [ , , "6[1-58]\\d{7}" , "\\d{9}" , , , "612345678" , , , [ 9 ] ] , [ , , "800\\d{4,7}" , "\\d{7,10}" , , , "8001234" , , , [ 7 , 8 , 9 , 10 ] ] , [ , ,
"90[069]\\d{4,7}" , "\\d{7,10}" , , , "9061234" , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:6760|85\\d{2})\\d{5}" , "\\d{9}" , , , "851234567" , , , [ 9 ] ] , "NL" , 31 , "00" , "0" , , , "0" , , , , [ [ , "([1-578]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1[035]|2[0346]|3[03568]|4[0356]|5[0358]|7|8[4578]" ] , "0$1" ] , [ , "([1-5]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1[16-8]|2[259]|3[124]|4[17-9]|5[124679]" ] , "0$1" ] , [ , "(6)(\\d{8})" , "$1 $2" , [ "6[0-57-9]" ] , "0$1" ] , [ , "(66)(\\d{7})" , "$1 $2" , [ "66" ] , "0$1" ] , [ , "(14)(\\d{3,4})" , "$1 $2" ,
[ "14" ] , "$1" ] , [ , "([89]0\\d)(\\d{4,7})" , "$1 $2" , [ "80|9" ] , "0$1" ] ] , , [ , , "66\\d{7}" , "\\d{9}" , , , "662345678" , , , [ 9 ] ] , , , [ , , "14\\d{3,4}" , "\\d{5,6}" , , , , , , [ 5 , 6 ] ] , [ , , "140(?:1(?:[035]|[16-8]\\d)|2(?:[0346]|[259]\\d)|3(?:[03568]|[124]\\d)|4(?:[0356]|[17-9]\\d)|5(?:[0358]|[124679]\\d)|7\\d|8[458])" , "\\d{5,6}" , , , "14020" , , , [ 5 , 6 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NO : [ , [ , , "0\\d{4}|[2-9]\\d{7}" , "\\d{5}(?:\\d{3})?" , , , , , , [ 5 , 8 ] ] , [ , , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-4679]|7[0-8])\\d{6}" , "\\d{8}" , , , "21234567" , , , [ 8 ] ] , [ , , "(?:4[015-8]|5[89]|87|9\\d)\\d{6}" ,
"\\d{8}" , , , "40612345" , , , [ 8 ] ] , [ , , "80[01]\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "82[09]\\d{5}" , "\\d{8}" , , , "82012345" , , , [ 8 ] ] , [ , , "810(?:0[0-6]|[2-8]\\d)\\d{3}" , "\\d{8}" , , , "81021234" , , , [ 8 ] ] , [ , , "880\\d{5}" , "\\d{8}" , , , "88012345" , , , [ 8 ] ] , [ , , "85[0-5]\\d{5}" , "\\d{8}" , , , "85012345" , , , [ 8 ] ] , "NO" , 47 , "00" , , , , , , , , [ [ , "([489]\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3" , [ "[489]" ] ] , [ , "([235-7]\\d)(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[235-7]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "0\\d{4}|81(?:0(?:0[7-9]|1\\d)|5\\d{2})\\d{3}" ,
"\\d{5}(?:\\d{3})?" , , , "01234" ] , 1 , , [ , , "81[23]\\d{5}" , "\\d{8}" , , , "81212345" , , , [ 8 ] ] ] , NP : [ , [ , , "[1-8]\\d{7}|9(?:[1-69]\\d{6,8}|7[2-6]\\d{5,7}|8\\d{8})" , "\\d{6,10}" , , , , , , [ 8 , 10 ] , [ 6 , 7 ] ] , [ , , "(?:1[0-6]\\d|2[13-79][2-6]|3[135-8][2-6]|4[146-9][2-6]|5[135-7][2-6]|6[13-9][2-6]|7[15-9][2-6]|8[1-46-9][2-6]|9[1-79][2-6])\\d{5}" , "\\d{6,8}" , , , "14567890" , , , [ 8 ] ] , [ , , "9(?:6[013]|7[245]|8[0-24-6])\\d{7}" , "\\d{10}" , , , "9841234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NP" , 977 , "00" , "0" , , , "0" , , , , [ [ , "(1)(\\d{7})" , "$1-$2" , [ "1[2-6]" ] , "0$1" ] , [ , "(\\d{2})(\\d{6})" , "$1-$2" , [ "1[01]|[2-8]|9(?:[1-69]|7[15-9])" ] , "0$1" ] , [ , "(9\\d{2})(\\d{7})" , "$1-$2" , [ "9(?:6[013]|7[245]|8)" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NR : [ , [ , , "[458]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "(?:444|888)\\d{4}" , "\\d{7}" , , , "4441234" ] , [ , , "55[5-9]\\d{4}" , "\\d{7}" , , , "5551234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NR" , 674 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NU : [ , [ , , "[1-5]\\d{3}" , "\\d{4}" , , , , , , [ 4 ] ] , [ , , "[34]\\d{3}" , "\\d{4}" , , , "4002" ] , [ , , "[125]\\d{3}" , "\\d{4}" , , , "1234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NU" , 683 , "00" , , , , , , , , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , NZ : [ , [ , , "6[235-9]\\d{6}|[2-57-9]\\d{7,10}" , "\\d{7,11}" , , , , , , [ 8 , 9 , 10 , 11 ] , [ 7 ] ] , [ , , "(?:3[2-79]|[49][2-9]|6[235-9]|7[2-57-9])\\d{6}|24099\\d{3}" , "\\d{7,8}" , , , "32345678" , , , [ 8 ] ] , [ , , "2(?:[028]\\d{7,8}|1(?:[03]\\d{5,7}|[12457]\\d{5,6}|[689]\\d{5})|[79]\\d{7})" , "\\d{8,10}" , , , "211234567" , , , [ 8 , 9 , 10 ] ] , [ , , "508\\d{6,7}|80\\d{6,8}" , "\\d{8,10}" , , , "800123456" , , , [ 8 , 9 , 10 ] ] , [ , , "90\\d{7,9}" , "\\d{9,11}" , , , "900123456" , , , [ 9 , 10 , 11 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "70\\d{7}" , "\\d{9}" , , , "701234567" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "NZ" , 64 , "0(?:0|161)" , "0" , , , "0" , , "00" , , [ [ , "([34679])(\\d{3})(\\d{4})" , "$1-$2 $3" , [ "[346]|7[2-57-9]|9[1-9]" ] , "0$1" ] , [ , "(24099)(\\d{3})" , "$1 $2" , [ "240" , "2409" , "24099" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "21" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{3,5})" , "$1 $2 $3" , [ "2(?:1[1-9]|[69]|7[0-35-9])|70|86" ] , "0$1" ] , [ , "(2\\d)(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "2[028]" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3,4})" , "$1 $2 $3" ,
[ "2(?:10|74)|5|[89]0" ] , "0$1" ] ] , , [ , , "[28]6\\d{6,7}" , "\\d{8,9}" , , , "26123456" , , , [ 8 , 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , OM : [ , [ , , "(?:5|[279]\\d)\\d{6}|800\\d{5,6}" , "\\d{7,9}" , , , , , , [ 7 , 8 , 9 ] ] , [ , , "2[2-6]\\d{6}" , "\\d{8}" , , , "23123456" , , , [ 8 ] ] , [ , , "7[19]\\d{6}|9(?:0[1-9]|[1-9]\\d)\\d{5}" , "\\d{8}" , , , "92123456" , , , [ 8 ] ] , [ , , "8007\\d{4,5}|500\\d{4}" , "\\d{7,9}" , , , "80071234" ] , [ , , "900\\d{5}" , "\\d{8}" , , , "90012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , "OM" , 968 , "00" , , , , , , , , [ [ , "(2\\d)(\\d{6})" , "$1 $2" , [ "2" ] ] , [ , "([79]\\d{3})(\\d{4})" , "$1 $2" , [ "[79]" ] ] , [ , "([58]00)(\\d{4,6})" , "$1 $2" , [ "[58]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PA : [ , [ , , "[1-9]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:1(?:0[0-8]|1[49]|2[37]|3[0137]|4[147]|5[05]|6[58]|7[0167]|8[58]|9[139])|2(?:[0235679]\\d|1[0-7]|4[04-9]|8[028])|3(?:[09]\\d|1[014-7]|2[0-3]|3[03]|4[03-57]|55|6[068]|7[06-8]|8[06-9])|4(?:3[013-69]|4\\d|7[0-589])|5(?:[01]\\d|2[0-7]|[56]0|79)|7(?:0[09]|2[0-267]|3[06]|[469]0|5[06-9]|7[0-24-79]|8[7-9])|8(?:09|[34]\\d|5[0134]|8[02])|9(?:0[6-9]|1[016-8]|2[036-8]|3[3679]|40|5[0489]|6[06-9]|7[046-9]|8[36-8]|9[1-9]))\\d{4}" ,
"\\d{7}" , , , "2001234" , , , [ 7 ] ] , [ , , "(?:1[16]1|21[89]|8(?:1[01]|7[23]))\\d{4}|6(?:[024-9]\\d|1[0-5]|3[0-24-9])\\d{5}" , "\\d{7,8}" , , , "60012345" ] , [ , , "80[09]\\d{4}" , "\\d{7}" , , , "8001234" , , , [ 7 ] ] , [ , , "(?:779|8(?:55|60|7[78])|9(?:00|81))\\d{4}" , "\\d{7}" , , , "8601234" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PA" , 507 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1-$2" , [ "[1-57-9]" ] ] , [ , "(\\d{4})(\\d{4})" , "$1-$2" , [ "6" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , ,
, [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PE : [ , [ , , "[14-9]\\d{7,8}" , "\\d{6,9}" , , , , , , [ 8 , 9 ] , [ 6 , 7 ] ] , [ , , "(?:1\\d|4[1-4]|5[1-46]|6[1-7]|7[2-46]|8[2-4])\\d{6}" , "\\d{6,8}" , , , "11234567" , , , [ 8 ] ] , [ , , "9\\d{8}" , "\\d{9}" , , , "912345678" , , , [ 9 ] ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "805\\d{5}" , "\\d{8}" , , , "80512345" , , , [ 8 ] ] , [ , , "801\\d{5}" , "\\d{8}" , , , "80112345" , , , [ 8 ] ] , [ , , "80[24]\\d{5}" , "\\d{8}" , , , "80212345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PE" , 51 , "19(?:1[124]|77|90)00" , "0" , " Anexo " , , "0" , , , , [ [ , "(1)(\\d{7})" , "$1 $2" , [ "1" ] ,
"(0$1)" ] , [ , "([4-8]\\d)(\\d{6})" , "$1 $2" , [ "[4-7]|8[2-4]" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{5})" , "$1 $2" , [ "80" ] , "(0$1)" ] , [ , "(9\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "9" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PF : [ , [ , , "4\\d{5,7}|8\\d{7}" , "\\d{6}(?:\\d{2})?" , , , , , , [ 6 , 8 ] ] , [ , , "4(?:[09][45689]\\d|4)\\d{4}" , "\\d{6}(?:\\d{2})?" , , , "40412345" ] , [ , , "8[79]\\d{6}" , "\\d{8}" , , , "87123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PF" , 689 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "4[09]|8[79]" ] ] , [ , "(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3" , [ "44" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "44\\d{4}" , "\\d{6}" , , , "441234" , , , [ 6 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PG : [ , [ , , "[1-9]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:3[0-2]\\d|4[25]\\d|5[34]\\d|64[1-9]|77(?:[0-24]\\d|30)|85[02-46-9]|9[78]\\d)\\d{4}" , "\\d{7}" , , , "3123456" , , , [ 7 ] ] , [ , , "(?:20150|68\\d{2}|7(?:[0-689]\\d|75)\\d{2})\\d{3}" ,
"\\d{7,8}" , , , "6812345" ] , [ , , "180\\d{4}" , "\\d{7}" , , , "1801234" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "275\\d{4}" , "\\d{7}" , , , "2751234" , , , [ 7 ] ] , "PG" , 675 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[13-689]|27" ] ] , [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "20|7" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PH : [ , [ , , "2\\d{5,7}|[3-9]\\d{7,9}|1800\\d{7,9}" , "\\d{5,13}" , , , , , , [ 6 , 8 , 9 , 10 , 11 , 12 , 13 ] , [ 5 , 7 ] ] , [ , , "2\\d{5}(?:\\d{2})?|(?:3[2-68]|4[2-9]|5[2-6]|6[2-58]|7[24578]|8[2-8])\\d{7}|88(?:22\\d{6}|42\\d{4})" ,
"\\d{5,10}" , , , "21234567" , , , [ 6 , 8 , 9 , 10 ] ] , [ , , "(?:81[37]|9(?:0[5-9]|1[024-9]|2[0-35-9]|3[02-9]|4[236-9]|50|7[34-79]|89|9[4-9]))\\d{7}" , "\\d{10}" , , , "9051234567" , , , [ 10 ] ] , [ , , "1800\\d{7,9}" , "\\d{11,13}" , , , "180012345678" , , , [ 11 , 12 , 13 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PH" , 63 , "00" , "0" , , , "0" , , , , [ [ , "(2)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "2" ] , "(0$1)" ] , [ , "(2)(\\d{5})" , "$1 $2" , [ "2" ] , "(0$1)" ] , [ , "(\\d{4})(\\d{4,6})" , "$1 $2" , [ "3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|5(?:22|44)|642|8(?:62|8[245])" ,
"3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))" ] , "(0$1)" ] , [ , "(\\d{5})(\\d{4})" , "$1 $2" , [ "346|4(?:27|9[35])|883" , "3469|4(?:279|9(?:30|56))|8834" ] , "(0$1)" ] , [ , "([3-8]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[3-8]" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "81|9" ] , "0$1" ] , [ , "(1800)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1" ] ] , [ , "(1800)(\\d{1,2})(\\d{3})(\\d{4})" , "$1 $2 $3 $4" , [ "1" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PK : [ , [ , , "1\\d{8}|[2-8]\\d{5,11}|9(?:[013-9]\\d{4,9}|2\\d(?:111\\d{6}|\\d{3,7}))" , "\\d{6,12}" , , , , , , [ 8 , 9 , 10 , 11 , 12 ] , [ 6 , 7 ] ] , [ , , "(?:21|42)[2-9]\\d{7}|(?:2[25]|4[0146-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]\\d{6}|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8]))[2-9]\\d{5,6}|58[126]\\d{7}" , "\\d{6,10}" , , , "2123456789" , , , [ 9 , 10 ] ] , [ , , "3(?:0\\d|1[0-6]|2[0-5]|3[0-7]|4[0-8]|55|64)\\d{7}" ,
"\\d{10}" , , , "3012345678" , , , [ 10 ] ] , [ , , "800\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "900\\d{5}" , "\\d{8}" , , , "90012345" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "122\\d{6}" , "\\d{9}" , , , "122044444" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PK" , 92 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(111)(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)1" , "(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)11" , "(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)111" ] , "(0$1)" ] , [ , "(\\d{3})(111)(\\d{3})(\\d{3})" ,
"$1 $2 $3 $4" , [ "2[349]|45|54|60|72|8[2-5]|9[2-9]" , "(?:2[349]|45|54|60|72|8[2-5]|9[2-9])\\d1" , "(?:2[349]|45|54|60|72|8[2-5]|9[2-9])\\d11" , "(?:2[349]|45|54|60|72|8[2-5]|9[2-9])\\d111" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{7,8})" , "$1 $2" , [ "(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{6,7})" , "$1 $2" , [ "2[349]|45|54|60|72|8[2-5]|9[2-9]" , "(?:2[349]|45|54|60|72|8[2-5]|9[2-9])\\d[2-9]" ] , "(0$1)" ] , [ , "(3\\d{2})(\\d{7})" , "$1 $2" , [ "3" ] , "0$1" ] , [ , "([15]\\d{3})(\\d{5,6})" , "$1 $2" , [ "58[12]|1" ] ,
"(0$1)" ] , [ , "(586\\d{2})(\\d{5})" , "$1 $2" , [ "586" ] , "(0$1)" ] , [ , "([89]00)(\\d{3})(\\d{2})" , "$1 $2 $3" , [ "[89]00" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:2(?:[125]|3[2358]|4[2-4]|9[2-8])|4(?:[0-246-9]|5[3479])|5(?:[1-35-7]|4[2-467])|6(?:[1-8]|0[468])|7(?:[14]|2[236])|8(?:[16]|2[2-689]|3[23578]|4[3478]|5[2356])|9(?:1|22|3[27-9]|4[2-6]|6[3569]|9[2-7]))111\\d{6}" , "\\d{11,12}" , , , "21111825888" , , , [ 11 , 12 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PL : [ , [ , , "[12]\\d{6,8}|[3-57-9]\\d{8}|6\\d{5,8}" , "\\d{6,9}" ,
, , , , , [ 6 , 7 , 8 , 9 ] ] , [ , , "(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])\\d{7}|[12]2\\d{5}" , "\\d{6,9}" , , , "123456789" , , , [ 7 , 9 ] ] , [ , , "(?:5[0137]|6[069]|7[2389]|88)\\d{7}" , "\\d{9}" , , , "512345678" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "70\\d{7}" , "\\d{9}" , , , "701234567" , , , [ 9 ] ] , [ , , "801\\d{6}" , "\\d{9}" , , , "801234567" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "39\\d{7}" , "\\d{9}" , , , "391234567" , , , [ 9 ] ] , "PL" , 48 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[14]|2[0-57-9]|3[2-4]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145]" ] ] ,
[ , "(\\d{2})(\\d{1})(\\d{4})" , "$1 $2 $3" , [ "[12]2" ] ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "26|39|5[0137]|6[0469]|7[02389]|8[08]" ] ] , [ , "(\\d{3})(\\d{2})(\\d{2,3})" , "$1 $2 $3" , [ "64" ] ] , [ , "(\\d{3})(\\d{3})" , "$1 $2" , [ "64" ] ] ] , , [ , , "64\\d{4,7}" , "\\d{6,9}" , , , "641234567" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PM : [ , [ , , "[45]\\d{5}" , "\\d{6}" , , , , , , [ 6 ] ] , [ , , "41\\d{4}" , "\\d{6}" , , , "411234" ] , [ , , "55\\d{4}" , "\\d{6}" , , , "551234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PM" , 508 , "00" , "0" , , , "0" , , , , [ [ , "([45]\\d)(\\d{2})(\\d{2})" , "$1 $2 $3" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PR : [ , [ , , "[5789]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "(?:787|939)[2-9]\\d{6}" , "\\d{7}(?:\\d{3})?" , , , "7872345678" ] , [ , , "(?:787|939)[2-9]\\d{6}" , "\\d{7}(?:\\d{3})?" , , , "7872345678" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] ,
[ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PR" , 1 , "011" , "1" , , , "1" , , , 1 , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "787|939" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PS : [ , [ , , "[24589]\\d{7,8}|1(?:[78]\\d{8}|[49]\\d{2,3})" , "\\d{4,10}" , , , , , , [ 4 , 5 , 8 , 9 , 10 ] , [ 7 ] ] , [ , , "(?:22[234789]|42[45]|82[01458]|92[369])\\d{5}" , "\\d{7,8}" , , , "22234567" , , , [ 8 ] ] , [ , , "5[69]\\d{7}" , "\\d{9}" , , ,
"599123456" , , , [ 9 ] ] , [ , , "1800\\d{6}" , "\\d{10}" , , , "1800123456" , , , [ 10 ] ] , [ , , "1(?:4|9\\d)\\d{2}" , "\\d{4,5}" , , , "19123" , , , [ 4 , 5 ] ] , [ , , "1700\\d{6}" , "\\d{10}" , , , "1700123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PS" , 970 , "00" , "0" , , , "0" , , , , [ [ , "([2489])(2\\d{2})(\\d{4})" , "$1 $2 $3" , [ "[2489]" ] , "0$1" ] , [ , "(5[69]\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "5" ] , "0$1" ] , [ , "(1[78]00)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1[78]" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] ] , PT : [ , [ , , "[2-46-9]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "2(?:[12]\\d|[35][1-689]|4[1-59]|6[1-35689]|7[1-9]|8[1-69]|9[1256])\\d{6}" , "\\d{9}" , , , "212345678" ] , [ , , "9(?:[1236]\\d{2}|480)\\d{5}" , "\\d{9}" , , , "912345678" ] , [ , , "80[02]\\d{6}" , "\\d{9}" , , , "800123456" ] , [ , , "6(?:0[178]|4[68])\\d{6}|76(?:0[1-57]|1[2-47]|2[237])\\d{5}" , "\\d{9}" , , , "760123456" ] , [ , , "80(?:8\\d|9[1579])\\d{5}" , "\\d{9}" , , , "808123456" ] , [ , , "884[0-4689]\\d{5}" , "\\d{9}" , , , "884123456" ] , [ , , "30\\d{7}" , "\\d{9}" , , , "301234567" ] , "PT" , 351 , "00" ,
, , , , , , , [ [ , "(2\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "2[12]" ] ] , [ , "([2-46-9]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "2[3-9]|[346-9]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7(?:0(?:7\\d|8[17]))\\d{5}" , "\\d{9}" , , , "707123456" ] , , , [ , , "600\\d{6}" , "\\d{9}" , , , "600110000" ] ] , PW : [ , [ , , "[2-8]\\d{6}" , "\\d{7}" , , , , , , [ 7 ] ] , [ , , "2552255|(?:277|345|488|5(?:35|44|87)|6(?:22|54|79)|7(?:33|47)|8(?:24|55|76))\\d{4}" , "\\d{7}" , , , "2771234" ] , [ , , "(?:6[234689]0|77[45789])\\d{4}" , "\\d{7}" , , , "6201234" ] , [ , , "NA" , "NA" , , , , ,
, [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "PW" , 680 , "01[12]" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , PY : [ , [ , , "5[0-5]\\d{4,7}|[2-46-9]\\d{5,8}" , "\\d{5,9}" , , , , , , [ 6 , 7 , 8 , 9 ] , [ 5 ] ] , [ , , "(?:[26]1|3[289]|4[124678]|7[123]|8[1236])\\d{5,7}|(?:2(?:2[4568]|7[15]|9[1-5])|3(?:18|3[167]|4[2357]|51)|4(?:18|2[45]|3[12]|5[13]|64|71|9[1-47])|5(?:[1-4]\\d|5[0234])|6(?:3[1-3]|44|7[1-4678])|7(?:17|4[0-4]|6[1-578]|75|8[0-8])|858)\\d{5,6}" ,
"\\d{5,9}" , , , "212345678" , , , [ 7 , 8 , 9 ] ] , [ , , "9(?:6[12]|[78][1-6]|9[1-5])\\d{6}" , "\\d{9}" , , , "961456789" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "8700[0-4]\\d{4}" , "\\d{9}" , , , "870012345" , , , [ 9 ] ] , "PY" , 595 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{5})" , "$1 $2" , [ "(?:[26]1|3[289]|4[124678]|7[123]|8[1236])" ] , "(0$1)" ] , [ , "(\\d{2})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "(?:[26]1|3[289]|4[124678]|7[123]|8[1236])" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{3,6})" , "$1 $2" , [ "[2-9]0" ] ,
"0$1" ] , [ , "(\\d{3})(\\d{6})" , "$1 $2" , [ "9[1-9]" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "8700" ] ] , [ , "(\\d{3})(\\d{4,5})" , "$1 $2" , [ "[2-8][1-9]" ] , "(0$1)" ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[2-8][1-9]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "[2-9]0\\d{4,7}" , "\\d{6,9}" , , , "201234567" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , QA : [ , [ , , "[2-8]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "4[04]\\d{6}" , "\\d{8}" , , , "44123456" , , , [ 8 ] ] , [ , , "[3567]\\d{7}" , "\\d{8}" , , , "33123456" , , , [ 8 ] ] , [ , , "800\\d{4}" ,
"\\d{7}" , , , "8001234" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "QA" , 974 , "00" , , , , , , , , [ [ , "([28]\\d{2})(\\d{4})" , "$1 $2" , [ "[28]" ] ] , [ , "([3-7]\\d{3})(\\d{4})" , "$1 $2" , [ "[3-7]" ] ] ] , , [ , , "2(?:[12]\\d|61)\\d{4}" , "\\d{7}" , , , "2123456" , , , [ 7 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , RE : [ , [ , , "[268]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "262\\d{6}" , "\\d{9}" , , , "262161234" ] , [ , , "6(?:9[23]|47)\\d{6}" , "\\d{9}" , , , "692123456" ] , [ , , "80\\d{7}" ,
"\\d{9}" , , , "801234567" ] , [ , , "89[1-37-9]\\d{6}" , "\\d{9}" , , , "891123456" ] , [ , , "8(?:1[019]|2[0156]|84|90)\\d{6}" , "\\d{9}" , , , "810123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "RE" , 262 , "00" , "0" , , , "0" , , , , [ [ , "([268]\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , "262|6[49]|8" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , RO : [ , [ , , "2\\d{5,8}|[37-9]\\d{8}" , "\\d{6,9}" , , , , , , [ 6 , 9 ] ] , [ , , "2(?:1(?:\\d{7}|9\\d{3})|[3-6](?:\\d{7}|\\d9\\d{2}))|3[13-6]\\d{7}" ,
"\\d{6,9}" , , , "211234567" ] , [ , , "7(?:[0-8]\\d{2}|99\\d)\\d{5}" , "\\d{9}" , , , "712345678" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "90[036]\\d{6}" , "\\d{9}" , , , "900123456" , , , [ 9 ] ] , [ , , "801\\d{6}" , "\\d{9}" , , , "801123456" , , , [ 9 ] ] , [ , , "802\\d{6}" , "\\d{9}" , , , "802123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "RO" , 40 , "00" , "0" , " int " , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[23]1" ] , "0$1" ] , [ , "(21)(\\d{4})" , "$1 $2" , [ "21" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[23][3-7]|[7-9]" ] , "0$1" ] , [ , "(2\\d{2})(\\d{3})" ,
"$1 $2" , [ "2[3-6]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "37\\d{7}" , "\\d{9}" , , , "372123456" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , RS : [ , [ , , "[126-9]\\d{4,11}|3(?:[0-79]\\d{3,10}|8[2-9]\\d{2,9})" , "\\d{5,12}" , , , , , , [ 6 , 7 , 8 , 9 , 10 , 11 , 12 ] , [ 5 ] ] , [ , , "(?:1(?:[02-9][2-9]|1[1-9])\\d|2(?:[0-24-7][2-9]\\d|[389](?:0[2-9]|[2-9]\\d))|3(?:[0-8][2-9]\\d|9(?:[2-9]\\d|0[2-9])))\\d{3,8}" , "\\d{5,12}" , , , "10234567" , , , [ 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "6(?:[0-689]|7\\d)\\d{6,7}" , "\\d{8,10}" , , , "601234567" , , , [ 8 , 9 , 10 ] ] , [ , ,
"800\\d{3,9}" , "\\d{6,12}" , , , "80012345" ] , [ , , "(?:90[0169]|78\\d)\\d{3,7}" , "\\d{6,12}" , , , "90012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "RS" , 381 , "00" , "0" , , , "0" , , , , [ [ , "([23]\\d{2})(\\d{4,9})" , "$1 $2" , [ "(?:2[389]|39)0" ] , "0$1" ] , [ , "([1-3]\\d)(\\d{5,10})" , "$1 $2" , [ "1|2(?:[0-24-7]|[389][1-9])|3(?:[0-8]|9[1-9])" ] , "0$1" ] , [ , "(6\\d)(\\d{6,8})" , "$1 $2" , [ "6" ] , "0$1" ] , [ , "([89]\\d{2})(\\d{3,9})" , "$1 $2" , [ "[89]" ] , "0$1" ] , [ , "(7[26])(\\d{4,9})" , "$1 $2" , [ "7[26]" ] , "0$1" ] , [ , "(7[08]\\d)(\\d{4,9})" ,
"$1 $2" , [ "7[08]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7[06]\\d{4,10}" , "\\d{6,12}" , , , "700123456" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , RU : [ , [ , , "[3489]\\d{9}" , "\\d{10}" , , , , , , [ 10 ] ] , [ , , "(?:3(?:0[12]|4[1-35-79]|5[1-3]|65|8[1-58]|9[0145])|4(?:01|1[1356]|2[13467]|7[1-5]|8[1-7]|9[1-689])|8(?:1[1-8]|2[01]|3[13-6]|4[0-8]|5[15]|6[1-35-79]|7[1-37-9]))\\d{7}" , "\\d{10}" , , , "3011234567" ] , [ , , "9\\d{9}" , "\\d{10}" , , , "9123456789" ] , [ , , "80[04]\\d{7}" , "\\d{10}" , , , "8001234567" ] , [ , , "80[39]\\d{7}" , "\\d{10}" ,
, , "8091234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "RU" , 7 , "810" , "8" , , , "8" , , "8~10" , , [ [ , "(\\d{3})(\\d{2})(\\d{2})" , "$1-$2-$3" , [ "[1-79]" ] , "$1" , , 1 ] , [ , "([3489]\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2-$3-$4" , [ "[34689]" ] , "8 ($1)" , , 1 ] , [ , "(7\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "7" ] , "8 ($1)" , , 1 ] ] , [ [ , "([3489]\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2-$3-$4" , [ "[34689]" ] , "8 ($1)" , , 1 ] , [ , "(7\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "7" ] , "8 ($1)" , , 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , RW : [ , [ , , "[027-9]\\d{7,8}" , "\\d{8,9}" , , , , , , [ 8 , 9 ] ] , [ , , "2[258]\\d{7}|06\\d{6}" , "\\d{8,9}" , , , "250123456" ] , [ , , "7[238]\\d{7}" , "\\d{9}" , , , "720123456" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "900\\d{6}" , "\\d{9}" , , , "900123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "RW" , 250 , "00" , "0" , , , "0" , , , , [ [ , "(2\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "2" ] , "$1" ] , [ , "([7-9]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" ,
[ "[7-9]" ] , "0$1" ] , [ , "(0\\d)(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "0" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SA : [ , [ , , "1\\d{7,8}|(?:[2-467]|92)\\d{7}|5\\d{8}|8\\d{9}" , "\\d{7,10}" , , , , , , [ 8 , 9 , 10 ] , [ 7 ] ] , [ , , "11\\d{7}|1?(?:2[24-8]|3[35-8]|4[3-68]|6[2-5]|7[235-7])\\d{6}" , "\\d{7,9}" , , , "112345678" , , , [ 8 , 9 ] ] , [ , , "(?:5(?:[013-689]\\d|7[0-26-8])|811\\d)\\d{6}" , "\\d{9,10}" , , , "512345678" , , , [ 9 , 10 ] ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "92[05]\\d{6}" , "\\d{9}" , , , "920012345" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SA" , 966 , "00" , "0" , , , "0" , , , , [ [ , "([1-467])(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[1-467]" ] , "0$1" ] , [ , "(1\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1[1-467]" ] , "0$1" ] , [ , "(5\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "5" ] , "0$1" ] , [ , "(92\\d{2})(\\d{5})" , "$1 $2" , [ "92" ] , "$1" ] , [ , "(800)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "80" ] , "$1" ] , [ , "(811)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "81" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SB : [ , [ , , "[1-9]\\d{4,6}" , "\\d{5,7}" , , , , , , [ 5 , 7 ] ] , [ , , "(?:1[4-79]|[23]\\d|4[0-2]|5[03]|6[0-37])\\d{3}" , "\\d{5}" , , , "40123" , , , [ 5 ] ] , [ , , "48\\d{3}|7(?:30|[46-8]\\d|5[025-9]|9[0-5])\\d{4}|8[4-9]\\d{5}|9(?:1[2-9]|2[013-9]|3[0-2]|[46]\\d|5[0-46-9]|7[0-689]|8[0-79]|9[0-8])\\d{4}" , "\\d{5,7}" , , , "7421234" ] , [ , , "1[38]\\d{3}" , "\\d{5}" , , , "18123" , , , [ 5 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5[12]\\d{3}" , "\\d{5}" , , , "51123" ,
, , [ 5 ] ] , "SB" , 677 , "0[01]" , , , , , , , , [ [ , "(\\d{2})(\\d{5})" , "$1 $2" , [ "[7-9]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SC : [ , [ , , "[2468]\\d{5,6}" , "\\d{6,7}" , , , , , , [ 6 , 7 ] ] , [ , , "4[2-46]\\d{5}" , "\\d{7}" , , , "4217123" , , , [ 7 ] ] , [ , , "2[5-8]\\d{5}" , "\\d{7}" , , , "2510123" , , , [ 7 ] ] , [ , , "8000\\d{2}" , "\\d{6}" , , , "800000" , , , [ 6 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "64\\d{5}" , "\\d{7}" , , , "6412345" , , , [ 7 ] ] , "SC" , 248 , "0[0-2]" , , , , , , "00" ,
, [ [ , "(\\d{3})(\\d{3})" , "$1 $2" , [ "8" ] ] , [ , "(\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[246]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SD : [ , [ , , "[19]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "1(?:[125]\\d|8[3567])\\d{6}" , "\\d{9}" , , , "121231234" ] , [ , , "9[0-3569]\\d{7}" , "\\d{9}" , , , "911231234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SD" , 249 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{4})" ,
"$1 $2 $3" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SE : [ , [ , , "[1-35-9]\\d{5,11}|4\\d{6,8}" , "\\d{6,12}" , , , , , , [ 6 , 7 , 8 , 9 , 10 , 12 ] ] , [ , , "1(?:0[1-8]\\d{6}|[136]\\d{5,7}|(?:2[0-35]|4[0-4]|5[0-25-9]|7[13-6]|[89]\\d)\\d{5,6})|2(?:[136]\\d{5,7}|(?:2[0-7]|4[0136-8]|5[0138]|7[018]|8[01]|9[0-57])\\d{5,6})|3(?:[356]\\d{5,7}|(?:0[0-4]|1\\d|2[0-25]|4[056]|7[0-2]|8[0-3]|9[023])\\d{5,6})|4(?:[0246]\\d{5,7}|(?:1[013-8]|3[0135]|5[14-79]|7[0-246-9]|8[0156]|9[0-689])\\d{5,6})|5(?:0[0-6]|[15][0-5]|2[0-68]|3[0-4]|4\\d|6[03-5]|7[013]|8[0-79]|9[01])\\d{5,6}|6(?:[03]\\d{5,7}|(?:1[1-3]|2[0-4]|4[02-57]|5[0-37]|6[0-3]|7[0-2]|8[0247]|9[0-356])\\d{5,6})|8\\d{6,8}|9(?:0[1-9]\\d{4,6}|(?:1[0-68]|2\\d|3[02-5]|4[0-3]|5[0-4]|[68][01]|7[0135-8])\\d{5,6})" ,
"\\d{7,9}" , , , "8123456" , , , [ 7 , 8 , 9 ] ] , [ , , "7[02369]\\d{7}" , "\\d{9}" , , , "701234567" , , , [ 9 ] ] , [ , , "20\\d{4,7}" , "\\d{6,9}" , , , "20123456" , , , [ 6 , 7 , 8 , 9 ] ] , [ , , "649\\d{6}|9(?:00|39|44)[1-8]\\d{3,6}" , "\\d{7,10}" , , , "9001234567" , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "77(?:0\\d{3}(?:\\d{3})?|[1-7]\\d{6})" , "\\d{6}(?:\\d{3})?" , , , "771234567" , , , [ 6 , 9 ] ] , [ , , "75[1-8]\\d{6}" , "\\d{9}" , , , "751234567" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SE" , 46 , "00" , "0" , , , "0" , , , , [ [ , "(8)(\\d{2,3})(\\d{2,3})(\\d{2})" , "$1-$2 $3 $4" , [ "8" ] , "0$1" ] , [ , "([1-69]\\d)(\\d{2,3})(\\d{2})(\\d{2})" ,
"$1-$2 $3 $4" , [ "1[013689]|2[0136]|3[1356]|4[0246]|54|6[03]|90" ] , "0$1" ] , [ , "([1-469]\\d)(\\d{3})(\\d{2})" , "$1-$2 $3" , [ "1[136]|2[136]|3[356]|4[0246]|6[03]|90" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1-$2 $3 $4" , [ "1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[0-5]|4[0-3])" ] , "0$1" ] , [ , "(\\d{3})(\\d{2,3})(\\d{2})" , "$1-$2 $3" , [ "1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[0-5]|4[0-3])" ] , "0$1" ] , [ , "(7\\d)(\\d{3})(\\d{2})(\\d{2})" ,
"$1-$2 $3 $4" , [ "7" ] , "0$1" ] , [ , "(77)(\\d{2})(\\d{2})" , "$1-$2$3" , [ "7" ] , "0$1" ] , [ , "(20)(\\d{2,3})(\\d{2})" , "$1-$2 $3" , [ "20" ] , "0$1" ] , [ , "(9[034]\\d)(\\d{2})(\\d{2})(\\d{3})" , "$1-$2 $3 $4" , [ "9[034]" ] , "0$1" ] , [ , "(9[034]\\d)(\\d{4})" , "$1-$2" , [ "9[034]" ] , "0$1" ] , [ , "(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1-$2 $3 $4 $5" , [ "25[245]|67[3-6]" ] , "0$1" ] ] , [ [ , "(8)(\\d{2,3})(\\d{2,3})(\\d{2})" , "$1 $2 $3 $4" , [ "8" ] ] , [ , "([1-69]\\d)(\\d{2,3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "1[013689]|2[0136]|3[1356]|4[0246]|54|6[03]|90" ] ] ,
[ , "([1-469]\\d)(\\d{3})(\\d{2})" , "$1 $2 $3" , [ "1[136]|2[136]|3[356]|4[0246]|6[03]|90" ] ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[0-5]|4[0-3])" ] ] , [ , "(\\d{3})(\\d{2,3})(\\d{2})" , "$1 $2 $3" , [ "1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[0-5]|4[0-3])" ] ] , [ , "(7\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "7" ] ] , [ , "(77)(\\d{2})(\\d{2})" , "$1 $2 $3" , [ "7" ] ] ,
[ , "(20)(\\d{2,3})(\\d{2})" , "$1 $2 $3" , [ "20" ] ] , [ , "(9[034]\\d)(\\d{2})(\\d{2})(\\d{3})" , "$1 $2 $3 $4" , [ "9[034]" ] ] , [ , "(9[034]\\d)(\\d{4})" , "$1 $2" , [ "9[034]" ] ] , [ , "(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4 $5" , [ "25[245]|67[3-6]" ] ] ] , [ , , "74[02-9]\\d{6}" , "\\d{9}" , , , "740123456" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "(?:25[245]|67[3-6])\\d{9}" , "\\d{12}" , , , "254123456789" , , , [ 12 ] ] ] , SG : [ , [ , , "[36]\\d{7}|[17-9]\\d{7,10}" , "\\d{8,11}" , , , , , , [ 8 , 10 , 11 ] ] , [ , , "6[1-9]\\d{6}" , "\\d{8}" ,
, , "61234567" , , , [ 8 ] ] , [ , , "(?:8[1-8]|9[0-8])\\d{6}" , "\\d{8}" , , , "81234567" , , , [ 8 ] ] , [ , , "1?800\\d{7}" , "\\d{10,11}" , , , "18001234567" , , , [ 10 , 11 ] ] , [ , , "1900\\d{7}" , "\\d{11}" , , , "19001234567" , , , [ 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3[12]\\d{6}" , "\\d{8}" , , , "31234567" , , , [ 8 ] ] , "SG" , 65 , "0[0-3]\\d" , , , , , , , , [ [ , "([3689]\\d{3})(\\d{4})" , "$1 $2" , [ "[369]|8[1-9]" ] ] , [ , "(1[89]00)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1[89]" ] ] , [ , "(7000)(\\d{4})(\\d{3})" , "$1 $2 $3" , [ "70" ] ] , [ , "(800)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "80" ] ] ] ,
, [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7000\\d{7}" , "\\d{11}" , , , "70001234567" , , , [ 11 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SH : [ , [ , , "[256]\\d{4}" , "\\d{4,5}" , , , , , , [ 4 , 5 ] ] , [ , , "2(?:[0-57-9]\\d|6[4-9])\\d{2}" , "\\d{5}" , , , "22158" ] , [ , , "[56]\\d{4}" , "\\d{5}" , , , , , , [ 5 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "262\\d{2}" , "\\d{5}" , , , , , , [ 5 ] ] , "SH" , 290 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] ] , SI : [ , [ , , "[1-7]\\d{6,7}|[89]\\d{4,7}" , "\\d{5,8}" , , , , , , [ 5 , 6 , 7 , 8 ] ] , [ , , "(?:1\\d|[25][2-8]|3[24-8]|4[24-8]|7[3-8])\\d{6}" , "\\d{7,8}" , , , "11234567" , , , [ 8 ] ] , [ , , "(?:[37][01]|4[0139]|51|6[48])\\d{6}" , "\\d{8}" , , , "31234567" , , , [ 8 ] ] , [ , , "80\\d{4,6}" , "\\d{6,8}" , , , "80123456" , , , [ 6 , 7 , 8 ] ] , [ , , "90\\d{4,6}|89[1-3]\\d{2,5}" , "\\d{5,8}" , , , "90123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "(?:59|8[1-3])\\d{6}" , "\\d{8}" , , , "59012345" , , , [ 8 ] ] , "SI" , 386 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{3})(\\d{2})(\\d{2})" ,
"$1 $2 $3 $4" , [ "[12]|3[24-8]|4[24-8]|5[2-8]|7[3-8]" ] , "(0$1)" ] , [ , "([3-7]\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[37][01]|4[0139]|51|6" ] , "0$1" ] , [ , "([89][09])(\\d{3,6})" , "$1 $2" , [ "[89][09]" ] , "0$1" ] , [ , "([58]\\d{2})(\\d{5})" , "$1 $2" , [ "59|8[1-3]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SJ : [ , [ , , "0\\d{4}|[4789]\\d{7}" , "\\d{5}(?:\\d{3})?" , , , , , , [ 5 , 8 ] ] , [ , , "79\\d{6}" , "\\d{8}" , , , "79123456" , , , [ 8 ] ] , [ , , "(?:4[015-8]|5[89]|9\\d)\\d{6}" , "\\d{8}" , , , "41234567" ,
, , [ 8 ] ] , [ , , "80[01]\\d{5}" , "\\d{8}" , , , "80012345" , , , [ 8 ] ] , [ , , "82[09]\\d{5}" , "\\d{8}" , , , "82012345" , , , [ 8 ] ] , [ , , "810(?:0[0-6]|[2-8]\\d)\\d{3}" , "\\d{8}" , , , "81021234" , , , [ 8 ] ] , [ , , "880\\d{5}" , "\\d{8}" , , , "88012345" , , , [ 8 ] ] , [ , , "85[0-5]\\d{5}" , "\\d{8}" , , , "85012345" , , , [ 8 ] ] , "SJ" , 47 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "0\\d{4}|81(?:0(?:0[7-9]|1\\d)|5\\d{2})\\d{3}" , "\\d{5}(?:\\d{3})?" , , , "01234" ] , 1 , , [ , , "81[23]\\d{5}" , "\\d{8}" , , , "81212345" , , , [ 8 ] ] ] , SK : [ , [ , , "(?:[2-68]\\d{5,8}|9\\d{6,8})" , "\\d{6,9}" ,
, , , , , [ 6 , 7 , 9 ] ] , [ , , "2(?:16\\d{3,4}|\\d{8})|[3-5](?:[1-8]16\\d{2,3}|\\d{8})" , "\\d{6,9}" , , , "212345678" ] , [ , , "9(?:0(?:[1-8]\\d|9[1-9])|(?:1[0-24-9]|4[04589]|50)\\d)\\d{5}" , "\\d{9}" , , , "912123456" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "9(?:[78]\\d{7}|00\\d{6})" , "\\d{9}" , , , "900123456" , , , [ 9 ] ] , [ , , "8[5-9]\\d{7}" , "\\d{9}" , , , "850123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "6(?:02|5[0-4]|9[0-6])\\d{6}" , "\\d{9}" , , , "690123456" , , , [ 9 ] ] , "SK" , 421 , "00" , "0" , , , "0" , , , , [ [ , "(2)(16)(\\d{3,4})" , "$1 $2 $3" , [ "216" ] ,
"0$1" ] , [ , "([3-5]\\d)(16)(\\d{2,3})" , "$1 $2 $3" , [ "[3-5]" ] , "0$1" ] , [ , "(2)(\\d{3})(\\d{3})(\\d{2})" , "$1/$2 $3 $4" , [ "2" ] , "0$1" ] , [ , "([3-5]\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1/$2 $3 $4" , [ "[3-5]" ] , "0$1" ] , [ , "([689]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[689]" ] , "0$1" ] , [ , "(9090)(\\d{3})" , "$1 $2" , [ "9090" ] , "0$1" ] ] , , [ , , "9090\\d{3}" , "\\d{7}" , , , "9090123" , , , [ 7 ] ] , , , [ , , "(?:602|8(?:00|[5-9]\\d)|9(?:00|[78]\\d))\\d{6}|9090\\d{3}" , "\\d{7,9}" , , , "800123456" , , , [ 7 , 9 ] ] , [ , , "96\\d{7}" , "\\d{9}" , , , "961234567" , , , [ 9 ] ] , , , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] ] , SL : [ , [ , , "[2-9]\\d{7}" , "\\d{6,8}" , , , , , , [ 8 ] , [ 6 ] ] , [ , , "[235]2[2-4][2-9]\\d{4}" , "\\d{6,8}" , , , "22221234" ] , [ , , "(?:2[15]|3[03-5]|4[04]|5[05]|66|7[6-9]|88|99)\\d{6}" , "\\d{6,8}" , , , "25123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SL" , 232 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{6})" , "$1 $2" , , "(0$1)" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SM : [ , [ , , "[05-7]\\d{7,9}" ,
"\\d{6,10}" , , , , , , [ 8 , 10 ] , [ 6 ] ] , [ , , "0549(?:8[0157-9]|9\\d)\\d{4}" , "\\d{6,10}" , , , "0549886377" , , , [ 10 ] ] , [ , , "6[16]\\d{6}" , "\\d{8}" , , , "66661212" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "7[178]\\d{6}" , "\\d{8}" , , , "71123456" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5[158]\\d{6}" , "\\d{8}" , , , "58001110" , , , [ 8 ] ] , "SM" , 378 , "00" , , , , "(?:0549)?([89]\\d{5})" , "0549$1" , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[5-7]" ] ] , [ , "(0549)(\\d{6})" , "$1 $2" , [ "0" ] ] , [ , "(\\d{6})" , "0549 $1" , [ "[89]" ] ] ] , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" ,
"$1 $2 $3 $4" , [ "[5-7]" ] ] , [ , "(0549)(\\d{6})" , "($1) $2" , [ "0" ] ] , [ , "(\\d{6})" , "(0549) $1" , [ "[89]" ] ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SN : [ , [ , , "[3789]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "3(?:0(?:1[0-2]|80)|282|3(?:8[1-9]|9[3-9])|611)\\d{5}" , "\\d{9}" , , , "301012345" ] , [ , , "7(?:[06-8]\\d|21|90)\\d{6}" , "\\d{9}" , , , "701234567" ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" ] , [ , , "88[4689]\\d{6}" , "\\d{9}" , , , "884123456" ] , [ , , "81[02468]\\d{6}" , "\\d{9}" , , , "810123456" ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "39[01]\\d{6}|3392\\d{5}|93330\\d{4}" , "\\d{9}" , , , "933301234" ] , "SN" , 221 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[379]" ] ] , [ , "(\\d{3})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "8" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SO : [ , [ , , "[1-79]\\d{6,8}" , "\\d{7,9}" , , , , , , [ 7 , 8 , 9 ] ] , [ , , "(?:1\\d|2[0-79]|3[0-46-8]|4[0-7]|59)\\d{5}" , "\\d{7}" , , , "4012345" , , , [ 7 ] ] , [ , , "(?:15\\d|2(?:4\\d|8)|6[1-35-9]?\\d{2}|7(?:[1-8]\\d|99?\\d)|9(?:0[67]|[2-9])\\d)\\d{5}" ,
"\\d{7,9}" , , , "71123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SO" , 252 , "00" , "0" , , , "0" , , , , [ [ , "(\\d)(\\d{6})" , "$1 $2" , [ "2[0-79]|[13-5]" ] ] , [ , "(\\d)(\\d{7})" , "$1 $2" , [ "24|[67]" ] ] , [ , "(\\d{2})(\\d{5,7})" , "$1 $2" , [ "15|28|6[1-35-9]|799|9[2-9]" ] ] , [ , "(90\\d)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "90" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SR : [ , [ , , "[2-8]\\d{5,6}" , "\\d{6,7}" ,
, , , , , [ 6 , 7 ] ] , [ , , "(?:2[1-3]|3[0-7]|4\\d|5[2-58]|68\\d)\\d{4}" , "\\d{6,7}" , , , "211234" ] , [ , , "(?:7[124-7]|8[1-9])\\d{5}" , "\\d{7}" , , , "7412345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:6\\d{4}|90[0-4]\\d{3})" , "\\d{6,7}" , , , "561234" ] , "SR" , 597 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{3})" , "$1-$2" , [ "[2-4]|5[2-58]" ] ] , [ , "(\\d{2})(\\d{2})(\\d{2})" , "$1-$2-$3" , [ "56" ] ] , [ , "(\\d{3})(\\d{4})" , "$1-$2" , [ "59|[6-8]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SS : [ , [ , , "[19]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "18\\d{7}" , "\\d{9}" , , , "181234567" ] , [ , , "(?:12|9[1257])\\d{7}" , "\\d{9}" , , , "977123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SS" , 211 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ST : [ , [ , , "[29]\\d{6}" , "\\d{7}" ,
, , , , , [ 7 ] ] , [ , , "22\\d{5}" , "\\d{7}" , , , "2221234" ] , [ , , "9(?:0(?:0[5-9]|[1-9]\\d)|[89]\\d{2})\\d{3}" , "\\d{7}" , , , "9812345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ST" , 239 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SV : [ , [ , , "[267]\\d{7}|[89]\\d{6}(?:\\d{4})?" , "\\d{7,8}|\\d{11}" , , , , , , [ 7 , 8 , 11 ] ] , [ , , "2[1-6]\\d{6}" , "\\d{8}" , , , "21234567" ,
, , [ 8 ] ] , [ , , "[67]\\d{7}" , "\\d{8}" , , , "70123456" , , , [ 8 ] ] , [ , , "800\\d{4}(?:\\d{4})?" , "\\d{7}(?:\\d{4})?" , , , "8001234" , , , [ 7 , 11 ] ] , [ , , "900\\d{4}(?:\\d{4})?" , "\\d{7}(?:\\d{4})?" , , , "9001234" , , , [ 7 , 11 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SV" , 503 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[267]" ] ] , [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[89]" ] ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "[89]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] ] , SX : [ , [ , , "[5789]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "7215(?:4[2-8]|8[239]|9[056])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7215425678" ] , [ , , "7215(?:1[02]|2\\d|5[034679]|8[014-8])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7215205678" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002123456" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SX" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , ,
, , , [ - 1 ] ] , , "721" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SY : [ , [ , , "[1-59]\\d{7,8}" , "\\d{6,9}" , , , , , , [ 8 , 9 ] , [ 6 , 7 ] ] , [ , , "(?:1(?:1\\d?|4\\d|[2356])|2(?:1\\d?|[235])|3(?:[13]\\d|4)|4[13]|5[1-3])\\d{6}" , "\\d{6,9}" , , , "112345678" ] , [ , , "9(?:22|[3-589]\\d|6[024-9])\\d{6}" , "\\d{9}" , , , "944567890" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SY" , 963 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{2})(\\d{3})(\\d{3,4})" ,
"$1 $2 $3" , [ "[1-5]" ] , "0$1" , , 1 ] , [ , "(9\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "9" ] , "0$1" , , 1 ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , SZ : [ , [ , , "[027]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2[2-5]\\d{6}" , "\\d{8}" , , , "22171234" ] , [ , , "7[6-8]\\d{6}" , "\\d{8}" , , , "76123456" ] , [ , , "0800\\d{4}" , "\\d{8}" , , , "08001234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "SZ" , 268 , "00" , , , , , , , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[027]" ] ] ] ,
, [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "0800\\d{4}" , "\\d{8}" , , , "08001234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TA : [ , [ , , "8\\d{3}" , "\\d{4}" , , , , , , [ - 1 , 4 ] ] , [ , , "8\\d{3}" , "\\d{4}" , , , "8999" , , , [ 4 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TA" , 290 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TC : [ , [ , , "[5689]\\d{9}" , "\\d{7}(?:\\d{3})?" ,
, , , , , [ 10 ] , [ 7 ] ] , [ , , "649(?:712|9(?:4\\d|50))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6497121234" ] , [ , , "649(?:2(?:3[129]|4[1-7])|3(?:3[1-389]|4[1-8])|4[34][1-3])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "6492311234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "64971[01]\\d{4}" , "\\d{10}" , , , "6497101234" ] , "TC" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "649" , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TD : [ , [ , , "[2679]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "22(?:[3789]0|5[0-5]|6[89])\\d{4}" , "\\d{8}" , , , "22501234" ] , [ , , "(?:6[023568]\\d|77\\d|9\\d{2})\\d{5}" , "\\d{8}" , , , "63012345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TD" , 235 , "00|16" , , , , , , "00" , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TG : [ , [ , , "[29]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "2(?:2[2-7]|3[23]|44|55|66|77)\\d{5}" , "\\d{8}" , , , "22212345" ] , [ , , "9[0-389]\\d{6}" , "\\d{8}" , , , "90112345" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TG" , 228 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TH : [ , [ , , "[2-9]\\d{7,8}|1\\d{3}(?:\\d{5,6})?" ,
"\\d{4}|\\d{8,10}" , , , , , , [ 4 , 8 , 9 , 10 ] ] , [ , , "(?:2\\d|3[2-9]|4[2-5]|5[2-6]|7[3-7])\\d{6}" , "\\d{8}" , , , "21234567" , , , [ 8 ] ] , [ , , "(?:14|6[1-5]|[89]\\d)\\d{7}" , "\\d{9}" , , , "812345678" , , , [ 9 ] ] , [ , , "1800\\d{6}" , "\\d{10}" , , , "1800123456" , , , [ 10 ] ] , [ , , "1900\\d{6}" , "\\d{10}" , , , "1900123456" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "6[08]\\d{7}" , "\\d{9}" , , , "601234567" , , , [ 9 ] ] , "TH" , 66 , "00" , "0" , , , "0" , , , , [ [ , "(2)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "2" ] , "0$1" ] , [ , "([13-9]\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "14|[3-9]" ] ,
"0$1" ] , [ , "(1[89]00)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "1" ] , "$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "1\\d{3}" , "\\d{4}" , , , "1100" , , , [ 4 ] ] , [ , , "1\\d{3}" , "\\d{4}" , , , "1100" , , , [ 4 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TJ : [ , [ , , "[3-589]\\d{8}" , "\\d{3,9}" , , , , , , [ 9 ] , [ 3 , 5 , 7 ] ] , [ , , "(?:3(?:1[3-5]|2[245]|3[12]|4[24-7]|5[25]|72)|4(?:46|74|87))\\d{6}" , "\\d{3,9}" , , , "372123456" ] , [ , , "(?:41[18]|5(?:0[125]|5\\d)|88\\d|9[0-35-9]\\d)\\d{6}" , "\\d{9}" , , , "917123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TJ" , 992 , "810" , "8" , , , "8" , , "8~10" , , [ [ , "([349]\\d{2})(\\d{2})(\\d{4})" , "$1 $2 $3" , [ "[34]7|91[78]" ] , "(8) $1" , , 1 ] , [ , "([4589]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "4[148]|[58]|9(?:1[59]|[0235-9])" ] , "(8) $1" , , 1 ] , [ , "(331700)(\\d)(\\d{2})" , "$1 $2 $3" , [ "331" , "3317" , "33170" , "331700" ] , "(8) $1" , , 1 ] , [ , "(\\d{4})(\\d)(\\d{4})" , "$1 $2 $3" , [ "3[1-5]" , "3(?:[1245]|3(?:[02-9]|1[0-589]))" ] , "(8) $1" , , 1 ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , ,
"NA" , "NA" , , , , , , [ - 1 ] ] ] , TK : [ , [ , , "[2-47]\\d{3,6}" , "\\d{4,7}" , , , , , , [ 4 , 5 , 6 , 7 ] ] , [ , , "(?:2[2-4]|[34]\\d)\\d{2,5}" , "\\d{4,7}" , , , "3101" ] , [ , , "7[2-4]\\d{2,5}" , "\\d{4,7}" , , , "7290" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TK" , 690 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TL : [ , [ , , "[2-489]\\d{6}|7\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "(?:2[1-5]|3[1-9]|4[1-4])\\d{5}" ,
"\\d{7}" , , , "2112345" , , , [ 7 ] ] , [ , , "7[3-8]\\d{6}" , "\\d{8}" , , , "77212345" , , , [ 8 ] ] , [ , , "80\\d{5}" , "\\d{7}" , , , "8012345" , , , [ 7 ] ] , [ , , "90\\d{5}" , "\\d{7}" , , , "9012345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "70\\d{5}" , "\\d{7}" , , , "7012345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TL" , 670 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[2-489]" ] ] , [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "7" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TM : [ , [ , , "[1-6]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "(?:1(?:2\\d|3[1-9])|2(?:22|4[0-35-8])|3(?:22|4[03-9])|4(?:22|3[128]|4\\d|6[15])|5(?:22|5[7-9]|6[014-689]))\\d{5}" ,
"\\d{8}" , , , "12345678" ] , [ , , "6[1-9]\\d{6}" , "\\d{8}" , , , "66123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TM" , 993 , "810" , "8" , , , "8" , , "8~10" , , [ [ , "(\\d{2})(\\d{2})(\\d{2})(\\d{2})" , "$1 $2-$3-$4" , [ "12" ] , "(8 $1)" ] , [ , "(\\d{2})(\\d{6})" , "$1 $2" , [ "6" ] , "8 $1" ] , [ , "(\\d{3})(\\d)(\\d{2})(\\d{2})" , "$1 $2-$3-$4" , [ "13|[2-5]" ] , "(8 $1)" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] ,
TN : [ , [ , , "[2-57-9]\\d{7}" , "\\d{8}" , , , , , , [ 8 ] ] , [ , , "3(?:[012]\\d|6[0-4]|91)\\d{5}|7\\d{7}|81200\\d{3}" , "\\d{8}" , , , "71234567" ] , [ , , "(?:[259]\\d|4[0-6])\\d{6}" , "\\d{8}" , , , "20123456" ] , [ , , "8010\\d{4}" , "\\d{8}" , , , "80101234" ] , [ , , "88\\d{6}" , "\\d{8}" , , , "88123456" ] , [ , , "8[12]10\\d{4}" , "\\d{8}" , , , "81101234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TN" , 216 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , ,
[ - 1 ] ] ] , TO : [ , [ , , "[02-8]\\d{4,6}" , "\\d{5,7}" , , , , , , [ 5 , 7 ] ] , [ , , "(?:2\\d|3[1-8]|4[1-4]|[56]0|7[0149]|8[05])\\d{3}" , "\\d{5}" , , , "20123" , , , [ 5 ] ] , [ , , "(?:7[578]|8[47-9])\\d{5}" , "\\d{7}" , , , "7715123" , , , [ 7 ] ] , [ , , "0800\\d{3}" , "\\d{7}" , , , "0800222" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TO" , 676 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{3})" , "$1-$2" , [ "[1-6]|7[0-4]|8[05]" ] ] , [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "7[5-9]|8[47-9]" ] ] , [ , "(\\d{4})(\\d{3})" , "$1 $2" , [ "0" ] ] ] , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TR : [ , [ , , "[2-589]\\d{9}|444\\d{4}" , "\\d{7,10}" , , , , , , [ 7 , 10 ] ] , [ , , "(?:2(?:[13][26]|[28][2468]|[45][268]|[67][246])|3(?:[13][28]|[24-6][2468]|[78][02468]|92)|4(?:[16][246]|[23578][2468]|4[26]))\\d{7}" , "\\d{10}" , , , "2123456789" , , , [ 10 ] ] , [ , , "5(?:(?:0[1-7]|22|[34]\\d|5[1-59]|9[246])\\d{2}|6161)\\d{5}" , "\\d{10}" , , , "5012345678" , , , [ 10 ] ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "900\\d{7}" , "\\d{10}" , , , "9001234567" ,
, , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TR" , 90 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "[23]|4(?:[0-35-9]|4[0-35-9])" ] , "(0$1)" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "5[02-69]" ] , "0$1" , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "51|[89]" ] , "0$1" , , 1 ] , [ , "(444)(\\d{1})(\\d{3})" , "$1 $2 $3" , [ "444" ] ] ] , , [ , , "512\\d{7}" , "\\d{10}" , , , "5123456789" , , , [ 10 ] ] , , , [ , , "444\\d{4}" , "\\d{7}" , , , "4441444" , , , [ 7 ] ] , [ , , "444\\d{4}|850\\d{7}" ,
"\\d{7,10}" , , , "4441444" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TT : [ , [ , , "[589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "868(?:2(?:01|2[1-6]|3[1-5])|6(?:0[79]|1[02-8]|2[1-9]|[3-69]\\d|7[0-79])|82[124])\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "8682211234" ] , [ , , "868(?:2(?:[789]\\d)|3(?:0[1-9]|1[02-9]|[2-9]\\d)|4[6-9]\\d|6(?:20|78|8\\d)|7(?:0[1-9]|1[02-9]|[2-9]\\d))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "8682911234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002345678" ] , [ ,
, "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TT" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "868" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "868619\\d{4}" , "\\d{10}" , , , "8686191234" ] ] , TV : [ , [ , , "[279]\\d{4,6}" , "\\d{5,7}" , , , , , , [ 5 , 6 , 7 ] ] , [ , , "2[02-9]\\d{3}" , "\\d{5}" , , , "20123" , , , [ 5 ] ] , [ , , "(?:70\\d|90)\\d{4}" , "\\d{6,7}" , , , "901234" , , , [ 6 , 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "TV" , 688 , "00" , , , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TW : [ , [ , , "[2-689]\\d{7,8}|7\\d{7,9}" , "\\d{8,10}" , , , , , , [ 8 , 9 , 10 ] ] , [ , , "[2-8]\\d{7,8}" , "\\d{8,9}" , , , "21234567" , , , [ 8 , 9 ] ] , [ , , "9\\d{8}" , "\\d{9}" , , , "912345678" , , , [ 9 ] ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" , , , [ 9 ] ] , [ , , "900\\d{6}" , "\\d{9}" , , , "900123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "70\\d{8}" , "\\d{10}" , , , "7012345678" , , , [ 10 ] ] ,
"TW" , 886 , "0(?:0[25679]|19)" , "0" , "#" , , "0" , , , , [ [ , "([2-8])(\\d{3,4})(\\d{4})" , "$1 $2 $3" , [ "[2-6]|[78][1-9]" ] , "0$1" ] , [ , "([89]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "80|9" ] , "0$1" ] , [ , "(70)(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "70" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , TZ : [ , [ , , "\\d{9}" , "\\d{7,9}" , , , , , , [ 7 , 9 ] ] , [ , , "2[2-8]\\d{7}" , "\\d{7,9}" , , , "222345678" ] , [ , , "(?:6[125-9]|7[1-9])\\d{7}" , "\\d{9}" , , , "621234567" , , , [ 9 ] ] , [ , , "80[08]\\d{6}" , "\\d{9}" , , , "800123456" ,
, , [ 9 ] ] , [ , , "90\\d{7}" , "\\d{9}" , , , "900123456" , , , [ 9 ] ] , [ , , "8(?:40|6[01])\\d{6}" , "\\d{9}" , , , "840123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "41\\d{7}" , "\\d{9}" , , , "412345678" , , , [ 9 ] ] , "TZ" , 255 , "00[056]" , "0" , , , "0" , , , , [ [ , "([24]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[24]" ] , "0$1" ] , [ , "([67]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "[67]" ] , "0$1" ] , [ , "([89]\\d{2})(\\d{2})(\\d{4})" , "$1 $2 $3" , [ "[89]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , UA : [ , [ , , "[3-9]\\d{8}" ,
"\\d{5,9}" , , , , , , [ 9 ] , [ 5 , 6 , 7 ] ] , [ , , "(?:3[1-8]|4[13-8]|5[1-7]|6[12459])\\d{7}" , "\\d{5,9}" , , , "311234567" ] , [ , , "(?:39|50|6[36-8]|73|9[1-9])\\d{7}" , "\\d{9}" , , , "391234567" ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" ] , [ , , "900\\d{6}" , "\\d{9}" , , , "900123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "89\\d{7}" , "\\d{9}" , , , "891234567" ] , "UA" , 380 , "00" , "0" , , , "0" , , "0~0" , , [ [ , "([3-9]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[38]9|4(?:[45][0-5]|87)|5(?:0|6[37]|7[37])|6[36-8]|73|9[1-9]" , "[38]9|4(?:[45][0-5]|87)|5(?:0|6(?:3[14-7]|7)|7[37])|6[36-8]|73|9[1-9]" ] ,
2016-01-22 23:34:30 +00:00
"0$1" ] , [ , "([3-689]\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "3[1-8]2|4[13678]2|5(?:[12457]2|6[24])|6(?:[49]2|[12][29]|5[24])|8[0-8]|90" , "3(?:[1-46-8]2[013-9]|52)|4(?:[1378]2|62[013-9])|5(?:[12457]2|6[24])|6(?:[49]2|[12][29]|5[24])|8[0-8]|90" ] , "0$1" ] , [ , "([3-6]\\d{3})(\\d{5})" , "$1 $2" , [ "3(?:5[013-9]|[1-46-8])|4(?:[137][013-9]|6|[45][6-9]|8[4-6])|5(?:[1245][013-9]|6[0135-9]|3|7[4-6])|6(?:[49][013-9]|5[0135-9]|[12][13-8])" , "3(?:5[013-9]|[1-46-8](?:22|[013-9]))|4(?:[137][013-9]|6(?:[013-9]|22)|[45][6-9]|8[4-6])|5(?:[1245][013-9]|6(?:3[02389]|[015689])|3|7[4-6])|6(?:[49][013-9]|5[0135-9]|[12][13-8])" ] ,
2016-10-30 10:47:58 +00:00
"0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , UG : [ , [ , , "\\d{9}" , "\\d{5,9}" , , , , , , [ 9 ] , [ 5 , 6 , 7 ] ] , [ , , "20(?:[0147]\\d{2}|2(?:40|[5-9]\\d)|3(?:0[0-4]|[23]\\d)|5[0-4]\\d|6[035-9]\\d|8[0-2]\\d)\\d{4}|[34]\\d{8}" , "\\d{5,9}" , , , "312345678" ] , [ , , "7(?:(?:0[0-7]|[15789]\\d|30|4[0-4])\\d|2(?:[03]\\d|60))\\d{5}" , "\\d{9}" , , , "712345678" ] , [ , , "800[123]\\d{5}" , "\\d{9}" , , , "800123456" ] , [ , , "90[123]\\d{6}" , "\\d{9}" , , , "901123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "UG" , 256 , "00[057]" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{6})" , "$1 $2" , [ "[7-9]|20(?:[013-8]|2[5-9])|4(?:6[45]|[7-9])" ] , "0$1" ] , [ , "(\\d{2})(\\d{7})" , "$1 $2" , [ "3|4(?:[1-5]|6[0-36-9])" ] , "0$1" ] , [ , "(2024)(\\d{5})" , "$1 $2" , [ "2024" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , US : [ , [ , , "[2-9]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "(?:2(?:0[1-35-9]|1[02-9]|2[04589]|3[149]|4[08]|5[1-46]|6[0279]|7[026]|8[13])|3(?:0[1-57-9]|1[02-9]|2[0135]|3[014679]|4[67]|5[12]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|6[39]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-37]|7[013-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[16]|5[017]|6[0-279]|78|8[12])|7(?:0[1-46-8]|1[02-9]|2[0457]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])|8(?:0[1-68]|1[02-8]|28|3[0-25]|4[3578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[014678]|4[0179]|5[12469]|7[0-3589]|8[0459]))[2-9]\\d{6}" ,
"\\d{7}(?:\\d{3})?" , , , "2015550123" ] , [ , , "(?:2(?:0[1-35-9]|1[02-9]|2[04589]|3[149]|4[08]|5[1-46]|6[0279]|7[026]|8[13])|3(?:0[1-57-9]|1[02-9]|2[0135]|3[014679]|4[67]|5[12]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|6[39]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-37]|7[013-5]|8[056])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[16]|5[017]|6[0-279]|78|8[12])|7(?:0[1-46-8]|1[02-9]|2[0457]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])|8(?:0[1-68]|1[02-8]|28|3[0-25]|4[3578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[014678]|4[0179]|5[12469]|7[0-3589]|8[0459]))[2-9]\\d{6}" ,
"\\d{7}(?:\\d{3})?" , , , "2015550123" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "US" , 1 , "011" , "1" , , , "1" , , , 1 , [ [ , "(\\d{3})(\\d{4})" , "$1-$2" , , , , 1 ] , [ , "(\\d{3})(\\d{3})(\\d{4})" , "($1) $2-$3" , , , , 1 ] ] , [ [ , "(\\d{3})(\\d{3})(\\d{4})" , "$1-$2-$3" ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" ,
"NA" , , , , , , [ - 1 ] ] ] , UY : [ , [ , , "[2489]\\d{6,7}" , "\\d{7,8}" , , , , , , [ 7 , 8 ] ] , [ , , "2\\d{7}|4[2-7]\\d{6}" , "\\d{7,8}" , , , "21231234" , , , [ 8 ] ] , [ , , "9[1-9]\\d{6}" , "\\d{8}" , , , "94231234" , , , [ 8 ] ] , [ , , "80[05]\\d{4}" , "\\d{7}" , , , "8001234" , , , [ 7 ] ] , [ , , "90[0-8]\\d{4}" , "\\d{7}" , , , "9001234" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "UY" , 598 , "0(?:1[3-9]\\d|0)" , "0" , " int. " , , "0" , , "00" , , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" , [ "[24]" ] ] , [ , "(\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "9[1-9]" ] , "0$1" ] , [ , "(\\d{3})(\\d{4})" ,
"$1 $2" , [ "[89]0" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , UZ : [ , [ , , "[679]\\d{8}" , "\\d{7,9}" , , , , , , [ 9 ] , [ 7 ] ] , [ , , "(?:6(?:1(?:22|3[124]|4[1-4]|5[123578]|64)|2(?:22|3[0-57-9]|41)|5(?:22|3[3-7]|5[024-8])|6\\d{2}|7(?:[23]\\d|7[69])|9(?:22|4[1-8]|6[135]))|7(?:0(?:5[4-9]|6[0146]|7[12456]|9[135-8])|1[12]\\d|2(?:22|3[1345789]|4[123579]|5[14])|3(?:2\\d|3[1578]|4[1-35-7]|5[1-57]|61)|4(?:2\\d|3[1-579]|7[1-79])|5(?:22|5[1-9]|6[1457])|6(?:22|3[12457]|4[13-8])|9(?:22|5[1-9])))\\d{5}" ,
2016-01-22 23:34:30 +00:00
"\\d{7,9}" , , , "662345678" ] , [ , , "6(?:1(?:2(?:98|2[01])|35[0-4]|50\\d|61[23]|7(?:[01][017]|4\\d|55|9[5-9]))|2(?:11\\d|2(?:[12]1|9[01379])|5(?:[126]\\d|3[0-4])|7\\d{2})|5(?:19[01]|2(?:27|9[26])|30\\d|59\\d|7\\d{2})|6(?:2(?:1[5-9]|2[0367]|38|41|52|60)|3[79]\\d|4(?:56|83)|7(?:[07]\\d|1[017]|3[07]|4[047]|5[057]|67|8[0178]|9[79])|9[0-3]\\d)|7(?:2(?:24|3[237]|4[5-9]|7[15-8])|5(?:7[12]|8[0589])|7(?:0\\d|[39][07])|9(?:0\\d|7[079]))|9(?:2(?:1[1267]|5\\d|3[01]|7[0-4])|5[67]\\d|6(?:2[0-26]|8\\d)|7\\d{2}))\\d{4}|7(?:0\\d{3}|1(?:13[01]|6(?:0[47]|1[67]|66)|71[3-69]|98\\d)|2(?:2(?:2[79]|95)|3(?:2[5-9]|6[0-6])|57\\d|7(?:0\\d|1[17]|2[27]|3[37]|44|5[057]|66|88))|3(?:2(?:1[0-6]|21|3[469]|7[159])|33\\d|5(?:0[0-4]|5[579]|9\\d)|7(?:[0-3579]\\d|4[0467]|6[67]|8[078])|9[4-6]\\d)|4(?:2(?:29|5[0257]|6[0-7]|7[1-57])|5(?:1[0-4]|8\\d|9[5-9])|7(?:0\\d|1[024589]|2[0127]|3[0137]|[46][07]|5[01]|7[5-9]|9[079])|9(?:7[015-9]|[89]\\d))|5(?:112|2(?:0\\d|2[29]|[49]4)|3[1568]\\d|52[6-9]|7(?:0[01578]|1[017]|[23]7|4[047]|[5-7]\\d|8[78]|9[079]))|6(?:2(?:2[1245]|4[2-4])|39\\d|41[179]|5(?:[349]\\d|5[0-2])|7(?:0[017]|[13]\\d|22|44|55|67|88))|9(?:22[128]|3(?:2[0-4]|7\\d)|57[05629]|7(?:2[05-9]|3[37]|4\\d|60|7[2579]|87|9[07])))\\d{4}|9[0-57-9]\\d{7}" ,
2016-10-30 10:47:58 +00:00
"\\d{9}" , , , "912345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "UZ" , 998 , "810" , "8" , , , "8" , , "8~10" , , [ [ , "([679]\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , , "8 $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VA : [ , [ , , "(?:0(?:878\\d{5}|6698\\d{5})|[1589]\\d{5,10}|3(?:[12457-9]\\d{8}|[36]\\d{7,9}))" , "\\d{6,11}" , , , , , , [ 6 , 8 , 9 , 10 , 11 ] ] , [ , , "06698\\d{5}" , "\\d{10}" , , , "0669812345" ,
, , [ 10 ] ] , [ , , "3(?:[12457-9]\\d{8}|6\\d{7,8}|3\\d{7,9})" , "\\d{9,11}" , , , "3123456789" , , , [ 9 , 10 , 11 ] ] , [ , , "80(?:0\\d{6}|3\\d{3})" , "\\d{6,9}" , , , "800123456" , , , [ 6 , 9 ] ] , [ , , "0878\\d{5}|1(?:44|6[346])\\d{6}|89(?:2\\d{3}|4(?:[0-4]\\d{2}|[5-9]\\d{4})|5(?:[0-4]\\d{2}|[5-9]\\d{6})|9\\d{6})" , "\\d{6,10}" , , , "899123456" , , , [ 6 , 8 , 9 , 10 ] ] , [ , , "84(?:[08]\\d{6}|[17]\\d{3})" , "\\d{6,9}" , , , "848123456" , , , [ 6 , 9 ] ] , [ , , "1(?:78\\d|99)\\d{6}" , "\\d{9,10}" , , , "1781234567" , , , [ 9 , 10 ] ] , [ , , "55\\d{8}" , "\\d{10}" , , , "5512345678" , , , [ 10 ] ] , "VA" , 39 , "00" ,
, , , , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "848\\d{6}" , "\\d{9}" , , , "848123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VC : [ , [ , , "[5789]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "784(?:266|3(?:6[6-9]|7\\d|8[0-24-6])|4(?:38|5[0-36-8]|8[0-8])|5(?:55|7[0-2]|93)|638|784)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7842661234" ] , [ , , "784(?:4(?:3[0-4]|5[45]|89|9[0-58])|5(?:2[6-9]|3[0-4]))\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "7844301234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}" ,
"\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "VC" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "784" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VE : [ , [ , , "[24589]\\d{9}" , "\\d{7,10}" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "(?:2(?:12|3[457-9]|[58][1-9]|[467]\\d|9[1-6])|50[01])\\d{7}" , "\\d{7,10}" , , , "2121234567" ] , [ , , "4(?:1[24-8]|2[46])\\d{7}" , "\\d{10}" , , , "4121234567" ] , [ , , "800\\d{7}" , "\\d{10}" ,
, , "8001234567" ] , [ , , "900\\d{7}" , "\\d{10}" , , , "9001234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "VE" , 58 , "00" , "0" , , , "0" , , , , [ [ , "(\\d{3})(\\d{7})" , "$1-$2" , , "0$1" , "$CC $1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VG : [ , [ , , "[2589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "284(?:(?:229|4(?:22|9[45])|774|8(?:52|6[459]))\\d{4}|496[0-5]\\d{3})" , "\\d{7}(?:\\d{3})?" , , , "2842291234" ] , [ , , "284(?:(?:3(?:0[0-3]|4[0-367]|94)|4(?:4[0-6]|68|99)|54[0-57])\\d{4}|496[6-9]\\d{3})" ,
"\\d{7}(?:\\d{3})?" , , , "2843001234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "VG" , 1 , "011" , "1" , , , "1" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "284" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VI : [ , [ , , "[3589]\\d{9}" , "\\d{7}(?:\\d{3})?" , , , , , , [ 10 ] , [ 7 ] ] , [ , , "340(?:2(?:01|2[0678]|44|77)|3(?:32|44)|4(?:22|7[34])|5(?:1[34]|55)|6(?:26|4[23]|77|9[023])|7(?:1[2-589]|27|7\\d)|884|998)\\d{4}" ,
"\\d{7}(?:\\d{3})?" , , , "3406421234" ] , [ , , "340(?:2(?:01|2[0678]|44|77)|3(?:32|44)|4(?:22|7[34])|5(?:1[34]|55)|6(?:26|4[23]|77|9[023])|7(?:1[2-589]|27|7\\d)|884|998)\\d{4}" , "\\d{7}(?:\\d{3})?" , , , "3406421234" ] , [ , , "8(?:00|44|55|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "8002345678" ] , [ , , "900[2-9]\\d{6}" , "\\d{10}" , , , "9002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "5(?:00|22|33|44|66|77|88)[2-9]\\d{6}" , "\\d{10}" , , , "5002345678" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "VI" , 1 , "011" , "1" , , , "1" , , , 1 , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "340" , [ , , "NA" , "NA" ,
, , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VN : [ , [ , , "[17]\\d{6,9}|[2-69]\\d{7,9}|8\\d{6,8}" , "\\d{7,10}" , , , , , , [ 7 , 8 , 9 , 10 ] ] , [ , , "(?:2(?:[025-79]|1[0189]|[348][01])|3(?:[0136-9]|[25][01])|4\\d|5(?:[01][01]|[2-9])|6(?:[0-46-8]|5[01])|7(?:[02-79]|[18][01]))\\d{7}|8(?:[1-57]\\d|[689][0-79])\\d{6}" , "\\d{9,10}" , , , "2101234567" , , , [ 9 , 10 ] ] , [ , , "(?:9\\d|1(?:2\\d|6[2-9]|8[68]|99))\\d{7}|8[689]8\\d{6}" , "\\d{9,10}" , , , "912345678" , , , [ 9 , 10 ] ] , [ , , "1800\\d{4,6}" , "\\d{8,10}" , , , "1800123456" , , , [ 8 , 9 , 10 ] ] , [ ,
, "1900\\d{4,6}" , "\\d{8,10}" , , , "1900123456" , , , [ 8 , 9 , 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "VN" , 84 , "00" , "0" , , , "0" , , , , [ [ , "([17]99)(\\d{4})" , "$1 $2" , [ "[17]99" ] , "0$1" , , 1 ] , [ , "([48])(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "4|8(?:[1-57]|[689][0-79])" ] , "0$1" , , 1 ] , [ , "([235-7]\\d)(\\d{4})(\\d{3})" , "$1 $2 $3" , [ "2[025-79]|3[0136-9]|5[2-9]|6[0-46-8]|7[02-79]" ] , "0$1" , , 1 ] , [ , "(80)(\\d{5})" , "$1 $2" , [ "80" ] , "0$1" , , 1 ] , [ , "(69\\d)(\\d{4,5})" , "$1 $2" , [ "69" ] , "0$1" , , 1 ] , [ , "([235-7]\\d{2})(\\d{4})(\\d{3})" ,
"$1 $2 $3" , [ "2[1348]|3[25]|5[01]|65|7[18]" ] , "0$1" , , 1 ] , [ , "([89]\\d)(\\d{3})(\\d{2})(\\d{2})" , "$1 $2 $3 $4" , [ "8[689]8|9" ] , "0$1" , , 1 ] , [ , "(1[2689]\\d)(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "1(?:[26]|8[68]|99)" ] , "0$1" , , 1 ] , [ , "(1[89]00)(\\d{4,6})" , "$1 $2" , [ "1[89]0" ] , "$1" , , 1 ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "[17]99\\d{4}|69\\d{5,6}" , "\\d{7,8}" , , , "1992000" , , , [ 7 , 8 ] ] , [ , , "[17]99\\d{4}|69\\d{5,6}|80\\d{5}" , "\\d{7,8}" , , , "1992000" , , , [ 7 , 8 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , VU : [ , [ , , "[2-57-9]\\d{4,6}" , "\\d{5,7}" , , , , , , [ 5 , 7 ] ] , [ , , "(?:2[02-9]\\d|3(?:[5-7]\\d|8[0-8])|48[4-9]|88\\d)\\d{2}" ,
"\\d{5}" , , , "22123" , , , [ 5 ] ] , [ , , "(?:5(?:7[2-5]|[0-689]\\d)|7[013-7]\\d)\\d{4}" , "\\d{7}" , , , "5912345" , , , [ 7 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "VU" , 678 , "00" , , , , , , , , [ [ , "(\\d{3})(\\d{4})" , "$1 $2" , [ "[579]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "3[03]\\d{3}|900\\d{4}" , "\\d{5,7}" , , , "30123" ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , WF : [ , [ , , "[4-8]\\d{5}" , "\\d{6}" , , , , , , [ 6 ] ] , [ , , "(?:50|68|72)\\d{4}" , "\\d{6}" , , , "501234" ] , [ ,
, "(?:50|68|72|8[23])\\d{4}" , "\\d{6}" , , , "501234" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "WF" , 681 , "00" , , , , , , , , [ [ , "(\\d{2})(\\d{2})(\\d{2})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "[48]0\\d{4}" , "\\d{6}" , , , "401234" ] ] , WS : [ , [ , , "[2-8]\\d{4,6}" , "\\d{5,7}" , , , , , , [ 5 , 6 , 7 ] ] , [ , , "(?:[2-5]\\d|6[1-9]|84\\d{2})\\d{3}" , "\\d{5,7}" , , , "22123" , , , [ 5 , 7 ] ] , [ , , "(?:60|7[25-7]\\d)\\d{4}" , "\\d{6,7}" ,
, , "601234" , , , [ 6 , 7 ] ] , [ , , "800\\d{3}" , "\\d{6}" , , , "800123" , , , [ 6 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "WS" , 685 , "0" , , , , , , , , [ [ , "(8\\d{2})(\\d{3,4})" , "$1 $2" , [ "8" ] ] , [ , "(7\\d)(\\d{5})" , "$1 $2" , [ "7" ] ] , [ , "(\\d{5})" , "$1" , [ "[2-6]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , YE : [ , [ , , "[1-7]\\d{6,8}" , "\\d{6,9}" , , , , , , [ 7 , 8 , 9 ] , [ 6 ] ] , [ , , "(?:1(?:7\\d|[2-68])|2[2-68]|3[2358]|4[2-58]|5[2-6]|6[3-58]|7[24-68])\\d{5}" ,
"\\d{6,8}" , , , "1234567" , , , [ 7 , 8 ] ] , [ , , "7[0137]\\d{7}" , "\\d{9}" , , , "712345678" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "YE" , 967 , "00" , "0" , , , "0" , , , , [ [ , "([1-7])(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[1-6]|7[24-68]" ] , "0$1" ] , [ , "(7\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "7[0137]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , YT : [ , [ , , "[268]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ ,
, "269(?:6[0-4]|50)\\d{4}" , "\\d{9}" , , , "269601234" ] , [ , , "639\\d{6}" , "\\d{9}" , , , "639123456" ] , [ , , "80\\d{7}" , "\\d{9}" , , , "801234567" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "YT" , 262 , "00" , "0" , , , "0" , , , , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , "269|63" , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ZA : [ , [ , , "[1-79]\\d{8}|8(?:[067]\\d{7}|[1-4]\\d{3,7})" , "\\d{5,9}" , , , , , , [ 5 , 6 , 7 , 8 , 9 ] ] , [ , , "(?:1[0-8]|2[0-378]|3[1-69]|4\\d|5[1346-8])\\d{7}" , "\\d{9}" ,
, , "101234567" , , , [ 9 ] ] , [ , , "(?:6[0-5]|7[0-46-9])\\d{7}|8[1-4]\\d{3,7}" , "\\d{5,9}" , , , "711234567" ] , [ , , "80\\d{7}" , "\\d{9}" , , , "801234567" , , , [ 9 ] ] , [ , , "86[2-9]\\d{6}|90\\d{7}" , "\\d{9}" , , , "862345678" , , , [ 9 ] ] , [ , , "860\\d{6}" , "\\d{9}" , , , "860123456" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "87\\d{7}" , "\\d{9}" , , , "871234567" , , , [ 9 ] ] , "ZA" , 27 , "00" , "0" , , , "0" , , , , [ [ , "(860)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "860" ] , "0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{4})" , "$1 $2 $3" , [ "[1-79]|8(?:[0-47]|6[1-9])" ] , "0$1" ] , [ , "(\\d{2})(\\d{3,4})" , "$1 $2" , [ "8[1-4]" ] ,
"0$1" ] , [ , "(\\d{2})(\\d{3})(\\d{2,3})" , "$1 $2 $3" , [ "8[1-4]" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "861\\d{6}" , "\\d{9}" , , , "861123456" , , , [ 9 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ZM : [ , [ , , "[289]\\d{8}" , "\\d{9}" , , , , , , [ 9 ] ] , [ , , "21[1-8]\\d{6}" , "\\d{9}" , , , "211234567" ] , [ , , "9(?:5[034589]|[67]\\d)\\d{6}" , "\\d{9}" , , , "955123456" ] , [ , , "800\\d{6}" , "\\d{9}" , , , "800123456" ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "ZM" , 260 , "00" , "0" , , , "0" , , , , [ [ , "([29]\\d)(\\d{7})" ,
"$1 $2" , [ "[29]" ] , "0$1" ] , [ , "(800)(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "8" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , ZW : [ , [ , , "2(?:[012457-9]\\d{3,8}|6(?:[14]\\d{7}|\\d{4}))|[13-79]\\d{4,9}|8[06]\\d{8}" , "\\d{3,10}" , , , , , , [ 5 , 6 , 7 , 8 , 9 , 10 ] , [ 3 , 4 ] ] , [ , , "(?:2(?:0(?:4\\d|5\\d{2})|2[278]\\d|48\\d|7(?:[1-7]\\d|[089]\\d{2})|8(?:[2-57-9]|[146]\\d{2})|98)|3(?:08|17|3[78]|7(?:[19]|[56]\\d)|8[37]|98)|5[15][78]|6(?:28\\d{2}|[36]7|75\\d|[69]8|8(?:7\\d|8)))\\d{3}|(?:2(?:1[39]|2[0157]|6[14]|7[35]|84)|329)\\d{7}|(?:1(?:3\\d{2}|9\\d|[4-8])|2(?:0\\d{2}|[569]\\d)|3(?:[26]|[013459]\\d)|5(?:0|5\\d{2}|[689]\\d)|6(?:[39]|[01246]\\d|[78]\\d{2}))\\d{3}|(?:29\\d|39|54)\\d{6}|(?:(?:25|54)83|2582\\d)\\d{3}|(?:4\\d{6,7}|9[2-9]\\d{4,5})" ,
"\\d{3,10}" , , , "1312345" ] , [ , , "7[1378]\\d{7}" , "\\d{9}" , , , "711234567" ] , [ , , "800\\d{7}" , "\\d{10}" , , , "8001234567" , , , [ 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "86(?:1[12]|30|44|55|77|8[367]|99)\\d{6}" , "\\d{10}" , , , "8686123456" , , , [ 10 ] ] , "ZW" , 263 , "00" , "0" , , , "0" , , , , [ [ , "([49])(\\d{3})(\\d{2,4})" , "$1 $2 $3" , [ "4|9[2-9]" ] , "0$1" ] , [ , "(7\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "7" ] , "0$1" ] , [ , "(86\\d{2})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "86[24]" ] , "0$1" ] , [ , "([2356]\\d{2})(\\d{3,5})" , "$1 $2" ,
[ "2(?:0[45]|2[278]|[49]8|[78])|3(?:08|17|3[78]|7[1569]|8[37]|98)|5[15][78]|6(?:[29]8|[38]7|6[78]|75|[89]8)" ] , "0$1" ] , [ , "(\\d{3})(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "2(?:1[39]|2[0157]|6[14]|7[35]|84)|329" ] , "0$1" ] , [ , "([1-356]\\d)(\\d{3,5})" , "$1 $2" , [ "1[3-9]|2[0569]|3[0-69]|5[05689]|6[0-46-9]" ] , "0$1" ] , [ , "([235]\\d)(\\d{3})(\\d{3,4})" , "$1 $2 $3" , [ "[23]9|54" ] , "0$1" ] , [ , "([25]\\d{3})(\\d{3,5})" , "$1 $2" , [ "(?:25|54)8" , "258[23]|5483" ] , "0$1" ] , [ , "(8\\d{3})(\\d{6})" , "$1 $2" , [ "86" ] , "0$1" ] , [ , "(80\\d)(\\d{3})(\\d{4})" ,
"$1 $2 $3" , [ "80" ] , "0$1" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 800 : [ , [ , , "\\d{8}" , "\\d{8}" , , , "12345678" , , , [ - 1 , 8 ] ] , [ , , "NA" , "NA" , , , "12345678" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , "12345678" , , , [ - 1 ] ] , [ , , "\\d{8}" , "\\d{8}" , , , "12345678" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "001" , 800 , , , , , , , , 1 , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , ,
, , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 808 : [ , [ , , "\\d{8}" , "\\d{8}" , , , "12345678" , , , [ - 1 , 8 ] ] , [ , , "NA" , "NA" , , , "12345678" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , "12345678" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "\\d{8}" , "\\d{8}" , , , "12345678" , , , [ 8 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "001" , 808 , , , , , , , , 1 , [ [ , "(\\d{4})(\\d{4})" , "$1 $2" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 870 : [ , [ , , "[35-7]\\d{8}" , "\\d{9}" , , , "301234567" , , , [ - 1 , 9 ] ] ,
[ , , "NA" , "NA" , , , "301234567" , , , [ - 1 ] ] , [ , , "(?:[356]\\d|7[6-8])\\d{7}" , "\\d{9}" , , , "301234567" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "001" , 870 , , , , , , , , , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 878 : [ , [ , , "1\\d{11}" , "\\d{12}" , , , "101234567890" , , , [ - 1 , 12 ] ] , [ , , "NA" , "NA" , , , "101234567890" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , "101234567890" ,
, , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "10\\d{10}" , "\\d{12}" , , , "101234567890" , , , [ 12 ] ] , "001" , 878 , , , , , , , , 1 , [ [ , "(\\d{2})(\\d{5})(\\d{5})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 881 : [ , [ , , "[67]\\d{8}" , "\\d{9}" , , , "612345678" , , , [ - 1 , 9 ] ] , [ , , "NA" , "NA" , , , "612345678" , , , [ - 1 ] ] , [ , , "[67]\\d{8}" , "\\d{9}" , , , "612345678" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
[ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "001" , 881 , , , , , , , , , [ [ , "(\\d)(\\d{3})(\\d{5})" , "$1 $2 $3" , [ "[67]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 882 : [ , [ , , "[13]\\d{6,11}" , "\\d{7,12}" , , , "3451234567" , , , [ - 1 , 7 , 8 , 9 , 10 , 11 , 12 ] ] , [ , , "NA" , "NA" , , , "3451234567" , , , [ - 1 ] ] , [ , , "3(?:2\\d{3}|37\\d{2}|4(?:2|7\\d{3}))\\d{4}" , "\\d{7,10}" , , , "3451234567" , , , [ 7 , 9 , 10 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , ,
, , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15678]|9[0689])\\d{4}|6\\d{5,10})|3(?:45|9\\d{3})\\d{7}" , "\\d{7,12}" , , , "390123456789" , , , [ 7 , 8 , 9 , 10 , 11 , 12 ] ] , "001" , 882 , , , , , , , , , [ [ , "(\\d{2})(\\d{4})(\\d{3})" , "$1 $2 $3" , [ "3[23]" ] ] , [ , "(\\d{2})(\\d{5})" , "$1 $2" , [ "16|342" ] ] , [ , "(\\d{2})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "34[57]" ] ] , [ , "(\\d{3})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "348" ] ] , [ , "(\\d{2})(\\d{2})(\\d{4})" , "$1 $2 $3" , [ "1" ] ] , [ , "(\\d{2})(\\d{3,4})(\\d{4})" , "$1 $2 $3" ,
[ "16" ] ] , [ , "(\\d{2})(\\d{4,5})(\\d{5})" , "$1 $2 $3" , [ "16|39" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "348[57]\\d{7}" , "\\d{11}" , , , "3451234567" , , , [ 11 ] ] ] , 883 : [ , [ , , "51\\d{7}(?:\\d{3})?" , "\\d{9}(?:\\d{3})?" , , , "510012345" , , , [ - 1 , 9 , 12 ] ] , [ , , "NA" , "NA" , , , "510012345" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , "510012345" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "51(?:00\\d{5}(?:\\d{3})?|[13]0\\d{8})" , "\\d{9}(?:\\d{3})?" , , ,
"510012345" , , , [ 9 , 12 ] ] , "001" , 883 , , , , , , , , 1 , [ [ , "(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3" , [ "510" ] ] , [ , "(\\d{3})(\\d{3})(\\d{3})(\\d{3})" , "$1 $2 $3 $4" , [ "510" ] ] , [ , "(\\d{4})(\\d{4})(\\d{4})" , "$1 $2 $3" , [ "51[13]" ] ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 888 : [ , [ , , "\\d{11}" , "\\d{11}" , , , "12345678901" , , , [ - 1 , 11 ] ] , [ , , "NA" , "NA" , , , "12345678901" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , "12345678901" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , ,
, [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , "001" , 888 , , , , , , , , 1 , [ [ , "(\\d{3})(\\d{3})(\\d{5})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "\\d{11}" , "\\d{11}" , , , "12345678901" , , , [ 11 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] , 979 : [ , [ , , "\\d{9}" , "\\d{9}" , , , "123456789" , , , [ - 1 , 9 ] ] , [ , , "NA" , "NA" , , , "123456789" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , "123456789" , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "\\d{9}" , "\\d{9}" , , , "123456789" , , , [ 9 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ,
"001" , 979 , , , , , , , , 1 , [ [ , "(\\d)(\\d{4})(\\d{4})" , "$1 $2 $3" ] ] , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] , 1 , , [ , , "NA" , "NA" , , , , , , [ - 1 ] ] ] } ; / *
2014-06-29 22:15:27 +00:00
Copyright ( C ) 2010 The Libphonenumber Authors .
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 .
* /
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil = function ( ) { this . regionToMetadataMap = { } } ; goog . addSingletonGetter ( i18n . phonenumbers . PhoneNumberUtil ) ; i18n . phonenumbers . Error = { INVALID _COUNTRY _CODE : "Invalid country calling code" , NOT _A _NUMBER : "The string supplied did not seem to be a phone number" , TOO _SHORT _AFTER _IDD : "Phone number too short after IDD" , TOO _SHORT _NSN : "The string supplied is too short to be a phone number" , TOO _LONG : "The string supplied is too long to be a phone number" } ;
i18n . phonenumbers . PhoneNumberUtil . NANPA _COUNTRY _CODE _ = 1 ; i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _FOR _NSN _ = 2 ; i18n . phonenumbers . PhoneNumberUtil . MAX _LENGTH _FOR _NSN _ = 17 ; i18n . phonenumbers . PhoneNumberUtil . MAX _LENGTH _COUNTRY _CODE _ = 3 ; i18n . phonenumbers . PhoneNumberUtil . MAX _INPUT _STRING _LENGTH _ = 250 ; i18n . phonenumbers . PhoneNumberUtil . UNKNOWN _REGION _ = "ZZ" ; i18n . phonenumbers . PhoneNumberUtil . COLOMBIA _MOBILE _TO _FIXED _LINE _PREFIX _ = "3" ; i18n . phonenumbers . PhoneNumberUtil . MOBILE _TOKEN _MAPPINGS _ = { 52 : "1" , 54 : "9" } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . GEO _MOBILE _COUNTRIES _ = [ 52 , 54 , 55 ] ; i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN = "+" ; i18n . phonenumbers . PhoneNumberUtil . STAR _SIGN _ = "*" ; i18n . phonenumbers . PhoneNumberUtil . RFC3966 _EXTN _PREFIX _ = ";ext=" ; i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PREFIX _ = "tel:" ; i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PHONE _CONTEXT _ = ";phone-context=" ; i18n . phonenumbers . PhoneNumberUtil . RFC3966 _ISDN _SUBADDRESS _ = ";isub=" ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . DIGIT _MAPPINGS = { 0 : "0" , 1 : "1" , 2 : "2" , 3 : "3" , 4 : "4" , 5 : "5" , 6 : "6" , 7 : "7" , 8 : "8" , 9 : "9" , "\uff10" : "0" , "\uff11" : "1" , "\uff12" : "2" , "\uff13" : "3" , "\uff14" : "4" , "\uff15" : "5" , "\uff16" : "6" , "\uff17" : "7" , "\uff18" : "8" , "\uff19" : "9" , "\u0660" : "0" , "\u0661" : "1" , "\u0662" : "2" , "\u0663" : "3" , "\u0664" : "4" , "\u0665" : "5" , "\u0666" : "6" , "\u0667" : "7" , "\u0668" : "8" , "\u0669" : "9" , "\u06f0" : "0" , "\u06f1" : "1" , "\u06f2" : "2" , "\u06f3" : "3" , "\u06f4" : "4" , "\u06f5" : "5" , "\u06f6" : "6" , "\u06f7" : "7" , "\u06f8" : "8" , "\u06f9" : "9" } ;
i18n . phonenumbers . PhoneNumberUtil . DIALLABLE _CHAR _MAPPINGS _ = { 0 : "0" , 1 : "1" , 2 : "2" , 3 : "3" , 4 : "4" , 5 : "5" , 6 : "6" , 7 : "7" , 8 : "8" , 9 : "9" , "+" : i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN , "*" : "*" } ; i18n . phonenumbers . PhoneNumberUtil . ALPHA _MAPPINGS _ = { A : "2" , B : "2" , C : "2" , D : "3" , E : "3" , F : "3" , G : "4" , H : "4" , I : "4" , J : "5" , K : "5" , L : "5" , M : "6" , N : "6" , O : "6" , P : "7" , Q : "7" , R : "7" , S : "7" , T : "8" , U : "8" , V : "8" , W : "9" , X : "9" , Y : "9" , Z : "9" } ;
i18n . phonenumbers . PhoneNumberUtil . ALL _NORMALIZATION _MAPPINGS _ = { 0 : "0" , 1 : "1" , 2 : "2" , 3 : "3" , 4 : "4" , 5 : "5" , 6 : "6" , 7 : "7" , 8 : "8" , 9 : "9" , "\uff10" : "0" , "\uff11" : "1" , "\uff12" : "2" , "\uff13" : "3" , "\uff14" : "4" , "\uff15" : "5" , "\uff16" : "6" , "\uff17" : "7" , "\uff18" : "8" , "\uff19" : "9" , "\u0660" : "0" , "\u0661" : "1" , "\u0662" : "2" , "\u0663" : "3" , "\u0664" : "4" , "\u0665" : "5" , "\u0666" : "6" , "\u0667" : "7" , "\u0668" : "8" , "\u0669" : "9" , "\u06f0" : "0" , "\u06f1" : "1" , "\u06f2" : "2" , "\u06f3" : "3" , "\u06f4" : "4" , "\u06f5" : "5" , "\u06f6" : "6" , "\u06f7" : "7" , "\u06f8" : "8" , "\u06f9" : "9" ,
A : "2" , B : "2" , C : "2" , D : "3" , E : "3" , F : "3" , G : "4" , H : "4" , I : "4" , J : "5" , K : "5" , L : "5" , M : "6" , N : "6" , O : "6" , P : "7" , Q : "7" , R : "7" , S : "7" , T : "8" , U : "8" , V : "8" , W : "9" , X : "9" , Y : "9" , Z : "9" } ;
i18n . phonenumbers . PhoneNumberUtil . ALL _PLUS _NUMBER _GROUPING _SYMBOLS _ = { 0 : "0" , 1 : "1" , 2 : "2" , 3 : "3" , 4 : "4" , 5 : "5" , 6 : "6" , 7 : "7" , 8 : "8" , 9 : "9" , A : "A" , B : "B" , C : "C" , D : "D" , E : "E" , F : "F" , G : "G" , H : "H" , I : "I" , J : "J" , K : "K" , L : "L" , M : "M" , N : "N" , O : "O" , P : "P" , Q : "Q" , R : "R" , S : "S" , T : "T" , U : "U" , V : "V" , W : "W" , X : "X" , Y : "Y" , Z : "Z" , a : "A" , b : "B" , c : "C" , d : "D" , e : "E" , f : "F" , g : "G" , h : "H" , i : "I" , j : "J" , k : "K" , l : "L" , m : "M" , n : "N" , o : "O" , p : "P" , q : "Q" , r : "R" , s : "S" , t : "T" , u : "U" , v : "V" , w : "W" , x : "X" , y : "Y" , z : "Z" , "-" : "-" , "\uff0d" : "-" , "\u2010" : "-" , "\u2011" : "-" , "\u2012" : "-" ,
"\u2013" : "-" , "\u2014" : "-" , "\u2015" : "-" , "\u2212" : "-" , "/" : "/" , "\uff0f" : "/" , " " : " " , "\u3000" : " " , "\u2060" : " " , "." : "." , "\uff0e" : "." } ; i18n . phonenumbers . PhoneNumberUtil . UNIQUE _INTERNATIONAL _PREFIX _ = /[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?/ ; i18n . phonenumbers . PhoneNumberUtil . VALID _PUNCTUATION = "-x\u2010-\u2015\u2212\u30fc\uff0d-\uff0f \u00a0\u00ad\u200b\u2060\u3000()\uff08\uff09\uff3b\uff3d.\\[\\]/~\u2053\u223c\uff5e" ; i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ = "0-9\uff10-\uff19\u0660-\u0669\u06f0-\u06f9" ;
i18n . phonenumbers . PhoneNumberUtil . VALID _ALPHA _ = "A-Za-z" ; i18n . phonenumbers . PhoneNumberUtil . PLUS _CHARS _ = "+\uff0b" ; i18n . phonenumbers . PhoneNumberUtil . PLUS _CHARS _PATTERN = new RegExp ( "[" + i18n . phonenumbers . PhoneNumberUtil . PLUS _CHARS _ + "]+" ) ; i18n . phonenumbers . PhoneNumberUtil . LEADING _PLUS _CHARS _PATTERN _ = new RegExp ( "^[" + i18n . phonenumbers . PhoneNumberUtil . PLUS _CHARS _ + "]+" ) ; i18n . phonenumbers . PhoneNumberUtil . SEPARATOR _PATTERN _ = "[" + i18n . phonenumbers . PhoneNumberUtil . VALID _PUNCTUATION + "]+" ;
i18n . phonenumbers . PhoneNumberUtil . CAPTURING _DIGIT _PATTERN = new RegExp ( "([" + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "])" ) ; i18n . phonenumbers . PhoneNumberUtil . VALID _START _CHAR _PATTERN _ = new RegExp ( "[" + i18n . phonenumbers . PhoneNumberUtil . PLUS _CHARS _ + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "]" ) ; i18n . phonenumbers . PhoneNumberUtil . SECOND _NUMBER _START _PATTERN _ = /[\\\/] *x/ ;
i18n . phonenumbers . PhoneNumberUtil . UNWANTED _END _CHAR _PATTERN _ = new RegExp ( "[^" + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + i18n . phonenumbers . PhoneNumberUtil . VALID _ALPHA _ + "#]+$" ) ; i18n . phonenumbers . PhoneNumberUtil . VALID _ALPHA _PHONE _PATTERN _ = /(?:.*?[A-Za-z]){3}.*/ ; i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _PHONE _NUMBER _PATTERN _ = "[" + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "]{" + i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _FOR _NSN _ + "}" ;
i18n . phonenumbers . PhoneNumberUtil . VALID _PHONE _NUMBER _ = "[" + i18n . phonenumbers . PhoneNumberUtil . PLUS _CHARS _ + "]*(?:[" + i18n . phonenumbers . PhoneNumberUtil . VALID _PUNCTUATION + i18n . phonenumbers . PhoneNumberUtil . STAR _SIGN _ + "]*[" + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "]){3,}[" + i18n . phonenumbers . PhoneNumberUtil . VALID _PUNCTUATION + i18n . phonenumbers . PhoneNumberUtil . STAR _SIGN _ + i18n . phonenumbers . PhoneNumberUtil . VALID _ALPHA _ + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "]*" ;
i18n . phonenumbers . PhoneNumberUtil . DEFAULT _EXTN _PREFIX _ = " ext. " ; i18n . phonenumbers . PhoneNumberUtil . CAPTURING _EXTN _DIGITS _ = "([" + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "]{1,7})" ;
i18n . phonenumbers . PhoneNumberUtil . EXTN _PATTERNS _FOR _PARSING _ = i18n . phonenumbers . PhoneNumberUtil . RFC3966 _EXTN _PREFIX _ + i18n . phonenumbers . PhoneNumberUtil . CAPTURING _EXTN _DIGITS _ + "|[ \u00a0\\t,]*(?:e?xt(?:ensi(?:o\u0301?|\u00f3))?n?|\uff45?\uff58\uff54\uff4e?|[,x\uff58#\uff03~\uff5e]|int|anexo|\uff49\uff4e\uff54)[:\\.\uff0e]?[ \u00a0\\t,-]*" + i18n . phonenumbers . PhoneNumberUtil . CAPTURING _EXTN _DIGITS _ + "#?|[- ]+([" + i18n . phonenumbers . PhoneNumberUtil . VALID _DIGITS _ + "]{1,5})#" ;
i18n . phonenumbers . PhoneNumberUtil . EXTN _PATTERN _ = new RegExp ( "(?:" + i18n . phonenumbers . PhoneNumberUtil . EXTN _PATTERNS _FOR _PARSING _ + ")$" , "i" ) ; i18n . phonenumbers . PhoneNumberUtil . VALID _PHONE _NUMBER _PATTERN _ = new RegExp ( "^" + i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _PHONE _NUMBER _PATTERN _ + "$|^" + i18n . phonenumbers . PhoneNumberUtil . VALID _PHONE _NUMBER _ + "(?:" + i18n . phonenumbers . PhoneNumberUtil . EXTN _PATTERNS _FOR _PARSING _ + ")?$" , "i" ) ; i18n . phonenumbers . PhoneNumberUtil . NON _DIGITS _PATTERN _ = /\D+/ ;
i18n . phonenumbers . PhoneNumberUtil . FIRST _GROUP _PATTERN _ = /(\$\d)/ ; i18n . phonenumbers . PhoneNumberUtil . NP _PATTERN _ = /\$NP/ ; i18n . phonenumbers . PhoneNumberUtil . FG _PATTERN _ = /\$FG/ ; i18n . phonenumbers . PhoneNumberUtil . CC _PATTERN _ = /\$CC/ ; i18n . phonenumbers . PhoneNumberUtil . FIRST _GROUP _ONLY _PREFIX _PATTERN _ = /^\(?\$1\)?$/ ; i18n . phonenumbers . PhoneNumberUtil . REGION _CODE _FOR _NON _GEO _ENTITY = "001" ; i18n . phonenumbers . PhoneNumberFormat = { E164 : 0 , INTERNATIONAL : 1 , NATIONAL : 2 , RFC3966 : 3 } ;
i18n . phonenumbers . PhoneNumberType = { FIXED _LINE : 0 , MOBILE : 1 , FIXED _LINE _OR _MOBILE : 2 , TOLL _FREE : 3 , PREMIUM _RATE : 4 , SHARED _COST : 5 , VOIP : 6 , PERSONAL _NUMBER : 7 , PAGER : 8 , UAN : 9 , VOICEMAIL : 10 , UNKNOWN : - 1 } ; i18n . phonenumbers . PhoneNumberUtil . MatchType = { NOT _A _NUMBER : 0 , NO _MATCH : 1 , SHORT _NSN _MATCH : 2 , NSN _MATCH : 3 , EXACT _MATCH : 4 } ; i18n . phonenumbers . PhoneNumberUtil . ValidationResult = { IS _POSSIBLE : 0 , INVALID _COUNTRY _CODE : 1 , TOO _SHORT : 2 , TOO _LONG : 3 } ;
i18n . phonenumbers . PhoneNumberUtil . extractPossibleNumber = function ( a ) { var b = a . search ( i18n . phonenumbers . PhoneNumberUtil . VALID _START _CHAR _PATTERN _ ) ; 0 <= b ? ( a = a . substring ( b ) , a = a . replace ( i18n . phonenumbers . PhoneNumberUtil . UNWANTED _END _CHAR _PATTERN _ , "" ) , b = a . search ( i18n . phonenumbers . PhoneNumberUtil . SECOND _NUMBER _START _PATTERN _ ) , 0 <= b && ( a = a . substring ( 0 , b ) ) ) : a = "" ; return a } ;
i18n . phonenumbers . PhoneNumberUtil . isViablePhoneNumber = function ( a ) { return a . length < i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _FOR _NSN _ ? ! 1 : i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( i18n . phonenumbers . PhoneNumberUtil . VALID _PHONE _NUMBER _PATTERN _ , a ) } ;
i18n . phonenumbers . PhoneNumberUtil . normalize = function ( a ) { return i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( i18n . phonenumbers . PhoneNumberUtil . VALID _ALPHA _PHONE _PATTERN _ , a ) ? i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( a , i18n . phonenumbers . PhoneNumberUtil . ALL _NORMALIZATION _MAPPINGS _ , ! 0 ) : i18n . phonenumbers . PhoneNumberUtil . normalizeDigitsOnly ( a ) } ; i18n . phonenumbers . PhoneNumberUtil . normalizeSB _ = function ( a ) { var b = i18n . phonenumbers . PhoneNumberUtil . normalize ( a . toString ( ) ) ; a . clear ( ) ; a . append ( b ) } ;
i18n . phonenumbers . PhoneNumberUtil . normalizeDigitsOnly = function ( a ) { return i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( a , i18n . phonenumbers . PhoneNumberUtil . DIGIT _MAPPINGS , ! 0 ) } ; i18n . phonenumbers . PhoneNumberUtil . convertAlphaCharactersInNumber = function ( a ) { return i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( a , i18n . phonenumbers . PhoneNumberUtil . ALL _NORMALIZATION _MAPPINGS _ , ! 1 ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getLengthOfGeographicalAreaCode = function ( a ) { var b = this . getMetadataForRegion ( this . getRegionCodeForNumber ( a ) ) ; return null != b && ( b . hasNationalPrefix ( ) || a . hasItalianLeadingZero ( ) ) && this . isNumberGeographical ( a ) ? this . getLengthOfNationalDestinationCode ( a ) : 0 } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getLengthOfNationalDestinationCode = function ( a ) { var b ; a . hasExtension ( ) ? ( b = a . clone ( ) , b . clearExtension ( ) ) : b = a ; b = this . format ( b , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) . split ( i18n . phonenumbers . PhoneNumberUtil . NON _DIGITS _PATTERN _ ) ; 0 == b [ 0 ] . length && b . shift ( ) ; return 2 >= b . length ? 0 : this . getNumberType ( a ) == i18n . phonenumbers . PhoneNumberType . MOBILE && ( a = i18n . phonenumbers . PhoneNumberUtil . getCountryMobileToken ( a . getCountryCodeOrDefault ( ) ) , "" != a ) ? b [ 2 ] . length + a . length :
b [ 1 ] . length } ; i18n . phonenumbers . PhoneNumberUtil . getCountryMobileToken = function ( a ) { return i18n . phonenumbers . PhoneNumberUtil . MOBILE _TOKEN _MAPPINGS _ [ a ] || "" } ; i18n . phonenumbers . PhoneNumberUtil . prototype . getSupportedRegions = function ( ) { return goog . array . filter ( Object . keys ( i18n . phonenumbers . metadata . countryToMetadata ) , function ( a ) { return isNaN ( a ) } ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getSupportedGlobalNetworkCallingCodes = function ( ) { var a = goog . array . filter ( Object . keys ( i18n . phonenumbers . metadata . countryToMetadata ) , function ( a ) { return ! isNaN ( a ) } ) ; return goog . array . map ( a , function ( a ) { return parseInt ( a , 10 ) } ) } ; i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ = function ( a , b , c ) { for ( var d = new goog . string . StringBuffer , e , f , g = a . length , h = 0 ; h < g ; ++ h ) e = a . charAt ( h ) , f = b [ e . toUpperCase ( ) ] , null != f ? d . append ( f ) : c || d . append ( e ) ; return d . toString ( ) } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formattingRuleHasFirstGroupOnly = function ( a ) { return 0 == a . length || i18n . phonenumbers . PhoneNumberUtil . FIRST _GROUP _ONLY _PREFIX _PATTERN _ . test ( a ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . isNumberGeographical = function ( a ) { var b = this . getNumberType ( a ) ; return b == i18n . phonenumbers . PhoneNumberType . FIXED _LINE || b == i18n . phonenumbers . PhoneNumberType . FIXED _LINE _OR _MOBILE || goog . array . contains ( i18n . phonenumbers . PhoneNumberUtil . GEO _MOBILE _COUNTRIES _ , a . getCountryCodeOrDefault ( ) ) && b == i18n . phonenumbers . PhoneNumberType . MOBILE } ; i18n . phonenumbers . PhoneNumberUtil . prototype . isValidRegionCode _ = function ( a ) { return null != a && isNaN ( a ) && a . toUpperCase ( ) in i18n . phonenumbers . metadata . countryToMetadata } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . hasValidCountryCallingCode _ = function ( a ) { return a in i18n . phonenumbers . metadata . countryCodeToRegionCodeMap } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . format = function ( a , b ) { if ( 0 == a . getNationalNumber ( ) && a . hasRawInput ( ) ) { var c = a . getRawInputOrDefault ( ) ; if ( 0 < c . length ) return c } var c = a . getCountryCodeOrDefault ( ) , d = this . getNationalSignificantNumber ( a ) ; if ( b == i18n . phonenumbers . PhoneNumberFormat . E164 ) return this . prefixNumberWithCountryCallingCode _ ( c , i18n . phonenumbers . PhoneNumberFormat . E164 , d , "" ) ; if ( ! this . hasValidCountryCallingCode _ ( c ) ) return d ; var e = this . getRegionCodeForCountryCode ( c ) , f = this . getMetadataForRegionOrCallingCode _ ( c ,
e ) , e = this . maybeGetFormattedExtension _ ( a , f , b ) , d = this . formatNsn _ ( d , f , b ) ; return this . prefixNumberWithCountryCallingCode _ ( c , b , d , e ) } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formatByPattern = function ( a , b , c ) { var d = a . getCountryCodeOrDefault ( ) , e = this . getNationalSignificantNumber ( a ) ; if ( ! this . hasValidCountryCallingCode _ ( d ) ) return e ; var f = this . getRegionCodeForCountryCode ( d ) , f = this . getMetadataForRegionOrCallingCode _ ( d , f ) , g = this . chooseFormattingPatternForNumber _ ( c , e ) ; if ( null != g ) { c = g . clone ( ) ; g = g . getNationalPrefixFormattingRuleOrDefault ( ) ; if ( 0 < g . length ) { var h = f . getNationalPrefixOrDefault ( ) ; 0 < h . length ? ( g = g . replace ( i18n . phonenumbers . PhoneNumberUtil . NP _PATTERN _ ,
h ) . replace ( i18n . phonenumbers . PhoneNumberUtil . FG _PATTERN _ , "$1" ) , c . setNationalPrefixFormattingRule ( g ) ) : c . clearNationalPrefixFormattingRule ( ) } e = this . formatNsnUsingPattern _ ( e , c , b ) } a = this . maybeGetFormattedExtension _ ( a , f , b ) ; return this . prefixNumberWithCountryCallingCode _ ( d , b , e , a ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formatNationalNumberWithCarrierCode = function ( a , b ) { var c = a . getCountryCodeOrDefault ( ) , d = this . getNationalSignificantNumber ( a ) ; if ( ! this . hasValidCountryCallingCode _ ( c ) ) return d ; var e = this . getRegionCodeForCountryCode ( c ) , f = this . getMetadataForRegionOrCallingCode _ ( c , e ) , e = this . maybeGetFormattedExtension _ ( a , f , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) , d = this . formatNsn _ ( d , f , i18n . phonenumbers . PhoneNumberFormat . NATIONAL , b ) ; return this . prefixNumberWithCountryCallingCode _ ( c ,
i18n . phonenumbers . PhoneNumberFormat . NATIONAL , d , e ) } ; i18n . phonenumbers . PhoneNumberUtil . prototype . getMetadataForRegionOrCallingCode _ = function ( a , b ) { return i18n . phonenumbers . PhoneNumberUtil . REGION _CODE _FOR _NON _GEO _ENTITY == b ? this . getMetadataForNonGeographicalRegion ( a ) : this . getMetadataForRegion ( b ) } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formatNationalNumberWithPreferredCarrierCode = function ( a , b ) { return this . formatNationalNumberWithCarrierCode ( a , 0 < a . getPreferredDomesticCarrierCodeOrDefault ( ) . length ? a . getPreferredDomesticCarrierCodeOrDefault ( ) : b ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formatNumberForMobileDialing = function ( a , b , c ) { var d = a . getCountryCodeOrDefault ( ) ; if ( ! this . hasValidCountryCallingCode _ ( d ) ) return a . hasRawInput ( ) ? a . getRawInputOrDefault ( ) : "" ; var e = "" ; a = a . clone ( ) ; a . clearExtension ( ) ; var f = this . getRegionCodeForCountryCode ( d ) , g = this . getNumberType ( a ) , h = g != i18n . phonenumbers . PhoneNumberType . UNKNOWN ; if ( b == f ) e = g == i18n . phonenumbers . PhoneNumberType . FIXED _LINE || g == i18n . phonenumbers . PhoneNumberType . MOBILE || g == i18n . phonenumbers . PhoneNumberType . FIXED _LINE _OR _MOBILE ,
2016-10-30 10:47:58 +00:00
"CO" == f && g == i18n . phonenumbers . PhoneNumberType . FIXED _LINE ? e = this . formatNationalNumberWithCarrierCode ( a , i18n . phonenumbers . PhoneNumberUtil . COLOMBIA _MOBILE _TO _FIXED _LINE _PREFIX _ ) : "BR" == f && e ? e = 0 < a . getPreferredDomesticCarrierCodeOrDefault ( ) . length ? this . formatNationalNumberWithPreferredCarrierCode ( a , "" ) : "" : h && "HU" == f ? e = this . getNddPrefixForRegion ( f , ! 0 ) + " " + this . format ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) : d == i18n . phonenumbers . PhoneNumberUtil . NANPA _COUNTRY _CODE _ ? ( b = this . getMetadataForRegion ( b ) , e =
this . canBeInternationallyDialled ( a ) && this . testNumberLength _ ( this . getNationalSignificantNumber ( a ) , b . getGeneralDesc ( ) ) != i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _SHORT ? this . format ( a , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) : this . format ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) ) : e = ( f == i18n . phonenumbers . PhoneNumberUtil . REGION _CODE _FOR _NON _GEO _ENTITY || ( "MX" == f || "CL" == f ) && e ) && this . canBeInternationallyDialled ( a ) ? this . format ( a , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) :
this . format ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) ; else if ( h && this . canBeInternationallyDialled ( a ) ) return c ? this . format ( a , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) : this . format ( a , i18n . phonenumbers . PhoneNumberFormat . E164 ) ; return c ? e : i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( e , i18n . phonenumbers . PhoneNumberUtil . DIALLABLE _CHAR _MAPPINGS _ , ! 0 ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formatOutOfCountryCallingNumber = function ( a , b ) { if ( ! this . isValidRegionCode _ ( b ) ) return this . format ( a , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) ; var c = a . getCountryCodeOrDefault ( ) , d = this . getNationalSignificantNumber ( a ) ; if ( ! this . hasValidCountryCallingCode _ ( c ) ) return d ; if ( c == i18n . phonenumbers . PhoneNumberUtil . NANPA _COUNTRY _CODE _ ) { if ( this . isNANPACountry ( b ) ) return c + " " + this . format ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) } else if ( c == this . getCountryCodeForValidRegion _ ( b ) ) return this . format ( a ,
i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) ; var e = this . getMetadataForRegion ( b ) , f = e . getInternationalPrefixOrDefault ( ) , g = "" ; i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( i18n . phonenumbers . PhoneNumberUtil . UNIQUE _INTERNATIONAL _PREFIX _ , f ) ? g = f : e . hasPreferredInternationalPrefix ( ) && ( g = e . getPreferredInternationalPrefixOrDefault ( ) ) ; e = this . getRegionCodeForCountryCode ( c ) ; e = this . getMetadataForRegionOrCallingCode _ ( c , e ) ; d = this . formatNsn _ ( d , e , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) ; e = this . maybeGetFormattedExtension _ ( a ,
e , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) ; return 0 < g . length ? g + " " + c + " " + d + e : this . prefixNumberWithCountryCallingCode _ ( c , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL , d , e ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . formatInOriginalFormat = function ( a , b ) { if ( a . hasRawInput ( ) && ( this . hasUnexpectedItalianLeadingZero _ ( a ) || ! this . hasFormattingPatternForNumber _ ( a ) ) ) return a . getRawInputOrDefault ( ) ; if ( ! a . hasCountryCodeSource ( ) ) return this . format ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) ; var c ; switch ( a . getCountryCodeSource ( ) ) { case i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITH _PLUS _SIGN : c = this . format ( a , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) ; break ;
2016-01-22 23:34:30 +00:00
case i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITH _IDD : c = this . formatOutOfCountryCallingNumber ( a , b ) ; break ; case i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITHOUT _PLUS _SIGN : c = this . format ( a , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) . substring ( 1 ) ; break ; default : var d = this . getRegionCodeForCountryCode ( a . getCountryCodeOrDefault ( ) ) , e = this . getNddPrefixForRegion ( d , ! 0 ) ; c = this . format ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) ; if ( null != e && 0 != e . length && ! this . rawInputContainsNationalPrefix _ ( a . getRawInputOrDefault ( ) ,
e , d ) && ( d = this . getMetadataForRegion ( d ) , e = this . getNationalSignificantNumber ( a ) , d = this . chooseFormattingPatternForNumber _ ( d . numberFormatArray ( ) , e ) , null != d ) ) { var e = d . getNationalPrefixFormattingRuleOrDefault ( ) , f = e . indexOf ( "$1" ) ; 0 >= f || ( e = e . substring ( 0 , f ) , e = i18n . phonenumbers . PhoneNumberUtil . normalizeDigitsOnly ( e ) , 0 != e . length && ( c = d . clone ( ) , c . clearNationalPrefixFormattingRule ( ) , c = this . formatByPattern ( a , i18n . phonenumbers . PhoneNumberFormat . NATIONAL , [ c ] ) ) ) } } d = a . getRawInputOrDefault ( ) ; null != c && 0 < d . length && ( e = i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( c ,
i18n . phonenumbers . PhoneNumberUtil . DIALLABLE _CHAR _MAPPINGS _ , ! 0 ) , f = i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( d , i18n . phonenumbers . PhoneNumberUtil . DIALLABLE _CHAR _MAPPINGS _ , ! 0 ) , e != f && ( c = d ) ) ; return c } ; i18n . phonenumbers . PhoneNumberUtil . prototype . rawInputContainsNationalPrefix _ = function ( a , b , c ) { a = i18n . phonenumbers . PhoneNumberUtil . normalizeDigitsOnly ( a ) ; if ( goog . string . startsWith ( a , b ) ) try { return this . isValidNumber ( this . parse ( a . substring ( b . length ) , c ) ) } catch ( d ) { } return ! 1 } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . hasUnexpectedItalianLeadingZero _ = function ( a ) { return a . hasItalianLeadingZero ( ) && ! this . isLeadingZeroPossible ( a . getCountryCodeOrDefault ( ) ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . hasFormattingPatternForNumber _ = function ( a ) { var b = a . getCountryCodeOrDefault ( ) , c = this . getRegionCodeForCountryCode ( b ) , b = this . getMetadataForRegionOrCallingCode _ ( b , c ) ; if ( null == b ) return ! 1 ; a = this . getNationalSignificantNumber ( a ) ; return null != this . chooseFormattingPatternForNumber _ ( b . numberFormatArray ( ) , a ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . formatOutOfCountryKeepingAlphaChars = function ( a , b ) { var c = a . getRawInputOrDefault ( ) ; if ( 0 == c . length ) return this . formatOutOfCountryCallingNumber ( a , b ) ; var d = a . getCountryCodeOrDefault ( ) ; if ( ! this . hasValidCountryCallingCode _ ( d ) ) return c ; var c = i18n . phonenumbers . PhoneNumberUtil . normalizeHelper _ ( c , i18n . phonenumbers . PhoneNumberUtil . ALL _PLUS _NUMBER _GROUPING _SYMBOLS _ , ! 0 ) , e = this . getNationalSignificantNumber ( a ) ; if ( 3 < e . length ) { var f = c . indexOf ( e . substring ( 0 , 3 ) ) ; - 1 != f && ( c =
c . substring ( f ) ) } f = this . getMetadataForRegion ( b ) ; if ( d == i18n . phonenumbers . PhoneNumberUtil . NANPA _COUNTRY _CODE _ ) { if ( this . isNANPACountry ( b ) ) return d + " " + c } else if ( null != f && d == this . getCountryCodeForValidRegion _ ( b ) ) { d = this . chooseFormattingPatternForNumber _ ( f . numberFormatArray ( ) , e ) ; if ( null == d ) return c ; d = d . clone ( ) ; d . setPattern ( "(\\d+)(.*)" ) ; d . setFormat ( "$1$2" ) ; return this . formatNsnUsingPattern _ ( c , d , i18n . phonenumbers . PhoneNumberFormat . NATIONAL ) } e = "" ; null != f && ( e = f . getInternationalPrefixOrDefault ( ) , e = i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( i18n . phonenumbers . PhoneNumberUtil . UNIQUE _INTERNATIONAL _PREFIX _ ,
e ) ? e : f . getPreferredInternationalPrefixOrDefault ( ) ) ; f = this . getRegionCodeForCountryCode ( d ) ; f = this . getMetadataForRegionOrCallingCode _ ( d , f ) ; f = this . maybeGetFormattedExtension _ ( a , f , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL ) ; return 0 < e . length ? e + " " + d + " " + c + f : this . prefixNumberWithCountryCallingCode _ ( d , i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL , c , f ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getNationalSignificantNumber = function ( a ) { var b = "" + a . getNationalNumber ( ) ; return a . hasItalianLeadingZero ( ) && a . getItalianLeadingZero ( ) ? Array ( a . getNumberOfLeadingZerosOrDefault ( ) + 1 ) . join ( "0" ) + b : b } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . prefixNumberWithCountryCallingCode _ = function ( a , b , c , d ) { switch ( b ) { case i18n . phonenumbers . PhoneNumberFormat . E164 : return i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN + a + c + d ; case i18n . phonenumbers . PhoneNumberFormat . INTERNATIONAL : return i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN + a + " " + c + d ; case i18n . phonenumbers . PhoneNumberFormat . RFC3966 : return i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PREFIX _ + i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN + a + "-" + c + d ; default : return c +
d } } ; i18n . phonenumbers . PhoneNumberUtil . prototype . formatNsn _ = function ( a , b , c , d ) { b = 0 == b . intlNumberFormatArray ( ) . length || c == i18n . phonenumbers . PhoneNumberFormat . NATIONAL ? b . numberFormatArray ( ) : b . intlNumberFormatArray ( ) ; b = this . chooseFormattingPatternForNumber _ ( b , a ) ; return null == b ? a : this . formatNsnUsingPattern _ ( a , b , c , d ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . chooseFormattingPatternForNumber _ = function ( a , b ) { for ( var c , d = a . length , e = 0 ; e < d ; ++ e ) { c = a [ e ] ; var f = c . leadingDigitsPatternCount ( ) ; if ( 0 == f || 0 == b . search ( c . getLeadingDigitsPattern ( f - 1 ) ) ) if ( f = new RegExp ( c . getPattern ( ) ) , i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( f , b ) ) return c } return null } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . formatNsnUsingPattern _ = function ( a , b , c , d ) { var e = b . getFormatOrDefault ( ) , f = new RegExp ( b . getPattern ( ) ) , g = b . getDomesticCarrierCodeFormattingRuleOrDefault ( ) ; c == i18n . phonenumbers . PhoneNumberFormat . NATIONAL && null != d && 0 < d . length && 0 < g . length ? ( b = g . replace ( i18n . phonenumbers . PhoneNumberUtil . CC _PATTERN _ , d ) , e = e . replace ( i18n . phonenumbers . PhoneNumberUtil . FIRST _GROUP _PATTERN _ , b ) , a = a . replace ( f , e ) ) : ( b = b . getNationalPrefixFormattingRuleOrDefault ( ) , a = c == i18n . phonenumbers . PhoneNumberFormat . NATIONAL &&
null != b && 0 < b . length ? a . replace ( f , e . replace ( i18n . phonenumbers . PhoneNumberUtil . FIRST _GROUP _PATTERN _ , b ) ) : a . replace ( f , e ) ) ; c == i18n . phonenumbers . PhoneNumberFormat . RFC3966 && ( a = a . replace ( new RegExp ( "^" + i18n . phonenumbers . PhoneNumberUtil . SEPARATOR _PATTERN _ ) , "" ) , a = a . replace ( new RegExp ( i18n . phonenumbers . PhoneNumberUtil . SEPARATOR _PATTERN _ , "g" ) , "-" ) ) ; return a } ; i18n . phonenumbers . PhoneNumberUtil . prototype . getExampleNumber = function ( a ) { return this . getExampleNumberForType ( a , i18n . phonenumbers . PhoneNumberType . FIXED _LINE ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . getExampleNumberForType = function ( a , b ) { if ( ! this . isValidRegionCode _ ( a ) ) return null ; var c = this . getNumberDescByType _ ( this . getMetadataForRegion ( a ) , b ) ; try { if ( c . hasExampleNumber ( ) ) return this . parse ( c . getExampleNumberOrDefault ( ) , a ) } catch ( d ) { } return null } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getExampleNumberForNonGeoEntity = function ( a ) { var b = this . getMetadataForNonGeographicalRegion ( a ) ; if ( null != b ) { b = b . getGeneralDesc ( ) ; try { if ( b . hasExampleNumber ( ) ) return this . parse ( "+" + a + b . getExampleNumber ( ) , "ZZ" ) } catch ( c ) { } } return null } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . maybeGetFormattedExtension _ = function ( a , b , c ) { return a . hasExtension ( ) && 0 != a . getExtension ( ) . length ? c == i18n . phonenumbers . PhoneNumberFormat . RFC3966 ? i18n . phonenumbers . PhoneNumberUtil . RFC3966 _EXTN _PREFIX _ + a . getExtension ( ) : b . hasPreferredExtnPrefix ( ) ? b . getPreferredExtnPrefix ( ) + a . getExtensionOrDefault ( ) : i18n . phonenumbers . PhoneNumberUtil . DEFAULT _EXTN _PREFIX _ + a . getExtensionOrDefault ( ) : "" } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getNumberDescByType _ = function ( a , b ) { switch ( b ) { case i18n . phonenumbers . PhoneNumberType . PREMIUM _RATE : return a . getPremiumRate ( ) ; case i18n . phonenumbers . PhoneNumberType . TOLL _FREE : return a . getTollFree ( ) ; case i18n . phonenumbers . PhoneNumberType . MOBILE : return a . getMobile ( ) ; case i18n . phonenumbers . PhoneNumberType . FIXED _LINE : case i18n . phonenumbers . PhoneNumberType . FIXED _LINE _OR _MOBILE : return a . getFixedLine ( ) ; case i18n . phonenumbers . PhoneNumberType . SHARED _COST : return a . getSharedCost ( ) ;
case i18n . phonenumbers . PhoneNumberType . VOIP : return a . getVoip ( ) ; case i18n . phonenumbers . PhoneNumberType . PERSONAL _NUMBER : return a . getPersonalNumber ( ) ; case i18n . phonenumbers . PhoneNumberType . PAGER : return a . getPager ( ) ; case i18n . phonenumbers . PhoneNumberType . UAN : return a . getUan ( ) ; case i18n . phonenumbers . PhoneNumberType . VOICEMAIL : return a . getVoicemail ( ) ; default : return a . getGeneralDesc ( ) } } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getNumberType = function ( a ) { var b = this . getRegionCodeForNumber ( a ) , b = this . getMetadataForRegionOrCallingCode _ ( a . getCountryCodeOrDefault ( ) , b ) ; if ( null == b ) return i18n . phonenumbers . PhoneNumberType . UNKNOWN ; a = this . getNationalSignificantNumber ( a ) ; return this . getNumberTypeHelper _ ( a , b ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getNumberTypeHelper _ = function ( a , b ) { return this . isNumberMatchingDesc _ ( a , b . getGeneralDesc ( ) ) ? this . isNumberMatchingDesc _ ( a , b . getPremiumRate ( ) ) ? i18n . phonenumbers . PhoneNumberType . PREMIUM _RATE : this . isNumberMatchingDesc _ ( a , b . getTollFree ( ) ) ? i18n . phonenumbers . PhoneNumberType . TOLL _FREE : this . isNumberMatchingDesc _ ( a , b . getSharedCost ( ) ) ? i18n . phonenumbers . PhoneNumberType . SHARED _COST : this . isNumberMatchingDesc _ ( a , b . getVoip ( ) ) ? i18n . phonenumbers . PhoneNumberType . VOIP : this . isNumberMatchingDesc _ ( a ,
b . getPersonalNumber ( ) ) ? i18n . phonenumbers . PhoneNumberType . PERSONAL _NUMBER : this . isNumberMatchingDesc _ ( a , b . getPager ( ) ) ? i18n . phonenumbers . PhoneNumberType . PAGER : this . isNumberMatchingDesc _ ( a , b . getUan ( ) ) ? i18n . phonenumbers . PhoneNumberType . UAN : this . isNumberMatchingDesc _ ( a , b . getVoicemail ( ) ) ? i18n . phonenumbers . PhoneNumberType . VOICEMAIL : this . isNumberMatchingDesc _ ( a , b . getFixedLine ( ) ) ? b . getSameMobileAndFixedLinePattern ( ) || this . isNumberMatchingDesc _ ( a , b . getMobile ( ) ) ? i18n . phonenumbers . PhoneNumberType . FIXED _LINE _OR _MOBILE :
i18n . phonenumbers . PhoneNumberType . FIXED _LINE : ! b . getSameMobileAndFixedLinePattern ( ) && this . isNumberMatchingDesc _ ( a , b . getMobile ( ) ) ? i18n . phonenumbers . PhoneNumberType . MOBILE : i18n . phonenumbers . PhoneNumberType . UNKNOWN : i18n . phonenumbers . PhoneNumberType . UNKNOWN } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getMetadataForRegion = function ( a ) { if ( null == a ) return null ; a = a . toUpperCase ( ) ; var b = this . regionToMetadataMap [ a ] ; if ( null == b ) { var b = new goog . proto2 . PbLiteSerializer , c = i18n . phonenumbers . metadata . countryToMetadata [ a ] ; if ( null == c ) return null ; b = b . deserialize ( i18n . phonenumbers . PhoneMetadata . getDescriptor ( ) , c ) ; this . regionToMetadataMap [ a ] = b } return b } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . getMetadataForNonGeographicalRegion = function ( a ) { return this . getMetadataForRegion ( "" + a ) } ; i18n . phonenumbers . PhoneNumberUtil . prototype . isNumberMatchingDesc _ = function ( a , b ) { var c = a . length ; return 0 < b . possibleLengthCount ( ) && - 1 == goog . array . indexOf ( b . possibleLengthArray ( ) , c ) ? ! 1 : i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( b . getNationalNumberPatternOrDefault ( ) , a ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . isValidNumber = function ( a ) { var b = this . getRegionCodeForNumber ( a ) ; return this . isValidNumberForRegion ( a , b ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . isValidNumberForRegion = function ( a , b ) { var c = a . getCountryCodeOrDefault ( ) , d = this . getMetadataForRegionOrCallingCode _ ( c , b ) ; if ( null == d || i18n . phonenumbers . PhoneNumberUtil . REGION _CODE _FOR _NON _GEO _ENTITY != b && c != this . getCountryCodeForValidRegion _ ( b ) ) return ! 1 ; c = this . getNationalSignificantNumber ( a ) ; return this . getNumberTypeHelper _ ( c , d ) != i18n . phonenumbers . PhoneNumberType . UNKNOWN } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getRegionCodeForNumber = function ( a ) { if ( null == a ) return null ; var b = a . getCountryCodeOrDefault ( ) , b = i18n . phonenumbers . metadata . countryCodeToRegionCodeMap [ b ] ; return null == b ? null : 1 == b . length ? b [ 0 ] : this . getRegionCodeForNumberFromRegionList _ ( a , b ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getRegionCodeForNumberFromRegionList _ = function ( a , b ) { for ( var c = this . getNationalSignificantNumber ( a ) , d , e = b . length , f = 0 ; f < e ; f ++ ) { d = b [ f ] ; var g = this . getMetadataForRegion ( d ) ; if ( g . hasLeadingDigits ( ) ) { if ( 0 == c . search ( g . getLeadingDigits ( ) ) ) return d } else if ( this . getNumberTypeHelper _ ( c , g ) != i18n . phonenumbers . PhoneNumberType . UNKNOWN ) return d } return null } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getRegionCodeForCountryCode = function ( a ) { a = i18n . phonenumbers . metadata . countryCodeToRegionCodeMap [ a ] ; return null == a ? i18n . phonenumbers . PhoneNumberUtil . UNKNOWN _REGION _ : a [ 0 ] } ; i18n . phonenumbers . PhoneNumberUtil . prototype . getRegionCodesForCountryCode = function ( a ) { a = i18n . phonenumbers . metadata . countryCodeToRegionCodeMap [ a ] ; return null == a ? [ ] : a } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getCountryCodeForRegion = function ( a ) { return this . isValidRegionCode _ ( a ) ? this . getCountryCodeForValidRegion _ ( a ) : 0 } ; i18n . phonenumbers . PhoneNumberUtil . prototype . getCountryCodeForValidRegion _ = function ( a ) { var b = this . getMetadataForRegion ( a ) ; if ( null == b ) throw "Invalid region code: " + a ; return b . getCountryCodeOrDefault ( ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . getNddPrefixForRegion = function ( a , b ) { var c = this . getMetadataForRegion ( a ) ; if ( null == c ) return null ; c = c . getNationalPrefixOrDefault ( ) ; if ( 0 == c . length ) return null ; b && ( c = c . replace ( "~" , "" ) ) ; return c } ; i18n . phonenumbers . PhoneNumberUtil . prototype . isNANPACountry = function ( a ) { return null != a && goog . array . contains ( i18n . phonenumbers . metadata . countryCodeToRegionCodeMap [ i18n . phonenumbers . PhoneNumberUtil . NANPA _COUNTRY _CODE _ ] , a . toUpperCase ( ) ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . isLeadingZeroPossible = function ( a ) { a = this . getMetadataForRegionOrCallingCode _ ( a , this . getRegionCodeForCountryCode ( a ) ) ; return null != a && a . getLeadingZeroPossibleOrDefault ( ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . isAlphaNumber = function ( a ) { if ( ! i18n . phonenumbers . PhoneNumberUtil . isViablePhoneNumber ( a ) ) return ! 1 ; a = new goog . string . StringBuffer ( a ) ; this . maybeStripExtension ( a ) ; return i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( i18n . phonenumbers . PhoneNumberUtil . VALID _ALPHA _PHONE _PATTERN _ , a . toString ( ) ) } ; i18n . phonenumbers . PhoneNumberUtil . prototype . isPossibleNumber = function ( a ) { return this . isPossibleNumberWithReason ( a ) == i18n . phonenumbers . PhoneNumberUtil . ValidationResult . IS _POSSIBLE } ;
2016-10-30 10:47:58 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . testNumberLength _ = function ( a , b ) { var c = b . possibleLengthArray ( ) , d = b . possibleLengthLocalOnlyArray ( ) , e = a . length ; if ( - 1 < goog . array . indexOf ( d , e ) ) return i18n . phonenumbers . PhoneNumberUtil . ValidationResult . IS _POSSIBLE ; d = c [ 0 ] ; return d == e ? i18n . phonenumbers . PhoneNumberUtil . ValidationResult . IS _POSSIBLE : d > e ? i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _SHORT : c [ c . length - 1 ] < e ? i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _LONG : - 1 < goog . array . indexOf ( c , e ,
1 ) ? i18n . phonenumbers . PhoneNumberUtil . ValidationResult . IS _POSSIBLE : i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _LONG } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . isPossibleNumberWithReason = function ( a ) { var b = this . getNationalSignificantNumber ( a ) ; a = a . getCountryCodeOrDefault ( ) ; if ( ! this . hasValidCountryCallingCode _ ( a ) ) return i18n . phonenumbers . PhoneNumberUtil . ValidationResult . INVALID _COUNTRY _CODE ; var c = this . getRegionCodeForCountryCode ( a ) ; a = this . getMetadataForRegionOrCallingCode _ ( a , c ) ; return this . testNumberLength _ ( b , a . getGeneralDesc ( ) ) } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . isPossibleNumberString = function ( a , b ) { try { return this . isPossibleNumber ( this . parse ( a , b ) ) } catch ( c ) { return ! 1 } } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . truncateTooLongNumber = function ( a ) { if ( this . isValidNumber ( a ) ) return ! 0 ; var b = a . clone ( ) , c = a . getNationalNumberOrDefault ( ) ; do if ( c = Math . floor ( c / 10 ) , b . setNationalNumber ( c ) , 0 == c || this . isPossibleNumberWithReason ( b ) == i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _SHORT ) return ! 1 ; while ( ! this . isValidNumber ( b ) ) ; a . setNationalNumber ( c ) ; return ! 0 } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . extractCountryCode = function ( a , b ) { var c = a . toString ( ) ; if ( 0 == c . length || "0" == c . charAt ( 0 ) ) return 0 ; for ( var d , e = c . length , f = 1 ; f <= i18n . phonenumbers . PhoneNumberUtil . MAX _LENGTH _COUNTRY _CODE _ && f <= e ; ++ f ) if ( d = parseInt ( c . substring ( 0 , f ) , 10 ) , d in i18n . phonenumbers . metadata . countryCodeToRegionCodeMap ) return b . append ( c . substring ( f ) ) , d ; return 0 } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . maybeExtractCountryCode = function ( a , b , c , d , e ) { if ( 0 == a . length ) return 0 ; a = new goog . string . StringBuffer ( a ) ; var f ; null != b && ( f = b . getInternationalPrefix ( ) ) ; null == f && ( f = "NonMatch" ) ; f = this . maybeStripInternationalPrefixAndNormalize ( a , f ) ; d && e . setCountryCodeSource ( f ) ; if ( f != i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _DEFAULT _COUNTRY ) { if ( a . getLength ( ) <= i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _FOR _NSN _ ) throw i18n . phonenumbers . Error . TOO _SHORT _AFTER _IDD ; c = this . extractCountryCode ( a ,
2016-10-30 10:47:58 +00:00
c ) ; if ( 0 != c ) return e . setCountryCode ( c ) , c ; throw i18n . phonenumbers . Error . INVALID _COUNTRY _CODE ; } if ( null != b ) { f = b . getCountryCodeOrDefault ( ) ; var g = "" + f , h = a . toString ( ) ; if ( goog . string . startsWith ( h , g ) ) { var k = new goog . string . StringBuffer ( h . substring ( g . length ) ) , g = b . getGeneralDesc ( ) , h = new RegExp ( g . getNationalNumberPatternOrDefault ( ) ) ; this . maybeStripNationalPrefixAndCarrierCode ( k , b , null ) ; b = k . toString ( ) ; if ( ! i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( h , a . toString ( ) ) && i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( h ,
b ) || this . testNumberLength _ ( a . toString ( ) , g ) == i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _LONG ) return c . append ( b ) , d && e . setCountryCodeSource ( i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITHOUT _PLUS _SIGN ) , e . setCountryCode ( f ) , f } } e . setCountryCode ( 0 ) ; return 0 } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . parsePrefixAsIdd _ = function ( a , b ) { var c = b . toString ( ) ; if ( 0 == c . search ( a ) ) { var d = c . match ( a ) [ 0 ] . length , e = c . substring ( d ) . match ( i18n . phonenumbers . PhoneNumberUtil . CAPTURING _DIGIT _PATTERN ) ; if ( e && null != e [ 1 ] && 0 < e [ 1 ] . length && "0" == i18n . phonenumbers . PhoneNumberUtil . normalizeDigitsOnly ( e [ 1 ] ) ) return ! 1 ; b . clear ( ) ; b . append ( c . substring ( d ) ) ; return ! 0 } return ! 1 } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . maybeStripInternationalPrefixAndNormalize = function ( a , b ) { var c = a . toString ( ) ; if ( 0 == c . length ) return i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _DEFAULT _COUNTRY ; if ( i18n . phonenumbers . PhoneNumberUtil . LEADING _PLUS _CHARS _PATTERN _ . test ( c ) ) return c = c . replace ( i18n . phonenumbers . PhoneNumberUtil . LEADING _PLUS _CHARS _PATTERN _ , "" ) , a . clear ( ) , a . append ( i18n . phonenumbers . PhoneNumberUtil . normalize ( c ) ) , i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITH _PLUS _SIGN ;
c = new RegExp ( b ) ; i18n . phonenumbers . PhoneNumberUtil . normalizeSB _ ( a ) ; return this . parsePrefixAsIdd _ ( c , a ) ? i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _NUMBER _WITH _IDD : i18n . phonenumbers . PhoneNumber . CountryCodeSource . FROM _DEFAULT _COUNTRY } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . maybeStripNationalPrefixAndCarrierCode = function ( a , b , c ) { var d = a . toString ( ) , e = d . length , f = b . getNationalPrefixForParsing ( ) ; if ( 0 == e || null == f || 0 == f . length ) return ! 1 ; var g = new RegExp ( "^(?:" + f + ")" ) ; if ( e = g . exec ( d ) ) { var f = new RegExp ( b . getGeneralDesc ( ) . getNationalNumberPatternOrDefault ( ) ) , h = i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( f , d ) , k = e . length - 1 ; b = b . getNationalPrefixTransformRule ( ) ; if ( null == b || 0 == b . length || null == e [ k ] || 0 == e [ k ] . length ) { if ( h && ! i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( f ,
d . substring ( e [ 0 ] . length ) ) ) return ! 1 ; null != c && 0 < k && null != e [ k ] && c . append ( e [ 1 ] ) ; a . set ( d . substring ( e [ 0 ] . length ) ) } else { d = d . replace ( g , b ) ; if ( h && ! i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ ( f , d ) ) return ! 1 ; null != c && 0 < k && c . append ( e [ 1 ] ) ; a . set ( d ) } return ! 0 } return ! 1 } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . maybeStripExtension = function ( a ) { var b = a . toString ( ) , c = b . search ( i18n . phonenumbers . PhoneNumberUtil . EXTN _PATTERN _ ) ; if ( 0 <= c && i18n . phonenumbers . PhoneNumberUtil . isViablePhoneNumber ( b . substring ( 0 , c ) ) ) for ( var d = b . match ( i18n . phonenumbers . PhoneNumberUtil . EXTN _PATTERN _ ) , e = d . length , f = 1 ; f < e ; ++ f ) if ( null != d [ f ] && 0 < d [ f ] . length ) return a . clear ( ) , a . append ( b . substring ( 0 , c ) ) , d [ f ] ; return "" } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . checkRegionForParsing _ = function ( a , b ) { return this . isValidRegionCode _ ( b ) || null != a && 0 < a . length && i18n . phonenumbers . PhoneNumberUtil . LEADING _PLUS _CHARS _PATTERN _ . test ( a ) } ; i18n . phonenumbers . PhoneNumberUtil . prototype . parse = function ( a , b ) { return this . parseHelper _ ( a , b , ! 1 , ! 0 ) } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . parseAndKeepRawInput = function ( a , b ) { if ( ! this . isValidRegionCode _ ( b ) && 0 < a . length && a . charAt ( 0 ) != i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN ) throw i18n . phonenumbers . Error . INVALID _COUNTRY _CODE ; return this . parseHelper _ ( a , b , ! 0 , ! 0 ) } ; i18n . phonenumbers . PhoneNumberUtil . prototype . setItalianLeadingZerosForPhoneNumber _ = function ( a , b ) { if ( 1 < a . length && "0" == a . charAt ( 0 ) ) { b . setItalianLeadingZero ( ! 0 ) ; for ( var c = 1 ; c < a . length - 1 && "0" == a . charAt ( c ) ; ) c ++ ; 1 != c && b . setNumberOfLeadingZeros ( c ) } } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . parseHelper _ = function ( a , b , c , d ) { if ( null == a ) throw i18n . phonenumbers . Error . NOT _A _NUMBER ; if ( a . length > i18n . phonenumbers . PhoneNumberUtil . MAX _INPUT _STRING _LENGTH _ ) throw i18n . phonenumbers . Error . TOO _LONG ; var e = new goog . string . StringBuffer ; this . buildNationalNumberForParsing _ ( a , e ) ; if ( ! i18n . phonenumbers . PhoneNumberUtil . isViablePhoneNumber ( e . toString ( ) ) ) throw i18n . phonenumbers . Error . NOT _A _NUMBER ; if ( d && ! this . checkRegionForParsing _ ( e . toString ( ) , b ) ) throw i18n . phonenumbers . Error . INVALID _COUNTRY _CODE ;
d = new i18n . phonenumbers . PhoneNumber ; c && d . setRawInput ( a ) ; a = this . maybeStripExtension ( e ) ; 0 < a . length && d . setExtension ( a ) ; a = this . getMetadataForRegion ( b ) ; var f = new goog . string . StringBuffer , g = 0 , h = e . toString ( ) ; try { g = this . maybeExtractCountryCode ( h , a , f , c , d ) } catch ( k ) { if ( k == i18n . phonenumbers . Error . INVALID _COUNTRY _CODE && i18n . phonenumbers . PhoneNumberUtil . LEADING _PLUS _CHARS _PATTERN _ . test ( h ) ) { if ( h = h . replace ( i18n . phonenumbers . PhoneNumberUtil . LEADING _PLUS _CHARS _PATTERN _ , "" ) , g = this . maybeExtractCountryCode ( h , a , f , c , d ) ,
0 == g ) throw k ; } else throw k ; } 0 != g ? ( e = this . getRegionCodeForCountryCode ( g ) , e != b && ( a = this . getMetadataForRegionOrCallingCode _ ( g , e ) ) ) : ( i18n . phonenumbers . PhoneNumberUtil . normalizeSB _ ( e ) , f . append ( e . toString ( ) ) , null != b ? ( g = a . getCountryCodeOrDefault ( ) , d . setCountryCode ( g ) ) : c && d . clearCountryCodeSource ( ) ) ; if ( f . getLength ( ) < i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _FOR _NSN _ ) throw i18n . phonenumbers . Error . TOO _SHORT _NSN ; null != a && ( b = new goog . string . StringBuffer , e = new goog . string . StringBuffer ( f . toString ( ) ) , this . maybeStripNationalPrefixAndCarrierCode ( e ,
2016-10-30 10:47:58 +00:00
a , b ) , this . testNumberLength _ ( e . toString ( ) , a . getGeneralDesc ( ) ) != i18n . phonenumbers . PhoneNumberUtil . ValidationResult . TOO _SHORT && ( f = e , c && 0 < b . toString ( ) . length && d . setPreferredDomesticCarrierCode ( b . toString ( ) ) ) ) ; c = f . toString ( ) ; b = c . length ; if ( b < i18n . phonenumbers . PhoneNumberUtil . MIN _LENGTH _FOR _NSN _ ) throw i18n . phonenumbers . Error . TOO _SHORT _NSN ; if ( b > i18n . phonenumbers . PhoneNumberUtil . MAX _LENGTH _FOR _NSN _ ) throw i18n . phonenumbers . Error . TOO _LONG ; this . setItalianLeadingZerosForPhoneNumber _ ( c , d ) ; d . setNationalNumber ( parseInt ( c ,
10 ) ) ; return d } ;
i18n . phonenumbers . PhoneNumberUtil . prototype . buildNationalNumberForParsing _ = function ( a , b ) { var c = a . indexOf ( i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PHONE _CONTEXT _ ) ; if ( 0 < c ) { var d = c + i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PHONE _CONTEXT _ . length ; if ( a . charAt ( d ) == i18n . phonenumbers . PhoneNumberUtil . PLUS _SIGN ) { var e = a . indexOf ( ";" , d ) ; 0 < e ? b . append ( a . substring ( d , e ) ) : b . append ( a . substring ( d ) ) } d = a . indexOf ( i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PREFIX _ ) ; b . append ( a . substring ( 0 <= d ? d + i18n . phonenumbers . PhoneNumberUtil . RFC3966 _PREFIX _ . length : 0 ,
c ) ) } else b . append ( i18n . phonenumbers . PhoneNumberUtil . extractPossibleNumber ( a ) ) ; c = b . toString ( ) ; d = c . indexOf ( i18n . phonenumbers . PhoneNumberUtil . RFC3966 _ISDN _SUBADDRESS _ ) ; 0 < d && ( b . clear ( ) , b . append ( c . substring ( 0 , d ) ) ) } ;
2016-01-22 23:34:30 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . isNumberMatch = function ( a , b ) { var c , d ; if ( "string" == typeof a ) try { c = this . parse ( a , i18n . phonenumbers . PhoneNumberUtil . UNKNOWN _REGION _ ) } catch ( g ) { if ( g != i18n . phonenumbers . Error . INVALID _COUNTRY _CODE ) return i18n . phonenumbers . PhoneNumberUtil . MatchType . NOT _A _NUMBER ; if ( "string" != typeof b ) { var e = this . getRegionCodeForCountryCode ( b . getCountryCodeOrDefault ( ) ) ; if ( e != i18n . phonenumbers . PhoneNumberUtil . UNKNOWN _REGION _ ) { try { c = this . parse ( a , e ) } catch ( h ) { return i18n . phonenumbers . PhoneNumberUtil . MatchType . NOT _A _NUMBER } c =
this . isNumberMatch ( c , b ) ; return c == i18n . phonenumbers . PhoneNumberUtil . MatchType . EXACT _MATCH ? i18n . phonenumbers . PhoneNumberUtil . MatchType . NSN _MATCH : c } } try { c = this . parseHelper _ ( a , null , ! 1 , ! 1 ) } catch ( h ) { return i18n . phonenumbers . PhoneNumberUtil . MatchType . NOT _A _NUMBER } } else c = a . clone ( ) ; if ( "string" == typeof b ) try { return d = this . parse ( b , i18n . phonenumbers . PhoneNumberUtil . UNKNOWN _REGION _ ) , this . isNumberMatch ( a , d ) } catch ( g ) { return g != i18n . phonenumbers . Error . INVALID _COUNTRY _CODE ? i18n . phonenumbers . PhoneNumberUtil . MatchType . NOT _A _NUMBER :
this . isNumberMatch ( b , c ) } else d = b . clone ( ) ; c . clearRawInput ( ) ; c . clearCountryCodeSource ( ) ; c . clearPreferredDomesticCarrierCode ( ) ; d . clearRawInput ( ) ; d . clearCountryCodeSource ( ) ; d . clearPreferredDomesticCarrierCode ( ) ; c . hasExtension ( ) && 0 == c . getExtension ( ) . length && c . clearExtension ( ) ; d . hasExtension ( ) && 0 == d . getExtension ( ) . length && d . clearExtension ( ) ; if ( c . hasExtension ( ) && d . hasExtension ( ) && c . getExtension ( ) != d . getExtension ( ) ) return i18n . phonenumbers . PhoneNumberUtil . MatchType . NO _MATCH ; var e = c . getCountryCodeOrDefault ( ) ,
f = d . getCountryCodeOrDefault ( ) ; if ( 0 != e && 0 != f ) return c . equals ( d ) ? i18n . phonenumbers . PhoneNumberUtil . MatchType . EXACT _MATCH : e == f && this . isNationalNumberSuffixOfTheOther _ ( c , d ) ? i18n . phonenumbers . PhoneNumberUtil . MatchType . SHORT _NSN _MATCH : i18n . phonenumbers . PhoneNumberUtil . MatchType . NO _MATCH ; c . setCountryCode ( 0 ) ; d . setCountryCode ( 0 ) ; return c . equals ( d ) ? i18n . phonenumbers . PhoneNumberUtil . MatchType . NSN _MATCH : this . isNationalNumberSuffixOfTheOther _ ( c , d ) ? i18n . phonenumbers . PhoneNumberUtil . MatchType . SHORT _NSN _MATCH : i18n . phonenumbers . PhoneNumberUtil . MatchType . NO _MATCH } ;
2014-11-10 02:04:15 +00:00
i18n . phonenumbers . PhoneNumberUtil . prototype . isNationalNumberSuffixOfTheOther _ = function ( a , b ) { var c = "" + a . getNationalNumber ( ) , d = "" + b . getNationalNumber ( ) ; return goog . string . endsWith ( c , d ) || goog . string . endsWith ( d , c ) } ; i18n . phonenumbers . PhoneNumberUtil . prototype . canBeInternationallyDialled = function ( a ) { var b = this . getMetadataForRegion ( this . getRegionCodeForNumber ( a ) ) ; if ( null == b ) return ! 0 ; a = this . getNationalSignificantNumber ( a ) ; return ! this . isNumberMatchingDesc _ ( a , b . getNoInternationalDialling ( ) ) } ;
i18n . phonenumbers . PhoneNumberUtil . matchesEntirely _ = function ( a , b ) { var c = "string" == typeof a ? b . match ( "^(?:" + a + ")$" ) : b . match ( a ) ; return c && c [ 0 ] . length == b . length ? ! 0 : ! 1 } ; / *
2014-06-29 22:15:27 +00:00
Copyright ( C ) 2014 codedust .
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 .
* /
2014-11-10 02:04:15 +00:00
var libphonenumber = function ( ) { var a = { } , b = i18n . phonenumbers . PhoneNumberUtil . getInstance ( ) ; a . parse = function ( a , d ) { try { return b . parse ( a , d ) } catch ( e ) { throw e ; } } ; a . getCountryCodeForRegion = function ( a ) { return b . getCountryCodeForRegion ( a ) } ; a . getRegionCodeForCountryCode = function ( a ) { return b . getRegionCodeForCountryCode ( a ) } ; a . getRegionCodeForNumber = function ( a ) { return b . getRegionCodeForNumber ( a ) } ; a . isValidNumber = function ( a ) { return b . isValidNumber ( a ) } ; a . isValidNumberForRegion = function ( a , d ) { return b . isValidNumberForRegion ( a ,
d ) } ; a . PhoneNumberFormat = i18n . phonenumbers . PhoneNumberFormat ; a . format = function ( a , d ) { return b . format ( a , d ) } ; return a } ( ) ; goog . exportSymbol ( "libphonenumber.parse" , libphonenumber . parse ) ; goog . exportSymbol ( "libphonenumber.getCountryCodeForRegion" , libphonenumber . getCountryCodeForRegion ) ; goog . exportSymbol ( "libphonenumber.getRegionCodeForCountryCode" , libphonenumber . getRegionCodeForCountryCode ) ; goog . exportSymbol ( "libphonenumber.getRegionCodeForNumber" , libphonenumber . getRegionCodeForNumber ) ;
goog . exportSymbol ( "libphonenumber.isValidNumber" , libphonenumber . isValidNumber ) ; goog . exportSymbol ( "libphonenumber.isValidNumberForRegion" , libphonenumber . isValidNumberForRegion ) ; goog . exportSymbol ( "libphonenumber.PhoneNumberFormat" , libphonenumber . PhoneNumberFormat ) ; goog . exportSymbol ( "libphonenumber.PhoneNumberFormat.E164" , libphonenumber . PhoneNumberFormat . E164 ) ; goog . exportSymbol ( "libphonenumber.PhoneNumberFormat.INTERNATIONAL" , libphonenumber . PhoneNumberFormat . INTERNATIONAL ) ;
goog . exportSymbol ( "libphonenumber.PhoneNumberFormat.NATIONAL" , libphonenumber . PhoneNumberFormat . NATIONAL ) ; goog . exportSymbol ( "libphonenumber.PhoneNumberFormat.RFC3966" , libphonenumber . PhoneNumberFormat . RFC3966 ) ; goog . exportSymbol ( "libphonenumber.format" , libphonenumber . format ) ; } ) ( ) ;