tzinfo 1.2.6 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +1 -1
- data/.yardopts +3 -0
- data/CHANGES.md +482 -380
- data/LICENSE +12 -12
- data/README.md +368 -114
- data/lib/tzinfo.rb +64 -29
- data/lib/tzinfo/country.rb +141 -129
- data/lib/tzinfo/country_timezone.rb +70 -112
- data/lib/tzinfo/data_source.rb +389 -144
- data/lib/tzinfo/data_sources.rb +8 -0
- data/lib/tzinfo/data_sources/constant_offset_data_timezone_info.rb +56 -0
- data/lib/tzinfo/data_sources/country_info.rb +42 -0
- data/lib/tzinfo/data_sources/data_timezone_info.rb +91 -0
- data/lib/tzinfo/data_sources/linked_timezone_info.rb +33 -0
- data/lib/tzinfo/data_sources/ruby_data_source.rb +143 -0
- data/lib/tzinfo/data_sources/timezone_info.rb +47 -0
- data/lib/tzinfo/data_sources/transitions_data_timezone_info.rb +214 -0
- data/lib/tzinfo/data_sources/zoneinfo_data_source.rb +575 -0
- data/lib/tzinfo/data_sources/zoneinfo_reader.rb +286 -0
- data/lib/tzinfo/data_timezone.rb +33 -47
- data/lib/tzinfo/datetime_with_offset.rb +153 -0
- data/lib/tzinfo/format1.rb +10 -0
- data/lib/tzinfo/format1/country_definer.rb +17 -0
- data/lib/tzinfo/format1/country_index_definition.rb +64 -0
- data/lib/tzinfo/format1/timezone_definer.rb +64 -0
- data/lib/tzinfo/format1/timezone_definition.rb +39 -0
- data/lib/tzinfo/format1/timezone_index_definition.rb +77 -0
- data/lib/tzinfo/format2.rb +10 -0
- data/lib/tzinfo/format2/country_definer.rb +68 -0
- data/lib/tzinfo/format2/country_index_definer.rb +68 -0
- data/lib/tzinfo/format2/country_index_definition.rb +46 -0
- data/lib/tzinfo/format2/timezone_definer.rb +94 -0
- data/lib/tzinfo/format2/timezone_definition.rb +73 -0
- data/lib/tzinfo/format2/timezone_index_definer.rb +45 -0
- data/lib/tzinfo/format2/timezone_index_definition.rb +55 -0
- data/lib/tzinfo/info_timezone.rb +26 -21
- data/lib/tzinfo/linked_timezone.rb +33 -52
- data/lib/tzinfo/offset_timezone_period.rb +42 -0
- data/lib/tzinfo/string_deduper.rb +118 -0
- data/lib/tzinfo/time_with_offset.rb +128 -0
- data/lib/tzinfo/timestamp.rb +548 -0
- data/lib/tzinfo/timestamp_with_offset.rb +85 -0
- data/lib/tzinfo/timezone.rb +989 -502
- data/lib/tzinfo/timezone_offset.rb +84 -74
- data/lib/tzinfo/timezone_period.rb +151 -217
- data/lib/tzinfo/timezone_proxy.rb +70 -79
- data/lib/tzinfo/timezone_transition.rb +77 -109
- data/lib/tzinfo/transitions_timezone_period.rb +63 -0
- data/lib/tzinfo/untaint_ext.rb +18 -0
- data/lib/tzinfo/version.rb +7 -0
- data/lib/tzinfo/with_offset.rb +61 -0
- metadata +43 -99
- metadata.gz.sig +0 -0
- data/Rakefile +0 -107
- data/lib/tzinfo/country_index_definition.rb +0 -31
- data/lib/tzinfo/country_info.rb +0 -42
- data/lib/tzinfo/data_timezone_info.rb +0 -55
- data/lib/tzinfo/linked_timezone_info.rb +0 -26
- data/lib/tzinfo/offset_rationals.rb +0 -77
- data/lib/tzinfo/ruby_core_support.rb +0 -176
- data/lib/tzinfo/ruby_country_info.rb +0 -74
- data/lib/tzinfo/ruby_data_source.rb +0 -138
- data/lib/tzinfo/time_or_datetime.rb +0 -340
- data/lib/tzinfo/timezone_definition.rb +0 -36
- data/lib/tzinfo/timezone_index_definition.rb +0 -54
- data/lib/tzinfo/timezone_info.rb +0 -30
- data/lib/tzinfo/timezone_transition_definition.rb +0 -104
- data/lib/tzinfo/transition_data_timezone_info.rb +0 -274
- data/lib/tzinfo/zoneinfo_country_info.rb +0 -37
- data/lib/tzinfo/zoneinfo_data_source.rb +0 -496
- data/lib/tzinfo/zoneinfo_timezone_info.rb +0 -298
- data/test/tc_country.rb +0 -236
- data/test/tc_country_index_definition.rb +0 -69
- data/test/tc_country_info.rb +0 -16
- data/test/tc_country_timezone.rb +0 -173
- data/test/tc_data_source.rb +0 -218
- data/test/tc_data_timezone.rb +0 -99
- data/test/tc_data_timezone_info.rb +0 -18
- data/test/tc_info_timezone.rb +0 -34
- data/test/tc_linked_timezone.rb +0 -155
- data/test/tc_linked_timezone_info.rb +0 -23
- data/test/tc_offset_rationals.rb +0 -23
- data/test/tc_ruby_core_support.rb +0 -168
- data/test/tc_ruby_country_info.rb +0 -110
- data/test/tc_ruby_data_source.rb +0 -165
- data/test/tc_time_or_datetime.rb +0 -660
- data/test/tc_timezone.rb +0 -1359
- data/test/tc_timezone_definition.rb +0 -113
- data/test/tc_timezone_index_definition.rb +0 -73
- data/test/tc_timezone_info.rb +0 -11
- data/test/tc_timezone_london.rb +0 -143
- data/test/tc_timezone_melbourne.rb +0 -142
- data/test/tc_timezone_new_york.rb +0 -142
- data/test/tc_timezone_offset.rb +0 -126
- data/test/tc_timezone_period.rb +0 -555
- data/test/tc_timezone_proxy.rb +0 -136
- data/test/tc_timezone_transition.rb +0 -366
- data/test/tc_timezone_transition_definition.rb +0 -295
- data/test/tc_timezone_utc.rb +0 -27
- data/test/tc_transition_data_timezone_info.rb +0 -433
- data/test/tc_zoneinfo_country_info.rb +0 -78
- data/test/tc_zoneinfo_data_source.rb +0 -1204
- data/test/tc_zoneinfo_timezone_info.rb +0 -1234
- data/test/test_utils.rb +0 -188
- data/test/ts_all.rb +0 -7
- data/test/ts_all_ruby.rb +0 -5
- data/test/ts_all_zoneinfo.rb +0 -9
- data/test/tzinfo-data/tzinfo/data.rb +0 -8
- data/test/tzinfo-data/tzinfo/data/definitions/America/Argentina/Buenos_Aires.rb +0 -89
- data/test/tzinfo-data/tzinfo/data/definitions/America/New_York.rb +0 -315
- data/test/tzinfo-data/tzinfo/data/definitions/Australia/Melbourne.rb +0 -218
- data/test/tzinfo-data/tzinfo/data/definitions/EST.rb +0 -19
- data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__m__1.rb +0 -21
- data/test/tzinfo-data/tzinfo/data/definitions/Etc/GMT__p__1.rb +0 -21
- data/test/tzinfo-data/tzinfo/data/definitions/Etc/UTC.rb +0 -21
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Amsterdam.rb +0 -261
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Andorra.rb +0 -186
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/London.rb +0 -321
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Paris.rb +0 -265
- data/test/tzinfo-data/tzinfo/data/definitions/Europe/Prague.rb +0 -220
- data/test/tzinfo-data/tzinfo/data/definitions/UTC.rb +0 -16
- data/test/tzinfo-data/tzinfo/data/indexes/countries.rb +0 -927
- data/test/tzinfo-data/tzinfo/data/indexes/timezones.rb +0 -596
- data/test/tzinfo-data/tzinfo/data/version.rb +0 -14
- data/test/zoneinfo/America/Argentina/Buenos_Aires +0 -0
- data/test/zoneinfo/America/New_York +0 -0
- data/test/zoneinfo/Australia/Melbourne +0 -0
- data/test/zoneinfo/EST +0 -0
- data/test/zoneinfo/Etc/UTC +0 -0
- data/test/zoneinfo/Europe/Amsterdam +0 -0
- data/test/zoneinfo/Europe/Andorra +0 -0
- data/test/zoneinfo/Europe/London +0 -0
- data/test/zoneinfo/Europe/Paris +0 -0
- data/test/zoneinfo/Europe/Prague +0 -0
- data/test/zoneinfo/Factory +0 -0
- data/test/zoneinfo/iso3166.tab +0 -275
- data/test/zoneinfo/leapseconds +0 -61
- data/test/zoneinfo/posix/Europe/London +0 -0
- data/test/zoneinfo/posixrules +0 -0
- data/test/zoneinfo/right/Europe/London +0 -0
- data/test/zoneinfo/zone.tab +0 -439
- data/test/zoneinfo/zone1970.tab +0 -369
- data/tzinfo.gemspec +0 -21
@@ -1,596 +0,0 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
|
3
|
-
# This file contains data derived from the IANA Time Zone Database
|
4
|
-
# (http://www.iana.org/time-zones).
|
5
|
-
|
6
|
-
module TZInfo
|
7
|
-
module Data
|
8
|
-
module Indexes
|
9
|
-
module Timezones
|
10
|
-
include TimezoneIndexDefinition
|
11
|
-
|
12
|
-
timezone 'Africa/Abidjan'
|
13
|
-
timezone 'Africa/Accra'
|
14
|
-
timezone 'Africa/Addis_Ababa'
|
15
|
-
timezone 'Africa/Algiers'
|
16
|
-
timezone 'Africa/Asmara'
|
17
|
-
linked_timezone 'Africa/Asmera'
|
18
|
-
linked_timezone 'Africa/Bamako'
|
19
|
-
timezone 'Africa/Bangui'
|
20
|
-
linked_timezone 'Africa/Banjul'
|
21
|
-
timezone 'Africa/Bissau'
|
22
|
-
timezone 'Africa/Blantyre'
|
23
|
-
timezone 'Africa/Brazzaville'
|
24
|
-
timezone 'Africa/Bujumbura'
|
25
|
-
timezone 'Africa/Cairo'
|
26
|
-
timezone 'Africa/Casablanca'
|
27
|
-
timezone 'Africa/Ceuta'
|
28
|
-
linked_timezone 'Africa/Conakry'
|
29
|
-
linked_timezone 'Africa/Dakar'
|
30
|
-
timezone 'Africa/Dar_es_Salaam'
|
31
|
-
timezone 'Africa/Djibouti'
|
32
|
-
timezone 'Africa/Douala'
|
33
|
-
timezone 'Africa/El_Aaiun'
|
34
|
-
linked_timezone 'Africa/Freetown'
|
35
|
-
timezone 'Africa/Gaborone'
|
36
|
-
timezone 'Africa/Harare'
|
37
|
-
timezone 'Africa/Johannesburg'
|
38
|
-
linked_timezone 'Africa/Juba'
|
39
|
-
timezone 'Africa/Kampala'
|
40
|
-
timezone 'Africa/Khartoum'
|
41
|
-
timezone 'Africa/Kigali'
|
42
|
-
timezone 'Africa/Kinshasa'
|
43
|
-
timezone 'Africa/Lagos'
|
44
|
-
timezone 'Africa/Libreville'
|
45
|
-
linked_timezone 'Africa/Lome'
|
46
|
-
timezone 'Africa/Luanda'
|
47
|
-
timezone 'Africa/Lubumbashi'
|
48
|
-
timezone 'Africa/Lusaka'
|
49
|
-
timezone 'Africa/Malabo'
|
50
|
-
timezone 'Africa/Maputo'
|
51
|
-
timezone 'Africa/Maseru'
|
52
|
-
timezone 'Africa/Mbabane'
|
53
|
-
timezone 'Africa/Mogadishu'
|
54
|
-
timezone 'Africa/Monrovia'
|
55
|
-
timezone 'Africa/Nairobi'
|
56
|
-
timezone 'Africa/Ndjamena'
|
57
|
-
timezone 'Africa/Niamey'
|
58
|
-
linked_timezone 'Africa/Nouakchott'
|
59
|
-
linked_timezone 'Africa/Ouagadougou'
|
60
|
-
timezone 'Africa/Porto-Novo'
|
61
|
-
linked_timezone 'Africa/Sao_Tome'
|
62
|
-
linked_timezone 'Africa/Timbuktu'
|
63
|
-
timezone 'Africa/Tripoli'
|
64
|
-
timezone 'Africa/Tunis'
|
65
|
-
timezone 'Africa/Windhoek'
|
66
|
-
timezone 'America/Adak'
|
67
|
-
timezone 'America/Anchorage'
|
68
|
-
linked_timezone 'America/Anguilla'
|
69
|
-
timezone 'America/Antigua'
|
70
|
-
timezone 'America/Araguaina'
|
71
|
-
timezone 'America/Argentina/Buenos_Aires'
|
72
|
-
timezone 'America/Argentina/Catamarca'
|
73
|
-
linked_timezone 'America/Argentina/ComodRivadavia'
|
74
|
-
timezone 'America/Argentina/Cordoba'
|
75
|
-
timezone 'America/Argentina/Jujuy'
|
76
|
-
timezone 'America/Argentina/La_Rioja'
|
77
|
-
timezone 'America/Argentina/Mendoza'
|
78
|
-
timezone 'America/Argentina/Rio_Gallegos'
|
79
|
-
timezone 'America/Argentina/Salta'
|
80
|
-
timezone 'America/Argentina/San_Juan'
|
81
|
-
timezone 'America/Argentina/San_Luis'
|
82
|
-
timezone 'America/Argentina/Tucuman'
|
83
|
-
timezone 'America/Argentina/Ushuaia'
|
84
|
-
linked_timezone 'America/Aruba'
|
85
|
-
timezone 'America/Asuncion'
|
86
|
-
timezone 'America/Atikokan'
|
87
|
-
linked_timezone 'America/Atka'
|
88
|
-
timezone 'America/Bahia'
|
89
|
-
timezone 'America/Bahia_Banderas'
|
90
|
-
timezone 'America/Barbados'
|
91
|
-
timezone 'America/Belem'
|
92
|
-
timezone 'America/Belize'
|
93
|
-
timezone 'America/Blanc-Sablon'
|
94
|
-
timezone 'America/Boa_Vista'
|
95
|
-
timezone 'America/Bogota'
|
96
|
-
timezone 'America/Boise'
|
97
|
-
linked_timezone 'America/Buenos_Aires'
|
98
|
-
timezone 'America/Cambridge_Bay'
|
99
|
-
timezone 'America/Campo_Grande'
|
100
|
-
timezone 'America/Cancun'
|
101
|
-
timezone 'America/Caracas'
|
102
|
-
linked_timezone 'America/Catamarca'
|
103
|
-
timezone 'America/Cayenne'
|
104
|
-
timezone 'America/Cayman'
|
105
|
-
timezone 'America/Chicago'
|
106
|
-
timezone 'America/Chihuahua'
|
107
|
-
linked_timezone 'America/Coral_Harbour'
|
108
|
-
linked_timezone 'America/Cordoba'
|
109
|
-
timezone 'America/Costa_Rica'
|
110
|
-
timezone 'America/Creston'
|
111
|
-
timezone 'America/Cuiaba'
|
112
|
-
timezone 'America/Curacao'
|
113
|
-
timezone 'America/Danmarkshavn'
|
114
|
-
timezone 'America/Dawson'
|
115
|
-
timezone 'America/Dawson_Creek'
|
116
|
-
timezone 'America/Denver'
|
117
|
-
timezone 'America/Detroit'
|
118
|
-
linked_timezone 'America/Dominica'
|
119
|
-
timezone 'America/Edmonton'
|
120
|
-
timezone 'America/Eirunepe'
|
121
|
-
timezone 'America/El_Salvador'
|
122
|
-
linked_timezone 'America/Ensenada'
|
123
|
-
linked_timezone 'America/Fort_Wayne'
|
124
|
-
timezone 'America/Fortaleza'
|
125
|
-
timezone 'America/Glace_Bay'
|
126
|
-
timezone 'America/Godthab'
|
127
|
-
timezone 'America/Goose_Bay'
|
128
|
-
timezone 'America/Grand_Turk'
|
129
|
-
linked_timezone 'America/Grenada'
|
130
|
-
linked_timezone 'America/Guadeloupe'
|
131
|
-
timezone 'America/Guatemala'
|
132
|
-
timezone 'America/Guayaquil'
|
133
|
-
timezone 'America/Guyana'
|
134
|
-
timezone 'America/Halifax'
|
135
|
-
timezone 'America/Havana'
|
136
|
-
timezone 'America/Hermosillo'
|
137
|
-
timezone 'America/Indiana/Indianapolis'
|
138
|
-
timezone 'America/Indiana/Knox'
|
139
|
-
timezone 'America/Indiana/Marengo'
|
140
|
-
timezone 'America/Indiana/Petersburg'
|
141
|
-
timezone 'America/Indiana/Tell_City'
|
142
|
-
timezone 'America/Indiana/Vevay'
|
143
|
-
timezone 'America/Indiana/Vincennes'
|
144
|
-
timezone 'America/Indiana/Winamac'
|
145
|
-
linked_timezone 'America/Indianapolis'
|
146
|
-
timezone 'America/Inuvik'
|
147
|
-
timezone 'America/Iqaluit'
|
148
|
-
timezone 'America/Jamaica'
|
149
|
-
linked_timezone 'America/Jujuy'
|
150
|
-
timezone 'America/Juneau'
|
151
|
-
timezone 'America/Kentucky/Louisville'
|
152
|
-
timezone 'America/Kentucky/Monticello'
|
153
|
-
linked_timezone 'America/Knox_IN'
|
154
|
-
linked_timezone 'America/Kralendijk'
|
155
|
-
timezone 'America/La_Paz'
|
156
|
-
timezone 'America/Lima'
|
157
|
-
timezone 'America/Los_Angeles'
|
158
|
-
linked_timezone 'America/Louisville'
|
159
|
-
linked_timezone 'America/Lower_Princes'
|
160
|
-
timezone 'America/Maceio'
|
161
|
-
timezone 'America/Managua'
|
162
|
-
timezone 'America/Manaus'
|
163
|
-
linked_timezone 'America/Marigot'
|
164
|
-
timezone 'America/Martinique'
|
165
|
-
timezone 'America/Matamoros'
|
166
|
-
timezone 'America/Mazatlan'
|
167
|
-
linked_timezone 'America/Mendoza'
|
168
|
-
timezone 'America/Menominee'
|
169
|
-
timezone 'America/Merida'
|
170
|
-
timezone 'America/Metlakatla'
|
171
|
-
timezone 'America/Mexico_City'
|
172
|
-
timezone 'America/Miquelon'
|
173
|
-
timezone 'America/Moncton'
|
174
|
-
timezone 'America/Monterrey'
|
175
|
-
timezone 'America/Montevideo'
|
176
|
-
timezone 'America/Montreal'
|
177
|
-
linked_timezone 'America/Montserrat'
|
178
|
-
timezone 'America/Nassau'
|
179
|
-
timezone 'America/New_York'
|
180
|
-
timezone 'America/Nipigon'
|
181
|
-
timezone 'America/Nome'
|
182
|
-
timezone 'America/Noronha'
|
183
|
-
timezone 'America/North_Dakota/Beulah'
|
184
|
-
timezone 'America/North_Dakota/Center'
|
185
|
-
timezone 'America/North_Dakota/New_Salem'
|
186
|
-
timezone 'America/Ojinaga'
|
187
|
-
timezone 'America/Panama'
|
188
|
-
timezone 'America/Pangnirtung'
|
189
|
-
timezone 'America/Paramaribo'
|
190
|
-
timezone 'America/Phoenix'
|
191
|
-
timezone 'America/Port-au-Prince'
|
192
|
-
timezone 'America/Port_of_Spain'
|
193
|
-
linked_timezone 'America/Porto_Acre'
|
194
|
-
timezone 'America/Porto_Velho'
|
195
|
-
timezone 'America/Puerto_Rico'
|
196
|
-
timezone 'America/Rainy_River'
|
197
|
-
timezone 'America/Rankin_Inlet'
|
198
|
-
timezone 'America/Recife'
|
199
|
-
timezone 'America/Regina'
|
200
|
-
timezone 'America/Resolute'
|
201
|
-
timezone 'America/Rio_Branco'
|
202
|
-
linked_timezone 'America/Rosario'
|
203
|
-
timezone 'America/Santa_Isabel'
|
204
|
-
timezone 'America/Santarem'
|
205
|
-
timezone 'America/Santiago'
|
206
|
-
timezone 'America/Santo_Domingo'
|
207
|
-
timezone 'America/Sao_Paulo'
|
208
|
-
timezone 'America/Scoresbysund'
|
209
|
-
linked_timezone 'America/Shiprock'
|
210
|
-
timezone 'America/Sitka'
|
211
|
-
linked_timezone 'America/St_Barthelemy'
|
212
|
-
timezone 'America/St_Johns'
|
213
|
-
linked_timezone 'America/St_Kitts'
|
214
|
-
linked_timezone 'America/St_Lucia'
|
215
|
-
linked_timezone 'America/St_Thomas'
|
216
|
-
linked_timezone 'America/St_Vincent'
|
217
|
-
timezone 'America/Swift_Current'
|
218
|
-
timezone 'America/Tegucigalpa'
|
219
|
-
timezone 'America/Thule'
|
220
|
-
timezone 'America/Thunder_Bay'
|
221
|
-
timezone 'America/Tijuana'
|
222
|
-
timezone 'America/Toronto'
|
223
|
-
linked_timezone 'America/Tortola'
|
224
|
-
timezone 'America/Vancouver'
|
225
|
-
linked_timezone 'America/Virgin'
|
226
|
-
timezone 'America/Whitehorse'
|
227
|
-
timezone 'America/Winnipeg'
|
228
|
-
timezone 'America/Yakutat'
|
229
|
-
timezone 'America/Yellowknife'
|
230
|
-
timezone 'Antarctica/Casey'
|
231
|
-
timezone 'Antarctica/Davis'
|
232
|
-
timezone 'Antarctica/DumontDUrville'
|
233
|
-
timezone 'Antarctica/Macquarie'
|
234
|
-
timezone 'Antarctica/Mawson'
|
235
|
-
linked_timezone 'Antarctica/McMurdo'
|
236
|
-
timezone 'Antarctica/Palmer'
|
237
|
-
timezone 'Antarctica/Rothera'
|
238
|
-
linked_timezone 'Antarctica/South_Pole'
|
239
|
-
timezone 'Antarctica/Syowa'
|
240
|
-
timezone 'Antarctica/Troll'
|
241
|
-
timezone 'Antarctica/Vostok'
|
242
|
-
linked_timezone 'Arctic/Longyearbyen'
|
243
|
-
timezone 'Asia/Aden'
|
244
|
-
timezone 'Asia/Almaty'
|
245
|
-
timezone 'Asia/Amman'
|
246
|
-
timezone 'Asia/Anadyr'
|
247
|
-
timezone 'Asia/Aqtau'
|
248
|
-
timezone 'Asia/Aqtobe'
|
249
|
-
timezone 'Asia/Ashgabat'
|
250
|
-
linked_timezone 'Asia/Ashkhabad'
|
251
|
-
timezone 'Asia/Baghdad'
|
252
|
-
timezone 'Asia/Bahrain'
|
253
|
-
timezone 'Asia/Baku'
|
254
|
-
timezone 'Asia/Bangkok'
|
255
|
-
timezone 'Asia/Beirut'
|
256
|
-
timezone 'Asia/Bishkek'
|
257
|
-
timezone 'Asia/Brunei'
|
258
|
-
linked_timezone 'Asia/Calcutta'
|
259
|
-
timezone 'Asia/Chita'
|
260
|
-
timezone 'Asia/Choibalsan'
|
261
|
-
linked_timezone 'Asia/Chongqing'
|
262
|
-
linked_timezone 'Asia/Chungking'
|
263
|
-
timezone 'Asia/Colombo'
|
264
|
-
linked_timezone 'Asia/Dacca'
|
265
|
-
timezone 'Asia/Damascus'
|
266
|
-
timezone 'Asia/Dhaka'
|
267
|
-
timezone 'Asia/Dili'
|
268
|
-
timezone 'Asia/Dubai'
|
269
|
-
timezone 'Asia/Dushanbe'
|
270
|
-
timezone 'Asia/Gaza'
|
271
|
-
linked_timezone 'Asia/Harbin'
|
272
|
-
timezone 'Asia/Hebron'
|
273
|
-
timezone 'Asia/Ho_Chi_Minh'
|
274
|
-
timezone 'Asia/Hong_Kong'
|
275
|
-
timezone 'Asia/Hovd'
|
276
|
-
timezone 'Asia/Irkutsk'
|
277
|
-
linked_timezone 'Asia/Istanbul'
|
278
|
-
timezone 'Asia/Jakarta'
|
279
|
-
timezone 'Asia/Jayapura'
|
280
|
-
timezone 'Asia/Jerusalem'
|
281
|
-
timezone 'Asia/Kabul'
|
282
|
-
timezone 'Asia/Kamchatka'
|
283
|
-
timezone 'Asia/Karachi'
|
284
|
-
linked_timezone 'Asia/Kashgar'
|
285
|
-
timezone 'Asia/Kathmandu'
|
286
|
-
linked_timezone 'Asia/Katmandu'
|
287
|
-
timezone 'Asia/Khandyga'
|
288
|
-
timezone 'Asia/Kolkata'
|
289
|
-
timezone 'Asia/Krasnoyarsk'
|
290
|
-
timezone 'Asia/Kuala_Lumpur'
|
291
|
-
timezone 'Asia/Kuching'
|
292
|
-
timezone 'Asia/Kuwait'
|
293
|
-
linked_timezone 'Asia/Macao'
|
294
|
-
timezone 'Asia/Macau'
|
295
|
-
timezone 'Asia/Magadan'
|
296
|
-
timezone 'Asia/Makassar'
|
297
|
-
timezone 'Asia/Manila'
|
298
|
-
timezone 'Asia/Muscat'
|
299
|
-
timezone 'Asia/Nicosia'
|
300
|
-
timezone 'Asia/Novokuznetsk'
|
301
|
-
timezone 'Asia/Novosibirsk'
|
302
|
-
timezone 'Asia/Omsk'
|
303
|
-
timezone 'Asia/Oral'
|
304
|
-
timezone 'Asia/Phnom_Penh'
|
305
|
-
timezone 'Asia/Pontianak'
|
306
|
-
timezone 'Asia/Pyongyang'
|
307
|
-
timezone 'Asia/Qatar'
|
308
|
-
timezone 'Asia/Qyzylorda'
|
309
|
-
timezone 'Asia/Rangoon'
|
310
|
-
timezone 'Asia/Riyadh'
|
311
|
-
linked_timezone 'Asia/Saigon'
|
312
|
-
timezone 'Asia/Sakhalin'
|
313
|
-
timezone 'Asia/Samarkand'
|
314
|
-
timezone 'Asia/Seoul'
|
315
|
-
timezone 'Asia/Shanghai'
|
316
|
-
timezone 'Asia/Singapore'
|
317
|
-
timezone 'Asia/Srednekolymsk'
|
318
|
-
timezone 'Asia/Taipei'
|
319
|
-
timezone 'Asia/Tashkent'
|
320
|
-
timezone 'Asia/Tbilisi'
|
321
|
-
timezone 'Asia/Tehran'
|
322
|
-
linked_timezone 'Asia/Tel_Aviv'
|
323
|
-
linked_timezone 'Asia/Thimbu'
|
324
|
-
timezone 'Asia/Thimphu'
|
325
|
-
timezone 'Asia/Tokyo'
|
326
|
-
linked_timezone 'Asia/Ujung_Pandang'
|
327
|
-
timezone 'Asia/Ulaanbaatar'
|
328
|
-
linked_timezone 'Asia/Ulan_Bator'
|
329
|
-
timezone 'Asia/Urumqi'
|
330
|
-
timezone 'Asia/Ust-Nera'
|
331
|
-
timezone 'Asia/Vientiane'
|
332
|
-
timezone 'Asia/Vladivostok'
|
333
|
-
timezone 'Asia/Yakutsk'
|
334
|
-
timezone 'Asia/Yekaterinburg'
|
335
|
-
timezone 'Asia/Yerevan'
|
336
|
-
timezone 'Atlantic/Azores'
|
337
|
-
timezone 'Atlantic/Bermuda'
|
338
|
-
timezone 'Atlantic/Canary'
|
339
|
-
timezone 'Atlantic/Cape_Verde'
|
340
|
-
linked_timezone 'Atlantic/Faeroe'
|
341
|
-
timezone 'Atlantic/Faroe'
|
342
|
-
linked_timezone 'Atlantic/Jan_Mayen'
|
343
|
-
timezone 'Atlantic/Madeira'
|
344
|
-
timezone 'Atlantic/Reykjavik'
|
345
|
-
timezone 'Atlantic/South_Georgia'
|
346
|
-
linked_timezone 'Atlantic/St_Helena'
|
347
|
-
timezone 'Atlantic/Stanley'
|
348
|
-
linked_timezone 'Australia/ACT'
|
349
|
-
timezone 'Australia/Adelaide'
|
350
|
-
timezone 'Australia/Brisbane'
|
351
|
-
timezone 'Australia/Broken_Hill'
|
352
|
-
linked_timezone 'Australia/Canberra'
|
353
|
-
timezone 'Australia/Currie'
|
354
|
-
timezone 'Australia/Darwin'
|
355
|
-
timezone 'Australia/Eucla'
|
356
|
-
timezone 'Australia/Hobart'
|
357
|
-
linked_timezone 'Australia/LHI'
|
358
|
-
timezone 'Australia/Lindeman'
|
359
|
-
timezone 'Australia/Lord_Howe'
|
360
|
-
timezone 'Australia/Melbourne'
|
361
|
-
linked_timezone 'Australia/NSW'
|
362
|
-
linked_timezone 'Australia/North'
|
363
|
-
timezone 'Australia/Perth'
|
364
|
-
linked_timezone 'Australia/Queensland'
|
365
|
-
linked_timezone 'Australia/South'
|
366
|
-
timezone 'Australia/Sydney'
|
367
|
-
linked_timezone 'Australia/Tasmania'
|
368
|
-
linked_timezone 'Australia/Victoria'
|
369
|
-
linked_timezone 'Australia/West'
|
370
|
-
linked_timezone 'Australia/Yancowinna'
|
371
|
-
linked_timezone 'Brazil/Acre'
|
372
|
-
linked_timezone 'Brazil/DeNoronha'
|
373
|
-
linked_timezone 'Brazil/East'
|
374
|
-
linked_timezone 'Brazil/West'
|
375
|
-
timezone 'CET'
|
376
|
-
timezone 'CST6CDT'
|
377
|
-
linked_timezone 'Canada/Atlantic'
|
378
|
-
linked_timezone 'Canada/Central'
|
379
|
-
linked_timezone 'Canada/East-Saskatchewan'
|
380
|
-
linked_timezone 'Canada/Eastern'
|
381
|
-
linked_timezone 'Canada/Mountain'
|
382
|
-
linked_timezone 'Canada/Newfoundland'
|
383
|
-
linked_timezone 'Canada/Pacific'
|
384
|
-
linked_timezone 'Canada/Saskatchewan'
|
385
|
-
linked_timezone 'Canada/Yukon'
|
386
|
-
linked_timezone 'Chile/Continental'
|
387
|
-
linked_timezone 'Chile/EasterIsland'
|
388
|
-
linked_timezone 'Cuba'
|
389
|
-
timezone 'EET'
|
390
|
-
timezone 'EST'
|
391
|
-
timezone 'EST5EDT'
|
392
|
-
linked_timezone 'Egypt'
|
393
|
-
linked_timezone 'Eire'
|
394
|
-
timezone 'Etc/GMT'
|
395
|
-
linked_timezone 'Etc/GMT+0'
|
396
|
-
timezone 'Etc/GMT+1'
|
397
|
-
timezone 'Etc/GMT+10'
|
398
|
-
timezone 'Etc/GMT+11'
|
399
|
-
timezone 'Etc/GMT+12'
|
400
|
-
timezone 'Etc/GMT+2'
|
401
|
-
timezone 'Etc/GMT+3'
|
402
|
-
timezone 'Etc/GMT+4'
|
403
|
-
timezone 'Etc/GMT+5'
|
404
|
-
timezone 'Etc/GMT+6'
|
405
|
-
timezone 'Etc/GMT+7'
|
406
|
-
timezone 'Etc/GMT+8'
|
407
|
-
timezone 'Etc/GMT+9'
|
408
|
-
linked_timezone 'Etc/GMT-0'
|
409
|
-
timezone 'Etc/GMT-1'
|
410
|
-
timezone 'Etc/GMT-10'
|
411
|
-
timezone 'Etc/GMT-11'
|
412
|
-
timezone 'Etc/GMT-12'
|
413
|
-
timezone 'Etc/GMT-13'
|
414
|
-
timezone 'Etc/GMT-14'
|
415
|
-
timezone 'Etc/GMT-2'
|
416
|
-
timezone 'Etc/GMT-3'
|
417
|
-
timezone 'Etc/GMT-4'
|
418
|
-
timezone 'Etc/GMT-5'
|
419
|
-
timezone 'Etc/GMT-6'
|
420
|
-
timezone 'Etc/GMT-7'
|
421
|
-
timezone 'Etc/GMT-8'
|
422
|
-
timezone 'Etc/GMT-9'
|
423
|
-
linked_timezone 'Etc/GMT0'
|
424
|
-
linked_timezone 'Etc/Greenwich'
|
425
|
-
timezone 'Etc/UCT'
|
426
|
-
timezone 'Etc/UTC'
|
427
|
-
linked_timezone 'Etc/Universal'
|
428
|
-
linked_timezone 'Etc/Zulu'
|
429
|
-
timezone 'Europe/Amsterdam'
|
430
|
-
timezone 'Europe/Andorra'
|
431
|
-
timezone 'Europe/Athens'
|
432
|
-
linked_timezone 'Europe/Belfast'
|
433
|
-
timezone 'Europe/Belgrade'
|
434
|
-
timezone 'Europe/Berlin'
|
435
|
-
linked_timezone 'Europe/Bratislava'
|
436
|
-
timezone 'Europe/Brussels'
|
437
|
-
timezone 'Europe/Bucharest'
|
438
|
-
timezone 'Europe/Budapest'
|
439
|
-
linked_timezone 'Europe/Busingen'
|
440
|
-
timezone 'Europe/Chisinau'
|
441
|
-
timezone 'Europe/Copenhagen'
|
442
|
-
timezone 'Europe/Dublin'
|
443
|
-
timezone 'Europe/Gibraltar'
|
444
|
-
linked_timezone 'Europe/Guernsey'
|
445
|
-
timezone 'Europe/Helsinki'
|
446
|
-
linked_timezone 'Europe/Isle_of_Man'
|
447
|
-
timezone 'Europe/Istanbul'
|
448
|
-
linked_timezone 'Europe/Jersey'
|
449
|
-
timezone 'Europe/Kaliningrad'
|
450
|
-
timezone 'Europe/Kiev'
|
451
|
-
timezone 'Europe/Lisbon'
|
452
|
-
linked_timezone 'Europe/Ljubljana'
|
453
|
-
timezone 'Europe/London'
|
454
|
-
timezone 'Europe/Luxembourg'
|
455
|
-
timezone 'Europe/Madrid'
|
456
|
-
timezone 'Europe/Malta'
|
457
|
-
linked_timezone 'Europe/Mariehamn'
|
458
|
-
timezone 'Europe/Minsk'
|
459
|
-
timezone 'Europe/Monaco'
|
460
|
-
timezone 'Europe/Moscow'
|
461
|
-
linked_timezone 'Europe/Nicosia'
|
462
|
-
timezone 'Europe/Oslo'
|
463
|
-
timezone 'Europe/Paris'
|
464
|
-
linked_timezone 'Europe/Podgorica'
|
465
|
-
timezone 'Europe/Prague'
|
466
|
-
timezone 'Europe/Riga'
|
467
|
-
timezone 'Europe/Rome'
|
468
|
-
timezone 'Europe/Samara'
|
469
|
-
linked_timezone 'Europe/San_Marino'
|
470
|
-
linked_timezone 'Europe/Sarajevo'
|
471
|
-
timezone 'Europe/Simferopol'
|
472
|
-
linked_timezone 'Europe/Skopje'
|
473
|
-
timezone 'Europe/Sofia'
|
474
|
-
timezone 'Europe/Stockholm'
|
475
|
-
timezone 'Europe/Tallinn'
|
476
|
-
timezone 'Europe/Tirane'
|
477
|
-
linked_timezone 'Europe/Tiraspol'
|
478
|
-
timezone 'Europe/Uzhgorod'
|
479
|
-
linked_timezone 'Europe/Vaduz'
|
480
|
-
linked_timezone 'Europe/Vatican'
|
481
|
-
timezone 'Europe/Vienna'
|
482
|
-
timezone 'Europe/Vilnius'
|
483
|
-
timezone 'Europe/Volgograd'
|
484
|
-
timezone 'Europe/Warsaw'
|
485
|
-
linked_timezone 'Europe/Zagreb'
|
486
|
-
timezone 'Europe/Zaporozhye'
|
487
|
-
timezone 'Europe/Zurich'
|
488
|
-
linked_timezone 'GB'
|
489
|
-
linked_timezone 'GB-Eire'
|
490
|
-
linked_timezone 'GMT'
|
491
|
-
linked_timezone 'GMT+0'
|
492
|
-
linked_timezone 'GMT-0'
|
493
|
-
linked_timezone 'GMT0'
|
494
|
-
linked_timezone 'Greenwich'
|
495
|
-
timezone 'HST'
|
496
|
-
linked_timezone 'Hongkong'
|
497
|
-
linked_timezone 'Iceland'
|
498
|
-
timezone 'Indian/Antananarivo'
|
499
|
-
timezone 'Indian/Chagos'
|
500
|
-
timezone 'Indian/Christmas'
|
501
|
-
timezone 'Indian/Cocos'
|
502
|
-
timezone 'Indian/Comoro'
|
503
|
-
timezone 'Indian/Kerguelen'
|
504
|
-
timezone 'Indian/Mahe'
|
505
|
-
timezone 'Indian/Maldives'
|
506
|
-
timezone 'Indian/Mauritius'
|
507
|
-
timezone 'Indian/Mayotte'
|
508
|
-
timezone 'Indian/Reunion'
|
509
|
-
linked_timezone 'Iran'
|
510
|
-
linked_timezone 'Israel'
|
511
|
-
linked_timezone 'Jamaica'
|
512
|
-
linked_timezone 'Japan'
|
513
|
-
linked_timezone 'Kwajalein'
|
514
|
-
linked_timezone 'Libya'
|
515
|
-
timezone 'MET'
|
516
|
-
timezone 'MST'
|
517
|
-
timezone 'MST7MDT'
|
518
|
-
linked_timezone 'Mexico/BajaNorte'
|
519
|
-
linked_timezone 'Mexico/BajaSur'
|
520
|
-
linked_timezone 'Mexico/General'
|
521
|
-
linked_timezone 'NZ'
|
522
|
-
linked_timezone 'NZ-CHAT'
|
523
|
-
linked_timezone 'Navajo'
|
524
|
-
linked_timezone 'PRC'
|
525
|
-
timezone 'PST8PDT'
|
526
|
-
timezone 'Pacific/Apia'
|
527
|
-
timezone 'Pacific/Auckland'
|
528
|
-
timezone 'Pacific/Chatham'
|
529
|
-
timezone 'Pacific/Chuuk'
|
530
|
-
timezone 'Pacific/Easter'
|
531
|
-
timezone 'Pacific/Efate'
|
532
|
-
timezone 'Pacific/Enderbury'
|
533
|
-
timezone 'Pacific/Fakaofo'
|
534
|
-
timezone 'Pacific/Fiji'
|
535
|
-
timezone 'Pacific/Funafuti'
|
536
|
-
timezone 'Pacific/Galapagos'
|
537
|
-
timezone 'Pacific/Gambier'
|
538
|
-
timezone 'Pacific/Guadalcanal'
|
539
|
-
timezone 'Pacific/Guam'
|
540
|
-
timezone 'Pacific/Honolulu'
|
541
|
-
linked_timezone 'Pacific/Johnston'
|
542
|
-
timezone 'Pacific/Kiritimati'
|
543
|
-
timezone 'Pacific/Kosrae'
|
544
|
-
timezone 'Pacific/Kwajalein'
|
545
|
-
timezone 'Pacific/Majuro'
|
546
|
-
timezone 'Pacific/Marquesas'
|
547
|
-
timezone 'Pacific/Midway'
|
548
|
-
timezone 'Pacific/Nauru'
|
549
|
-
timezone 'Pacific/Niue'
|
550
|
-
timezone 'Pacific/Norfolk'
|
551
|
-
timezone 'Pacific/Noumea'
|
552
|
-
timezone 'Pacific/Pago_Pago'
|
553
|
-
timezone 'Pacific/Palau'
|
554
|
-
timezone 'Pacific/Pitcairn'
|
555
|
-
timezone 'Pacific/Pohnpei'
|
556
|
-
linked_timezone 'Pacific/Ponape'
|
557
|
-
timezone 'Pacific/Port_Moresby'
|
558
|
-
timezone 'Pacific/Rarotonga'
|
559
|
-
timezone 'Pacific/Saipan'
|
560
|
-
linked_timezone 'Pacific/Samoa'
|
561
|
-
timezone 'Pacific/Tahiti'
|
562
|
-
timezone 'Pacific/Tarawa'
|
563
|
-
timezone 'Pacific/Tongatapu'
|
564
|
-
linked_timezone 'Pacific/Truk'
|
565
|
-
timezone 'Pacific/Wake'
|
566
|
-
timezone 'Pacific/Wallis'
|
567
|
-
linked_timezone 'Pacific/Yap'
|
568
|
-
linked_timezone 'Poland'
|
569
|
-
linked_timezone 'Portugal'
|
570
|
-
linked_timezone 'ROC'
|
571
|
-
linked_timezone 'ROK'
|
572
|
-
linked_timezone 'Singapore'
|
573
|
-
linked_timezone 'Turkey'
|
574
|
-
linked_timezone 'UCT'
|
575
|
-
linked_timezone 'US/Alaska'
|
576
|
-
linked_timezone 'US/Aleutian'
|
577
|
-
linked_timezone 'US/Arizona'
|
578
|
-
linked_timezone 'US/Central'
|
579
|
-
linked_timezone 'US/East-Indiana'
|
580
|
-
linked_timezone 'US/Eastern'
|
581
|
-
linked_timezone 'US/Hawaii'
|
582
|
-
linked_timezone 'US/Indiana-Starke'
|
583
|
-
linked_timezone 'US/Michigan'
|
584
|
-
linked_timezone 'US/Mountain'
|
585
|
-
linked_timezone 'US/Pacific'
|
586
|
-
linked_timezone 'US/Pacific-New'
|
587
|
-
linked_timezone 'US/Samoa'
|
588
|
-
linked_timezone 'UTC'
|
589
|
-
linked_timezone 'Universal'
|
590
|
-
linked_timezone 'W-SU'
|
591
|
-
timezone 'WET'
|
592
|
-
linked_timezone 'Zulu'
|
593
|
-
end
|
594
|
-
end
|
595
|
-
end
|
596
|
-
end
|