intl-tel-input 29.1.2 → 29.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * International Telephone Input v29.1.2
2
+ * International Telephone Input v29.2.0
3
3
  * git+https://github.com/jackocnr/intl-tel-input.git
4
4
  * Licensed under the MIT license
5
5
  */
@@ -44,8 +44,8 @@ var _factory = (() => {
44
44
  // Åland Islands (AKA Aland Islands)
45
45
  "358",
46
46
  1,
47
- ["18", "4"],
48
- // (4 is a mobile range shared with FI)
47
+ ["18", "4", "50"],
48
+ // (4 and 50 are mobile ranges shared with FI)
49
49
  // NOTE: https://en.wikipedia.org/wiki/Telephone%20numbers%20in%20%C3%85land says some 4XXX ranges (e.g. 4570) are specific to AX, but LPN doesn't respect this (https://libphonenumber.appspot.com/phonenumberparser?number=%2B3584570123456 says region=FI) so we won't either. Also it's too much of a maintenance burden to keep track of. Keep the 4 area code range here so that if the user selects AX and types this kind of number, we wont change the flag to FI. Whereas if they type a FI-only range then we will.
50
50
  "0"
51
51
  ],
@@ -592,8 +592,8 @@ var _factory = (() => {
592
592
  // Finland
593
593
  "358",
594
594
  0,
595
- ["4"],
596
- // (mobile range shared with AX)
595
+ ["4", "50"],
596
+ // (mobile ranges shared with AX)
597
597
  "0"
598
598
  ],
599
599
  [
@@ -700,7 +700,8 @@ var _factory = (() => {
700
700
  // Guernsey
701
701
  "44",
702
702
  1,
703
- ["1481", "7781", "7839", "7911"],
703
+ //* Only 79111 and 79117 belong to GG - the rest of 7911 is GB (e.g. 79110).
704
+ ["1481", "7781", "7839", "79111", "79117"],
704
705
  "0"
705
706
  ],
706
707
  [
@@ -831,7 +832,8 @@ var _factory = (() => {
831
832
  // Jersey
832
833
  "44",
833
834
  3,
834
- ["1534", "7509", "7700", "7797", "7829", "7937"],
835
+ //* Only 77003/77007/77008 belong to JE - the rest of 7700 is GB (e.g. 77001).
836
+ ["1534", "7509", "77003", "77007", "77008", "7797", "7829", "7937"],
835
837
  "0"
836
838
  ],
837
839
  [
@@ -1026,7 +1028,7 @@ var _factory = (() => {
1026
1028
  // Mayotte
1027
1029
  "262",
1028
1030
  1,
1029
- ["269", "639"],
1031
+ ["2689", "269", "639", "7093"],
1030
1032
  "0"
1031
1033
  ],
1032
1034
  [
@@ -1790,6 +1792,29 @@ var _factory = (() => {
1790
1792
  // used for synthetic input trigger
1791
1793
  STRICT_REJECT: "strict:reject"
1792
1794
  };
1795
+ var ITI_SLOTS = [
1796
+ "container",
1797
+ "input",
1798
+ "countryContainer",
1799
+ "selectedCountry",
1800
+ "selectedCountryPrimary",
1801
+ "selectedFlag",
1802
+ "arrow",
1803
+ "selectedDialCode",
1804
+ "countrySelector",
1805
+ "countrySelectorContainer",
1806
+ "searchWrapper",
1807
+ "searchIcon",
1808
+ "searchInput",
1809
+ "searchClear",
1810
+ "countryList",
1811
+ "countryListItem",
1812
+ "countryListItemFlag",
1813
+ "countryName",
1814
+ "dialCode",
1815
+ "countryCheck",
1816
+ "noResults"
1817
+ ];
1793
1818
  var CLASSES = {
1794
1819
  HIDE: "iti__hide",
1795
1820
  V_HIDE: "iti__v-hide",
@@ -1966,6 +1991,8 @@ var _factory = (() => {
1966
1991
  allowNumberExtensions: false,
1967
1992
  // Allow alphanumeric "phonewords" (e.g. +1 800 FLOWERS) as valid numbers
1968
1993
  allowPhonewords: false,
1994
+ //* Add custom classes to the elements we generate, keyed by slot name e.g. { selectedCountry: "rounded-l-lg" }.
1995
+ classNames: {},
1969
1996
  //* Add a custom class to the (injected) container element.
1970
1997
  containerClass: "",
1971
1998
  //* Locale for localising country names via Intl.DisplayNames.
@@ -2028,6 +2055,7 @@ var _factory = (() => {
2028
2055
  return v.nodeType === 1 && typeof v.tagName === "string" && typeof v.appendChild === "function";
2029
2056
  };
2030
2057
  var placeholderPolicySet = new Set(Object.values(PLACEHOLDER_POLICY));
2058
+ var slotSet = new Set(ITI_SLOTS);
2031
2059
  var warn = (message) => {
2032
2060
  console.warn(`[intl-tel-input] ${message}`);
2033
2061
  };
@@ -2128,6 +2156,26 @@ var _factory = (() => {
2128
2156
  }
2129
2157
  validatedOptions[key] = value;
2130
2158
  break;
2159
+ case "classNames": {
2160
+ if (!isPlainObject(value)) {
2161
+ warnOption("classNames", "an object", value);
2162
+ break;
2163
+ }
2164
+ const validSlots = {};
2165
+ for (const [slot, slotValue] of Object.entries(value)) {
2166
+ if (!slotSet.has(slot)) {
2167
+ warn(
2168
+ `Unknown slot '${slot}' in 'classNames'. Valid slots: ${ITI_SLOTS.join(", ")}. Skipping.`
2169
+ );
2170
+ } else if (typeof slotValue !== "string") {
2171
+ warnOption(`classNames.${slot}`, "a string", slotValue);
2172
+ } else {
2173
+ validSlots[slot] = slotValue.trim().replace(/\s+/g, " ");
2174
+ }
2175
+ }
2176
+ validatedOptions[key] = validSlots;
2177
+ break;
2178
+ }
2131
2179
  case "countryOrder": {
2132
2180
  if (value === null) {
2133
2181
  validatedOptions[key] = value;
@@ -2540,11 +2588,18 @@ var _factory = (() => {
2540
2588
  );
2541
2589
  }
2542
2590
  }
2591
+ //* Append any consumer-supplied classes (via the classNames option) for the given slot to our own classes for that element.
2592
+ #withSlotClass(slot, ourClasses) {
2593
+ const custom = this.#options.classNames[slot];
2594
+ return custom ? `${ourClasses} ${custom}` : ourClasses;
2595
+ }
2543
2596
  //* Generate all of the markup for the core library: the selected country overlay, and the country selector.
2544
2597
  buildMarkup(countries, searchTokens) {
2545
2598
  this.#countries = countries;
2546
2599
  this.#searchTokens = searchTokens;
2547
- this.telInputEl.classList.add("iti__tel-input");
2600
+ this.telInputEl.classList.add(
2601
+ ...this.#withSlotClass("input", "iti__tel-input").split(" ")
2602
+ );
2548
2603
  if (!this.telInputEl.hasAttribute("type")) {
2549
2604
  this.telInputEl.setAttribute("type", "tel");
2550
2605
  }
@@ -2572,7 +2627,9 @@ var _factory = (() => {
2572
2627
  "iti--inline-country-selector": countrySelectorMode !== COUNTRY_SELECTOR_MODE.FULLSCREEN,
2573
2628
  [containerClass]: Boolean(containerClass)
2574
2629
  });
2575
- const wrapper = createEl("div", { class: parentClasses });
2630
+ const wrapper = createEl("div", {
2631
+ class: this.#withSlotClass("container", parentClasses)
2632
+ });
2576
2633
  if (this.#isRTL) {
2577
2634
  wrapper.setAttribute("dir", "ltr");
2578
2635
  }
@@ -2588,7 +2645,12 @@ var _factory = (() => {
2588
2645
  this.#countryContainerEl = createEl(
2589
2646
  "div",
2590
2647
  // visibly hidden until we measure its width to set the input padding correctly
2591
- { class: `iti__country-container ${CLASSES.V_HIDE}` },
2648
+ {
2649
+ class: this.#withSlotClass(
2650
+ "countryContainer",
2651
+ `iti__country-container ${CLASSES.V_HIDE}`
2652
+ )
2653
+ },
2592
2654
  wrapper
2593
2655
  );
2594
2656
  if (enableCountrySelector) {
@@ -2596,7 +2658,7 @@ var _factory = (() => {
2596
2658
  "button",
2597
2659
  {
2598
2660
  type: "button",
2599
- class: "iti__selected-country",
2661
+ class: this.#withSlotClass("selectedCountry", "iti__selected-country"),
2600
2662
  [ARIA.EXPANDED]: "false",
2601
2663
  [ARIA.LABEL]: this.#options.uiTranslations.noCountrySelected,
2602
2664
  [ARIA.HASPOPUP]: "dialog",
@@ -2610,31 +2672,44 @@ var _factory = (() => {
2610
2672
  } else {
2611
2673
  this.#selectedCountryEl = createEl(
2612
2674
  "div",
2613
- { class: "iti__selected-country" },
2675
+ { class: this.#withSlotClass("selectedCountry", "iti__selected-country") },
2614
2676
  this.#countryContainerEl
2615
2677
  );
2616
2678
  }
2617
2679
  const selectedCountryPrimary = createEl(
2618
2680
  "div",
2619
- { class: "iti__selected-country-primary" },
2681
+ {
2682
+ class: this.#withSlotClass(
2683
+ "selectedCountryPrimary",
2684
+ "iti__selected-country-primary"
2685
+ )
2686
+ },
2620
2687
  this.#selectedCountryEl
2621
2688
  );
2622
2689
  this.#selectedFlagEl = createEl(
2623
2690
  "div",
2624
- { class: CLASSES.FLAG },
2691
+ { class: this.#withSlotClass("selectedFlag", CLASSES.FLAG) },
2625
2692
  selectedCountryPrimary
2626
2693
  );
2627
2694
  if (enableCountrySelector) {
2628
2695
  this.#arrowEl = createEl(
2629
2696
  "div",
2630
- { class: "iti__arrow", [ARIA.HIDDEN]: "true" },
2697
+ {
2698
+ class: this.#withSlotClass("arrow", "iti__arrow"),
2699
+ [ARIA.HIDDEN]: "true"
2700
+ },
2631
2701
  selectedCountryPrimary
2632
2702
  );
2633
2703
  }
2634
2704
  if (separateDialCode) {
2635
2705
  this.#selectedDialCodeEl = createEl(
2636
2706
  "div",
2637
- { class: "iti__selected-dial-code" },
2707
+ {
2708
+ class: this.#withSlotClass(
2709
+ "selectedDialCode",
2710
+ "iti__selected-dial-code"
2711
+ )
2712
+ },
2638
2713
  this.#selectedCountryEl
2639
2714
  );
2640
2715
  }
@@ -2665,7 +2740,10 @@ var _factory = (() => {
2665
2740
  const extraClasses = matchDropdownWidth ? "" : "iti--flexible-dropdown-width";
2666
2741
  this.#countrySelectorEl = createEl("div", {
2667
2742
  id: `iti-${this.#id}__country-selector`,
2668
- class: `iti__country-selector ${CLASSES.HIDE} ${extraClasses}`,
2743
+ class: this.#withSlotClass(
2744
+ "countrySelector",
2745
+ `iti__country-selector ${CLASSES.HIDE} ${extraClasses}`
2746
+ ),
2669
2747
  role: "dialog",
2670
2748
  [ARIA.MODAL]: "true"
2671
2749
  });
@@ -2678,7 +2756,7 @@ var _factory = (() => {
2678
2756
  this.#countryListEl = createEl(
2679
2757
  "ul",
2680
2758
  {
2681
- class: "iti__country-list",
2759
+ class: this.#withSlotClass("countryList", "iti__country-list"),
2682
2760
  id: `iti-${this.#id}__country-listbox`,
2683
2761
  role: "listbox",
2684
2762
  [ARIA.LABEL]: uiTranslations.countryListAriaLabel
@@ -2697,7 +2775,9 @@ var _factory = (() => {
2697
2775
  "iti--inline-country-selector": !isFullscreen,
2698
2776
  [containerClass]: Boolean(containerClass)
2699
2777
  });
2700
- this.#detachedCountrySelectorEl = createEl("div", { class: wrapperClasses });
2778
+ this.#detachedCountrySelectorEl = createEl("div", {
2779
+ class: this.#withSlotClass("countrySelectorContainer", wrapperClasses)
2780
+ });
2701
2781
  this.#detachedCountrySelectorEl.appendChild(this.#countrySelectorEl);
2702
2782
  } else {
2703
2783
  this.#countryContainerEl.appendChild(this.#countrySelectorEl);
@@ -2718,13 +2798,13 @@ var _factory = (() => {
2718
2798
  const { uiTranslations, searchInputClass } = this.#options;
2719
2799
  const searchWrapper = createEl(
2720
2800
  "div",
2721
- { class: "iti__search-input-wrapper" },
2801
+ { class: this.#withSlotClass("searchWrapper", "iti__search-input-wrapper") },
2722
2802
  this.#countrySelectorEl
2723
2803
  );
2724
2804
  this.#searchIconEl = createEl(
2725
2805
  "span",
2726
2806
  {
2727
- class: "iti__search-icon",
2807
+ class: this.#withSlotClass("searchIcon", "iti__search-icon"),
2728
2808
  [ARIA.HIDDEN]: "true"
2729
2809
  },
2730
2810
  searchWrapper
@@ -2736,7 +2816,10 @@ var _factory = (() => {
2736
2816
  id: `iti-${this.#id}__search-input`,
2737
2817
  // Chrome says inputs need either a name or an id
2738
2818
  type: "search",
2739
- class: `iti__search-input ${searchInputClass}`,
2819
+ class: this.#withSlotClass(
2820
+ "searchInput",
2821
+ `iti__search-input ${searchInputClass}`
2822
+ ),
2740
2823
  placeholder: uiTranslations.searchPlaceholder,
2741
2824
  // role=combobox + aria-autocomplete=list + aria-activedescendant allows maintaining focus on the search input while allowing users to navigate search results with up/down keyboard keys
2742
2825
  role: "combobox",
@@ -2752,7 +2835,10 @@ var _factory = (() => {
2752
2835
  "button",
2753
2836
  {
2754
2837
  type: "button",
2755
- class: `iti__search-clear ${CLASSES.HIDE}`,
2838
+ class: this.#withSlotClass(
2839
+ "searchClear",
2840
+ `iti__search-clear ${CLASSES.HIDE}`
2841
+ ),
2756
2842
  [ARIA.LABEL]: uiTranslations.clearSearchAriaLabel,
2757
2843
  tabindex: "-1"
2758
2844
  },
@@ -2767,7 +2853,7 @@ var _factory = (() => {
2767
2853
  this.#noResultsMessageEl = createEl(
2768
2854
  "div",
2769
2855
  {
2770
- class: `iti__no-results ${CLASSES.HIDE}`,
2856
+ class: this.#withSlotClass("noResults", `iti__no-results ${CLASSES.HIDE}`),
2771
2857
  [ARIA.HIDDEN]: "true"
2772
2858
  // all a11y messaging happens in this.#searchResultsLiveRegionEl
2773
2859
  },
@@ -2821,11 +2907,9 @@ var _factory = (() => {
2821
2907
  //* For each country: add a country list item <li> to the countryList <ul> container.
2822
2908
  #appendListItems() {
2823
2909
  const frag = document.createDocumentFragment();
2910
+ const liClass = this.#withSlotClass("countryListItem", CLASSES.COUNTRY_ITEM);
2824
2911
  for (let i = 0; i < this.#countries.length; i++) {
2825
2912
  const c = this.#countries[i];
2826
- const liClass = buildClassNames({
2827
- [CLASSES.COUNTRY_ITEM]: true
2828
- });
2829
2913
  const listItem = createEl("li", {
2830
2914
  id: `iti-${this.#id}__item-${c.iso2}`,
2831
2915
  class: liClass,
@@ -2837,11 +2921,28 @@ var _factory = (() => {
2837
2921
  listItem.dataset[DATA_KEYS.ISO2] = c.iso2;
2838
2922
  this.#listItemByIso2.set(c.iso2, listItem);
2839
2923
  if (this.#options.showFlags) {
2840
- createEl("div", { class: `${CLASSES.FLAG} iti__${c.iso2}` }, listItem);
2924
+ createEl(
2925
+ "div",
2926
+ {
2927
+ class: this.#withSlotClass(
2928
+ "countryListItemFlag",
2929
+ `${CLASSES.FLAG} iti__${c.iso2}`
2930
+ )
2931
+ },
2932
+ listItem
2933
+ );
2841
2934
  }
2842
- const nameEl = createEl("span", { class: "iti__country-name" }, listItem);
2935
+ const nameEl = createEl(
2936
+ "span",
2937
+ { class: this.#withSlotClass("countryName", "iti__country-name") },
2938
+ listItem
2939
+ );
2843
2940
  nameEl.textContent = `${c.name} `;
2844
- const dialEl = createEl("span", { class: "iti__dial-code" }, nameEl);
2941
+ const dialEl = createEl(
2942
+ "span",
2943
+ { class: this.#withSlotClass("dialCode", "iti__dial-code") },
2944
+ nameEl
2945
+ );
2845
2946
  if (this.#isRTL) {
2846
2947
  dialEl.setAttribute("dir", "ltr");
2847
2948
  }
@@ -3288,7 +3389,10 @@ var _factory = (() => {
3288
3389
  newListItem.setAttribute(ARIA.SELECTED, "true");
3289
3390
  const checkIcon = createEl(
3290
3391
  "span",
3291
- { class: "iti__country-check", [ARIA.HIDDEN]: "true" },
3392
+ {
3393
+ class: this.#withSlotClass("countryCheck", "iti__country-check"),
3394
+ [ARIA.HIDDEN]: "true"
3395
+ },
3292
3396
  newListItem
3293
3397
  );
3294
3398
  checkIcon.appendChild(buildCheckIcon());
@@ -3475,7 +3579,10 @@ var _factory = (() => {
3475
3579
  this.#updateSelectedListItem(iso2);
3476
3580
  }
3477
3581
  if (this.#selectedCountryEl) {
3478
- const flagClass = iso2 && showFlags ? `${CLASSES.FLAG} iti__${iso2}` : `${CLASSES.FLAG} ${CLASSES.GLOBE}`;
3582
+ const flagClass = this.#withSlotClass(
3583
+ "selectedFlag",
3584
+ iso2 && showFlags ? `${CLASSES.FLAG} iti__${iso2}` : `${CLASSES.FLAG} ${CLASSES.GLOBE}`
3585
+ );
3479
3586
  let ariaLabel, title;
3480
3587
  let flagContent = null;
3481
3588
  if (iso2) {
@@ -4872,7 +4979,7 @@ var _factory = (() => {
4872
4979
  attachUtils,
4873
4980
  startedLoadingUtils: false,
4874
4981
  startedLoadingAutoCountry: false,
4875
- version: "29.1.2",
4982
+ version: "29.2.0",
4876
4983
  NUMBER_FORMAT,
4877
4984
  NUMBER_TYPE,
4878
4985
  VALIDATION_ERROR,
@@ -5462,7 +5569,7 @@ var _factory = (() => {
5462
5569
  AC: [, [
5463
5570
  ,
5464
5571
  ,
5465
- "(?:[01589]\\d|[46])\\d{4}",
5572
+ "(?:[01589]\\d|[2-467])\\d{4}",
5466
5573
  ,
5467
5574
  ,
5468
5575
  ,
@@ -5470,7 +5577,7 @@ var _factory = (() => {
5470
5577
  ,
5471
5578
  ,
5472
5579
  [5, 6]
5473
- ], [, , "6[2-467]\\d{3}", , , , "62889", , , [5]], [, , "4\\d{4}", , , , "40123", , , [5]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "AC", 247, "00", , , , , , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "(?:0[1-9]|[1589]\\d)\\d{4}", , , , "542011", , , [6]], , , [, , , , , , , , , [-1]]],
5580
+ ], [, , "6\\d{4}", , , , "62889", , , [5]], [, , "[2-47]\\d{4}", , , , "40123", , , [5]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "AC", 247, "00", , , , , , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "(?:0[1-9]|[1589]\\d)\\d{4}", , , , "542011", , , [6]], , , [, , , , , , , , , [-1]]],
5474
5581
  AD: [
5475
5582
  ,
5476
5583
  [, , "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", , , , , , , [6, 8, 9]],
@@ -5930,7 +6037,7 @@ var _factory = (() => {
5930
6037
  ,
5931
6038
  ,
5932
6039
  "27111234"
5933
- ], [, , "(?:1[13-9]\\d|644)\\d{7}|(?:3[78]|44|66)[02-9]\\d{7}", , , , "1812345678", , , [10]], [, , "80[03]\\d{7}", , , , "8001234567", , , [10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "96(?:0[469]|1[0-47]|3[389]|43|6[69]|7[78])\\d{6}", , , , "9604123456", , , [10]], "BD", 880, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], [
6040
+ ], [, , "(?:1[13-9]\\d|644)\\d{7}|(?:3[78]|44|66)[02-9]\\d{7}", , , , "1812345678", , , [10]], [, , "80[03]\\d{7}", , , , "8001234567", , , [10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "96(?:0[1-69]|1[0-479]|2[278]|3[13-9]|4[013]|54|6[69]|7[78]|88)\\d{6}", , , , "9604123456", , , [10]], "BD", 880, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], [
5934
6041
  ,
5935
6042
  "(\\d{3})(\\d{3,7})",
5936
6043
  "$1-$2",
@@ -6421,7 +6528,7 @@ var _factory = (() => {
6421
6528
  ,
6422
6529
  [7, 8, 9, 10, 11],
6423
6530
  [5, 6]
6424
- ], [, , "1740[0-5]\\d{6}|1(?:[38]\\d|4[57]|[59][0-35-9]|6[25-7]|7[0-35-8])\\d{8}", , , , "13123456789", , , [11]], [, , "(?:(?:10|21)8|8)00\\d{7}", , , , "8001234567", , , [10, 12]], [, , "16[08]\\d{5}", , , , "16812345", , , [8]], [
6531
+ ], [, , "1(?:610\\d|740[0-5])\\d{6}|1(?:[38]\\d|4[57]|[59][0-35-9]|6[25-7]|7[0-35-8])\\d{8}", , , , "13123456789", , , [11]], [, , "(?:(?:10|21)8|8)00\\d{7}", , , , "8001234567", , , [10, 12]], [, , "16[08]\\d{5}", , , , "16812345", , , [8]], [
6425
6532
  ,
6426
6533
  ,
6427
6534
  "10(?:10\\d{4}|96\\d{3,4})|400\\d{7}|950\\d{7,8}|(?:2[0-57-9]|3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|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[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))96\\d{3,4}",
@@ -6907,7 +7014,7 @@ var _factory = (() => {
6907
7014
  ,
6908
7015
  [, , "[5-8]\\d{8}", , , , , , , [9]],
6909
7016
  [, , "528[89]\\d{5}", , , , "528812345"],
6910
- [, , "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|5[0-5]))\\d{6}", , , , "650123456"],
7017
+ [, , "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|3[01]|5[0-5]))\\d{6}", , , , "650123456"],
6911
7018
  [, , "80[0-7]\\d{6}", , , , "801234567"],
6912
7019
  [, , "89\\d{7}", , , , "891234567"],
6913
7020
  [, , , , , , , , , [-1]],
@@ -7072,7 +7179,7 @@ var _factory = (() => {
7072
7179
  ,
7073
7180
  ,
7074
7181
  "901123"
7075
- ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "(?:6[0-36]|88)\\d{4}", , , , "601234"], "FO", 298, "00", , , , "(10(?:01|[12]0|88))", , , , [[, "(\\d{6})", "$1", ["[2-9]"], , "$CC $1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7182
+ ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "6[0-36]\\d{4}", , , , "601234"], "FO", 298, "00", , , , "(10(?:01|[12]0|88))", , , , [[, "(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-9]"], , "$CC $1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7076
7183
  FR: [, [, , "[1-9]\\d{8}", , , , , , , [9]], [, , "(?:26[013-9]|59[1-35-9])\\d{6}|(?:[13]\\d|2[0-57-9]|4[1-9]|5[0-8])\\d{7}", , , , "123456789"], [, , "(?:6(?:[0-24-8]\\d|3[0-8]|9[589])|7[3-9]\\d)\\d{6}", , , , "612345678"], [, , "80[0-5]\\d{6}", , , , "801234567"], [
7077
7184
  ,
7078
7185
  ,
@@ -7156,7 +7263,7 @@ var _factory = (() => {
7156
7263
  GE: [, [, , "(?:[3-57]\\d\\d|800)\\d{6}", , , , , , , [9], [6, 7]], [, , "(?: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}", , , , "322123456", , , , [6, 7]], [
7157
7264
  ,
7158
7265
  ,
7159
- "5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0(?:1[09]|70)|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|(?:40[04]|900)0|5222)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|1[12]|22|3[0-6]|44|5[05]|77|88|9[09])|(?:[14]\\d|77)\\d|22[02])|1(?:1(?:[03][01]|[124]\\d|5[2-6]|7[0-6])|4\\d\\d)|[23]555|4(?:4\\d\\d|555)|5(?:[0157-9]\\d\\d|200|333|4(?:44|55))|6[89]\\d\\d|7(?:(?:[0147-9]\\d|22)\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}",
7266
+ "5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0(?:1[09]|70)|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|4(?:0[04]0|411)|5222|9000)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|1[12]|2[02]|3[0-6]|4[04]|5[05]|77|88|9[09])|(?:[14]\\d|77)\\d|22[02])|1(?:1(?:[03][01]|[124]\\d|5[02-6]|7[0-6])|4\\d\\d)|2(?:228|555)|3555|4(?:4(?:[02-9]\\d|14)|555)|5(?:[0157-9]\\d\\d|200|333|4(?:44|55))|6[89]\\d\\d|7(?:(?:[0147-9]\\d|22)\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}",
7160
7267
  ,
7161
7268
  ,
7162
7269
  ,
@@ -7530,67 +7637,58 @@ var _factory = (() => {
7530
7637
  ["81"],
7531
7638
  "(0$1)"
7532
7639
  ], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[78]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]], [, "(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["4"], "(0$1)"], [, "(\\d{2})(\\d)(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["8"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , "18[59]0\\d{6}", , , , , , , [10]], [, , "818\\d{6}", , , , "818123456", , , [9]], , , [, , "88210[1-9]\\d{4}|8(?:[35-79]5\\d\\d|8(?:[013-9]\\d\\d|2(?:[01][1-9]|[2-9]\\d)))\\d{5}", , , , "8551234567", , , [10]]],
7533
- IL: [, [, , "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", , , , , , , [
7534
- 7,
7535
- 8,
7536
- 9,
7537
- 10,
7538
- 11,
7539
- 12
7540
- ]], [, , "153\\d{8,9}|29[1-9]\\d{5}|(?:2[0-8]|[3489]\\d)\\d{6}", , , , "21234567", , , [8, 11, 12], [7]], [, , "55(?:4(?:0[0-3]|[16]0)|57[0-289])\\d{4}|5(?:(?:[0-2][02-9]|[36]\\d|[49][2-9]|8[3-7])\\d|5(?:01|2\\d|3[0-3]|4[3-5]|5[0-25689]|6[6-8]|7[0-267]|8[7-9]|9[1-9]))\\d{5}", , , , "502345678", , , [9]], [, , "1(?:255|80[019]\\d{3})\\d{3}", , , , "1800123456", , , [7, 10]], [, , "1212\\d{4}|1(?:200|9(?:0[0-2]|19|9\\d))\\d{6}", , , , "1919123456", , , [8, 10]], [, , "1700\\d{6}", , , , "1700123456", , , [10]], [, , , , , , , , , [-1]], [
7541
- ,
7542
- ,
7543
- "7(?:38(?:[05]\\d|8[0138])|8(?:33|55|77|81)\\d)\\d{4}|7(?:18|2[23]|3[237]|47|6[258]|7\\d|82|9[2-9])\\d{6}",
7544
- ,
7545
- ,
7546
- ,
7547
- "771234567",
7548
- ,
7549
- ,
7550
- [9]
7551
- ], "IL", 972, "0(?:0|1[2-9])", "0", , , "0", , , , [[, "(\\d{4})(\\d{3})", "$1-$2", ["125"]], [, "(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], [, "(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], [, "(\\d{4})(\\d{6})", "$1-$2", ["159"]], [, "(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3-$4", ["1[7-9]"]], [, "(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]], , [, , , , , , , , , [-1]], , , [
7552
- ,
7553
- ,
7554
- "1700\\d{6}",
7640
+ IL: [
7641
+ ,
7642
+ [, , "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", , , , , , , [
7643
+ 7,
7644
+ 8,
7645
+ 9,
7646
+ 10,
7647
+ 11,
7648
+ 12
7649
+ ]],
7650
+ [, , "153\\d{8,9}|29[1-9]\\d{5}|(?:2[0-8]|[3489]\\d)\\d{6}", , , , "21234567", , , [8, 11, 12], [7]],
7651
+ [, , "55(?:4(?:0[0-3]|10|6[015-9])|57[0-289]|8[06][0-2])\\d{4}|5(?:(?:[0-2][02-9]|[36]\\d|[49][2-9]|8[3-7])\\d|5(?:01|2\\d|3[0-3]|4[3-5]|5[0-25689]|6[6-8]|7[0-267]|8[7-9]|9[1-9]))\\d{5}", , , , "502345678", , , [9]],
7652
+ [, , "1(?:255|80[019]\\d{3})\\d{3}", , , , "1800123456", , , [7, 10]],
7653
+ [, , "1212\\d{4}|1(?:200|9(?:0[0-2]|19|9\\d))\\d{6}", , , , "1919123456", , , [8, 10]],
7654
+ [, , "1700\\d{6}", , , , "1700123456", , , [10]],
7655
+ [, , , , , , , , , [-1]],
7656
+ [, , "7(?:280[01]|38(?:[05]\\d|8[01358])|8(?:33|55|77|81)\\d)\\d{4}|7(?:18|2[23]|3[237]|47|6[258]|7\\d|82|9[2-9])\\d{6}", , , , "771234567", , , [9]],
7657
+ "IL",
7658
+ 972,
7659
+ "0(?:0|1[2-9])",
7660
+ "0",
7555
7661
  ,
7556
7662
  ,
7663
+ "0",
7557
7664
  ,
7558
7665
  ,
7559
7666
  ,
7667
+ [[, "(\\d{4})(\\d{3})", "$1-$2", ["125"]], [, "(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], [, "(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], [, "(\\d{4})(\\d{6})", "$1-$2", ["159"]], [
7668
+ ,
7669
+ "(\\d)(\\d{3})(\\d{3})(\\d{3})",
7670
+ "$1-$2-$3-$4",
7671
+ ["1[7-9]"]
7672
+ ], [, "(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]],
7560
7673
  ,
7561
- [10]
7562
- ], [, , "1599\\d{6}", , , , "1599123456", , , [10]], , , [, , "151\\d{8,9}", , , , "15112340000", , , [11, 12]]],
7563
- IM: [
7564
- ,
7565
- [, , "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", , , , , , , [10], [6]],
7566
- [, , "1624(?:230|[5-8]\\d\\d)\\d{3}", , , , "1624756789", , , , [6]],
7567
- [, , "76245[06]\\d{4}|7(?:4576|[59]24\\d|624[0-4689])\\d{5}", , , , "7924123456"],
7568
- [, , "808162\\d{4}", , , , "8081624567"],
7569
- [, , "8(?:440[49]06|72299\\d)\\d{3}|(?:8(?:45|70)|90[0167])624\\d{4}", , , , "9016247890"],
7570
- [, , , , , , , , , [-1]],
7571
- [, , "70\\d{8}", , , , "7012345678"],
7572
- [, , "56\\d{8}", , , , "5612345678"],
7573
- "IM",
7574
- 44,
7575
- "00",
7576
- "0",
7674
+ [, , , , , , , , , [-1]],
7577
7675
  ,
7578
7676
  ,
7579
- "([25-8]\\d{5})$|0|180020",
7580
- "1624$1",
7677
+ [, , "1700\\d{6}", , , , , , , [10]],
7678
+ [, , "1599\\d{6}", , , , "1599123456", , , [10]],
7581
7679
  ,
7582
7680
  ,
7681
+ [, , "151\\d{8,9}", , , , "15112340000", , , [11, 12]]
7682
+ ],
7683
+ IM: [, [, , "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", , , , , , , [10], [6]], [, , "1624(?:230|[5-8]\\d\\d)\\d{3}", , , , "1624756789", , , , [6]], [, , "76245[06]\\d{4}|7(?:4576|[59]24\\d|624[0-4689])\\d{5}", , , , "7924123456"], [, , "808162\\d{4}", , , , "8081624567"], [
7583
7684
  ,
7584
7685
  ,
7585
- [, , , , , , , , , [-1]],
7686
+ "8(?:440[49]06|72299\\d)\\d{3}|(?:8(?:45|70)|90[0167])624\\d{4}",
7586
7687
  ,
7587
- "74576|(?:16|7[56])24",
7588
- [, , , , , , , , , [-1]],
7589
- [, , "3440[49]06\\d{3}|(?:3(?:08162|3\\d{4}|45624|7(?:0624|2299))|55\\d{4})\\d{4}", , , , "5512345678"],
7590
7688
  ,
7591
7689
  ,
7592
- [, , , , , , , , , [-1]]
7593
- ],
7690
+ "9016247890"
7691
+ ], [, , , , , , , , , [-1]], [, , "70\\d{8}", , , , "7012345678"], [, , "56\\d{8}", , , , "5612345678"], "IM", 44, "00", "0", , , "([25-8]\\d{5})$|0|180020", "1624$1", , , , , [, , , , , , , , , [-1]], , "74576|(?:16|7[56])24", [, , , , , , , , , [-1]], [, , "3440[49]06\\d{3}|(?:3(?:08162|3\\d{4}|45624|7(?:0624|2299))|55\\d{4})\\d{4}", , , , "5512345678"], , , [, , , , , , , , , [-1]]],
7594
7692
  IN: [, [, , "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", , , , , , , [8, 9, 10, 11, 12, 13], [6, 7]], [
7595
7693
  ,
7596
7694
  ,
@@ -7714,7 +7812,7 @@ var _factory = (() => {
7714
7812
  IR: [, [, , "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", , , , , , , [4, 5, 6, 7, 10], [8]], [, , "(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])(?:[03-57]\\d{7}|[16]\\d{3}(?:\\d{4})?|[289]\\d{3}(?:\\d(?:\\d{3})?)?)|94(?:000[09]|(?:12\\d|30[0-2])\\d|2(?:[02689]0\\d|121)|4(?:111|40\\d))\\d{4}", , , , "2123456789", , , [6, 7, 10], [4, 5, 8]], [
7715
7813
  ,
7716
7814
  ,
7717
- "9(?:(?:0[0-5]|[13]\\d|2[0-3])\\d\\d|9(?:[0-46]\\d\\d|5(?:10|5\\d)|8(?:[12]\\d|88)|9(?:[01359]\\d|21|69|77|8[7-9])))\\d{5}",
7815
+ "9(?:(?:0[0-5]|[13]\\d|2[0-3])\\d\\d|9(?:[0-46]\\d\\d|5(?:10|5\\d)|8(?:[12]\\d|3[0-2]|88)|9(?:[01359]\\d|21|69|77|8[7-9])))\\d{5}",
7718
7816
  ,
7719
7817
  ,
7720
7818
  ,
@@ -7925,7 +8023,7 @@ var _factory = (() => {
7925
8023
  ,
7926
8024
  ,
7927
8025
  [7, 8, 9]
7928
- ], [, , "(?:1(?:0[0-8]|1\\d|2[014]|30|4[0-5])|7\\d\\d)\\d{6}", , , , "712123456", , , [9]], [, , "800[02-8]\\d{5,6}", , , , "800223456", , , [9, 10]], [, , "900[02-9]\\d{5}", , , , "900223456", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "KE", 254, "000", "0", , , "0", , , , [[, "(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], [, "(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8026
+ ], [, , "(?:1(?:0[0-8]|[18]\\d|2[014]|30|4[0-5])|7\\d\\d)\\d{6}", , , , "712123456", , , [9]], [, , "800[02-8]\\d{5,6}", , , , "800223456", , , [9, 10]], [, , "900[02-9]\\d{5}", , , , "900223456", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "KE", 254, "000", "0", , , "0", , , , [[, "(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], [, "(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7929
8027
  KG: [
7930
8028
  ,
7931
8029
  [, , "8\\d{9}|[235-9]\\d{8}", , , , , , , [9, 10], [5, 6]],
@@ -8159,7 +8257,7 @@ var _factory = (() => {
8159
8257
  ,
8160
8258
  "5002345678"
8161
8259
  ], [, , , , , , , , , [-1]], "LC", 1, "011", "1", , , "([2-8]\\d{6})$|1", "758$1", , , , , [, , , , , , , , , [-1]], , "758", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8162
- LI: [, [, , "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", , , , , , , [7, 9]], [, , "(?:2(?:01|1[27]|2[024]|3\\d|6[02-578]|96)|3(?:[24]0|33|7[0135-7]|8[048]|9[0269]))\\d{4}", , , , "2345678", , , [7]], [, , "(?:6(?:(?:4[5-9]|5\\d)\\d|6(?:[024-68]\\d|1[01]|3[7-9]|70))\\d|7(?:[37-9]\\d|42|56))\\d{4}", , , , "660234567"], [, , "8002[28]\\d\\d|80(?:05\\d|9)\\d{4}", , , , "8002222"], [
8260
+ LI: [, [, , "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", , , , , , , [7, 9]], [, , "(?:2(?:01|1[27]|2[024]|3\\d|6[02-578]|96)|3(?:[24]0|33|7[0135-7]|8[048]|9[0269]))\\d{4}", , , , "2345678", , , [7]], [, , "(?:6(?:(?:4[5-9]|5\\d)\\d|6(?:[024-68]\\d|1[01]|3[7-9]|7[02]))\\d|7(?:[37-9]\\d|42|56))\\d{4}", , , , "660234567"], [, , "8002[28]\\d\\d|80(?:05\\d|9)\\d{4}", , , , "8002222"], [
8163
8261
  ,
8164
8262
  ,
8165
8263
  "90(?:02[258]|1(?:23|3[14])|66[136])\\d\\d",
@@ -8293,7 +8391,7 @@ var _factory = (() => {
8293
8391
  MA: [, [, , "[5-8]\\d{8}", , , , , , , [9]], [, , "5(?:(?:18|4[0679]|5[03])\\d|2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-9])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9]))\\d{5}", , , , "520123456"], [
8294
8392
  ,
8295
8393
  ,
8296
- "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|5[0-5]))\\d{6}",
8394
+ "(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|3[01]|5[0-5]))\\d{6}",
8297
8395
  ,
8298
8396
  ,
8299
8397
  ,
@@ -8440,7 +8538,7 @@ var _factory = (() => {
8440
8538
  ML: [, [, , "[24-9]\\d{7}", , , , , , , [8]], [
8441
8539
  ,
8442
8540
  ,
8443
- "2(?:07[0-8]|12[67])\\d{4}|(?:2(?:02|1[4-689])|4(?:0[0-4]|4[1-59]))\\d{5}",
8541
+ "2(?:07[0-8]|12[67])\\d{4}|(?:2(?:02|1[4-689])|4(?:0[0-4]|4[1-69]))\\d{5}",
8444
8542
  ,
8445
8543
  ,
8446
8544
  ,
@@ -8866,7 +8964,7 @@ var _factory = (() => {
8866
8964
  ,
8867
8965
  [5, 6, 9]
8868
8966
  ], , , [, , , , , , , , , [-1]]],
8869
- NO: [, [, , "(?:0|[2-9]\\d{3})\\d{4}", , , , , , , [5, 8]], [, , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-46-9]|7[0-8])\\d{6}", , , , "21234567", , , [8]], [, , "[49]\\d{7}", , , , "40612345", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "NO", 47, "00", , , , , , , , [[, "(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], [
8967
+ NO: [, [, , "(?:0|[2-9]\\d{3})\\d{4}", , , , , , , [5, 8]], [, , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-46-9]|7[0-8])\\d{6}", , , , "21234567", , , [8]], [, , "(?:4[015-9]|9\\d)\\d{6}", , , , "40612345", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "NO", 47, "00", , , , , , , , [[, "(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], [
8870
8968
  ,
8871
8969
  "(\\d{2})(\\d{2})(\\d{2})(\\d{2})",
8872
8970
  "$1 $2 $3 $4",
@@ -9355,7 +9453,7 @@ var _factory = (() => {
9355
9453
  ,
9356
9454
  ,
9357
9455
  [7, 8, 9]
9358
- ], [, , "7[02369]\\d{7}", , , , "701234567", , , [9]], [, , "20\\d{4,7}", , , , "20123456", , , [6, 7, 8, 9]], [, , "649\\d{6}|99[1-59]\\d{4}(?:\\d{3})?|9(?:00|39|44)[1-8]\\d{3,6}", , , , "9001234567", , , [7, 8, 9, 10]], [, , "77[0-7]\\d{6}", , , , "771234567", , , [9]], [, , "75[1-8]\\d{6}", , , , "751234567", , , [9]], [, , , , , , , , , [-1]], "SE", 46, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1"], [, "(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1"], [
9456
+ ], [, , "7[023689]\\d{7}", , , , "701234567", , , [9]], [, , "20\\d{4,7}", , , , "20123456", , , [6, 7, 8, 9]], [, , "649\\d{6}|99[1-59]\\d{4}(?:\\d{3})?|9(?:00|39|44)[1-8]\\d{3,6}", , , , "9001234567", , , [7, 8, 9, 10]], [, , "77[0-7]\\d{6}", , , , "771234567", , , [9]], [, , "75[1-8]\\d{6}", , , , "751234567", , , [9]], [, , , , , , , , , [-1]], "SE", 46, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1"], [, "(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1"], [
9359
9457
  ,
9360
9458
  "(\\d{2})(\\d{3})(\\d{2})",
9361
9459
  "$1-$2 $3",
@@ -9430,7 +9528,7 @@ var _factory = (() => {
9430
9528
  ,
9431
9529
  ,
9432
9530
  [5, 8]
9433
- ], [, , "79\\d{6}", , , , "79123456", , , [8]], [, , "[49]\\d{7}", , , , "41234567", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "SJ", 47, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "79", [, , , , , , , , , [-1]], [, , "(?:0[235-9]|81(?:0(?:0[7-9]|1\\d)|5\\d\\d))\\d{3}", , , , "02000"], , , [, , "81[23]\\d{5}", , , , "81212345", , , [8]]],
9531
+ ], [, , "79\\d{6}", , , , "79123456", , , [8]], [, , "(?:4[015-9]|9\\d)\\d{6}", , , , "41234567", , , [8]], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "SJ", 47, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "79", [, , , , , , , , , [-1]], [, , "(?:0[235-9]|81(?:0(?:0[7-9]|1\\d)|5\\d\\d))\\d{3}", , , , "02000"], , , [, , "81[23]\\d{5}", , , , "81212345", , , [8]]],
9434
9532
  SK: [, [
9435
9533
  ,
9436
9534
  ,
@@ -9865,7 +9963,7 @@ var _factory = (() => {
9865
9963
  ,
9866
9964
  [, , "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", , , , , , , [9], [5, 6, 7]],
9867
9965
  [, , "20(?:(?:240|30[67])\\d|6(?:00[0-2]|30[0-4]))\\d{3}|(?:20(?:[017]\\d|2[5-9]|3[1-4]|5[0-4]|6[15-9])|[34]\\d{3})\\d{5}", , , , "312345678", , , , [5, 6, 7]],
9868
- [, , "7280\\d{5}|7(?:[014-8]\\d|2[01467]|3[016]|9[0-589])\\d{6}", , , , "712345678"],
9966
+ [, , "7280\\d{5}|7(?:[014-8]\\d|2[01467]|3[0167]|9[0-589])\\d{6}", , , , "712345678"],
9869
9967
  [, , "800[1-3]\\d{5}", , , , "800123456"],
9870
9968
  [, , "90[1-3]\\d{6}", , , , "901123456"],
9871
9969
  [, , , , , , , , , [-1]],
@@ -10179,24 +10277,19 @@ var _factory = (() => {
10179
10277
  ,
10180
10278
  ,
10181
10279
  [3, 4]
10182
- ], [, , "7(?:[1278]\\d|3[1-9])\\d{6}", , , , "712345678", , , [9]], [, , "80(?:[01]\\d|20|8[0-8])\\d{3}", , , , "8001234", , , [7]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "86(?:1[12]|22|30|44|55|77|8[368])\\d{6}", , , , "8686123456", , , [10]], "ZW", 263, "00", "0", , , "0", , , , [
10183
- [, "(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"],
10184
- [, "(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"],
10185
- [, "(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"],
10186
- [, "(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"],
10187
- [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"],
10188
- [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"],
10189
- [, "(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"],
10190
- [
10191
- ,
10192
- "(\\d{2})(\\d{3,5})",
10193
- "$1 $2",
10194
- ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"],
10195
- "0$1"
10196
- ],
10197
- [, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"],
10198
- [, "(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]
10199
- ], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
10280
+ ], [, , "7(?:[1278]\\d|3[1-9]|9[01])\\d{6}", , , , "712345678", , , [9]], [, , "80(?:[01]\\d|20|8[0-8])\\d{3}", , , , "8001234", , , [7]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "86(?:1[12]|22|30|44|55|77|8[368])\\d{6}", , , , "8686123456", , , [10]], "ZW", 263, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"], [, "(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"], [
10281
+ ,
10282
+ "(\\d{3})(\\d{4})",
10283
+ "$1 $2",
10284
+ ["80"],
10285
+ "0$1"
10286
+ ], [, "(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"], [, "(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"], [
10287
+ ,
10288
+ "(\\d{2})(\\d{3,5})",
10289
+ "$1 $2",
10290
+ ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"],
10291
+ "0$1"
10292
+ ], [, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"], [, "(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
10200
10293
  800: [
10201
10294
  ,
10202
10295
  [, , "(?:00|[1-9]\\d)\\d{6}", , , , , , , [8]],