-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.js
328 lines (326 loc) · 24.6 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/**
* @fileoverview
*
* This package contains an array of timezones based on conventional options found online.
* It does not follow any complete data set, but all names are according to the tz format:
* https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.
*
* More specifically, the fields in the array are:
* – offset, a string from '-11:00' to '+14:00' representing the UTC offset
* - label, a readable label that contains the offset and a longer, descriptive name of the timezone
* - tzCode, the value from the tz standard
*
* Install:
* `npm install compact-timezone-list --save`
* # or
* `yarn add compact-timezone-list`
*
*
* Example:
* import timezones from 'compact-timezone-list';
* // or
* import { minimalTimezoneSet } from 'compact-timezone-list';
*
* Details:
* - The default export provides a long list of options, with multiple
* suggestions for each UTC offset.
* – The `minimalTimezoneSet` export provides one option per offset type, with
* a favourite chosen to represent each offset. This is mostly targeted to small,
* western-focused apps. But, every UTC offset is included.
*/
/**
*
* @type {Array.<{ offset: string, label: string, tzCode: string }>}
*/
export default [
{ offset: '-11:00', label: '(GMT-11:00) Niue', tzCode: 'Pacific/Niue' },
{ offset: '-11:00', label: '(GMT-11:00) Pago Pago', tzCode: 'Pacific/Pago_Pago' },
{ offset: '-10:00', label: '(GMT-10:00) Hawaii Time', tzCode: 'Pacific/Honolulu' },
{ offset: '-10:00', label: '(GMT-10:00) Rarotonga', tzCode: 'Pacific/Rarotonga' },
{ offset: '-10:00', label: '(GMT-10:00) Tahiti', tzCode: 'Pacific/Tahiti' },
{ offset: '-09:30', label: '(GMT-09:30) Marquesas', tzCode: 'Pacific/Marquesas' },
{ offset: '-09:00', label: '(GMT-09:00) Alaska Time', tzCode: 'America/Anchorage' },
{ offset: '-09:00', label: '(GMT-09:00) Gambier', tzCode: 'Pacific/Gambier' },
{ offset: '-08:00', label: '(GMT-08:00) Pacific Time', tzCode: 'America/Los_Angeles' },
{ offset: '-08:00', label: '(GMT-08:00) Pacific Time - Tijuana', tzCode: 'America/Tijuana' },
{ offset: '-08:00', label: '(GMT-08:00) Pacific Time - Vancouver', tzCode: 'America/Vancouver' },
{ offset: '-08:00', label: '(GMT-08:00) Pacific Time - Whitehorse', tzCode: 'America/Whitehorse' },
{ offset: '-08:00', label: '(GMT-08:00) Pitcairn', tzCode: 'Pacific/Pitcairn' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time', tzCode: 'America/Denver' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time - Arizona', tzCode: 'America/Phoenix' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time - Chihuahua, Mazatlan', tzCode: 'America/Mazatlan' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time - Dawson Creek', tzCode: 'America/Dawson_Creek' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time - Edmonton', tzCode: 'America/Edmonton' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time - Hermosillo', tzCode: 'America/Hermosillo' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time - Yellowknife', tzCode: 'America/Yellowknife' },
{ offset: '-06:00', label: '(GMT-06:00) Belize', tzCode: 'America/Belize' },
{ offset: '-06:00', label: '(GMT-06:00) Central Time', tzCode: 'America/Chicago' },
{ offset: '-06:00', label: '(GMT-06:00) Central Time - Mexico City', tzCode: 'America/Mexico_City' },
{ offset: '-06:00', label: '(GMT-06:00) Central Time - Regina', tzCode: 'America/Regina' },
{ offset: '-06:00', label: '(GMT-06:00) Central Time - Tegucigalpa', tzCode: 'America/Tegucigalpa' },
{ offset: '-06:00', label: '(GMT-06:00) Central Time - Winnipeg', tzCode: 'America/Winnipeg' },
{ offset: '-06:00', label: '(GMT-06:00) Costa Rica', tzCode: 'America/Costa_Rica' },
{ offset: '-06:00', label: '(GMT-06:00) El Salvador', tzCode: 'America/El_Salvador' },
{ offset: '-06:00', label: '(GMT-06:00) Galapagos', tzCode: 'Pacific/Galapagos' },
{ offset: '-06:00', label: '(GMT-06:00) Guatemala', tzCode: 'America/Guatemala' },
{ offset: '-06:00', label: '(GMT-06:00) Managua', tzCode: 'America/Managua' },
{ offset: '-05:00', label: '(GMT-05:00) America Cancun', tzCode: 'America/Cancun' },
{ offset: '-05:00', label: '(GMT-05:00) Bogota', tzCode: 'America/Bogota' },
{ offset: '-05:00', label: '(GMT-05:00) Easter Island', tzCode: 'Pacific/Easter' },
{ offset: '-05:00', label: '(GMT-05:00) Eastern Time', tzCode: 'America/New_York' },
{ offset: '-05:00', label: '(GMT-05:00) Eastern Time - Iqaluit', tzCode: 'America/Iqaluit' },
{ offset: '-05:00', label: '(GMT-05:00) Eastern Time - Toronto', tzCode: 'America/Toronto' },
{ offset: '-05:00', label: '(GMT-05:00) Guayaquil', tzCode: 'America/Guayaquil' },
{ offset: '-05:00', label: '(GMT-05:00) Havana', tzCode: 'America/Havana' },
{ offset: '-05:00', label: '(GMT-05:00) Jamaica', tzCode: 'America/Jamaica' },
{ offset: '-05:00', label: '(GMT-05:00) Lima', tzCode: 'America/Lima' },
{ offset: '-05:00', label: '(GMT-05:00) Nassau', tzCode: 'America/Nassau' },
{ offset: '-05:00', label: '(GMT-05:00) Panama', tzCode: 'America/Panama' },
{ offset: '-05:00', label: '(GMT-05:00) Port-au-Prince', tzCode: 'America/Port-au-Prince' },
{ offset: '-05:00', label: '(GMT-05:00) Rio Branco', tzCode: 'America/Rio_Branco' },
{ offset: '-04:00', label: '(GMT-04:00) Atlantic Time - Halifax', tzCode: 'America/Halifax' },
{ offset: '-04:00', label: '(GMT-04:00) Barbados', tzCode: 'America/Barbados' },
{ offset: '-04:00', label: '(GMT-04:00) Bermuda', tzCode: 'Atlantic/Bermuda' },
{ offset: '-04:00', label: '(GMT-04:00) Boa Vista', tzCode: 'America/Boa_Vista' },
{ offset: '-04:00', label: '(GMT-04:00) Caracas', tzCode: 'America/Caracas' },
{ offset: '-04:00', label: '(GMT-04:00) Curacao', tzCode: 'America/Curacao' },
{ offset: '-04:00', label: '(GMT-04:00) Grand Turk', tzCode: 'America/Grand_Turk' },
{ offset: '-04:00', label: '(GMT-04:00) Guyana', tzCode: 'America/Guyana' },
{ offset: '-04:00', label: '(GMT-04:00) La Paz', tzCode: 'America/La_Paz' },
{ offset: '-04:00', label: '(GMT-04:00) Manaus', tzCode: 'America/Manaus' },
{ offset: '-04:00', label: '(GMT-04:00) Martinique', tzCode: 'America/Martinique' },
{ offset: '-04:00', label: '(GMT-04:00) Port of Spain', tzCode: 'America/Port_of_Spain' },
{ offset: '-04:00', label: '(GMT-04:00) Porto Velho', tzCode: 'America/Porto_Velho' },
{ offset: '-04:00', label: '(GMT-04:00) Puerto Rico', tzCode: 'America/Puerto_Rico' },
{ offset: '-04:00', label: '(GMT-04:00) Santo Domingo', tzCode: 'America/Santo_Domingo' },
{ offset: '-04:00', label: '(GMT-04:00) Thule', tzCode: 'America/Thule' },
{ offset: '-03:30', label: '(GMT-03:30) Newfoundland Time - St. Johns', tzCode: 'America/St_Johns' },
{ offset: '-03:00', label: '(GMT-03:00) Araguaina', tzCode: 'America/Araguaina' },
{ offset: '-03:00', label: '(GMT-03:00) Asuncion', tzCode: 'America/Asuncion' },
{ offset: '-03:00', label: '(GMT-03:00) Belem', tzCode: 'America/Belem' },
{ offset: '-03:00', label: '(GMT-03:00) Buenos Aires', tzCode: 'America/Argentina/Buenos_Aires' },
{ offset: '-03:00', label: '(GMT-03:00) Campo Grande', tzCode: 'America/Campo_Grande' },
{ offset: '-03:00', label: '(GMT-03:00) Cayenne', tzCode: 'America/Cayenne' },
{ offset: '-03:00', label: '(GMT-03:00) Cuiaba', tzCode: 'America/Cuiaba' },
{ offset: '-03:00', label: '(GMT-03:00) Fortaleza', tzCode: 'America/Fortaleza' },
{ offset: '-03:00', label: '(GMT-03:00) Godthab', tzCode: 'America/Godthab' },
{ offset: '-03:00', label: '(GMT-03:00) Maceio', tzCode: 'America/Maceio' },
{ offset: '-03:00', label: '(GMT-03:00) Miquelon', tzCode: 'America/Miquelon' },
{ offset: '-03:00', label: '(GMT-03:00) Montevideo', tzCode: 'America/Montevideo' },
{ offset: '-03:00', label: '(GMT-03:00) Palmer', tzCode: 'Antarctica/Palmer' },
{ offset: '-03:00', label: '(GMT-03:00) Paramaribo', tzCode: 'America/Paramaribo' },
{ offset: '-03:00', label: '(GMT-03:00) Punta Arenas', tzCode: 'America/Punta_Arenas' },
{ offset: '-03:00', label: '(GMT-03:00) Recife', tzCode: 'America/Recife' },
{ offset: '-03:00', label: '(GMT-03:00) Rothera', tzCode: 'Antarctica/Rothera' },
{ offset: '-03:00', label: '(GMT-03:00) Salvador', tzCode: 'America/Bahia' },
{ offset: '-03:00', label: '(GMT-03:00) Santiago', tzCode: 'America/Santiago' },
{ offset: '-03:00', label: '(GMT-03:00) Stanley', tzCode: 'Atlantic/Stanley' },
{ offset: '-02:00', label: '(GMT-02:00) Noronha', tzCode: 'America/Noronha' },
{ offset: '-02:00', label: '(GMT-02:00) Sao Paulo', tzCode: 'America/Sao_Paulo' },
{ offset: '-02:00', label: '(GMT-02:00) South Georgia', tzCode: 'Atlantic/South_Georgia' },
{ offset: '-01:00', label: '(GMT-01:00) Azores', tzCode: 'Atlantic/Azores' },
{ offset: '-01:00', label: '(GMT-01:00) Cape Verde', tzCode: 'Atlantic/Cape_Verde' },
{ offset: '-01:00', label: '(GMT-01:00) Scoresbysund', tzCode: 'America/Scoresbysund' },
{ offset: '+00:00', label: '(GMT+00:00) Abidjan', tzCode: 'Africa/Abidjan' },
{ offset: '+00:00', label: '(GMT+00:00) Accra', tzCode: 'Africa/Accra' },
{ offset: '+00:00', label: '(GMT+00:00) Bissau', tzCode: 'Africa/Bissau' },
{ offset: '+00:00', label: '(GMT+00:00) Canary Islands', tzCode: 'Atlantic/Canary' },
{ offset: '+00:00', label: '(GMT+00:00) Casablanca', tzCode: 'Africa/Casablanca' },
{ offset: '+00:00', label: '(GMT+00:00) Danmarkshavn', tzCode: 'America/Danmarkshavn' },
{ offset: '+00:00', label: '(GMT+00:00) Dublin', tzCode: 'Europe/Dublin' },
{ offset: '+00:00', label: '(GMT+00:00) El Aaiun', tzCode: 'Africa/El_Aaiun' },
{ offset: '+00:00', label: '(GMT+00:00) Faeroe', tzCode: 'Atlantic/Faroe' },
{ offset: '+00:00', label: '(GMT+00:00) GMT (no daylight saving)', tzCode: 'Etc/GMT' },
{ offset: '+00:00', label: '(GMT+00:00) Lisbon', tzCode: 'Europe/Lisbon' },
{ offset: '+00:00', label: '(GMT+00:00) London', tzCode: 'Europe/London' },
{ offset: '+00:00', label: '(GMT+00:00) Monrovia', tzCode: 'Africa/Monrovia' },
{ offset: '+00:00', label: '(GMT+00:00) Reykjavik', tzCode: 'Atlantic/Reykjavik' },
{ offset: '+01:00', label: '(GMT+01:00) Algiers', tzCode: 'Africa/Algiers' },
{ offset: '+01:00', label: '(GMT+01:00) Amsterdam', tzCode: 'Europe/Amsterdam' },
{ offset: '+01:00', label: '(GMT+01:00) Andorra', tzCode: 'Europe/Andorra' },
{ offset: '+01:00', label: '(GMT+01:00) Berlin', tzCode: 'Europe/Berlin' },
{ offset: '+01:00', label: '(GMT+01:00) Brussels', tzCode: 'Europe/Brussels' },
{ offset: '+01:00', label: '(GMT+01:00) Budapest', tzCode: 'Europe/Budapest' },
{ offset: '+01:00', label: '(GMT+01:00) Central European Time - Belgrade', tzCode: 'Europe/Belgrade' },
{ offset: '+01:00', label: '(GMT+01:00) Central European Time - Prague', tzCode: 'Europe/Prague' },
{ offset: '+01:00', label: '(GMT+01:00) Ceuta', tzCode: 'Africa/Ceuta' },
{ offset: '+01:00', label: '(GMT+01:00) Copenhagen', tzCode: 'Europe/Copenhagen' },
{ offset: '+01:00', label: '(GMT+01:00) Gibraltar', tzCode: 'Europe/Gibraltar' },
{ offset: '+01:00', label: '(GMT+01:00) Lagos', tzCode: 'Africa/Lagos' },
{ offset: '+01:00', label: '(GMT+01:00) Luxembourg', tzCode: 'Europe/Luxembourg' },
{ offset: '+01:00', label: '(GMT+01:00) Madrid', tzCode: 'Europe/Madrid' },
{ offset: '+01:00', label: '(GMT+01:00) Malta', tzCode: 'Europe/Malta' },
{ offset: '+01:00', label: '(GMT+01:00) Monaco', tzCode: 'Europe/Monaco' },
{ offset: '+01:00', label: '(GMT+01:00) Ndjamena', tzCode: 'Africa/Ndjamena' },
{ offset: '+01:00', label: '(GMT+01:00) Oslo', tzCode: 'Europe/Oslo' },
{ offset: '+01:00', label: '(GMT+01:00) Paris', tzCode: 'Europe/Paris' },
{ offset: '+01:00', label: '(GMT+01:00) Rome', tzCode: 'Europe/Rome' },
{ offset: '+01:00', label: '(GMT+01:00) Stockholm', tzCode: 'Europe/Stockholm' },
{ offset: '+01:00', label: '(GMT+01:00) Tirane', tzCode: 'Europe/Tirane' },
{ offset: '+01:00', label: '(GMT+01:00) Tunis', tzCode: 'Africa/Tunis' },
{ offset: '+01:00', label: '(GMT+01:00) Vienna', tzCode: 'Europe/Vienna' },
{ offset: '+01:00', label: '(GMT+01:00) Warsaw', tzCode: 'Europe/Warsaw' },
{ offset: '+01:00', label: '(GMT+01:00) Zurich', tzCode: 'Europe/Zurich' },
{ offset: '+02:00', label: '(GMT+02:00) Amman', tzCode: 'Asia/Amman' },
{ offset: '+02:00', label: '(GMT+02:00) Athens', tzCode: 'Europe/Athens' },
{ offset: '+02:00', label: '(GMT+02:00) Beirut', tzCode: 'Asia/Beirut' },
{ offset: '+02:00', label: '(GMT+02:00) Bucharest', tzCode: 'Europe/Bucharest' },
{ offset: '+02:00', label: '(GMT+02:00) Cairo', tzCode: 'Africa/Cairo' },
{ offset: '+02:00', label: '(GMT+02:00) Chisinau', tzCode: 'Europe/Chisinau' },
{ offset: '+02:00', label: '(GMT+02:00) Damascus', tzCode: 'Asia/Damascus' },
{ offset: '+02:00', label: '(GMT+02:00) Gaza', tzCode: 'Asia/Gaza' },
{ offset: '+02:00', label: '(GMT+02:00) Helsinki', tzCode: 'Europe/Helsinki' },
{ offset: '+02:00', label: '(GMT+02:00) Jerusalem', tzCode: 'Asia/Jerusalem' },
{ offset: '+02:00', label: '(GMT+02:00) Johannesburg', tzCode: 'Africa/Johannesburg' },
{ offset: '+02:00', label: '(GMT+02:00) Khartoum', tzCode: 'Africa/Khartoum' },
{ offset: '+02:00', label: '(GMT+02:00) Kiev', tzCode: 'Europe/Kiev' },
{ offset: '+02:00', label: '(GMT+02:00) Maputo', tzCode: 'Africa/Maputo' },
{ offset: '+02:00', label: '(GMT+02:00) Moscow-01 - Kaliningrad', tzCode: 'Europe/Kaliningrad' },
{ offset: '+02:00', label: '(GMT+02:00) Nicosia', tzCode: 'Asia/Nicosia' },
{ offset: '+02:00', label: '(GMT+02:00) Riga', tzCode: 'Europe/Riga' },
{ offset: '+02:00', label: '(GMT+02:00) Sofia', tzCode: 'Europe/Sofia' },
{ offset: '+02:00', label: '(GMT+02:00) Tallinn', tzCode: 'Europe/Tallinn' },
{ offset: '+02:00', label: '(GMT+02:00) Tripoli', tzCode: 'Africa/Tripoli' },
{ offset: '+02:00', label: '(GMT+02:00) Vilnius', tzCode: 'Europe/Vilnius' },
{ offset: '+02:00', label: '(GMT+02:00) Windhoek', tzCode: 'Africa/Windhoek' },
{ offset: '+03:00', label: '(GMT+03:00) Baghdad', tzCode: 'Asia/Baghdad' },
{ offset: '+03:00', label: '(GMT+03:00) Istanbul', tzCode: 'Europe/Istanbul' },
{ offset: '+03:00', label: '(GMT+03:00) Minsk', tzCode: 'Europe/Minsk' },
{ offset: '+03:00', label: '(GMT+03:00) Moscow+00 - Moscow', tzCode: 'Europe/Moscow' },
{ offset: '+03:00', label: '(GMT+03:00) Nairobi', tzCode: 'Africa/Nairobi' },
{ offset: '+03:00', label: '(GMT+03:00) Qatar', tzCode: 'Asia/Qatar' },
{ offset: '+03:00', label: '(GMT+03:00) Riyadh', tzCode: 'Asia/Riyadh' },
{ offset: '+03:00', label: '(GMT+03:00) Syowa', tzCode: 'Antarctica/Syowa' },
{ offset: '+03:30', label: '(GMT+03:30) Tehran', tzCode: 'Asia/Tehran' },
{ offset: '+04:00', label: '(GMT+04:00) Baku', tzCode: 'Asia/Baku' },
{ offset: '+04:00', label: '(GMT+04:00) Dubai', tzCode: 'Asia/Dubai' },
{ offset: '+04:00', label: '(GMT+04:00) Mahe', tzCode: 'Indian/Mahe' },
{ offset: '+04:00', label: '(GMT+04:00) Mauritius', tzCode: 'Indian/Mauritius' },
{ offset: '+04:00', label: '(GMT+04:00) Moscow+01 - Samara', tzCode: 'Europe/Samara' },
{ offset: '+04:00', label: '(GMT+04:00) Reunion', tzCode: 'Indian/Reunion' },
{ offset: '+04:00', label: '(GMT+04:00) Tbilisi', tzCode: 'Asia/Tbilisi' },
{ offset: '+04:00', label: '(GMT+04:00) Yerevan', tzCode: 'Asia/Yerevan' },
{ offset: '+04:30', label: '(GMT+04:30) Kabul', tzCode: 'Asia/Kabul' },
{ offset: '+05:00', label: '(GMT+05:00) Aqtau', tzCode: 'Asia/Aqtau' },
{ offset: '+05:00', label: '(GMT+05:00) Aqtobe', tzCode: 'Asia/Aqtobe' },
{ offset: '+05:00', label: '(GMT+05:00) Ashgabat', tzCode: 'Asia/Ashgabat' },
{ offset: '+05:00', label: '(GMT+05:00) Dushanbe', tzCode: 'Asia/Dushanbe' },
{ offset: '+05:00', label: '(GMT+05:00) Karachi', tzCode: 'Asia/Karachi' },
{ offset: '+05:00', label: '(GMT+05:00) Kerguelen', tzCode: 'Indian/Kerguelen' },
{ offset: '+05:00', label: '(GMT+05:00) Maldives', tzCode: 'Indian/Maldives' },
{ offset: '+05:00', label: '(GMT+05:00) Mawson', tzCode: 'Antarctica/Mawson' },
{ offset: '+05:00', label: '(GMT+05:00) Moscow+02 - Yekaterinburg', tzCode: 'Asia/Yekaterinburg' },
{ offset: '+05:00', label: '(GMT+05:00) Tashkent', tzCode: 'Asia/Tashkent' },
{ offset: '+05:30', label: '(GMT+05:30) Colombo', tzCode: 'Asia/Colombo' },
{ offset: '+05:30', label: '(GMT+05:30) India Standard Time', tzCode: 'Asia/Kolkata' },
{ offset: '+05:45', label: '(GMT+05:45) Kathmandu', tzCode: 'Asia/Kathmandu' },
{ offset: '+06:00', label: '(GMT+06:00) Almaty', tzCode: 'Asia/Almaty' },
{ offset: '+06:00', label: '(GMT+06:00) Bishkek', tzCode: 'Asia/Bishkek' },
{ offset: '+06:00', label: '(GMT+06:00) Chagos', tzCode: 'Indian/Chagos' },
{ offset: '+06:00', label: '(GMT+06:00) Dhaka', tzCode: 'Asia/Dhaka' },
{ offset: '+06:00', label: '(GMT+06:00) Moscow+03 - Omsk', tzCode: 'Asia/Omsk' },
{ offset: '+06:00', label: '(GMT+06:00) Thimphu', tzCode: 'Asia/Thimphu' },
{ offset: '+06:00', label: '(GMT+06:00) Vostok', tzCode: 'Antarctica/Vostok' },
{ offset: '+06:30', label: '(GMT+06:30) Cocos', tzCode: 'Indian/Cocos' },
{ offset: '+06:30', label: '(GMT+06:30) Rangoon', tzCode: 'Asia/Yangon' },
{ offset: '+07:00', label: '(GMT+07:00) Bangkok', tzCode: 'Asia/Bangkok' },
{ offset: '+07:00', label: '(GMT+07:00) Christmas', tzCode: 'Indian/Christmas' },
{ offset: '+07:00', label: '(GMT+07:00) Davis', tzCode: 'Antarctica/Davis' },
{ offset: '+07:00', label: '(GMT+07:00) Hanoi', tzCode: 'Asia/Saigon' },
{ offset: '+07:00', label: '(GMT+07:00) Hovd', tzCode: 'Asia/Hovd' },
{ offset: '+07:00', label: '(GMT+07:00) Jakarta', tzCode: 'Asia/Jakarta' },
{ offset: '+07:00', label: '(GMT+07:00) Moscow+04 - Krasnoyarsk', tzCode: 'Asia/Krasnoyarsk' },
{ offset: '+08:00', label: '(GMT+08:00) Brunei', tzCode: 'Asia/Brunei' },
{ offset: '+08:00', label: '(GMT+08:00) China Time - Beijing', tzCode: 'Asia/Shanghai' },
{ offset: '+08:00', label: '(GMT+08:00) Choibalsan', tzCode: 'Asia/Choibalsan' },
{ offset: '+08:00', label: '(GMT+08:00) Hong Kong', tzCode: 'Asia/Hong_Kong' },
{ offset: '+08:00', label: '(GMT+08:00) Kuala Lumpur', tzCode: 'Asia/Kuala_Lumpur' },
{ offset: '+08:00', label: '(GMT+08:00) Macau', tzCode: 'Asia/Macau' },
{ offset: '+08:00', label: '(GMT+08:00) Makassar', tzCode: 'Asia/Makassar' },
{ offset: '+08:00', label: '(GMT+08:00) Manila', tzCode: 'Asia/Manila' },
{ offset: '+08:00', label: '(GMT+08:00) Moscow+05 - Irkutsk', tzCode: 'Asia/Irkutsk' },
{ offset: '+08:00', label: '(GMT+08:00) Singapore', tzCode: 'Asia/Singapore' },
{ offset: '+08:00', label: '(GMT+08:00) Taipei', tzCode: 'Asia/Taipei' },
{ offset: '+08:00', label: '(GMT+08:00) Ulaanbaatar', tzCode: 'Asia/Ulaanbaatar' },
{ offset: '+08:00', label: '(GMT+08:00) Western Time - Perth', tzCode: 'Australia/Perth' },
{ offset: '+08:30', label: '(GMT+08:30) Pyongyang', tzCode: 'Asia/Pyongyang' },
{ offset: '+09:00', label: '(GMT+09:00) Dili', tzCode: 'Asia/Dili' },
{ offset: '+09:00', label: '(GMT+09:00) Jayapura', tzCode: 'Asia/Jayapura' },
{ offset: '+09:00', label: '(GMT+09:00) Moscow+06 - Yakutsk', tzCode: 'Asia/Yakutsk' },
{ offset: '+09:00', label: '(GMT+09:00) Palau', tzCode: 'Pacific/Palau' },
{ offset: '+09:00', label: '(GMT+09:00) Seoul', tzCode: 'Asia/Seoul' },
{ offset: '+09:00', label: '(GMT+09:00) Tokyo', tzCode: 'Asia/Tokyo' },
{ offset: '+09:30', label: '(GMT+09:30) Central Time - Darwin', tzCode: 'Australia/Darwin' },
{ offset: '+10:00', label: '(GMT+10:00) Dumont D\'Urville', tzCode: 'Antarctica/DumontDUrville' },
{ offset: '+10:00', label: '(GMT+10:00) Eastern Time - Brisbane', tzCode: 'Australia/Brisbane' },
{ offset: '+10:00', label: '(GMT+10:00) Guam', tzCode: 'Pacific/Guam' },
{ offset: '+10:00', label: '(GMT+10:00) Moscow+07 - Vladivostok', tzCode: 'Asia/Vladivostok' },
{ offset: '+10:00', label: '(GMT+10:00) Port Moresby', tzCode: 'Pacific/Port_Moresby' },
{ offset: '+10:00', label: '(GMT+10:00) Truk', tzCode: 'Pacific/Chuuk' },
{ offset: '+10:30', label: '(GMT+10:30) Central Time - Adelaide', tzCode: 'Australia/Adelaide' },
{ offset: '+11:00', label: '(GMT+11:00) Casey', tzCode: 'Antarctica/Casey' },
{ offset: '+11:00', label: '(GMT+11:00) Eastern Time - Hobart', tzCode: 'Australia/Hobart' },
{ offset: '+11:00', label: '(GMT+11:00) Eastern Time - Melbourne, Sydney', tzCode: 'Australia/Sydney' },
{ offset: '+11:00', label: '(GMT+11:00) Efate', tzCode: 'Pacific/Efate' },
{ offset: '+11:00', label: '(GMT+11:00) Guadalcanal', tzCode: 'Pacific/Guadalcanal' },
{ offset: '+11:00', label: '(GMT+11:00) Kosrae', tzCode: 'Pacific/Kosrae' },
{ offset: '+11:00', label: '(GMT+11:00) Moscow+08 - Magadan', tzCode: 'Asia/Magadan' },
{ offset: '+11:00', label: '(GMT+11:00) Norfolk', tzCode: 'Pacific/Norfolk' },
{ offset: '+11:00', label: '(GMT+11:00) Noumea', tzCode: 'Pacific/Noumea' },
{ offset: '+11:00', label: '(GMT+11:00) Ponape', tzCode: 'Pacific/Pohnpei' },
{ offset: '+12:00', label: '(GMT+12:00) Funafuti', tzCode: 'Pacific/Funafuti' },
{ offset: '+12:00', label: '(GMT+12:00) Kwajalein', tzCode: 'Pacific/Kwajalein' },
{ offset: '+12:00', label: '(GMT+12:00) Majuro', tzCode: 'Pacific/Majuro' },
{ offset: '+12:00', label: '(GMT+12:00) Moscow+09 - Petropavlovsk-Kamchatskiy', tzCode: 'Asia/Kamchatka' },
{ offset: '+12:00', label: '(GMT+12:00) Nauru', tzCode: 'Pacific/Nauru' },
{ offset: '+12:00', label: '(GMT+12:00) Tarawa', tzCode: 'Pacific/Tarawa' },
{ offset: '+12:00', label: '(GMT+12:00) Wake', tzCode: 'Pacific/Wake' },
{ offset: '+12:00', label: '(GMT+12:00) Wallis', tzCode: 'Pacific/Wallis' },
{ offset: '+13:00', label: '(GMT+13:00) Auckland', tzCode: 'Pacific/Auckland' },
{ offset: '+13:00', label: '(GMT+13:00) Enderbury', tzCode: 'Pacific/Enderbury' },
{ offset: '+13:00', label: '(GMT+13:00) Fakaofo', tzCode: 'Pacific/Fakaofo' },
{ offset: '+13:00', label: '(GMT+13:00) Fiji', tzCode: 'Pacific/Fiji' },
{ offset: '+13:00', label: '(GMT+13:00) Tongatapu', tzCode: 'Pacific/Tongatapu' },
{ offset: '+14:00', label: '(GMT+14:00) Apia', tzCode: 'Pacific/Apia' },
{ offset: '+14:00', label: '(GMT+14:00) Kiritimati', tzCode: 'Pacific/Kiritimati' }
];
/**
*
* @type {Array.<{ offset: string, label: string, tzCode: string }>}
*/
export var minimalTimezoneSet = [
{ offset: '-11:00', label: '(GMT-11:00) Pago Pago', tzCode: 'Pacific/Pago_Pago' },
{ offset: '-10:00', label: '(GMT-10:00) Hawaii Time', tzCode: 'Pacific/Honolulu' },
{ offset: '-10:00', label: '(GMT-10:00) Tahiti', tzCode: 'Pacific/Tahiti' },
{ offset: '-09:00', label: '(GMT-09:00) Alaska Time', tzCode: 'America/Anchorage' },
{ offset: '-08:00', label: '(GMT-08:00) Pacific Time', tzCode: 'America/Los_Angeles' },
{ offset: '-07:00', label: '(GMT-07:00) Mountain Time', tzCode: 'America/Denver' },
{ offset: '-06:00', label: '(GMT-06:00) Central Time', tzCode: 'America/Chicago' },
{ offset: '-05:00', label: '(GMT-05:00) Eastern Time', tzCode: 'America/New_York' },
{ offset: '-04:00', label: '(GMT-04:00) Atlantic Time - Halifax', tzCode: 'America/Halifax' },
{ offset: '-03:00', label: '(GMT-03:00) Buenos Aires', tzCode: 'America/Argentina/Buenos_Aires' },
{ offset: '-02:00', label: '(GMT-02:00) Sao Paulo', tzCode: 'America/Sao_Paulo' },
{ offset: '-01:00', label: '(GMT-01:00) Azores', tzCode: 'Atlantic/Azores' },
{ offset: '+00:00', label: '(GMT+00:00) London', tzCode: 'Europe/London' },
{ offset: '+01:00', label: '(GMT+01:00) Berlin', tzCode: 'Europe/Berlin' },
{ offset: '+02:00', label: '(GMT+02:00) Helsinki', tzCode: 'Europe/Helsinki' },
{ offset: '+03:00', label: '(GMT+03:00) Istanbul', tzCode: 'Europe/Istanbul' },
{ offset: '+04:00', label: '(GMT+04:00) Dubai', tzCode: 'Asia/Dubai' },
{ offset: '+04:30', label: '(GMT+04:30) Kabul', tzCode: 'Asia/Kabul' },
{ offset: '+05:00', label: '(GMT+05:00) Maldives', tzCode: 'Indian/Maldives' },
{ offset: '+05:30', label: '(GMT+05:30) India Standard Time', tzCode: 'Asia/Calcutta' },
{ offset: '+05:45', label: '(GMT+05:45) Kathmandu', tzCode: 'Asia/Kathmandu' },
{ offset: '+06:00', label: '(GMT+06:00) Dhaka', tzCode: 'Asia/Dhaka' },
{ offset: '+06:30', label: '(GMT+06:30) Cocos', tzCode: 'Indian/Cocos' },
{ offset: '+07:00', label: '(GMT+07:00) Bangkok', tzCode: 'Asia/Bangkok' },
{ offset: '+08:00', label: '(GMT+08:00) Hong Kong', tzCode: 'Asia/Hong_Kong' },
{ offset: '+08:30', label: '(GMT+08:30) Pyongyang', tzCode: 'Asia/Pyongyang' },
{ offset: '+09:00', label: '(GMT+09:00) Tokyo', tzCode: 'Asia/Tokyo' },
{ offset: '+09:30', label: '(GMT+09:30) Central Time - Darwin', tzCode: 'Australia/Darwin' },
{ offset: '+10:00', label: '(GMT+10:00) Eastern Time - Brisbane', tzCode: 'Australia/Brisbane' },
{ offset: '+10:30', label: '(GMT+10:30) Central Time - Adelaide', tzCode: 'Australia/Adelaide' },
{ offset: '+11:00', label: '(GMT+11:00) Eastern Time - Melbourne, Sydney', tzCode: 'Australia/Sydney' },
{ offset: '+12:00', label: '(GMT+12:00) Nauru', tzCode: 'Pacific/Nauru' },
{ offset: '+13:00', label: '(GMT+13:00) Auckland', tzCode: 'Pacific/Auckland' },
{ offset: '+14:00', label: '(GMT+14:00) Kiritimati', tzCode: 'Pacific/Kiritimati' }
];