Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit aa21158

Browse files
committedMar 25, 2024
Merge metadata changes from upstream 8.13.33
Includes changes in resources/ up to and including upstream commit 5e620bb2637f: "[maven-release-plugin] prepare release v8.13.33"
1 parent 92c242c commit aa21158

File tree

12 files changed

+55
-32
lines changed

12 files changed

+55
-32
lines changed
 

‎resources/PhoneNumberMetadata.xml

+37-25
Original file line numberDiff line numberDiff line change
@@ -5394,7 +5394,7 @@
53945394
[06]7|
53955395
19|
53965396
25|
5397-
73
5397+
7[39]
53985398
)|
53995399
90[25]
54005400
)[2-9]\d{6}
@@ -5452,7 +5452,7 @@
54525452
[06]7|
54535453
19|
54545454
25|
5455-
73
5455+
7[39]
54565456
)|
54575457
90[25]
54585458
)[2-9]\d{6}
@@ -11120,16 +11120,19 @@
1112011120
)\d\d|
1112111121
(?:
1112211122
5(?:
11123-
00(?:
11124-
0\d|
11125-
11|
11126-
22|
11127-
33|
11128-
44|
11129-
5[05]|
11130-
77|
11131-
88|
11132-
9[09]
11123+
0(?:
11124+
0(?:
11125+
0\d|
11126+
11|
11127+
22|
11128+
33|
11129+
44|
11130+
5[05]|
11131+
77|
11132+
88|
11133+
9[09]
11134+
)|
11135+
111
1113311136
)|
1113411137
1(?:
1113511138
1(?:
@@ -13592,7 +13595,7 @@
1359213595
7(?:
1359313596
38(?:
1359413597
0\d|
13595-
5[09]|
13598+
5[019]|
1359613599
88
1359713600
)|
1359813601
8(?:
@@ -18777,11 +18780,11 @@
1877718780
</territory>
1877818781

1877918782
<!-- Lithuania (LT) -->
18780-
<!-- Note that Lithuania is switching to a national prefix of 0. We support
18781-
both 0 and 8 when parsing until this switch is complete. -->
18783+
<!-- Note that Lithuania switched to national prefix 0. The former prefix
18784+
8 will continue to be operational until 28 February 2025. -->
1878218785
<!-- http://www.itu.int/oth/T020200007C/en -->
1878318786
<!-- National Prefix formatting rule from http://www.yellowpages.lt -->
18784-
<territory id="LT" countryCode="370" internationalPrefix="00" nationalPrefix="8"
18787+
<territory id="LT" countryCode="370" internationalPrefix="00" nationalPrefix="0"
1878518788
nationalPrefixForParsing="[08]" mobileNumberPortableRegion="true">
1878618789
<availableFormats>
1878718790
<!-- 1 digit area code (fixed line only) -->
@@ -27781,12 +27784,17 @@
2778127784
<format>$1 $2-$3-$4</format>
2778227785
</numberFormat>
2778327786
<numberFormat pattern="(\d{2})(\d{6})" nationalPrefixFormattingRule="$NP $FG">
27784-
<leadingDigits>6</leadingDigits>
27787+
<leadingDigits>[67]</leadingDigits>
2778527788
<format>$1 $2</format>
2778627789
</numberFormat>
2778727790
</availableFormats>
2778827791
<generalDesc>
27789-
<nationalNumberPattern>[1-6]\d{7}</nationalNumberPattern>
27792+
<nationalNumberPattern>
27793+
(?:
27794+
[1-6]\d|
27795+
71
27796+
)\d{6}
27797+
</nationalNumberPattern>
2779027798
</generalDesc>
2779127799
<!-- Additional prefixes from the wikipedia page. -->
2779227800
<fixedLine>
@@ -27829,7 +27837,12 @@
2782927837
<mobile>
2783027838
<possibleLengths national="8"/>
2783127839
<exampleNumber>66123456</exampleNumber>
27832-
<nationalNumberPattern>6\d{7}</nationalNumberPattern>
27840+
<nationalNumberPattern>
27841+
(?:
27842+
6\d|
27843+
71
27844+
)\d{6}
27845+
</nationalNumberPattern>
2783327846
</mobile>
2783427847
</territory>
2783527848

@@ -28644,10 +28657,9 @@
2864428657
<possibleLengths national="9"/>
2864528658
<exampleNumber>621234567</exampleNumber>
2864628659
<nationalNumberPattern>
28647-
77[2-9]\d{6}|
2864828660
(?:
2864928661
6[125-9]|
28650-
7[13-689]
28662+
7[13-9]
2865128663
)\d{7}
2865228664
</nationalNumberPattern>
2865328665
</mobile>
@@ -28810,7 +28822,7 @@
2881028822
39|
2881128823
50|
2881228824
6[36-8]|
28813-
7[1-3]|
28825+
7[1-357]|
2881428826
9[1-9]
2881528827
)\d{7}
2881628828
</nationalNumberPattern>
@@ -28919,7 +28931,7 @@
2891928931
[015-8]\d|
2892028932
20|
2892128933
36|
28922-
4[0-4]|
28934+
4[0-5]|
2892328935
9[89]
2892428936
)\d{6}
2892528937
</nationalNumberPattern>
@@ -29002,7 +29014,7 @@
2900229014
0[1-35-9]|
2900329015
1[02-9]|
2900429016
2[03-57-9]|
29005-
3[149]|
29017+
3[1459]|
2900629018
4[08]|
2900729019
5[1-46]|
2900829020
6[0279]|
@@ -29108,7 +29120,7 @@
2910829120
0[1-35-9]|
2910929121
1[02-9]|
2911029122
2[03-57-9]|
29111-
3[149]|
29123+
3[1459]|
2911229124
4[08]|
2911329125
5[1-46]|
2911429126
6[0279]|

‎resources/carrier/en/255.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
25574|Vodacom
2727
25575|Vodacom
2828
25576|Vodacom
29-
25577|Zantel
29+
25577|tiGO
3030
25578|Airtel
3131
25579|Benson Informatics

‎resources/carrier/en/256.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
256726|Tangerine
66
256728|Talkio
77
25673|Hamilton Telecom
8-
25674|Sure Telecom
8+
25674|Airtel
99
25675|Airtel
1010
25676|MTN
1111
25677|MTN

‎resources/carrier/en/355.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
# services to its subscribers on 01.01.2018. The existing subscribers are
1717
# advised to port to other networks. http://www.plus.al/
1818

19-
35567|ALBtelecom
20-
35568|Telekom
19+
35567|One
20+
35568|One
2121
35569|Vodafone

‎resources/carrier/en/376.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
3763|Mobiland
16-
3765|Mobiland
17-
3766|Mobiland
15+
3763|Andorra Telecom
16+
3765|Andorra Telecom
17+
3766|Andorra Telecom

‎resources/carrier/en/380.txt

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
38067|Kyivstar
2424
38068|Kyivstar
2525
38073|lifecell
26+
38075|Vodafone
27+
38077|Kyivstar
2628
38091|TriMob
2729
38092|PEOPLEnet
2830
38093|lifecell

‎resources/carrier/en/972.txt

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
9725543|Maskyoo
3232
9725544|Cellran Cellular Communications
3333
97255440|Merkaziya
34+
97255442|Xphone
3435
9725550|Annatel
3536
9725551|Annatel
3637
9725552|Annatel

‎resources/carrier/en/993.txt

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@
2121
99367|MTS (BARASH Communication)
2222
99368|MTS (BARASH Communication)
2323
99369|MTS (BARASH Communication)
24+
9937|TM-Cell

‎resources/carrier/en/995.txt

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
9955008|Silknet
3838
99550090|Cellfie
3939
99550099|Silknet
40+
995501|Cellfie
4041
9955050|Silknet
4142
9955055|MagtiCom
4243
995510|Silknet

‎resources/carrier/uk/380.txt

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
38067|Київстар
2525
38068|Київстар
2626
38073|lifecell
27+
38075|Vodafone Україна
28+
38077|Київстар
2729
38091|ТриМоб
2830
38092|PEOPLEnet
2931
38093|lifecell

‎resources/geocoding/en/1.txt

+2
Original file line numberDiff line numberDiff line change
@@ -2334,6 +2334,7 @@
23342334
1231995|Traverse City, MI
23352335
1234|Ohio
23362336
1234678|Akron, OH
2337+
1235|Missouri
23372338
1236|British Columbia
23382339
1239|Florida
23392340
1239200|Naples, FL
@@ -27963,6 +27964,7 @@
2796327964
1873|Quebec
2796427965
1876957|Negril
2796527966
1878|Pennsylvania
27967+
1879|Newfoundland and Labrador
2796627968
1901|Tennessee
2796727969
1901213|Memphis, TN
2796827970
1901226|Memphis, TN

‎resources/timezones/map_data.txt

+2
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,7 @@
465465
1229|America/New_York
466466
1231|America/New_York
467467
1234|America/New_York
468+
1235|America/Chicago
468469
1236|America/Vancouver
469470
1239|America/New_York
470471
1240|America/New_York
@@ -1862,6 +1863,7 @@
18621863
1873|America/Toronto
18631864
1876|America/Jamaica
18641865
1878|America/New_York
1866+
1879|America/Puerto_Rico&America/St_Johns
18651867
1901|America/Chicago
18661868
1902|America/Halifax
18671869
1903|America/Chicago

0 commit comments

Comments
 (0)
Please sign in to comment.