TimezoneParser 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 801e797d854babedd580bcf96aa98356e03e4923
4
- data.tar.gz: d5d0f47184e279fd7628fe292c24778b8e044927
3
+ metadata.gz: c3eba22058026cc7194ccd5a6322a03e797420c5
4
+ data.tar.gz: 523b41c350936c906dae888e4d46e62246763e9e
5
5
  SHA512:
6
- metadata.gz: 913e2b9eb391a6fdf900f0645f12914b39b68d819c6f89adff62d2bae24abaf278cebe6405ff23f2f08eb973b372f0d739929047209c215b443978d44d9dc094
7
- data.tar.gz: 1bb4c8dba1a94a09eae70416a7e7149d1123ab47571df2d03745e251394f402e51d496d05ab854786f24affb9751db7182290c66987c9a4e9a3875db7e60e618
6
+ metadata.gz: 6d929d41f44ed2cfb2fc0959a80327fca4512289a2c6ab85640d83682a89d7f1870920008e494620960f2a015c74725dbb13058347330eb6e59e4c28bc0dbfab
7
+ data.tar.gz: 7db642de1fa7b459354c5c6f2435696072bbb8fdcdc7221849e4f08f1cc2005a98b17204c24a3840d731e95bc84a1c71cef078ab41b09487b5619d7873431e90
data/Rakefile CHANGED
@@ -25,12 +25,18 @@ def vendor_location
25
25
  end
26
26
 
27
27
  def repo_location
28
- TimezoneParser::Data::RootDir.parent.parent
28
+ TimezoneParser::Data::RootDir
29
+ end
30
+
31
+ def write_yaml(filename, data)
32
+ options = { :cr_newline => false, :encoding => 'UTF-8:UTF-8' }
33
+ File.write(filename, data.to_yaml, options)
29
34
  end
30
35
 
31
36
  def update
32
37
  require 'timezone_parser/data/tzinfo'
33
38
  require 'timezone_parser/data/cldr'
39
+ require 'active_support/version'
34
40
  require 'active_support/time'
35
41
  TimezoneParser::TZInfo::init
36
42
  countries = TimezoneParser::TZInfo::getTimezoneCountries
@@ -44,16 +50,15 @@ def update
44
50
  version['CLDR'] = TimezoneParser::CLDR::getVersion
45
51
  version['Rails'] = ActiveSupport::VERSION::STRING
46
52
  version['WindowsZones'] = nil unless version.has_key?('WindowsZones')
47
- options = { :cr_newline => false, :encoding => 'UTF-8:UTF-8' }
48
- File.write(data_location + 'countries.yml', countries.to_yaml, options)
49
- File.write(data_location + 'timezones.yml', timezones.to_yaml, options)
50
- File.write(data_location + 'metazones.yml', metazones.to_yaml, options)
51
- File.write(data_location + 'windows_timezones.yml', windowsZones.to_yaml, options)
53
+ write_yaml(data_location + 'countries.yml', countries)
54
+ write_yaml(data_location + 'timezones.yml', timezones)
55
+ write_yaml(data_location + 'metazones.yml', metazones)
56
+ write_yaml(data_location + 'windows_timezones.yml', windowsZones)
52
57
  abbreviations = Hash[abbreviations.to_a.sort_by { |d| d.first } ]
53
- File.write(data_location + 'abbreviations.yml', abbreviations.to_yaml, options)
58
+ write_yaml(data_location + 'abbreviations.yml', abbreviations)
54
59
  rails = Hash[ActiveSupport::TimeZone::MAPPING.to_a.sort_by { |d| d.first } ]
55
- File.write(data_location + 'rails.yml', rails.to_yaml, options)
56
- File.write(data_location + 'version.yml', version.to_yaml, options)
60
+ write_yaml(data_location + 'rails.yml', rails)
61
+ write_yaml(data_location + 'version.yml', version)
57
62
  end
58
63
 
59
64
  def update_rails
@@ -62,44 +67,69 @@ def update_rails
62
67
  timezone_path.each_child(false) do |file|
63
68
  YAML.load_file(timezone_path + file).each do |locale, data|
64
69
  namesArray = data['timezones'].invert.to_a
65
- namesArray.map { |e| e.map!(&:strip) }
70
+ namesArray.each { |e| e.map!(&:strip) }
66
71
  names[locale] = Hash[namesArray.sort_by { |d| d.first } ]
67
72
  end
68
73
  end
69
- File.write(data_location + 'rails_i18n.yml', names.to_yaml, { :cr_newline => false, :encoding => 'UTF-8:UTF-8' })
74
+ write_yaml(data_location + 'rails_i18n.yml', names)
70
75
  end
71
76
 
72
77
  def update_windows
73
78
  os = Gem::Platform.local.os
74
79
  if (os == 'mingw32' or os == 'mingw64')
75
80
  require 'timezone_parser/data/windows'
76
- options = { :cr_newline => false, :encoding => 'UTF-8:UTF-8' }
77
81
  version = YAML.load_file(data_location + 'version.yml')
78
82
  version['WindowsZones'] = TimezoneParser::Windows.getVersion
79
83
  if version['WindowsZones'].nil?
80
84
  $stderr.puts TimezoneParser::Windows.errors
81
85
  else
82
86
  timezones = TimezoneParser::Windows.getTimezones
83
- File.write(data_location + 'windows_offsets.yml', timezones.to_yaml, options)
84
- File.write(data_location + 'version.yml', version.to_yaml, options)
87
+ write_yaml(data_location + 'windows_offsets.yml', timezones)
88
+ write_yaml(data_location + 'version.yml', version)
85
89
  end
86
90
  else
87
91
  puts 'Skipped Windows Zone update. Need to be run from Windows.'
88
92
  end
89
93
  end
90
94
 
95
+ def update_windows_mui
96
+ os = Gem::Platform.local.os
97
+ if (os == 'mingw32' or os == 'mingw64')
98
+ tzres = data_location + 'windows_tzres.yaml'
99
+ require 'timezone_parser/data/windows'
100
+ offsets = YAML.load_file(tzres)
101
+ offsets.merge!(TimezoneParser::Windows.getMUIOffsets)
102
+ write_yaml(tzres, offsets)
103
+ else
104
+ puts 'Can update Windows tzres MUI offsets only from Windows!'
105
+ end
106
+ end
107
+
108
+ def update_windows_mui_extended(metazones, locales)
109
+ tzres = data_location + 'windows_tzres.yaml'
110
+ offsets = YAML.load_file(tzres)
111
+ offsets.merge!(TimezoneParser::Windows.collectMUIOffsets(metazones, locales))
112
+ write_yaml(tzres, offsets)
113
+ update_windows_mui
114
+ end
115
+
91
116
  def import_timezones
92
- require 'timezone_parser/data/windows'
93
117
  os = Gem::Platform.local.os
94
118
  if (os == 'mingw32' or os == 'mingw64')
95
- unless File.exist?(vendor_location + 'tzres.yml')
96
- puts 'File `tzres.yml` not found. Windows Zone name importing skipped.'
119
+ timeZoneFile = vendor_location + 'tzres.yaml'
120
+ unless File.exist?(timeZoneFile)
121
+ puts 'File `tzres.yaml` not found. Windows Zone name importing skipped.'
97
122
  return
98
123
  end
99
- metazones = YAML.load_file(vendor_location + 'tzres.yml')
100
- offsets = TimezoneParser::Windows.getMUIOffsets
101
- metazone_names = TimezoneParser::Windows.parseMetazones(metazones, offsets)
102
- File.write(data_location + 'windows_zonenames.yml', metazone_names.to_yaml, { :cr_newline => false, :encoding => 'UTF-8:UTF-8' })
124
+ require 'timezone_parser/data/windows'
125
+ metazones = YAML.load_file(timeZoneFile)
126
+ locales = TimezoneParser::Windows.getLocales(metazones.keys.sort)
127
+ write_yaml(data_location + 'windows_locales.yaml', locales)
128
+ update_windows_mui_extended(metazones, locales)
129
+ tzres = data_location + 'windows_tzres.yaml'
130
+ offsets = YAML.load_file(tzres)
131
+ metazone_names = TimezoneParser::Windows.parseMetazones(metazones, offsets, locales)
132
+ write_yaml(data_location + 'windows_zonenames.yml', metazone_names)
103
133
  else
104
134
  puts 'Can\'t import Windows Zone names. Need to be run from Windows.'
105
135
  end
@@ -146,6 +176,11 @@ task 'update:windows' do
146
176
  update_windows
147
177
  end
148
178
 
179
+ desc 'Update Windows tzres MUI'
180
+ task 'update:windows_mui' do
181
+ update_windows_mui
182
+ end
183
+
149
184
  desc 'Import Windows localized timezones from tzres.yml'
150
185
  task 'update:windowszones' do
151
186
  import_timezones
data/data/version.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- TZInfo: 2014h
3
- CLDR: 26
4
- Rails: 4.1.6
5
- WindowsZones: 7de0007
2
+ TZInfo: 2017b
3
+ CLDR: 31.0.1
4
+ Rails: 5.1.3
5
+ WindowsZones: 7e10400
@@ -0,0 +1,66 @@
1
+ ---
2
+ 1025: ar-SA
3
+ 1026: bg-BG
4
+ 1027: ca-ES
5
+ 1028: zh-TW
6
+ 1029: cs-CZ
7
+ 1030: da-DK
8
+ 1031: de-DE
9
+ 1032: el-GR
10
+ 1033: en-US
11
+ 1035: fi-FI
12
+ 1036: fr-FR
13
+ 1037: he-IL
14
+ 1038: hu-HU
15
+ 1039: is-IS
16
+ 1040: it-IT
17
+ 1041: ja-JP
18
+ 1042: ko-KR
19
+ 1043: nl-NL
20
+ 1044: nb-NO
21
+ 1045: pl-PL
22
+ 1046: pt-BR
23
+ 1048: ro-RO
24
+ 1049: ru-RU
25
+ 1050: hr-HR
26
+ 1051: sk-SK
27
+ 1052: sq-AL
28
+ 1053: sv-SE
29
+ 1054: th-TH
30
+ 1055: tr-TR
31
+ 1057: id-ID
32
+ 1058: uk-UA
33
+ 1059: be-BY
34
+ 1060: sl-SI
35
+ 1061: et-EE
36
+ 1062: lv-LV
37
+ 1063: lt-LT
38
+ 1065: fa-IR
39
+ 1066: vi-VN
40
+ 1068: az-Latn-AZ
41
+ 1069: eu-ES
42
+ 1071: mk-MK
43
+ 1078: af-ZA
44
+ 1081: hi-IN
45
+ 1086: ms-MY
46
+ 1087: kk-KZ
47
+ 1089: sw-KE
48
+ 1091: uz-Latn-UZ
49
+ 1097: ta-IN
50
+ 1098: te-IN
51
+ 1099: kn-IN
52
+ 1100: ml-IN
53
+ 1107: km-KH
54
+ 1108: lo-LA
55
+ 1110: gl-ES
56
+ 1118: am-ET
57
+ 1124: fil-PH
58
+ 1128: ha-Latn-NG
59
+ 2052: zh-CN
60
+ 2057: en-GB
61
+ 2058: es-MX
62
+ 2070: pt-PT
63
+ 2117: bn-BD
64
+ 3082: es-ES
65
+ 3084: fr-CA
66
+ 9242: sr-Latn-RS
@@ -0,0 +1,1600 @@
1
+ ---
2
+ 10:
3
+ Type: display
4
+ Name: Azores Standard Time
5
+ 11:
6
+ Type: daylight
7
+ Name: Azores Standard Time
8
+ 12:
9
+ Type: standard
10
+ Name: Azores Standard Time
11
+ 31:
12
+ Type: daylight
13
+ Name: Mid-Atlantic Standard Time
14
+ 32:
15
+ Type: standard
16
+ Name: Mid-Atlantic Standard Time
17
+ 40:
18
+ Type: display
19
+ Name: E. South America Standard Time
20
+ 41:
21
+ Type: daylight
22
+ Name: E. South America Standard Time
23
+ 42:
24
+ Type: standard
25
+ Name: E. South America Standard Time
26
+ 50:
27
+ Type: display
28
+ Name: Greenland Standard Time
29
+ 51:
30
+ Type: daylight
31
+ Name: Greenland Standard Time
32
+ 52:
33
+ Type: standard
34
+ Name: Greenland Standard Time
35
+ 70:
36
+ Type: display
37
+ Name: Newfoundland Standard Time
38
+ 71:
39
+ Type: daylight
40
+ Name: Newfoundland Standard Time
41
+ 72:
42
+ Type: standard
43
+ Name: Newfoundland Standard Time
44
+ 80:
45
+ Type: display
46
+ Name: Atlantic Standard Time
47
+ 81:
48
+ Type: daylight
49
+ Name: Atlantic Standard Time
50
+ 82:
51
+ Type: standard
52
+ Name: Atlantic Standard Time
53
+ 90:
54
+ Type: display
55
+ Name: Pacific SA Standard Time
56
+ 91:
57
+ Type: daylight
58
+ Name: Pacific SA Standard Time
59
+ 92:
60
+ Type: standard
61
+ Name: Pacific SA Standard Time
62
+ 104:
63
+ Type: daylight
64
+ Name: Central Brazilian Standard Time
65
+ 105:
66
+ Type: standard
67
+ Name: Central Brazilian Standard Time
68
+ 110:
69
+ Type: display
70
+ Name: Eastern Standard Time
71
+ 111:
72
+ Type: daylight
73
+ Name: Eastern Standard Time
74
+ 112:
75
+ Type: standard
76
+ Name: Eastern Standard Time
77
+ 120:
78
+ Type: display
79
+ Name: SA Pacific Standard Time
80
+ 121:
81
+ Type: daylight
82
+ Name: SA Pacific Standard Time
83
+ 122:
84
+ Type: standard
85
+ Name: SA Pacific Standard Time
86
+ 130:
87
+ Type: display
88
+ Name: US Eastern Standard Time
89
+ 131:
90
+ Type: daylight
91
+ Name: US Eastern Standard Time
92
+ 132:
93
+ Type: standard
94
+ Name: US Eastern Standard Time
95
+ 140:
96
+ Type: display
97
+ Name: Canada Central Standard Time
98
+ 141:
99
+ Type: daylight
100
+ Name: Canada Central Standard Time
101
+ 142:
102
+ Type: standard
103
+ Name: Canada Central Standard Time
104
+ 150:
105
+ Type: display
106
+ Name: Central America Standard Time
107
+ 151:
108
+ Type: daylight
109
+ Name: Central America Standard Time
110
+ 152:
111
+ Type: standard
112
+ Name: Central America Standard Time
113
+ 160:
114
+ Type: display
115
+ Name: Central Standard Time
116
+ 161:
117
+ Type: daylight
118
+ Name: Central Standard Time
119
+ 162:
120
+ Type: standard
121
+ Name: Central Standard Time
122
+ 170:
123
+ Type: display
124
+ Name: Central Standard Time (Mexico)
125
+ 171:
126
+ Type: daylight
127
+ Name: Central Standard Time (Mexico)
128
+ 172:
129
+ Type: standard
130
+ Name: Central Standard Time (Mexico)
131
+ 180:
132
+ Type: display
133
+ Name: Mountain Standard Time (Mexico)
134
+ 181:
135
+ Type: daylight
136
+ Name: Mountain Standard Time (Mexico)
137
+ 182:
138
+ Type: standard
139
+ Name: Mountain Standard Time (Mexico)
140
+ 190:
141
+ Type: display
142
+ Name: Mountain Standard Time
143
+ 191:
144
+ Type: daylight
145
+ Name: Mountain Standard Time
146
+ 192:
147
+ Type: standard
148
+ Name: Mountain Standard Time
149
+ 200:
150
+ Type: display
151
+ Name: US Mountain Standard Time
152
+ 201:
153
+ Type: daylight
154
+ Name: US Mountain Standard Time
155
+ 202:
156
+ Type: standard
157
+ Name: US Mountain Standard Time
158
+ 210:
159
+ Type: display
160
+ Name: Pacific Standard Time
161
+ 211:
162
+ Type: daylight
163
+ Name: Pacific Standard Time
164
+ 212:
165
+ Type: standard
166
+ Name: Pacific Standard Time
167
+ 214:
168
+ Type: daylight
169
+ Name: Pacific Standard Time (Mexico)
170
+ 215:
171
+ Type: standard
172
+ Name: Pacific Standard Time (Mexico)
173
+ 220:
174
+ Type: display
175
+ Name: Alaskan Standard Time
176
+ 221:
177
+ Type: daylight
178
+ Name: Alaskan Standard Time
179
+ 222:
180
+ Type: standard
181
+ Name: Alaskan Standard Time
182
+ 230:
183
+ Type: display
184
+ Name: Hawaiian Standard Time
185
+ 231:
186
+ Type: daylight
187
+ Name: Hawaiian Standard Time
188
+ 232:
189
+ Type: standard
190
+ Name: Hawaiian Standard Time
191
+ 241:
192
+ Type: daylight
193
+ Name: Samoa Standard Time
194
+ 242:
195
+ Type: standard
196
+ Name: Samoa Standard Time
197
+ 250:
198
+ Type: display
199
+ Name: Dateline Standard Time
200
+ 251:
201
+ Type: daylight
202
+ Name: Dateline Standard Time
203
+ 252:
204
+ Type: standard
205
+ Name: Dateline Standard Time
206
+ 261:
207
+ Type: daylight
208
+ Name: GMT Standard Time
209
+ 262:
210
+ Type: standard
211
+ Name: GMT Standard Time
212
+ 271:
213
+ Type: daylight
214
+ Name: Greenwich Standard Time
215
+ 272:
216
+ Type: standard
217
+ Name: Greenwich Standard Time
218
+ 280:
219
+ Type: display
220
+ Name: Central Europe Standard Time
221
+ 281:
222
+ Type: daylight
223
+ Name: Central Europe Standard Time
224
+ 282:
225
+ Type: standard
226
+ Name: Central Europe Standard Time
227
+ 290:
228
+ Type: display
229
+ Name: Central European Standard Time
230
+ 291:
231
+ Type: daylight
232
+ Name: Central European Standard Time
233
+ 292:
234
+ Type: standard
235
+ Name: Central European Standard Time
236
+ 300:
237
+ Type: display
238
+ Name: Romance Standard Time
239
+ 301:
240
+ Type: daylight
241
+ Name: Romance Standard Time
242
+ 302:
243
+ Type: standard
244
+ Name: Romance Standard Time
245
+ 310:
246
+ Type: display
247
+ Name: W. Central Africa Standard Time
248
+ 311:
249
+ Type: daylight
250
+ Name: W. Central Africa Standard Time
251
+ 312:
252
+ Type: standard
253
+ Name: W. Central Africa Standard Time
254
+ 320:
255
+ Type: display
256
+ Name: W. Europe Standard Time
257
+ 321:
258
+ Type: daylight
259
+ Name: W. Europe Standard Time
260
+ 322:
261
+ Type: standard
262
+ Name: W. Europe Standard Time
263
+ 331:
264
+ Type: daylight
265
+ Name: E. Europe Standard Time
266
+ 332:
267
+ Type: standard
268
+ Name: E. Europe Standard Time
269
+ 333:
270
+ Type: display
271
+ Name: Jordan Standard Time
272
+ 334:
273
+ Type: daylight
274
+ Name: Jordan Standard Time
275
+ 335:
276
+ Type: standard
277
+ Name: Jordan Standard Time
278
+ 340:
279
+ Type: display
280
+ Name: Egypt Standard Time
281
+ 341:
282
+ Type: daylight
283
+ Name: Egypt Standard Time
284
+ 342:
285
+ Type: standard
286
+ Name: Egypt Standard Time
287
+ 350:
288
+ Type: display
289
+ Name: FLE Standard Time
290
+ 351:
291
+ Type: daylight
292
+ Name: FLE Standard Time
293
+ 352:
294
+ Type: standard
295
+ Name: FLE Standard Time
296
+ 361:
297
+ Type: daylight
298
+ Name: GTB Standard Time
299
+ 362:
300
+ Type: standard
301
+ Name: GTB Standard Time
302
+ 363:
303
+ Type: display
304
+ Name: Middle East Standard Time
305
+ 364:
306
+ Type: daylight
307
+ Name: Middle East Standard Time
308
+ 365:
309
+ Type: standard
310
+ Name: Middle East Standard Time
311
+ 370:
312
+ Type: display
313
+ Name: Israel Standard Time
314
+ 371:
315
+ Type: daylight
316
+ Name: Israel Standard Time
317
+ 372:
318
+ Type: standard
319
+ Name: Israel Standard Time
320
+ 380:
321
+ Type: display
322
+ Name: South Africa Standard Time
323
+ 381:
324
+ Type: daylight
325
+ Name: South Africa Standard Time
326
+ 382:
327
+ Type: standard
328
+ Name: South Africa Standard Time
329
+ 384:
330
+ Type: daylight
331
+ Name: Namibia Standard Time
332
+ 385:
333
+ Type: standard
334
+ Name: Namibia Standard Time
335
+ 390:
336
+ Type: display
337
+ Name: Arab Standard Time
338
+ 391:
339
+ Type: daylight
340
+ Name: Arab Standard Time
341
+ 392:
342
+ Type: standard
343
+ Name: Arab Standard Time
344
+ 400:
345
+ Type: display
346
+ Name: Arabic Standard Time
347
+ 401:
348
+ Type: daylight
349
+ Name: Arabic Standard Time
350
+ 402:
351
+ Type: standard
352
+ Name: Arabic Standard Time
353
+ 410:
354
+ Type: display
355
+ Name: E. Africa Standard Time
356
+ 411:
357
+ Type: daylight
358
+ Name: E. Africa Standard Time
359
+ 412:
360
+ Type: standard
361
+ Name: E. Africa Standard Time
362
+ 430:
363
+ Type: display
364
+ Name: Iran Standard Time
365
+ 431:
366
+ Type: daylight
367
+ Name: Iran Standard Time
368
+ 432:
369
+ Type: standard
370
+ Name: Iran Standard Time
371
+ 434:
372
+ Type: daylight
373
+ Name: Georgian Standard Time
374
+ 435:
375
+ Type: standard
376
+ Name: Georgian Standard Time
377
+ 440:
378
+ Type: display
379
+ Name: Arabian Standard Time
380
+ 441:
381
+ Type: daylight
382
+ Name: Arabian Standard Time
383
+ 442:
384
+ Type: standard
385
+ Name: Arabian Standard Time
386
+ 447:
387
+ Type: display
388
+ Name: Azerbaijan Standard Time
389
+ 448:
390
+ Type: daylight
391
+ Name: Azerbaijan Standard Time
392
+ 449:
393
+ Type: standard
394
+ Name: Azerbaijan Standard Time
395
+ 450:
396
+ Type: display
397
+ Name: Caucasus Standard Time
398
+ 451:
399
+ Type: daylight
400
+ Name: Caucasus Standard Time
401
+ 452:
402
+ Type: standard
403
+ Name: Caucasus Standard Time
404
+ 460:
405
+ Type: display
406
+ Name: Afghanistan Standard Time
407
+ 461:
408
+ Type: daylight
409
+ Name: Afghanistan Standard Time
410
+ 462:
411
+ Type: standard
412
+ Name: Afghanistan Standard Time
413
+ 481:
414
+ Type: daylight
415
+ Name: West Asia Standard Time
416
+ 482:
417
+ Type: standard
418
+ Name: West Asia Standard Time
419
+ 490:
420
+ Type: display
421
+ Name: India Standard Time
422
+ 491:
423
+ Type: daylight
424
+ Name: India Standard Time
425
+ 492:
426
+ Type: standard
427
+ Name: India Standard Time
428
+ 500:
429
+ Type: display
430
+ Name: Nepal Standard Time
431
+ 501:
432
+ Type: daylight
433
+ Name: Nepal Standard Time
434
+ 502:
435
+ Type: standard
436
+ Name: Nepal Standard Time
437
+ 511:
438
+ Type: daylight
439
+ Name: Central Asia Standard Time
440
+ 512:
441
+ Type: standard
442
+ Name: Central Asia Standard Time
443
+ 530:
444
+ Type: display
445
+ Name: Sri Lanka Standard Time
446
+ 531:
447
+ Type: daylight
448
+ Name: Sri Lanka Standard Time
449
+ 532:
450
+ Type: standard
451
+ Name: Sri Lanka Standard Time
452
+ 540:
453
+ Type: display
454
+ Name: Myanmar Standard Time
455
+ 541:
456
+ Type: daylight
457
+ Name: Myanmar Standard Time
458
+ 542:
459
+ Type: standard
460
+ Name: Myanmar Standard Time
461
+ 560:
462
+ Type: display
463
+ Name: SE Asia Standard Time
464
+ 561:
465
+ Type: daylight
466
+ Name: SE Asia Standard Time
467
+ 562:
468
+ Type: standard
469
+ Name: SE Asia Standard Time
470
+ 570:
471
+ Type: display
472
+ Name: China Standard Time
473
+ 571:
474
+ Type: daylight
475
+ Name: China Standard Time
476
+ 572:
477
+ Type: standard
478
+ Name: China Standard Time
479
+ 590:
480
+ Type: display
481
+ Name: Singapore Standard Time
482
+ 591:
483
+ Type: daylight
484
+ Name: Singapore Standard Time
485
+ 592:
486
+ Type: standard
487
+ Name: Singapore Standard Time
488
+ 600:
489
+ Type: display
490
+ Name: Taipei Standard Time
491
+ 601:
492
+ Type: daylight
493
+ Name: Taipei Standard Time
494
+ 602:
495
+ Type: standard
496
+ Name: Taipei Standard Time
497
+ 610:
498
+ Type: display
499
+ Name: W. Australia Standard Time
500
+ 611:
501
+ Type: daylight
502
+ Name: W. Australia Standard Time
503
+ 612:
504
+ Type: standard
505
+ Name: W. Australia Standard Time
506
+ 620:
507
+ Type: display
508
+ Name: Korea Standard Time
509
+ 621:
510
+ Type: daylight
511
+ Name: Korea Standard Time
512
+ 622:
513
+ Type: standard
514
+ Name: Korea Standard Time
515
+ 630:
516
+ Type: display
517
+ Name: Tokyo Standard Time
518
+ 631:
519
+ Type: daylight
520
+ Name: Tokyo Standard Time
521
+ 632:
522
+ Type: standard
523
+ Name: Tokyo Standard Time
524
+ 650:
525
+ Type: display
526
+ Name: AUS Central Standard Time
527
+ 651:
528
+ Type: daylight
529
+ Name: AUS Central Standard Time
530
+ 652:
531
+ Type: standard
532
+ Name: AUS Central Standard Time
533
+ 660:
534
+ Type: display
535
+ Name: Cen. Australia Standard Time
536
+ 661:
537
+ Type: daylight
538
+ Name: Cen. Australia Standard Time
539
+ 662:
540
+ Type: standard
541
+ Name: Cen. Australia Standard Time
542
+ 670:
543
+ Type: display
544
+ Name: AUS Eastern Standard Time
545
+ 671:
546
+ Type: daylight
547
+ Name: AUS Eastern Standard Time
548
+ 672:
549
+ Type: standard
550
+ Name: AUS Eastern Standard Time
551
+ 680:
552
+ Type: display
553
+ Name: E. Australia Standard Time
554
+ 681:
555
+ Type: daylight
556
+ Name: E. Australia Standard Time
557
+ 682:
558
+ Type: standard
559
+ Name: E. Australia Standard Time
560
+ 690:
561
+ Type: display
562
+ Name: Tasmania Standard Time
563
+ 691:
564
+ Type: daylight
565
+ Name: Tasmania Standard Time
566
+ 692:
567
+ Type: standard
568
+ Name: Tasmania Standard Time
569
+ 710:
570
+ Type: display
571
+ Name: West Pacific Standard Time
572
+ 711:
573
+ Type: daylight
574
+ Name: West Pacific Standard Time
575
+ 712:
576
+ Type: standard
577
+ Name: West Pacific Standard Time
578
+ 721:
579
+ Type: daylight
580
+ Name: Central Pacific Standard Time
581
+ 722:
582
+ Type: standard
583
+ Name: Central Pacific Standard Time
584
+ 731:
585
+ Type: daylight
586
+ Name: Fiji Standard Time
587
+ 732:
588
+ Type: standard
589
+ Name: Fiji Standard Time
590
+ 740:
591
+ Type: display
592
+ Name: New Zealand Standard Time
593
+ 741:
594
+ Type: daylight
595
+ Name: New Zealand Standard Time
596
+ 742:
597
+ Type: standard
598
+ Name: New Zealand Standard Time
599
+ 750:
600
+ Type: display
601
+ Name: Tonga Standard Time
602
+ 751:
603
+ Type: daylight
604
+ Name: Tonga Standard Time
605
+ 752:
606
+ Type: standard
607
+ Name: Tonga Standard Time
608
+ 770:
609
+ Type: display
610
+ Name: Montevideo Standard Time
611
+ 771:
612
+ Type: daylight
613
+ Name: Montevideo Standard Time
614
+ 772:
615
+ Type: standard
616
+ Name: Montevideo Standard Time
617
+ 791:
618
+ Type: daylight
619
+ Name: SA Western Standard Time
620
+ 792:
621
+ Type: standard
622
+ Name: SA Western Standard Time
623
+ 811:
624
+ Type: daylight
625
+ Name: Venezuela Standard Time
626
+ 812:
627
+ Type: standard
628
+ Name: Venezuela Standard Time
629
+ 831:
630
+ Type: daylight
631
+ Name: SA Eastern Standard Time
632
+ 832:
633
+ Type: standard
634
+ Name: SA Eastern Standard Time
635
+ 841:
636
+ Type: daylight
637
+ Name: Argentina Standard Time
638
+ 842:
639
+ Type: standard
640
+ Name: Argentina Standard Time
641
+ 870:
642
+ Type: display
643
+ Name: Pakistan Standard Time
644
+ 871:
645
+ Type: daylight
646
+ Name: Pakistan Standard Time
647
+ 872:
648
+ Type: standard
649
+ Name: Pakistan Standard Time
650
+ 891:
651
+ Type: daylight
652
+ Name: Morocco Standard Time
653
+ 892:
654
+ Type: standard
655
+ Name: Morocco Standard Time
656
+ 910:
657
+ Type: display
658
+ Name: Mauritius Standard Time
659
+ 911:
660
+ Type: daylight
661
+ Name: Mauritius Standard Time
662
+ 912:
663
+ Type: standard
664
+ Name: Mauritius Standard Time
665
+ 930:
666
+ Type: display
667
+ Name: UTC
668
+ 931:
669
+ Type: daylight
670
+ Name: UTC
671
+ 932:
672
+ Type: standard
673
+ Name: UTC
674
+ 960:
675
+ Type: display
676
+ Name: Paraguay Standard Time
677
+ 961:
678
+ Type: daylight
679
+ Name: Paraguay Standard Time
680
+ 962:
681
+ Type: standard
682
+ Name: Paraguay Standard Time
683
+ 981:
684
+ Type: daylight
685
+ Name: Kamchatka Standard Time
686
+ 982:
687
+ Type: standard
688
+ Name: Kamchatka Standard Time
689
+ 1010:
690
+ Type: display
691
+ Name: Central Asia Standard Time
692
+ 1020:
693
+ Type: display
694
+ Name: Bangladesh Standard Time
695
+ 1021:
696
+ Type: daylight
697
+ Name: Bangladesh Standard Time
698
+ 1022:
699
+ Type: standard
700
+ Name: Bangladesh Standard Time
701
+ 1040:
702
+ Type: display
703
+ Name: Ulaanbaatar Standard Time
704
+ 1041:
705
+ Type: daylight
706
+ Name: Ulaanbaatar Standard Time
707
+ 1042:
708
+ Type: standard
709
+ Name: Ulaanbaatar Standard Time
710
+ 1070:
711
+ Type: display
712
+ Name: Georgian Standard Time
713
+ 1100:
714
+ Type: display
715
+ Name: Pacific Standard Time (Mexico)
716
+ 1110:
717
+ Type: display
718
+ Name: SA Eastern Standard Time
719
+ 1120:
720
+ Type: display
721
+ Name: Central Brazilian Standard Time
722
+ 1130:
723
+ Type: display
724
+ Name: SA Western Standard Time
725
+ 1140:
726
+ Type: display
727
+ Name: Fiji Standard Time
728
+ 1160:
729
+ Type: display
730
+ Name: UTC-02
731
+ 1161:
732
+ Type: daylight
733
+ Name: UTC-02
734
+ 1162:
735
+ Type: standard
736
+ Name: UTC-02
737
+ 1220:
738
+ Type: display
739
+ Name: UTC-08
740
+ 1221:
741
+ Type: daylight
742
+ Name: UTC-08
743
+ 1222:
744
+ Type: standard
745
+ Name: UTC-08
746
+ 1230:
747
+ Type: display
748
+ Name: UTC-09
749
+ 1231:
750
+ Type: daylight
751
+ Name: UTC-09
752
+ 1232:
753
+ Type: standard
754
+ Name: UTC-09
755
+ 1250:
756
+ Type: display
757
+ Name: UTC-11
758
+ 1251:
759
+ Type: daylight
760
+ Name: UTC-11
761
+ 1252:
762
+ Type: standard
763
+ Name: UTC-11
764
+ 1380:
765
+ Type: display
766
+ Name: UTC+12
767
+ 1381:
768
+ Type: daylight
769
+ Name: UTC+12
770
+ 1382:
771
+ Type: standard
772
+ Name: UTC+12
773
+ 1390:
774
+ Type: display
775
+ Name: UTC+13
776
+ 1391:
777
+ Type: daylight
778
+ Name: UTC+13
779
+ 1392:
780
+ Type: standard
781
+ Name: UTC+13
782
+ 1410:
783
+ Type: display
784
+ Name: Syria Standard Time
785
+ 1411:
786
+ Type: daylight
787
+ Name: Syria Standard Time
788
+ 1412:
789
+ Type: standard
790
+ Name: Syria Standard Time
791
+ 1420:
792
+ Type: display
793
+ Name: Kamchatka Standard Time
794
+ 1440:
795
+ Type: display
796
+ Name: Namibia Standard Time
797
+ 1460:
798
+ Type: display
799
+ Name: Central Pacific Standard Time
800
+ 1470:
801
+ Type: display
802
+ Name: Magadan Standard Time
803
+ 1471:
804
+ Type: daylight
805
+ Name: Magadan Standard Time
806
+ 1472:
807
+ Type: standard
808
+ Name: Magadan Standard Time
809
+ 1490:
810
+ Type: display
811
+ Name: GTB Standard Time
812
+ 1501:
813
+ Type: daylight
814
+ Name: Turkey Standard Time
815
+ 1502:
816
+ Type: standard
817
+ Name: Turkey Standard Time
818
+ 1640:
819
+ Type: display
820
+ Name: Samoa Standard Time
821
+ 1660:
822
+ Type: display
823
+ Name: Bahia Standard Time
824
+ 1661:
825
+ Type: daylight
826
+ Name: Bahia Standard Time
827
+ 1662:
828
+ Type: standard
829
+ Name: Bahia Standard Time
830
+ 1721:
831
+ Type: daylight
832
+ Name: Libya Standard Time
833
+ 1722:
834
+ Type: standard
835
+ Name: Libya Standard Time
836
+ 1740:
837
+ Type: display
838
+ Name: West Asia Standard Time
839
+ 1760:
840
+ Type: display
841
+ Name: Mid-Atlantic Standard Time
842
+ 1780:
843
+ Type: display
844
+ Name: Libya Standard Time
845
+ 1800:
846
+ Type: display
847
+ Name: Line Islands Standard Time
848
+ 1801:
849
+ Type: daylight
850
+ Name: Line Islands Standard Time
851
+ 1802:
852
+ Type: standard
853
+ Name: Line Islands Standard Time
854
+ 1821:
855
+ Type: daylight
856
+ Name: Kaliningrad Standard Time
857
+ 1822:
858
+ Type: standard
859
+ Name: Kaliningrad Standard Time
860
+ 1831:
861
+ Type: daylight
862
+ Name: Russian Standard Time
863
+ 1832:
864
+ Type: standard
865
+ Name: Russian Standard Time
866
+ 1841:
867
+ Type: daylight
868
+ Name: Ekaterinburg Standard Time
869
+ 1842:
870
+ Type: standard
871
+ Name: Ekaterinburg Standard Time
872
+ 1861:
873
+ Type: daylight
874
+ Name: North Asia Standard Time
875
+ 1862:
876
+ Type: standard
877
+ Name: North Asia Standard Time
878
+ 1871:
879
+ Type: daylight
880
+ Name: North Asia East Standard Time
881
+ 1872:
882
+ Type: standard
883
+ Name: North Asia East Standard Time
884
+ 1881:
885
+ Type: daylight
886
+ Name: Yakutsk Standard Time
887
+ 1882:
888
+ Type: standard
889
+ Name: Yakutsk Standard Time
890
+ 1891:
891
+ Type: daylight
892
+ Name: Russia Time Zone 3
893
+ 1892:
894
+ Type: standard
895
+ Name: Russia Time Zone 3
896
+ 1911:
897
+ Type: daylight
898
+ Name: Russia Time Zone 10
899
+ 1912:
900
+ Type: standard
901
+ Name: Russia Time Zone 10
902
+ 1931:
903
+ Type: daylight
904
+ Name: Russia Time Zone 11
905
+ 1932:
906
+ Type: standard
907
+ Name: Russia Time Zone 11
908
+ 1951:
909
+ Type: daylight
910
+ Name: Vladivostok Standard Time
911
+ 1952:
912
+ Type: standard
913
+ Name: Vladivostok Standard Time
914
+ 1970:
915
+ Type: display
916
+ Name: Belarus Standard Time
917
+ 1971:
918
+ Type: daylight
919
+ Name: Belarus Standard Time
920
+ 1972:
921
+ Type: standard
922
+ Name: Belarus Standard Time
923
+ 2000:
924
+ Type: display
925
+ Name: Cape Verde Standard Time
926
+ 2001:
927
+ Type: daylight
928
+ Name: Cape Verde Standard Time
929
+ 2002:
930
+ Type: standard
931
+ Name: Cape Verde Standard Time
932
+ 2040:
933
+ Type: display
934
+ Name: Eastern Standard Time (Mexico)
935
+ 2041:
936
+ Type: daylight
937
+ Name: Eastern Standard Time (Mexico)
938
+ 2042:
939
+ Type: standard
940
+ Name: Eastern Standard Time (Mexico)
941
+ 2060:
942
+ Type: display
943
+ Name: North Korea Standard Time
944
+ 2061:
945
+ Type: daylight
946
+ Name: North Korea Standard Time
947
+ 2062:
948
+ Type: standard
949
+ Name: North Korea Standard Time
950
+ 2080:
951
+ Type: display
952
+ Name: Argentina Standard Time
953
+ 2120:
954
+ Type: display
955
+ Name: Vladivostok Standard Time
956
+ 2140:
957
+ Type: display
958
+ Name: Transbaikal Standard Time
959
+ 2141:
960
+ Type: daylight
961
+ Name: Transbaikal Standard Time
962
+ 2142:
963
+ Type: standard
964
+ Name: Transbaikal Standard Time
965
+ 2160:
966
+ Type: display
967
+ Name: Altai Standard Time
968
+ 2161:
969
+ Type: daylight
970
+ Name: Altai Standard Time
971
+ 2162:
972
+ Type: standard
973
+ Name: Altai Standard Time
974
+ 2180:
975
+ Type: display
976
+ Name: Astrakhan Standard Time
977
+ 2181:
978
+ Type: daylight
979
+ Name: Astrakhan Standard Time
980
+ 2182:
981
+ Type: standard
982
+ Name: Astrakhan Standard Time
983
+ 2190:
984
+ Type: display
985
+ Name: Ekaterinburg Standard Time
986
+ 2200:
987
+ Type: display
988
+ Name: Kaliningrad Standard Time
989
+ 2230:
990
+ Type: display
991
+ Name: North Asia East Standard Time
992
+ 2240:
993
+ Type: display
994
+ Name: North Asia Standard Time
995
+ 2250:
996
+ Type: display
997
+ Name: Russia Time Zone 10
998
+ 2260:
999
+ Type: display
1000
+ Name: Russia Time Zone 11
1001
+ 2270:
1002
+ Type: display
1003
+ Name: Russia Time Zone 3
1004
+ 2280:
1005
+ Type: display
1006
+ Name: Russian Standard Time
1007
+ 2290:
1008
+ Type: display
1009
+ Name: Yakutsk Standard Time
1010
+ 2320:
1011
+ Type: display
1012
+ Name: Sakhalin Standard Time
1013
+ 2321:
1014
+ Type: daylight
1015
+ Name: Sakhalin Standard Time
1016
+ 2322:
1017
+ Type: standard
1018
+ Name: Sakhalin Standard Time
1019
+ 2340:
1020
+ Type: display
1021
+ Name: Haiti Standard Time
1022
+ 2341:
1023
+ Type: daylight
1024
+ Name: Haiti Standard Time
1025
+ 2342:
1026
+ Type: standard
1027
+ Name: Haiti Standard Time
1028
+ 2370:
1029
+ Type: display
1030
+ Name: Easter Island Standard Time
1031
+ 2371:
1032
+ Type: daylight
1033
+ Name: Easter Island Standard Time
1034
+ 2372:
1035
+ Type: standard
1036
+ Name: Easter Island Standard Time
1037
+ 2390:
1038
+ Type: display
1039
+ Name: Aleutian Standard Time
1040
+ 2391:
1041
+ Type: daylight
1042
+ Name: Aleutian Standard Time
1043
+ 2392:
1044
+ Type: standard
1045
+ Name: Aleutian Standard Time
1046
+ 2410:
1047
+ Type: display
1048
+ Name: Marquesas Standard Time
1049
+ 2411:
1050
+ Type: daylight
1051
+ Name: Marquesas Standard Time
1052
+ 2412:
1053
+ Type: standard
1054
+ Name: Marquesas Standard Time
1055
+ 2430:
1056
+ Type: display
1057
+ Name: Cuba Standard Time
1058
+ 2431:
1059
+ Type: daylight
1060
+ Name: Cuba Standard Time
1061
+ 2432:
1062
+ Type: standard
1063
+ Name: Cuba Standard Time
1064
+ 2450:
1065
+ Type: display
1066
+ Name: Saint Pierre Standard Time
1067
+ 2451:
1068
+ Type: daylight
1069
+ Name: Saint Pierre Standard Time
1070
+ 2452:
1071
+ Type: standard
1072
+ Name: Saint Pierre Standard Time
1073
+ 2470:
1074
+ Type: display
1075
+ Name: West Bank Standard Time
1076
+ 2471:
1077
+ Type: daylight
1078
+ Name: West Bank Standard Time
1079
+ 2472:
1080
+ Type: standard
1081
+ Name: West Bank Standard Time
1082
+ 2490:
1083
+ Type: display
1084
+ Name: Aus Central W. Standard Time
1085
+ 2491:
1086
+ Type: daylight
1087
+ Name: Aus Central W. Standard Time
1088
+ 2492:
1089
+ Type: standard
1090
+ Name: Aus Central W. Standard Time
1091
+ 2510:
1092
+ Type: display
1093
+ Name: Lord Howe Standard Time
1094
+ 2511:
1095
+ Type: daylight
1096
+ Name: Lord Howe Standard Time
1097
+ 2512:
1098
+ Type: standard
1099
+ Name: Lord Howe Standard Time
1100
+ 2530:
1101
+ Type: display
1102
+ Name: Chatham Islands Standard Time
1103
+ 2531:
1104
+ Type: daylight
1105
+ Name: Chatham Islands Standard Time
1106
+ 2532:
1107
+ Type: standard
1108
+ Name: Chatham Islands Standard Time
1109
+ 2550:
1110
+ Type: display
1111
+ Name: W. Mongolia Standard Time
1112
+ 2551:
1113
+ Type: daylight
1114
+ Name: W. Mongolia Standard Time
1115
+ 2552:
1116
+ Type: standard
1117
+ Name: W. Mongolia Standard Time
1118
+ 2570:
1119
+ Type: display
1120
+ Name: Turks And Caicos Standard Time
1121
+ 2571:
1122
+ Type: daylight
1123
+ Name: Turks And Caicos Standard Time
1124
+ 2572:
1125
+ Type: standard
1126
+ Name: Turks And Caicos Standard Time
1127
+ 2590:
1128
+ Type: display
1129
+ Name: Tocantins Standard Time
1130
+ 2591:
1131
+ Type: daylight
1132
+ Name: Tocantins Standard Time
1133
+ 2592:
1134
+ Type: standard
1135
+ Name: Tocantins Standard Time
1136
+ 2610:
1137
+ Type: display
1138
+ Name: Bougainville Standard Time
1139
+ 2611:
1140
+ Type: daylight
1141
+ Name: Bougainville Standard Time
1142
+ 2612:
1143
+ Type: standard
1144
+ Name: Bougainville Standard Time
1145
+ 2630:
1146
+ Type: display
1147
+ Name: Norfolk Standard Time
1148
+ 2631:
1149
+ Type: daylight
1150
+ Name: Norfolk Standard Time
1151
+ 2632:
1152
+ Type: standard
1153
+ Name: Norfolk Standard Time
1154
+ 2650:
1155
+ Type: display
1156
+ Name: Morocco Standard Time
1157
+ 2670:
1158
+ Type: display
1159
+ Name: GMT Standard Time
1160
+ 2690:
1161
+ Type: display
1162
+ Name: Greenwich Standard Time
1163
+ 2710:
1164
+ Type: display
1165
+ Name: E. Europe Standard Time
1166
+ 2730:
1167
+ Type: display
1168
+ Name: Venezuela Standard Time
1169
+ 2750:
1170
+ Type: display
1171
+ Name: Tomsk Standard Time
1172
+ 2751:
1173
+ Type: daylight
1174
+ Name: Tomsk Standard Time
1175
+ 2752:
1176
+ Type: standard
1177
+ Name: Tomsk Standard Time
1178
+ 2770:
1179
+ Type: display
1180
+ Name: Omsk Standard Time
1181
+ 2771:
1182
+ Type: daylight
1183
+ Name: Omsk Standard Time
1184
+ 2772:
1185
+ Type: standard
1186
+ Name: Omsk Standard Time
1187
+ 2790:
1188
+ Type: display
1189
+ Name: N. Central Asia Standard Time
1190
+ 2791:
1191
+ Type: daylight
1192
+ Name: N. Central Asia Standard Time
1193
+ 2792:
1194
+ Type: standard
1195
+ Name: N. Central Asia Standard Time
1196
+ 2810:
1197
+ Type: display
1198
+ Name: Turkey Standard Time
1199
+ 2840:
1200
+ Type: display
1201
+ Name: Saratov Standard Time
1202
+ 2841:
1203
+ Type: daylight
1204
+ Name: Saratov Standard Time
1205
+ 2842:
1206
+ Type: standard
1207
+ Name: Saratov Standard Time
1208
+ 2870:
1209
+ Type: display
1210
+ Name: Magallanes Standard Time
1211
+ 2871:
1212
+ Type: daylight
1213
+ Name: Magallanes Standard Time
1214
+ 2872:
1215
+ Type: standard
1216
+ Name: Magallanes Standard Time
1217
+ 20:
1218
+ Type: display
1219
+ Name: Cape Verde Standard Time
1220
+ 21:
1221
+ Type: daylight
1222
+ Name: Cape Verde Standard Time
1223
+ 22:
1224
+ Type: standard
1225
+ Name: Cape Verde Standard Time
1226
+ 30:
1227
+ Type: display
1228
+ Name: Mid-Atlantic Standard Time
1229
+ 60:
1230
+ Type: display
1231
+ Name: SA Eastern Standard Time
1232
+ 61:
1233
+ Type: daylight
1234
+ Name: SA Eastern Standard Time
1235
+ 62:
1236
+ Type: standard
1237
+ Name: SA Eastern Standard Time
1238
+ 100:
1239
+ Type: display
1240
+ Name: SA Western Standard Time
1241
+ 101:
1242
+ Type: daylight
1243
+ Name: SA Western Standard Time
1244
+ 102:
1245
+ Type: standard
1246
+ Name: SA Western Standard Time
1247
+ 103:
1248
+ Type: display
1249
+ Name: Central Brazilian Standard Time
1250
+ 213:
1251
+ Type: display
1252
+ Name: Pacific Standard Time (Mexico)
1253
+ 240:
1254
+ Type: display
1255
+ Name: Samoa Standard Time
1256
+ 260:
1257
+ Type: display
1258
+ Name: GMT Standard Time
1259
+ 270:
1260
+ Type: display
1261
+ Name: Greenwich Standard Time
1262
+ 330:
1263
+ Type: display
1264
+ Name: E. Europe Standard Time
1265
+ 360:
1266
+ Type: display
1267
+ Name: GTB Standard Time
1268
+ 383:
1269
+ Type: display
1270
+ Name: Namibia Standard Time
1271
+ 420:
1272
+ Type: display
1273
+ Name: Russian Standard Time
1274
+ 421:
1275
+ Type: daylight
1276
+ Name: Russian Standard Time
1277
+ 422:
1278
+ Type: standard
1279
+ Name: Russian Standard Time
1280
+ 433:
1281
+ Type: display
1282
+ Name: Georgian Standard Time
1283
+ 470:
1284
+ Type: display
1285
+ Name: Ekaterinburg Standard Time
1286
+ 471:
1287
+ Type: daylight
1288
+ Name: Ekaterinburg Standard Time
1289
+ 472:
1290
+ Type: standard
1291
+ Name: Ekaterinburg Standard Time
1292
+ 480:
1293
+ Type: display
1294
+ Name: West Asia Standard Time
1295
+ 510:
1296
+ Type: display
1297
+ Name: Central Asia Standard Time
1298
+ 520:
1299
+ Type: display
1300
+ Name: N. Central Asia Standard Time
1301
+ 521:
1302
+ Type: daylight
1303
+ Name: N. Central Asia Standard Time
1304
+ 522:
1305
+ Type: standard
1306
+ Name: N. Central Asia Standard Time
1307
+ 550:
1308
+ Type: display
1309
+ Name: North Asia Standard Time
1310
+ 551:
1311
+ Type: daylight
1312
+ Name: North Asia Standard Time
1313
+ 552:
1314
+ Type: standard
1315
+ Name: North Asia Standard Time
1316
+ 580:
1317
+ Type: display
1318
+ Name: North Asia East Standard Time
1319
+ 581:
1320
+ Type: daylight
1321
+ Name: North Asia East Standard Time
1322
+ 582:
1323
+ Type: standard
1324
+ Name: North Asia East Standard Time
1325
+ 640:
1326
+ Type: display
1327
+ Name: Yakutsk Standard Time
1328
+ 641:
1329
+ Type: daylight
1330
+ Name: Yakutsk Standard Time
1331
+ 642:
1332
+ Type: standard
1333
+ Name: Yakutsk Standard Time
1334
+ 700:
1335
+ Type: display
1336
+ Name: Vladivostok Standard Time
1337
+ 701:
1338
+ Type: daylight
1339
+ Name: Vladivostok Standard Time
1340
+ 702:
1341
+ Type: standard
1342
+ Name: Vladivostok Standard Time
1343
+ 720:
1344
+ Type: display
1345
+ Name: Central Pacific Standard Time
1346
+ 730:
1347
+ Type: display
1348
+ Name: Fiji Standard Time
1349
+ 790:
1350
+ Type: display
1351
+ Name: SA Western Standard Time
1352
+ 810:
1353
+ Type: display
1354
+ Name: Venezuela Standard Time
1355
+ 830:
1356
+ Type: display
1357
+ Name: SA Eastern Standard Time
1358
+ 840:
1359
+ Type: display
1360
+ Name: Argentina Standard Time
1361
+ 890:
1362
+ Type: display
1363
+ Name: Morocco Standard Time
1364
+ 980:
1365
+ Type: display
1366
+ Name: Kamchatka Standard Time
1367
+ 1060:
1368
+ Type: display
1369
+ Name: North Pacific Standard Time
1370
+ 1061:
1371
+ Type: daylight
1372
+ Name: North Pacific Standard Time
1373
+ 1062:
1374
+ Type: standard
1375
+ Name: North Pacific Standard Time
1376
+ 1150:
1377
+ Type: display
1378
+ Name: UTC-01
1379
+ 1151:
1380
+ Type: daylight
1381
+ Name: UTC-01
1382
+ 1152:
1383
+ Type: standard
1384
+ Name: UTC-01
1385
+ 1170:
1386
+ Type: display
1387
+ Name: UTC-03
1388
+ 1171:
1389
+ Type: daylight
1390
+ Name: UTC-03
1391
+ 1172:
1392
+ Type: standard
1393
+ Name: UTC-03
1394
+ 1180:
1395
+ Type: display
1396
+ Name: UTC-04
1397
+ 1181:
1398
+ Type: daylight
1399
+ Name: UTC-04
1400
+ 1182:
1401
+ Type: standard
1402
+ Name: UTC-04
1403
+ 1190:
1404
+ Type: display
1405
+ Name: UTC-05
1406
+ 1191:
1407
+ Type: daylight
1408
+ Name: UTC-05
1409
+ 1192:
1410
+ Type: standard
1411
+ Name: UTC-05
1412
+ 1200:
1413
+ Type: display
1414
+ Name: UTC-06
1415
+ 1201:
1416
+ Type: daylight
1417
+ Name: UTC-06
1418
+ 1202:
1419
+ Type: standard
1420
+ Name: UTC-06
1421
+ 1210:
1422
+ Type: display
1423
+ Name: UTC-07
1424
+ 1211:
1425
+ Type: daylight
1426
+ Name: UTC-07
1427
+ 1212:
1428
+ Type: standard
1429
+ Name: UTC-07
1430
+ 1240:
1431
+ Type: display
1432
+ Name: UTC-10
1433
+ 1241:
1434
+ Type: daylight
1435
+ Name: UTC-10
1436
+ 1242:
1437
+ Type: standard
1438
+ Name: UTC-10
1439
+ 1260:
1440
+ Type: display
1441
+ Name: UTC-12
1442
+ 1261:
1443
+ Type: daylight
1444
+ Name: UTC-12
1445
+ 1262:
1446
+ Type: standard
1447
+ Name: UTC-12
1448
+ 1270:
1449
+ Type: display
1450
+ Name: UTC+01
1451
+ 1271:
1452
+ Type: daylight
1453
+ Name: UTC+01
1454
+ 1272:
1455
+ Type: standard
1456
+ Name: UTC+01
1457
+ 1280:
1458
+ Type: display
1459
+ Name: UTC+02
1460
+ 1281:
1461
+ Type: daylight
1462
+ Name: UTC+02
1463
+ 1282:
1464
+ Type: standard
1465
+ Name: UTC+02
1466
+ 1290:
1467
+ Type: display
1468
+ Name: UTC+03
1469
+ 1291:
1470
+ Type: daylight
1471
+ Name: UTC+03
1472
+ 1292:
1473
+ Type: standard
1474
+ Name: UTC+03
1475
+ 1300:
1476
+ Type: display
1477
+ Name: UTC+04
1478
+ 1301:
1479
+ Type: daylight
1480
+ Name: UTC+04
1481
+ 1302:
1482
+ Type: standard
1483
+ Name: UTC+04
1484
+ 1310:
1485
+ Type: display
1486
+ Name: UTC+05
1487
+ 1311:
1488
+ Type: daylight
1489
+ Name: UTC+05
1490
+ 1312:
1491
+ Type: standard
1492
+ Name: UTC+05
1493
+ 1320:
1494
+ Type: display
1495
+ Name: UTC+06
1496
+ 1321:
1497
+ Type: daylight
1498
+ Name: UTC+06
1499
+ 1322:
1500
+ Type: standard
1501
+ Name: UTC+06
1502
+ 1330:
1503
+ Type: display
1504
+ Name: UTC+07
1505
+ 1331:
1506
+ Type: daylight
1507
+ Name: UTC+07
1508
+ 1332:
1509
+ Type: standard
1510
+ Name: UTC+07
1511
+ 1340:
1512
+ Type: display
1513
+ Name: UTC+08
1514
+ 1341:
1515
+ Type: daylight
1516
+ Name: UTC+08
1517
+ 1342:
1518
+ Type: standard
1519
+ Name: UTC+08
1520
+ 1350:
1521
+ Type: display
1522
+ Name: UTC+09
1523
+ 1351:
1524
+ Type: daylight
1525
+ Name: UTC+09
1526
+ 1352:
1527
+ Type: standard
1528
+ Name: UTC+09
1529
+ 1360:
1530
+ Type: display
1531
+ Name: UTC+10
1532
+ 1361:
1533
+ Type: daylight
1534
+ Name: UTC+10
1535
+ 1362:
1536
+ Type: standard
1537
+ Name: UTC+10
1538
+ 1370:
1539
+ Type: display
1540
+ Name: UTC+11
1541
+ 1371:
1542
+ Type: daylight
1543
+ Name: UTC+11
1544
+ 1372:
1545
+ Type: standard
1546
+ Name: UTC+11
1547
+ 1500:
1548
+ Type: display
1549
+ Name: Turkey Standard Time
1550
+ 1600:
1551
+ Type: display
1552
+ Name: Kaliningrad Standard Time
1553
+ 1601:
1554
+ Type: daylight
1555
+ Name: Kaliningrad Standard Time
1556
+ 1602:
1557
+ Type: standard
1558
+ Name: Kaliningrad Standard Time
1559
+ 1720:
1560
+ Type: display
1561
+ Name: Libya Standard Time
1562
+ 1820:
1563
+ Type: display
1564
+ Name: Russia TZ 1 Standard Time
1565
+ 1830:
1566
+ Type: display
1567
+ Name: Russia TZ 2 Standard Time
1568
+ 1840:
1569
+ Type: display
1570
+ Name: Russia TZ 4 Standard Time
1571
+ 1850:
1572
+ Type: display
1573
+ Name: Russia TZ 5 Standard Time
1574
+ 1851:
1575
+ Type: daylight
1576
+ Name: Russia TZ 5 Standard Time
1577
+ 1852:
1578
+ Type: standard
1579
+ Name: Russia TZ 5 Standard Time
1580
+ 1860:
1581
+ Type: display
1582
+ Name: Russia TZ 6 Standard Time
1583
+ 1870:
1584
+ Type: display
1585
+ Name: Russia TZ 7 Standard Time
1586
+ 1880:
1587
+ Type: display
1588
+ Name: Russia TZ 8 Standard Time
1589
+ 1890:
1590
+ Type: display
1591
+ Name: Russia TZ 3 Standard Time
1592
+ 1910:
1593
+ Type: display
1594
+ Name: Russia TZ 10 Standard Time
1595
+ 1930:
1596
+ Type: display
1597
+ Name: Russia TZ 11 Standard Time
1598
+ 1950:
1599
+ Type: display
1600
+ Name: Russia TZ 9 Standard Time