phonelib 0.6.3 → 0.6.4

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.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/data/extended_data.dat +0 -0
  3. data/data/libphonenumber/README.md +1 -1
  4. data/data/libphonenumber/cpp/CMakeLists.txt +1 -1
  5. data/data/libphonenumber/cpp/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc +12 -2
  6. data/data/libphonenumber/cpp/src/phonenumbers/lite_metadata.cc +7951 -7937
  7. data/data/libphonenumber/cpp/src/phonenumbers/metadata.cc +8658 -8642
  8. data/data/libphonenumber/cpp/src/phonenumbers/phonenumberutil.cc +30 -3
  9. data/data/libphonenumber/cpp/src/phonenumbers/phonenumberutil.h +14 -5
  10. data/data/libphonenumber/cpp/src/phonenumbers/short_metadata.cc +1526 -1523
  11. data/data/libphonenumber/cpp/src/phonenumbers/test_metadata.cc +604 -590
  12. data/data/libphonenumber/cpp/test/phonenumbers/geocoding/phonenumber_offline_geocoder_test.cc +9 -0
  13. data/data/libphonenumber/cpp/test/phonenumbers/phonenumberutil_test.cc +24 -5
  14. data/data/libphonenumber/java/build.xml +0 -30
  15. data/data/libphonenumber/java/carrier/pom.xml +4 -4
  16. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/212_en +0 -0
  17. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/251_en +0 -0
  18. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/382_en +0 -0
  19. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/421_en +0 -0
  20. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_zh +0 -0
  21. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_zh_Hant +0 -0
  22. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_en +0 -0
  23. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_zh +0 -0
  24. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_zh_Hant +0 -0
  25. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/91_en +0 -0
  26. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/963_en +0 -0
  27. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/config +0 -0
  28. data/data/libphonenumber/java/demo/pom.xml +5 -5
  29. data/data/libphonenumber/java/geocoder/pom.xml +4 -4
  30. data/data/libphonenumber/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoder.java +2 -13
  31. data/data/libphonenumber/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/212_en +0 -0
  32. data/data/libphonenumber/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoderTest.java +7 -0
  33. data/data/libphonenumber/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/82_en +0 -0
  34. data/data/libphonenumber/java/internal/prefixmapper/pom.xml +3 -3
  35. data/data/libphonenumber/java/lib/protobuf-javanano-3.0.0-alpha-7.jar +0 -0
  36. data/data/libphonenumber/java/lib/protobuf-javanano-readme.md +20 -0
  37. data/data/libphonenumber/java/libphonenumber/pom.xml +6 -43
  38. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/MetadataManager.java +66 -41
  39. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/MultiFileMetadataSourceImpl.java +9 -32
  40. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java +40 -11
  41. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/SingleFileMetadataSourceImpl.java +19 -51
  42. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CO +0 -0
  43. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_EH +0 -0
  44. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ET +0 -0
  45. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IN +0 -0
  46. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_JM +0 -0
  47. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MA +0 -0
  48. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ME +0 -0
  49. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SK +0 -0
  50. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SN +0 -0
  51. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SY +0 -0
  52. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ZM +0 -0
  53. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IN +0 -0
  54. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ZA +0 -0
  55. data/data/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/PhoneNumberUtilTest.java +14 -1
  56. data/data/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CN +0 -0
  57. data/data/libphonenumber/java/pom.xml +1 -1
  58. data/data/libphonenumber/java/release_notes.txt +25 -0
  59. data/data/libphonenumber/javascript/i18n/phonenumbers/demo-compiled.js +88 -88
  60. data/data/libphonenumber/javascript/i18n/phonenumbers/metadata.js +21 -19
  61. data/data/libphonenumber/javascript/i18n/phonenumbers/metadatafortesting.js +7 -5
  62. data/data/libphonenumber/javascript/i18n/phonenumbers/metadatalite.js +21 -19
  63. data/data/libphonenumber/resources/PhoneNumberMetadata.xml +86 -48
  64. data/data/libphonenumber/resources/PhoneNumberMetadataForTesting.xml +33 -2
  65. data/data/libphonenumber/resources/ShortNumberMetadata.xml +24 -8
  66. data/data/libphonenumber/resources/carrier/en/212.txt +16 -3
  67. data/data/libphonenumber/resources/carrier/en/251.txt +1 -0
  68. data/data/libphonenumber/resources/carrier/en/382.txt +29 -0
  69. data/data/libphonenumber/resources/carrier/en/421.txt +1 -0
  70. data/data/libphonenumber/resources/carrier/en/86.txt +13 -1
  71. data/data/libphonenumber/resources/carrier/en/91.txt +1 -0
  72. data/data/libphonenumber/resources/carrier/en/963.txt +50 -0
  73. data/data/libphonenumber/resources/carrier/zh/852.txt +283 -0
  74. data/data/libphonenumber/resources/carrier/zh/86.txt +64 -0
  75. data/data/libphonenumber/resources/carrier/zh_Hant/852.txt +283 -0
  76. data/data/libphonenumber/resources/carrier/zh_Hant/86.txt +64 -0
  77. data/data/libphonenumber/resources/geocoding/en/212.txt +1 -1
  78. data/data/libphonenumber/resources/test/geocoding/en/82.txt +1 -0
  79. data/data/libphonenumber/tools/java/common/pom.xml +4 -9
  80. data/data/libphonenumber/tools/java/cpp-build/pom.xml +4 -31
  81. data/data/libphonenumber/tools/java/cpp-build/target/cpp-build-1.0-SNAPSHOT-jar-with-dependencies.jar +0 -0
  82. data/data/libphonenumber/tools/java/java-build/pom.xml +4 -9
  83. data/data/libphonenumber/tools/java/java-build/target/java-build-1.0-SNAPSHOT-jar-with-dependencies.jar +0 -0
  84. data/data/phone_data.dat +0 -0
  85. data/lib/phonelib/phone.rb +1 -1
  86. data/lib/phonelib/version.rb +1 -1
  87. metadata +18 -8
  88. data/data/libphonenumber/java/lib/com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.jar +0 -0
  89. data/data/libphonenumber/java/lib/com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.pom +0 -9
  90. data/data/libphonenumber/java/lib/com/google/protobuf/protobuf-java/maven-metadata-local.xml +0 -12
  91. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/SingleFilePhoneNumberMetadataProto +0 -0
  92. data/data/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/data/SingleFilePhoneNumberMetadataProtoForTesting +0 -0
@@ -27,6 +27,7 @@
27
27
  212606|Inwi
28
28
  212607|Inwi
29
29
  212608|Inwi
30
+ 212609|Inwi
30
31
  212610|Maroc Telecom
31
32
  212611|Maroc Telecom
32
33
  212612|Méditel
@@ -99,13 +100,25 @@
99
100
  212679|Méditel
100
101
  212680|Inwi
101
102
  212681|Inwi
103
+ 212682|Maroc Telecom
104
+ 212684|Méditel
102
105
  212687|Inwi
106
+ 212688|Méditel
107
+ 212689|Maroc Telecom
103
108
  212690|Inwi
104
- 212691|Inwi
105
- 212692|GlobalStar
109
+ 212691|Méditel
110
+ 2126921|Al Hourria Telecom
111
+ 2126922|Al Hourria Telecom
112
+ 212693|Méditel
106
113
  212694|Méditel
107
114
  212695|Inwi
108
- 212696|Inwi
115
+ 212696|Maroc Telecom
109
116
  212697|Maroc Telecom
110
117
  212698|Inwi
111
118
  212699|Inwi
119
+ 212700|Inwi
120
+ 212707|Inwi
121
+ 212761|Maroc Telecom
122
+ 212762|Maroc Telecom
123
+ 212770|Méditel
124
+ 212777|Méditel
@@ -18,3 +18,4 @@
18
18
  25194|Ethio Telecom
19
19
  25195|Ethio Telecom
20
20
  25196|Ethio Telecom
21
+ 25198|Ethio Telecom
@@ -0,0 +1,29 @@
1
+ # Copyright (C) 2016 The Libphonenumber Authors
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # We are using this instead of ITU:
16
+ # https://en.wikipedia.org/wiki/Telephone_numbers_in_Montenegro#Mobile_Telephony
17
+ #
18
+ # Mtel changed their branding to m:tel as you can see here:
19
+ # http://mtel.me
20
+ # Crnogorski Telekom brands themselves as Telekom only (http://telekom.me),
21
+ # as does Deutsche Telekom and Magyar Telekom, a group which
22
+ # Crnogorski Telekom is part of.
23
+
24
+ 38260|m:tel
25
+ 38263|Telenor
26
+ 38266|Telekom
27
+ 38267|Telekom
28
+ 38268|m:tel
29
+ 38269|Telenor
@@ -32,6 +32,7 @@
32
32
  421919|Orange
33
33
  421940|O2
34
34
  421944|O2
35
+ 421945|Orange
35
36
  421948|O2
36
37
  421949|O2
37
38
  421950|4ka of SWAN
@@ -19,7 +19,15 @@
19
19
  86131|China Unicom
20
20
  86132|China Unicom
21
21
  86133|China Telecom
22
- 86134|China Mobile
22
+ 861340|China Mobile
23
+ 861341|China Mobile
24
+ 861342|China Mobile
25
+ 861343|China Mobile
26
+ 861344|China Mobile
27
+ 861345|China Mobile
28
+ 861346|China Mobile
29
+ 861347|China Mobile
30
+ 861348|China Mobile
23
31
  86135|China Mobile
24
32
  86136|China Mobile
25
33
  86137|China Mobile
@@ -36,6 +44,10 @@
36
44
  86157|China Mobile
37
45
  86158|China Mobile
38
46
  86159|China Mobile
47
+ 861703|China Mobile
48
+ 861705|China Mobile
49
+ 861706|China Mobile
50
+ 86172|China Mobile
39
51
  86173|China Telecom
40
52
  86176|China Unicom
41
53
  86177|China Telecom
@@ -405,6 +405,7 @@
405
405
  917417|Tata Docomo
406
406
  917418|Tata Docomo
407
407
  917419|Reliance
408
+ 9174209|Airtel
408
409
  9174210|Dishnet
409
410
  9174218|Dishnet
410
411
  9174219|Dishnet
@@ -0,0 +1,50 @@
1
+ # Copyright (C) 2016 The Libphonenumber Authors
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # Taken from https://en.wikipedia.org/wiki/Telephone_numbers_in_Syria
16
+
17
+ 963922|Syriatel
18
+ 963930|Syriatel
19
+ 963931|Syriatel
20
+ 963932|Syriatel
21
+ 963933|Syriatel
22
+ 963934|Syriatel
23
+ 963935|Syriatel
24
+ 963936|Syriatel
25
+ 963937|Syriatel
26
+ 963938|Syriatel
27
+ 96394|MTN
28
+ 963950|MTN
29
+ 963952|MTN
30
+ 963954|MTN
31
+ 963955|MTN
32
+ 963956|MTN
33
+ 963957|MTN
34
+ 963958|MTN
35
+ 963959|MTN
36
+ 963962|MTN
37
+ 963964|MTN
38
+ 963965|MTN
39
+ 963966|MTN
40
+ 963967|MTN
41
+ 963968|MTN
42
+ 963969|MTN
43
+ 963988|Syriatel
44
+ 963990|Syriatel
45
+ 963991|Syriatel
46
+ 963992|Syriatel
47
+ 963993|Syriatel
48
+ 963994|Syriatel
49
+ 963998|Syriatel
50
+ 963999|Syriatel
@@ -0,0 +1,283 @@
1
+ # Copyright (C) 2016 The Libphonenumber Authors
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # Translations of en/852.txt from each carrier's wikipedia page and in
16
+ # some cases the carrier's own home page.
17
+
18
+ 852510|中国移动
19
+ 852511|新移动通讯
20
+ 852512|中国移动
21
+ 852513|中国移动
22
+ 852514|香港移动通讯
23
+ 8525149|Truphone
24
+ 852516|中国移动
25
+ 852517|中国移动
26
+ 852518|香港移动通讯
27
+ 852519|3
28
+ 852521|1O1O / One2Free
29
+ 8525230|香港移动通讯
30
+ 8525231|香港移动通讯
31
+ 8525232|香港移动通讯
32
+ 8525233|香港移动通讯
33
+ 852524|1O1O / One2Free
34
+ 852526|中国移动
35
+ 852530|中国移动
36
+ 852531|中国移动
37
+ 852532|香港移动通讯
38
+ 852533|3
39
+ 852534|中国移动
40
+ 852536|香港移动通讯
41
+ 852537|中国移动
42
+ 852538|中国联通
43
+ 852539|中国移动
44
+ 852540|新移动通讯
45
+ 852541|香港移动通讯
46
+ 852542|中国移动
47
+ 852543|1O1O / One2Free
48
+ 852544|中国移动
49
+ 852546|3
50
+ 852547|1O1O / One2Free
51
+ 852548|中国移动
52
+ 852549|中国移动
53
+ 852550|数码通
54
+ 852551|中国移动
55
+ 852552|1O1O / One2Free
56
+ 852553|中国移动
57
+ 8525540|新移动通讯
58
+ 8525541|新移动通讯
59
+ 8525542|新移动通讯
60
+ 8525543|新移动通讯
61
+ 8525544|新移动通讯
62
+ 8525545|新移动通讯
63
+ 8525546|新移动通讯
64
+ 8525547|新移动通讯
65
+ 8525548|新移动通讯
66
+ 852556|3
67
+ 852557|中国移动
68
+ 852558|香港移动通讯
69
+ 852559|数码通
70
+ 852560|中国移动
71
+ 852561|中国移动
72
+ 852562|中国移动
73
+ 852563|3
74
+ 852564|中国移动
75
+ 852566|3
76
+ 852568|1O1O / One2Free
77
+ 852569|3
78
+ 8525900|香港移动通讯
79
+ 8525901|香港移动通讯
80
+ 8525902|香港移动通讯
81
+ 8525903|香港移动通讯
82
+ 8525904|香港移动通讯
83
+ 8525905|香港移动通讯
84
+ 852591|1O1O / One2Free
85
+ 852592|1O1O / One2Free
86
+ 852593|中国移动
87
+ 852594|香港移动通讯
88
+ 852596|3
89
+ 852597|3
90
+ 852598|中国移动
91
+ 852599|1O1O / One2Free
92
+ 852601|数码通
93
+ 852602|1O1O / One2Free
94
+ 852603|1O1O / One2Free
95
+ 852604|3
96
+ 852605|1O1O / One2Free
97
+ 852606|中国移动
98
+ 852607|3
99
+ 852608|3
100
+ 852609|中国移动
101
+ 852610|3
102
+ 852611|数码通
103
+ 852612|香港移动通讯
104
+ 852613|1O1O / One2Free
105
+ 852614|1O1O / One2Free
106
+ 852615|中国移动
107
+ 852616|1O1O / One2Free
108
+ 852617|1O1O / One2Free
109
+ 852618|香港移动通讯
110
+ 852619|3
111
+ 852620|3
112
+ 852621|中国移动
113
+ 852622|中国移动
114
+ 852623|中国移动
115
+ 852624|润迅通信
116
+ 852625|香港移动通讯
117
+ 852627|3
118
+ 852628|1O1O / One2Free
119
+ 852629|1O1O / One2Free
120
+ 852630|香港移动通讯
121
+ 852631|3
122
+ 852632|数码通
123
+ 852633|3
124
+ 852634|3
125
+ 852635|中国移动
126
+ 852637|1O1O / One2Free
127
+ 852638|香港移动通讯
128
+ 852639|1O1O / One2Free
129
+ 852640|3
130
+ 852641|1O1O / One2Free
131
+ 852642|1O1O / One2Free
132
+ 852643|中国移动
133
+ 852644|香港移动通讯
134
+ 8526450|中信国际电讯
135
+ 85264510|中信国际电讯
136
+ 85264511|中信国际电讯
137
+ 8526452|中信国际电讯
138
+ 85264535|中信国际电讯
139
+ 85264536|中信国际电讯
140
+ 85264537|中信国际电讯
141
+ 85264538|中信国际电讯
142
+ 85264539|中信国际电讯
143
+ 8526454|中信国际电讯
144
+ 8526455|中信国际电讯
145
+ 8526456|中信国际电讯
146
+ 8526457|中信国际电讯
147
+ 8526458|中信国际电讯
148
+ 8526459|中信国际电讯
149
+ 852646|数码通
150
+ 852647|3
151
+ 852648|中国移动
152
+ 852649|香港移动通讯
153
+ 852650|3
154
+ 852651|中港通
155
+ 852652|中国联通
156
+ 852653|1O1O / One2Free
157
+ 852654|1O1O / One2Free
158
+ 852655|中国联通
159
+ 852656|中国联通
160
+ 852657|中国移动
161
+ 852658|中国移动
162
+ 852659|1O1O / One2Free
163
+ 852660|香港移动通讯
164
+ 852661|中国联通
165
+ 852662|香港移动通讯
166
+ 852663|中国联通
167
+ 852664|中国移动
168
+ 852665|1O1O / One2Free
169
+ 852667|中国移动
170
+ 852668|3
171
+ 852669|香港移动通讯
172
+ 852670|中国移动
173
+ 852671|1O1O / One2Free
174
+ 852672|中国联通
175
+ 852673|中国移动
176
+ 852674|中国移动
177
+ 852675|1O1O / One2Free
178
+ 852676|中国移动
179
+ 852677|1O1O / One2Free
180
+ 852679|3
181
+ 852680|香港移动通讯
182
+ 852681|中国联通
183
+ 852682|1O1O / One2Free
184
+ 852683|润迅通信
185
+ 852684|中国移动
186
+ 852685|中国移动
187
+ 852687|中国移动
188
+ 852688|中国联通
189
+ 852689|1O1O / One2Free
190
+ 852690|3
191
+ 852691|中国移动
192
+ 852692|香港移动通讯
193
+ 852693|中国移动
194
+ 852694|中国移动
195
+ 852695|中国移动
196
+ 852696|润迅通信
197
+ 852697|1O1O / One2Free
198
+ 852698|润迅通信
199
+ 852699|中国移动
200
+ 852901|数码通
201
+ 852902|1O1O / One2Free
202
+ 852903|1O1O / One2Free
203
+ 852904|3
204
+ 852905|润迅通信
205
+ 852906|中国移动
206
+ 852907|香港移动通讯
207
+ 852908|1O1O / One2Free
208
+ 852909|1O1O / One2Free
209
+ 852910|1O1O / One2Free
210
+ 852912|3
211
+ 852913|数码通
212
+ 852914|中国移动
213
+ 852915|1O1O / One2Free
214
+ 852916|数码通
215
+ 852917|数码通
216
+ 852918|1O1O / One2Free
217
+ 852919|1O1O / One2Free
218
+ 852920|中国移动
219
+ 852921|1O1O / One2Free
220
+ 852922|数码通
221
+ 852923|香港移动通讯
222
+ 852924|数码通
223
+ 852925|1O1O / One2Free
224
+ 852926|1O1O / One2Free
225
+ 852927|香港移动通讯
226
+ 852928|3
227
+ 852930|1O1O / One2Free
228
+ 852931|数码通
229
+ 852932|3
230
+ 852933|1O1O / One2Free
231
+ 852934|中国移动
232
+ 852935|3
233
+ 852936|3
234
+ 852937|3
235
+ 852938|数码通
236
+ 852940|1O1O / One2Free
237
+ 852941|3
238
+ 852942|3
239
+ 852943|数码通
240
+ 852944|数码通
241
+ 852945|数码通
242
+ 852946|1O1O / One2Free
243
+ 852947|3
244
+ 852948|3
245
+ 852949|3
246
+ 852950|3
247
+ 852951|中国移动
248
+ 852952|香港移动通讯
249
+ 852953|1O1O / One2Free
250
+ 852954|数码通
251
+ 852955|1O1O / One2Free
252
+ 852956|中国联通
253
+ 852957|3
254
+ 852958|中国移动
255
+ 852960|中国移动
256
+ 852961|1O1O / One2Free
257
+ 852962|1O1O / One2Free
258
+ 852963|3
259
+ 852964|香港移动通讯
260
+ 852965|1O1O / One2Free
261
+ 852966|数码通
262
+ 852967|3
263
+ 852968|数码通
264
+ 852969|中港通
265
+ 852970|3
266
+ 852971|中国移动
267
+ 852972|数码通
268
+ 852973|数码通
269
+ 852974|3
270
+ 852975|3
271
+ 852976|1O1O / One2Free
272
+ 852977|香港移动通讯
273
+ 852978|1O1O / One2Free
274
+ 852979|中国移动
275
+ 852980|香港移动通讯
276
+ 852981|3
277
+ 852982|3
278
+ 852983|3
279
+ 852984|数码通
280
+ 852985|数码通
281
+ 852986|数码通
282
+ 852987|1O1O / One2Free
283
+ 852988|1O1O / One2Free