@tuturuuu/utils 0.0.3 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. package/CHANGELOG.md +305 -0
  2. package/biome.json +5 -0
  3. package/jsr.json +8 -8
  4. package/package.json +63 -32
  5. package/src/__tests__/ai-temp-auth.test.ts +309 -0
  6. package/src/__tests__/api-proxy-guard.test.ts +1451 -0
  7. package/src/__tests__/app-url.test.ts +270 -0
  8. package/src/__tests__/avatar-url.test.ts +97 -0
  9. package/src/__tests__/color-helper.test.ts +179 -0
  10. package/src/__tests__/constants.test.ts +351 -0
  11. package/src/__tests__/crypto.test.ts +107 -0
  12. package/src/__tests__/date-helper.test.ts +408 -0
  13. package/src/__tests__/fixtures/task-description-full-featured.json +456 -0
  14. package/src/__tests__/format.test.ts +317 -0
  15. package/src/__tests__/html-sanitizer.test.ts +360 -0
  16. package/src/__tests__/interest-calculator.test.ts +336 -0
  17. package/src/__tests__/interest-detector.test.ts +222 -0
  18. package/src/__tests__/label-colors.test.ts +241 -0
  19. package/src/__tests__/name-helper.test.ts +158 -0
  20. package/src/__tests__/node-diff.test.ts +576 -0
  21. package/src/__tests__/notification-service.test.ts +210 -0
  22. package/src/__tests__/onboarding-helper.test.ts +331 -0
  23. package/src/__tests__/path-helper.test.ts +152 -0
  24. package/src/__tests__/permissions.test.tsx +81 -0
  25. package/src/__tests__/request-emoji-limit.test.ts +172 -0
  26. package/src/__tests__/search-helper.test.ts +51 -0
  27. package/src/__tests__/storage-display-name.test.ts +37 -0
  28. package/src/__tests__/storage-path.test.ts +238 -0
  29. package/src/__tests__/tag-utils.test.ts +205 -0
  30. package/src/__tests__/task-description-yjs-state.test.ts +581 -0
  31. package/src/__tests__/task-helper-board-api-routing.test.ts +94 -0
  32. package/src/__tests__/task-helper-create-task.test.ts +129 -0
  33. package/src/__tests__/task-helpers.test.ts +464 -0
  34. package/src/__tests__/task-overrides.test.ts +305 -0
  35. package/src/__tests__/task-reorder-cache.test.ts +74 -0
  36. package/src/__tests__/task-sort-keys.test.ts +36 -0
  37. package/src/__tests__/task-transformers.test.ts +62 -0
  38. package/src/__tests__/text-helper.test.ts +776 -0
  39. package/src/__tests__/time-helper.test.ts +70 -0
  40. package/src/__tests__/time-tracker-period.test.ts +55 -0
  41. package/src/__tests__/timezone.test.ts +117 -0
  42. package/src/__tests__/upstash-rest.test.ts +77 -0
  43. package/src/__tests__/uuid-helper.test.ts +133 -0
  44. package/src/__tests__/workspace-helper.test.ts +859 -0
  45. package/src/__tests__/workspace-limits.test.ts +255 -0
  46. package/src/__tests__/yjs-helper.test.ts +581 -0
  47. package/src/abuse-protection/__tests__/backend-rate-limit.test.ts +113 -0
  48. package/src/abuse-protection/__tests__/edge.test.ts +136 -0
  49. package/src/abuse-protection/__tests__/index.test.ts +562 -0
  50. package/src/abuse-protection/__tests__/reputation.test.ts +192 -0
  51. package/src/abuse-protection/backend-rate-limit.ts +44 -0
  52. package/src/abuse-protection/constants.ts +117 -0
  53. package/src/abuse-protection/edge.ts +223 -0
  54. package/src/abuse-protection/index.ts +1545 -0
  55. package/src/abuse-protection/reputation.ts +587 -0
  56. package/src/abuse-protection/types.ts +97 -0
  57. package/src/abuse-protection/user-agent.ts +124 -0
  58. package/src/abuse-protection/user-suspension.ts +231 -0
  59. package/src/ai-temp-auth.ts +315 -0
  60. package/src/api-proxy-guard.ts +965 -0
  61. package/src/app-url.ts +96 -0
  62. package/src/avatar-url.ts +64 -0
  63. package/src/break-duration.ts +84 -0
  64. package/src/calendar-auth-token.test.ts +37 -0
  65. package/src/calendar-auth-token.ts +19 -0
  66. package/src/calendar-sync-coordination.md +197 -0
  67. package/src/calendar-utils.test.ts +169 -0
  68. package/src/calendar-utils.ts +91 -0
  69. package/src/color-helper.ts +110 -0
  70. package/src/common/nextjs.tsx +99 -0
  71. package/src/common/scan.tsx +15 -0
  72. package/src/configs/reports.ts +160 -0
  73. package/src/constants.ts +85 -0
  74. package/src/crypto.ts +21 -0
  75. package/src/currencies.ts +97 -0
  76. package/src/date-helper.ts +313 -0
  77. package/src/editor/convert-to-task.ts +264 -0
  78. package/src/editor/index.ts +5 -0
  79. package/src/email/__tests__/client.test.ts +141 -0
  80. package/src/email/__tests__/validation.test.ts +46 -0
  81. package/src/email/client.ts +92 -0
  82. package/src/email/server.ts +128 -0
  83. package/src/email/validation.ts +11 -0
  84. package/src/encryption/__tests__/calendar-events.test.ts +411 -0
  85. package/src/encryption/__tests__/configuration.test.ts +114 -0
  86. package/src/encryption/__tests__/field-encryption.test.ts +232 -0
  87. package/src/encryption/__tests__/key-generation.test.ts +30 -0
  88. package/src/encryption/__tests__/performance-edge-cases.test.ts +187 -0
  89. package/src/encryption/__tests__/test-helpers.ts +22 -0
  90. package/src/encryption/__tests__/workspace-key-encryption.test.ts +129 -0
  91. package/src/encryption/encryption-service.ts +343 -0
  92. package/src/encryption/index.ts +25 -0
  93. package/src/encryption/types.ts +57 -0
  94. package/src/exchange-rates.ts +49 -0
  95. package/src/feature-flags/__tests__/feature-flags.test.ts +302 -0
  96. package/src/feature-flags/core.ts +322 -0
  97. package/src/feature-flags/data.ts +16 -0
  98. package/src/feature-flags/default.ts +18 -0
  99. package/src/feature-flags/index.ts +7 -0
  100. package/src/feature-flags/requestable-features.ts +79 -0
  101. package/src/feature-flags/types.ts +4 -0
  102. package/src/fetcher.ts +2 -0
  103. package/src/finance/index.ts +4 -0
  104. package/src/finance/interest-calculator.ts +456 -0
  105. package/src/finance/interest-detector.ts +141 -0
  106. package/src/finance/transform-invoice-results.ts +219 -0
  107. package/src/finance/wallet-permissions.test.ts +169 -0
  108. package/src/finance/wallet-permissions.ts +82 -0
  109. package/src/format.ts +120 -1
  110. package/src/generated/platform-build-metadata.ts +11 -0
  111. package/src/hooks/use-platform.ts +64 -0
  112. package/src/html-sanitizer.ts +155 -0
  113. package/src/internal-domains.ts +497 -0
  114. package/src/keyboard-preset.ts +109 -0
  115. package/src/label-colors.ts +213 -0
  116. package/src/launchable-apps.test.ts +126 -0
  117. package/src/launchable-apps.ts +490 -0
  118. package/src/name-helper.ts +269 -0
  119. package/src/next-config.test.ts +234 -0
  120. package/src/next-config.ts +203 -0
  121. package/src/node-diff.ts +375 -0
  122. package/src/notification-service.ts +379 -0
  123. package/src/nova/scores/__tests__/calculate.test.ts +254 -0
  124. package/src/nova/scores/calculate.ts +132 -0
  125. package/src/nova/submissions/check-permission.ts +132 -0
  126. package/src/onboarding-helper.ts +213 -0
  127. package/src/path-helper.ts +93 -0
  128. package/src/permissions.tsx +1170 -0
  129. package/src/plan-helpers.test.ts +188 -0
  130. package/src/plan-helpers.ts +80 -0
  131. package/src/platform-release.test.ts +74 -0
  132. package/src/platform-release.ts +155 -0
  133. package/src/portless.ts +124 -0
  134. package/src/priority-styles.ts +42 -0
  135. package/src/request-emoji-limit.ts +335 -0
  136. package/src/search-helper.ts +18 -0
  137. package/src/search.test.ts +89 -0
  138. package/src/search.ts +355 -0
  139. package/src/storage-display-name.ts +30 -0
  140. package/src/storage-path.ts +147 -0
  141. package/src/tag-utils.ts +159 -0
  142. package/src/task/reorder.ts +245 -0
  143. package/src/task/transformers.ts +149 -0
  144. package/src/task-date-timezone.ts +133 -0
  145. package/src/task-description-content.ts +240 -0
  146. package/src/task-helper/board.ts +193 -0
  147. package/src/task-helper/bulk-actions.ts +564 -0
  148. package/src/task-helper/personal-external-staging.ts +21 -0
  149. package/src/task-helper/recycle-bin.ts +202 -0
  150. package/src/task-helper/relationships.ts +346 -0
  151. package/src/task-helper/shared.ts +109 -0
  152. package/src/task-helper/sort-keys.ts +337 -0
  153. package/src/task-helper/task-hooks-basic.ts +342 -0
  154. package/src/task-helper/task-hooks-move.ts +264 -0
  155. package/src/task-helper/task-operations.ts +278 -0
  156. package/src/task-helper.ts +12 -0
  157. package/src/task-helpers.ts +241 -0
  158. package/src/task-list-status.ts +62 -0
  159. package/src/task-overrides.ts +82 -0
  160. package/src/task-snapshot.ts +374 -0
  161. package/src/text-diff.ts +81 -0
  162. package/src/text-helper.ts +537 -0
  163. package/src/time-helper.ts +63 -0
  164. package/src/time-tracker-period.ts +73 -0
  165. package/src/timeblock-helper.ts +418 -0
  166. package/src/timezone.ts +190 -0
  167. package/src/timezones.json +1271 -0
  168. package/src/upstash-rest.ts +56 -0
  169. package/src/user-helper.ts +296 -0
  170. package/src/uuid-helper.ts +11 -0
  171. package/src/workspace-handle.ts +10 -0
  172. package/src/workspace-helper.ts +1408 -0
  173. package/src/workspace-limits.ts +68 -0
  174. package/src/yjs-helper.ts +217 -0
  175. package/src/yjs-task-description.ts +81 -0
  176. package/tsconfig.json +3 -5
  177. package/tsconfig.typecheck.json +33 -0
  178. package/vitest.config.ts +36 -0
  179. package/dist/index.d.ts +0 -8
  180. package/dist/index.js +0 -2
  181. package/dist/index.js.map +0 -1
  182. package/dist/index.mjs +0 -2
  183. package/dist/index.mjs.map +0 -1
  184. package/eslint.config.mjs +0 -20
  185. package/rollup.config.js +0 -41
  186. package/src/index.ts +0 -1
@@ -0,0 +1,1271 @@
1
+ [
2
+ {
3
+ "value": "Dateline Standard Time",
4
+ "abbr": "DST",
5
+ "offset": -12,
6
+ "isdst": false,
7
+ "text": "(UTC-12:00) International Date Line West",
8
+ "utc": ["Etc/GMT+12"]
9
+ },
10
+ {
11
+ "value": "UTC-11",
12
+ "abbr": "U",
13
+ "offset": -11,
14
+ "isdst": false,
15
+ "text": "(UTC-11:00) Coordinated Universal Time-11",
16
+ "utc": ["Etc/GMT+11", "Pacific/Midway", "Pacific/Niue", "Pacific/Pago_Pago"]
17
+ },
18
+ {
19
+ "value": "Hawaiian Standard Time",
20
+ "abbr": "HST",
21
+ "offset": -10,
22
+ "isdst": false,
23
+ "text": "(UTC-10:00) Hawaii",
24
+ "utc": [
25
+ "Etc/GMT+10",
26
+ "Pacific/Honolulu",
27
+ "Pacific/Johnston",
28
+ "Pacific/Rarotonga",
29
+ "Pacific/Tahiti"
30
+ ]
31
+ },
32
+ {
33
+ "value": "Alaskan Standard Time",
34
+ "abbr": "AKDT",
35
+ "offset": -8,
36
+ "isdst": true,
37
+ "text": "(UTC-09:00) Alaska",
38
+ "utc": [
39
+ "America/Anchorage",
40
+ "America/Juneau",
41
+ "America/Nome",
42
+ "America/Sitka",
43
+ "America/Yakutat"
44
+ ]
45
+ },
46
+ {
47
+ "value": "Pacific Standard Time (Mexico)",
48
+ "abbr": "PDT",
49
+ "offset": -7,
50
+ "isdst": true,
51
+ "text": "(UTC-08:00) Baja California",
52
+ "utc": ["America/Santa_Isabel"]
53
+ },
54
+ {
55
+ "value": "Pacific Daylight Time",
56
+ "abbr": "PDT",
57
+ "offset": -7,
58
+ "isdst": true,
59
+ "text": "(UTC-07:00) Pacific Daylight Time (US & Canada)",
60
+ "utc": ["America/Los_Angeles", "America/Tijuana", "America/Vancouver"]
61
+ },
62
+ {
63
+ "value": "Pacific Standard Time",
64
+ "abbr": "PST",
65
+ "offset": -8,
66
+ "isdst": false,
67
+ "text": "(UTC-08:00) Pacific Standard Time (US & Canada)",
68
+ "utc": [
69
+ "America/Los_Angeles",
70
+ "America/Tijuana",
71
+ "America/Vancouver",
72
+ "PST8PDT"
73
+ ]
74
+ },
75
+ {
76
+ "value": "US Mountain Standard Time",
77
+ "abbr": "UMST",
78
+ "offset": -7,
79
+ "isdst": false,
80
+ "text": "(UTC-07:00) Arizona",
81
+ "utc": [
82
+ "America/Creston",
83
+ "America/Dawson",
84
+ "America/Dawson_Creek",
85
+ "America/Hermosillo",
86
+ "America/Phoenix",
87
+ "America/Whitehorse",
88
+ "Etc/GMT+7"
89
+ ]
90
+ },
91
+ {
92
+ "value": "Mountain Standard Time (Mexico)",
93
+ "abbr": "MDT",
94
+ "offset": -6,
95
+ "isdst": true,
96
+ "text": "(UTC-07:00) Chihuahua, La Paz, Mazatlan",
97
+ "utc": ["America/Chihuahua", "America/Mazatlan"]
98
+ },
99
+ {
100
+ "value": "Mountain Standard Time",
101
+ "abbr": "MDT",
102
+ "offset": -6,
103
+ "isdst": true,
104
+ "text": "(UTC-07:00) Mountain Time (US & Canada)",
105
+ "utc": [
106
+ "America/Boise",
107
+ "America/Cambridge_Bay",
108
+ "America/Denver",
109
+ "America/Edmonton",
110
+ "America/Inuvik",
111
+ "America/Ojinaga",
112
+ "America/Yellowknife",
113
+ "MST7MDT"
114
+ ]
115
+ },
116
+ {
117
+ "value": "Central America Standard Time",
118
+ "abbr": "CAST",
119
+ "offset": -6,
120
+ "isdst": false,
121
+ "text": "(UTC-06:00) Central America",
122
+ "utc": [
123
+ "America/Belize",
124
+ "America/Costa_Rica",
125
+ "America/El_Salvador",
126
+ "America/Guatemala",
127
+ "America/Managua",
128
+ "America/Tegucigalpa",
129
+ "Etc/GMT+6",
130
+ "Pacific/Galapagos"
131
+ ]
132
+ },
133
+ {
134
+ "value": "Central Standard Time",
135
+ "abbr": "CDT",
136
+ "offset": -5,
137
+ "isdst": true,
138
+ "text": "(UTC-06:00) Central Time (US & Canada)",
139
+ "utc": [
140
+ "America/Chicago",
141
+ "America/Indiana/Knox",
142
+ "America/Indiana/Tell_City",
143
+ "America/Matamoros",
144
+ "America/Menominee",
145
+ "America/North_Dakota/Beulah",
146
+ "America/North_Dakota/Center",
147
+ "America/North_Dakota/New_Salem",
148
+ "America/Rainy_River",
149
+ "America/Rankin_Inlet",
150
+ "America/Resolute",
151
+ "America/Winnipeg",
152
+ "CST6CDT"
153
+ ]
154
+ },
155
+ {
156
+ "value": "Central Standard Time (Mexico)",
157
+ "abbr": "CDT",
158
+ "offset": -5,
159
+ "isdst": true,
160
+ "text": "(UTC-06:00) Guadalajara, Mexico City, Monterrey",
161
+ "utc": [
162
+ "America/Bahia_Banderas",
163
+ "America/Cancun",
164
+ "America/Merida",
165
+ "America/Mexico_City",
166
+ "America/Monterrey"
167
+ ]
168
+ },
169
+ {
170
+ "value": "Canada Central Standard Time",
171
+ "abbr": "CCST",
172
+ "offset": -6,
173
+ "isdst": false,
174
+ "text": "(UTC-06:00) Saskatchewan",
175
+ "utc": ["America/Regina", "America/Swift_Current"]
176
+ },
177
+ {
178
+ "value": "SA Pacific Standard Time",
179
+ "abbr": "SPST",
180
+ "offset": -5,
181
+ "isdst": false,
182
+ "text": "(UTC-05:00) Bogota, Lima, Quito",
183
+ "utc": [
184
+ "America/Bogota",
185
+ "America/Cayman",
186
+ "America/Coral_Harbour",
187
+ "America/Eirunepe",
188
+ "America/Guayaquil",
189
+ "America/Jamaica",
190
+ "America/Lima",
191
+ "America/Panama",
192
+ "America/Rio_Branco",
193
+ "Etc/GMT+5"
194
+ ]
195
+ },
196
+ {
197
+ "value": "Eastern Standard Time",
198
+ "abbr": "EST",
199
+ "offset": -5,
200
+ "isdst": false,
201
+ "text": "(UTC-05:00) Eastern Time (US & Canada)",
202
+ "utc": [
203
+ "America/Detroit",
204
+ "America/Havana",
205
+ "America/Indiana/Petersburg",
206
+ "America/Indiana/Vincennes",
207
+ "America/Indiana/Winamac",
208
+ "America/Iqaluit",
209
+ "America/Kentucky/Monticello",
210
+ "America/Louisville",
211
+ "America/Montreal",
212
+ "America/Nassau",
213
+ "America/New_York",
214
+ "America/Nipigon",
215
+ "America/Pangnirtung",
216
+ "America/Port-au-Prince",
217
+ "America/Thunder_Bay",
218
+ "America/Toronto"
219
+ ]
220
+ },
221
+ {
222
+ "value": "Eastern Daylight Time",
223
+ "abbr": "EDT",
224
+ "offset": -4,
225
+ "isdst": true,
226
+ "text": "(UTC-04:00) Eastern Daylight Time (US & Canada)",
227
+ "utc": [
228
+ "America/Detroit",
229
+ "America/Havana",
230
+ "America/Indiana/Petersburg",
231
+ "America/Indiana/Vincennes",
232
+ "America/Indiana/Winamac",
233
+ "America/Iqaluit",
234
+ "America/Kentucky/Monticello",
235
+ "America/Louisville",
236
+ "America/Montreal",
237
+ "America/Nassau",
238
+ "America/New_York",
239
+ "America/Nipigon",
240
+ "America/Pangnirtung",
241
+ "America/Port-au-Prince",
242
+ "America/Thunder_Bay",
243
+ "America/Toronto"
244
+ ]
245
+ },
246
+ {
247
+ "value": "US Eastern Standard Time",
248
+ "abbr": "UEDT",
249
+ "offset": -5,
250
+ "isdst": false,
251
+ "text": "(UTC-05:00) Indiana (East)",
252
+ "utc": [
253
+ "America/Indiana/Marengo",
254
+ "America/Indiana/Vevay",
255
+ "America/Indianapolis"
256
+ ]
257
+ },
258
+ {
259
+ "value": "Venezuela Standard Time",
260
+ "abbr": "VST",
261
+ "offset": -4.5,
262
+ "isdst": false,
263
+ "text": "(UTC-04:30) Caracas",
264
+ "utc": ["America/Caracas"]
265
+ },
266
+ {
267
+ "value": "Paraguay Standard Time",
268
+ "abbr": "PYT",
269
+ "offset": -4,
270
+ "isdst": false,
271
+ "text": "(UTC-04:00) Asuncion",
272
+ "utc": ["America/Asuncion"]
273
+ },
274
+ {
275
+ "value": "Atlantic Standard Time",
276
+ "abbr": "ADT",
277
+ "offset": -3,
278
+ "isdst": true,
279
+ "text": "(UTC-04:00) Atlantic Time (Canada)",
280
+ "utc": [
281
+ "America/Glace_Bay",
282
+ "America/Goose_Bay",
283
+ "America/Halifax",
284
+ "America/Moncton",
285
+ "America/Thule",
286
+ "Atlantic/Bermuda"
287
+ ]
288
+ },
289
+ {
290
+ "value": "Central Brazilian Standard Time",
291
+ "abbr": "CBST",
292
+ "offset": -4,
293
+ "isdst": false,
294
+ "text": "(UTC-04:00) Cuiaba",
295
+ "utc": ["America/Campo_Grande", "America/Cuiaba"]
296
+ },
297
+ {
298
+ "value": "SA Western Standard Time",
299
+ "abbr": "SWST",
300
+ "offset": -4,
301
+ "isdst": false,
302
+ "text": "(UTC-04:00) Georgetown, La Paz, Manaus, San Juan",
303
+ "utc": [
304
+ "America/Anguilla",
305
+ "America/Antigua",
306
+ "America/Aruba",
307
+ "America/Barbados",
308
+ "America/Blanc-Sablon",
309
+ "America/Boa_Vista",
310
+ "America/Curacao",
311
+ "America/Dominica",
312
+ "America/Grand_Turk",
313
+ "America/Grenada",
314
+ "America/Guadeloupe",
315
+ "America/Guyana",
316
+ "America/Kralendijk",
317
+ "America/La_Paz",
318
+ "America/Lower_Princes",
319
+ "America/Manaus",
320
+ "America/Marigot",
321
+ "America/Martinique",
322
+ "America/Montserrat",
323
+ "America/Port_of_Spain",
324
+ "America/Porto_Velho",
325
+ "America/Puerto_Rico",
326
+ "America/Santo_Domingo",
327
+ "America/St_Barthelemy",
328
+ "America/St_Kitts",
329
+ "America/St_Lucia",
330
+ "America/St_Thomas",
331
+ "America/St_Vincent",
332
+ "America/Tortola",
333
+ "Etc/GMT+4"
334
+ ]
335
+ },
336
+ {
337
+ "value": "Pacific SA Standard Time",
338
+ "abbr": "PSST",
339
+ "offset": -4,
340
+ "isdst": false,
341
+ "text": "(UTC-04:00) Santiago",
342
+ "utc": ["America/Santiago", "Antarctica/Palmer"]
343
+ },
344
+ {
345
+ "value": "Newfoundland Standard Time",
346
+ "abbr": "NDT",
347
+ "offset": -2.5,
348
+ "isdst": true,
349
+ "text": "(UTC-03:30) Newfoundland",
350
+ "utc": ["America/St_Johns"]
351
+ },
352
+ {
353
+ "value": "E. South America Standard Time",
354
+ "abbr": "ESAST",
355
+ "offset": -3,
356
+ "isdst": false,
357
+ "text": "(UTC-03:00) Brasilia",
358
+ "utc": ["America/Sao_Paulo"]
359
+ },
360
+ {
361
+ "value": "Argentina Standard Time",
362
+ "abbr": "AST",
363
+ "offset": -3,
364
+ "isdst": false,
365
+ "text": "(UTC-03:00) Buenos Aires",
366
+ "utc": [
367
+ "America/Argentina/Buenos_Aires",
368
+ "America/Argentina/Catamarca",
369
+ "America/Argentina/Cordoba",
370
+ "America/Argentina/Jujuy",
371
+ "America/Argentina/La_Rioja",
372
+ "America/Argentina/Mendoza",
373
+ "America/Argentina/Rio_Gallegos",
374
+ "America/Argentina/Salta",
375
+ "America/Argentina/San_Juan",
376
+ "America/Argentina/San_Luis",
377
+ "America/Argentina/Tucuman",
378
+ "America/Argentina/Ushuaia",
379
+ "America/Buenos_Aires",
380
+ "America/Catamarca",
381
+ "America/Cordoba",
382
+ "America/Jujuy",
383
+ "America/Mendoza"
384
+ ]
385
+ },
386
+ {
387
+ "value": "SA Eastern Standard Time",
388
+ "abbr": "SEST",
389
+ "offset": -3,
390
+ "isdst": false,
391
+ "text": "(UTC-03:00) Cayenne, Fortaleza",
392
+ "utc": [
393
+ "America/Araguaina",
394
+ "America/Belem",
395
+ "America/Cayenne",
396
+ "America/Fortaleza",
397
+ "America/Maceio",
398
+ "America/Paramaribo",
399
+ "America/Recife",
400
+ "America/Santarem",
401
+ "Antarctica/Rothera",
402
+ "Atlantic/Stanley",
403
+ "Etc/GMT+3"
404
+ ]
405
+ },
406
+ {
407
+ "value": "Greenland Standard Time",
408
+ "abbr": "GDT",
409
+ "offset": -3,
410
+ "isdst": true,
411
+ "text": "(UTC-03:00) Greenland",
412
+ "utc": ["America/Godthab"]
413
+ },
414
+ {
415
+ "value": "Montevideo Standard Time",
416
+ "abbr": "MST",
417
+ "offset": -3,
418
+ "isdst": false,
419
+ "text": "(UTC-03:00) Montevideo",
420
+ "utc": ["America/Montevideo"]
421
+ },
422
+ {
423
+ "value": "Bahia Standard Time",
424
+ "abbr": "BST",
425
+ "offset": -3,
426
+ "isdst": false,
427
+ "text": "(UTC-03:00) Salvador",
428
+ "utc": ["America/Bahia"]
429
+ },
430
+ {
431
+ "value": "UTC-02",
432
+ "abbr": "U",
433
+ "offset": -2,
434
+ "isdst": false,
435
+ "text": "(UTC-02:00) Coordinated Universal Time-02",
436
+ "utc": ["America/Noronha", "Atlantic/South_Georgia", "Etc/GMT+2"]
437
+ },
438
+ {
439
+ "value": "Mid-Atlantic Standard Time",
440
+ "abbr": "MDT",
441
+ "offset": -1,
442
+ "isdst": true,
443
+ "text": "(UTC-02:00) Mid-Atlantic - Old",
444
+ "utc": []
445
+ },
446
+ {
447
+ "value": "Azores Standard Time",
448
+ "abbr": "ADT",
449
+ "offset": 0,
450
+ "isdst": true,
451
+ "text": "(UTC-01:00) Azores",
452
+ "utc": ["America/Scoresbysund", "Atlantic/Azores"]
453
+ },
454
+ {
455
+ "value": "Cape Verde Standard Time",
456
+ "abbr": "CVST",
457
+ "offset": -1,
458
+ "isdst": false,
459
+ "text": "(UTC-01:00) Cape Verde Is.",
460
+ "utc": ["Atlantic/Cape_Verde", "Etc/GMT+1"]
461
+ },
462
+ {
463
+ "value": "Morocco Standard Time",
464
+ "abbr": "MDT",
465
+ "offset": 1,
466
+ "isdst": true,
467
+ "text": "(UTC) Casablanca",
468
+ "utc": ["Africa/Casablanca", "Africa/El_Aaiun"]
469
+ },
470
+ {
471
+ "value": "UTC",
472
+ "abbr": "UTC",
473
+ "offset": 0,
474
+ "isdst": false,
475
+ "text": "(UTC) Coordinated Universal Time",
476
+ "utc": ["America/Danmarkshavn", "Etc/GMT"]
477
+ },
478
+ {
479
+ "value": "GMT Standard Time",
480
+ "abbr": "GMT",
481
+ "offset": 0,
482
+ "isdst": false,
483
+ "text": "(UTC) Edinburgh, London",
484
+ "utc": [
485
+ "Europe/Isle_of_Man",
486
+ "Europe/Guernsey",
487
+ "Europe/Jersey",
488
+ "Europe/London"
489
+ ]
490
+ },
491
+ {
492
+ "value": "British Summer Time",
493
+ "abbr": "BST",
494
+ "offset": 1,
495
+ "isdst": true,
496
+ "text": "(UTC+01:00) Edinburgh, London",
497
+ "utc": [
498
+ "Europe/Isle_of_Man",
499
+ "Europe/Guernsey",
500
+ "Europe/Jersey",
501
+ "Europe/London"
502
+ ]
503
+ },
504
+ {
505
+ "value": "GMT Standard Time",
506
+ "abbr": "GDT",
507
+ "offset": 1,
508
+ "isdst": true,
509
+ "text": "(UTC) Dublin, Lisbon",
510
+ "utc": [
511
+ "Atlantic/Canary",
512
+ "Atlantic/Faeroe",
513
+ "Atlantic/Madeira",
514
+ "Europe/Dublin",
515
+ "Europe/Lisbon"
516
+ ]
517
+ },
518
+ {
519
+ "value": "Greenwich Standard Time",
520
+ "abbr": "GST",
521
+ "offset": 0,
522
+ "isdst": false,
523
+ "text": "(UTC) Monrovia, Reykjavik",
524
+ "utc": [
525
+ "Africa/Abidjan",
526
+ "Africa/Accra",
527
+ "Africa/Bamako",
528
+ "Africa/Banjul",
529
+ "Africa/Bissau",
530
+ "Africa/Conakry",
531
+ "Africa/Dakar",
532
+ "Africa/Freetown",
533
+ "Africa/Lome",
534
+ "Africa/Monrovia",
535
+ "Africa/Nouakchott",
536
+ "Africa/Ouagadougou",
537
+ "Africa/Sao_Tome",
538
+ "Atlantic/Reykjavik",
539
+ "Atlantic/St_Helena"
540
+ ]
541
+ },
542
+ {
543
+ "value": "W. Europe Standard Time",
544
+ "abbr": "WEDT",
545
+ "offset": 2,
546
+ "isdst": true,
547
+ "text": "(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna",
548
+ "utc": [
549
+ "Arctic/Longyearbyen",
550
+ "Europe/Amsterdam",
551
+ "Europe/Andorra",
552
+ "Europe/Berlin",
553
+ "Europe/Busingen",
554
+ "Europe/Gibraltar",
555
+ "Europe/Luxembourg",
556
+ "Europe/Malta",
557
+ "Europe/Monaco",
558
+ "Europe/Oslo",
559
+ "Europe/Rome",
560
+ "Europe/San_Marino",
561
+ "Europe/Stockholm",
562
+ "Europe/Vaduz",
563
+ "Europe/Vatican",
564
+ "Europe/Vienna",
565
+ "Europe/Zurich"
566
+ ]
567
+ },
568
+ {
569
+ "value": "Central Europe Standard Time",
570
+ "abbr": "CEDT",
571
+ "offset": 2,
572
+ "isdst": true,
573
+ "text": "(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague",
574
+ "utc": [
575
+ "Europe/Belgrade",
576
+ "Europe/Bratislava",
577
+ "Europe/Budapest",
578
+ "Europe/Ljubljana",
579
+ "Europe/Podgorica",
580
+ "Europe/Prague",
581
+ "Europe/Tirane"
582
+ ]
583
+ },
584
+ {
585
+ "value": "Romance Standard Time",
586
+ "abbr": "RDT",
587
+ "offset": 2,
588
+ "isdst": true,
589
+ "text": "(UTC+01:00) Brussels, Copenhagen, Madrid, Paris",
590
+ "utc": [
591
+ "Africa/Ceuta",
592
+ "Europe/Brussels",
593
+ "Europe/Copenhagen",
594
+ "Europe/Madrid",
595
+ "Europe/Paris"
596
+ ]
597
+ },
598
+ {
599
+ "value": "Central European Standard Time",
600
+ "abbr": "CEDT",
601
+ "offset": 2,
602
+ "isdst": true,
603
+ "text": "(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb",
604
+ "utc": [
605
+ "Europe/Sarajevo",
606
+ "Europe/Skopje",
607
+ "Europe/Warsaw",
608
+ "Europe/Zagreb"
609
+ ]
610
+ },
611
+ {
612
+ "value": "W. Central Africa Standard Time",
613
+ "abbr": "WCAST",
614
+ "offset": 1,
615
+ "isdst": false,
616
+ "text": "(UTC+01:00) West Central Africa",
617
+ "utc": [
618
+ "Africa/Algiers",
619
+ "Africa/Bangui",
620
+ "Africa/Brazzaville",
621
+ "Africa/Douala",
622
+ "Africa/Kinshasa",
623
+ "Africa/Lagos",
624
+ "Africa/Libreville",
625
+ "Africa/Luanda",
626
+ "Africa/Malabo",
627
+ "Africa/Ndjamena",
628
+ "Africa/Niamey",
629
+ "Africa/Porto-Novo",
630
+ "Africa/Tunis",
631
+ "Etc/GMT-1"
632
+ ]
633
+ },
634
+ {
635
+ "value": "Namibia Standard Time",
636
+ "abbr": "NST",
637
+ "offset": 1,
638
+ "isdst": false,
639
+ "text": "(UTC+01:00) Windhoek",
640
+ "utc": ["Africa/Windhoek"]
641
+ },
642
+ {
643
+ "value": "GTB Standard Time",
644
+ "abbr": "GDT",
645
+ "offset": 3,
646
+ "isdst": true,
647
+ "text": "(UTC+02:00) Athens, Bucharest",
648
+ "utc": [
649
+ "Asia/Nicosia",
650
+ "Europe/Athens",
651
+ "Europe/Bucharest",
652
+ "Europe/Chisinau"
653
+ ]
654
+ },
655
+ {
656
+ "value": "Middle East Standard Time",
657
+ "abbr": "MEDT",
658
+ "offset": 3,
659
+ "isdst": true,
660
+ "text": "(UTC+02:00) Beirut",
661
+ "utc": ["Asia/Beirut"]
662
+ },
663
+ {
664
+ "value": "Egypt Standard Time",
665
+ "abbr": "EST",
666
+ "offset": 2,
667
+ "isdst": false,
668
+ "text": "(UTC+02:00) Cairo",
669
+ "utc": ["Africa/Cairo"]
670
+ },
671
+ {
672
+ "value": "Syria Standard Time",
673
+ "abbr": "SDT",
674
+ "offset": 3,
675
+ "isdst": true,
676
+ "text": "(UTC+02:00) Damascus",
677
+ "utc": ["Asia/Damascus"]
678
+ },
679
+ {
680
+ "value": "E. Europe Standard Time",
681
+ "abbr": "EEDT",
682
+ "offset": 3,
683
+ "isdst": true,
684
+ "text": "(UTC+02:00) E. Europe",
685
+ "utc": [
686
+ "Asia/Nicosia",
687
+ "Europe/Athens",
688
+ "Europe/Bucharest",
689
+ "Europe/Chisinau",
690
+ "Europe/Helsinki",
691
+ "Europe/Kyiv",
692
+ "Europe/Mariehamn",
693
+ "Europe/Nicosia",
694
+ "Europe/Riga",
695
+ "Europe/Sofia",
696
+ "Europe/Tallinn",
697
+ "Europe/Uzhgorod",
698
+ "Europe/Vilnius",
699
+ "Europe/Zaporozhye"
700
+ ]
701
+ },
702
+ {
703
+ "value": "South Africa Standard Time",
704
+ "abbr": "SAST",
705
+ "offset": 2,
706
+ "isdst": false,
707
+ "text": "(UTC+02:00) Harare, Pretoria",
708
+ "utc": [
709
+ "Africa/Blantyre",
710
+ "Africa/Bujumbura",
711
+ "Africa/Gaborone",
712
+ "Africa/Harare",
713
+ "Africa/Johannesburg",
714
+ "Africa/Kigali",
715
+ "Africa/Lubumbashi",
716
+ "Africa/Lusaka",
717
+ "Africa/Maputo",
718
+ "Africa/Maseru",
719
+ "Africa/Mbabane",
720
+ "Etc/GMT-2"
721
+ ]
722
+ },
723
+ {
724
+ "value": "FLE Standard Time",
725
+ "abbr": "FDT",
726
+ "offset": 3,
727
+ "isdst": true,
728
+ "text": "(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius",
729
+ "utc": [
730
+ "Europe/Helsinki",
731
+ "Europe/Kyiv",
732
+ "Europe/Mariehamn",
733
+ "Europe/Riga",
734
+ "Europe/Sofia",
735
+ "Europe/Tallinn",
736
+ "Europe/Uzhgorod",
737
+ "Europe/Vilnius",
738
+ "Europe/Zaporozhye"
739
+ ]
740
+ },
741
+ {
742
+ "value": "Turkey Standard Time",
743
+ "abbr": "TDT",
744
+ "offset": 3,
745
+ "isdst": false,
746
+ "text": "(UTC+03:00) Istanbul",
747
+ "utc": ["Europe/Istanbul"]
748
+ },
749
+ {
750
+ "value": "Israel Standard Time",
751
+ "abbr": "JDT",
752
+ "offset": 3,
753
+ "isdst": true,
754
+ "text": "(UTC+02:00) Jerusalem",
755
+ "utc": ["Asia/Jerusalem"]
756
+ },
757
+ {
758
+ "value": "Libya Standard Time",
759
+ "abbr": "LST",
760
+ "offset": 2,
761
+ "isdst": false,
762
+ "text": "(UTC+02:00) Tripoli",
763
+ "utc": ["Africa/Tripoli"]
764
+ },
765
+ {
766
+ "value": "Jordan Standard Time",
767
+ "abbr": "JST",
768
+ "offset": 3,
769
+ "isdst": false,
770
+ "text": "(UTC+03:00) Amman",
771
+ "utc": ["Asia/Amman"]
772
+ },
773
+ {
774
+ "value": "Arabic Standard Time",
775
+ "abbr": "AST",
776
+ "offset": 3,
777
+ "isdst": false,
778
+ "text": "(UTC+03:00) Baghdad",
779
+ "utc": ["Asia/Baghdad"]
780
+ },
781
+ {
782
+ "value": "Kaliningrad Standard Time",
783
+ "abbr": "KST",
784
+ "offset": 3,
785
+ "isdst": false,
786
+ "text": "(UTC+02:00) Kaliningrad",
787
+ "utc": ["Europe/Kaliningrad"]
788
+ },
789
+ {
790
+ "value": "Arab Standard Time",
791
+ "abbr": "AST",
792
+ "offset": 3,
793
+ "isdst": false,
794
+ "text": "(UTC+03:00) Kuwait, Riyadh",
795
+ "utc": [
796
+ "Asia/Aden",
797
+ "Asia/Bahrain",
798
+ "Asia/Kuwait",
799
+ "Asia/Qatar",
800
+ "Asia/Riyadh"
801
+ ]
802
+ },
803
+ {
804
+ "value": "E. Africa Standard Time",
805
+ "abbr": "EAST",
806
+ "offset": 3,
807
+ "isdst": false,
808
+ "text": "(UTC+03:00) Nairobi",
809
+ "utc": [
810
+ "Africa/Addis_Ababa",
811
+ "Africa/Asmera",
812
+ "Africa/Dar_es_Salaam",
813
+ "Africa/Djibouti",
814
+ "Africa/Juba",
815
+ "Africa/Kampala",
816
+ "Africa/Khartoum",
817
+ "Africa/Mogadishu",
818
+ "Africa/Nairobi",
819
+ "Antarctica/Syowa",
820
+ "Etc/GMT-3",
821
+ "Indian/Antananarivo",
822
+ "Indian/Comoro",
823
+ "Indian/Mayotte"
824
+ ]
825
+ },
826
+ {
827
+ "value": "Moscow Standard Time",
828
+ "abbr": "MSK",
829
+ "offset": 3,
830
+ "isdst": false,
831
+ "text": "(UTC+03:00) Moscow, St. Petersburg, Volgograd, Minsk",
832
+ "utc": [
833
+ "Europe/Kirov",
834
+ "Europe/Moscow",
835
+ "Europe/Simferopol",
836
+ "Europe/Volgograd",
837
+ "Europe/Minsk"
838
+ ]
839
+ },
840
+ {
841
+ "value": "Samara Time",
842
+ "abbr": "SAMT",
843
+ "offset": 4,
844
+ "isdst": false,
845
+ "text": "(UTC+04:00) Samara, Ulyanovsk, Saratov",
846
+ "utc": ["Europe/Astrakhan", "Europe/Samara", "Europe/Ulyanovsk"]
847
+ },
848
+ {
849
+ "value": "Iran Standard Time",
850
+ "abbr": "IDT",
851
+ "offset": 4.5,
852
+ "isdst": true,
853
+ "text": "(UTC+03:30) Tehran",
854
+ "utc": ["Asia/Tehran"]
855
+ },
856
+ {
857
+ "value": "Arabian Standard Time",
858
+ "abbr": "AST",
859
+ "offset": 4,
860
+ "isdst": false,
861
+ "text": "(UTC+04:00) Abu Dhabi, Muscat",
862
+ "utc": ["Asia/Dubai", "Asia/Muscat", "Etc/GMT-4"]
863
+ },
864
+ {
865
+ "value": "Azerbaijan Standard Time",
866
+ "abbr": "ADT",
867
+ "offset": 5,
868
+ "isdst": true,
869
+ "text": "(UTC+04:00) Baku",
870
+ "utc": ["Asia/Baku"]
871
+ },
872
+ {
873
+ "value": "Mauritius Standard Time",
874
+ "abbr": "MST",
875
+ "offset": 4,
876
+ "isdst": false,
877
+ "text": "(UTC+04:00) Port Louis",
878
+ "utc": ["Indian/Mahe", "Indian/Mauritius", "Indian/Reunion"]
879
+ },
880
+ {
881
+ "value": "Georgian Standard Time",
882
+ "abbr": "GET",
883
+ "offset": 4,
884
+ "isdst": false,
885
+ "text": "(UTC+04:00) Tbilisi",
886
+ "utc": ["Asia/Tbilisi"]
887
+ },
888
+ {
889
+ "value": "Caucasus Standard Time",
890
+ "abbr": "CST",
891
+ "offset": 4,
892
+ "isdst": false,
893
+ "text": "(UTC+04:00) Yerevan",
894
+ "utc": ["Asia/Yerevan"]
895
+ },
896
+ {
897
+ "value": "Afghanistan Standard Time",
898
+ "abbr": "AST",
899
+ "offset": 4.5,
900
+ "isdst": false,
901
+ "text": "(UTC+04:30) Kabul",
902
+ "utc": ["Asia/Kabul"]
903
+ },
904
+ {
905
+ "value": "West Asia Standard Time",
906
+ "abbr": "WAST",
907
+ "offset": 5,
908
+ "isdst": false,
909
+ "text": "(UTC+05:00) Ashgabat, Tashkent",
910
+ "utc": [
911
+ "Antarctica/Mawson",
912
+ "Asia/Aqtau",
913
+ "Asia/Aqtobe",
914
+ "Asia/Ashgabat",
915
+ "Asia/Dushanbe",
916
+ "Asia/Oral",
917
+ "Asia/Samarkand",
918
+ "Asia/Tashkent",
919
+ "Etc/GMT-5",
920
+ "Indian/Kerguelen",
921
+ "Indian/Maldives"
922
+ ]
923
+ },
924
+ {
925
+ "value": "Yekaterinburg Time",
926
+ "abbr": "YEKT",
927
+ "offset": 5,
928
+ "isdst": false,
929
+ "text": "(UTC+05:00) Yekaterinburg",
930
+ "utc": ["Asia/Yekaterinburg"]
931
+ },
932
+ {
933
+ "value": "Pakistan Standard Time",
934
+ "abbr": "PKT",
935
+ "offset": 5,
936
+ "isdst": false,
937
+ "text": "(UTC+05:00) Islamabad, Karachi",
938
+ "utc": ["Asia/Karachi"]
939
+ },
940
+ {
941
+ "value": "India Standard Time",
942
+ "abbr": "IST",
943
+ "offset": 5.5,
944
+ "isdst": false,
945
+ "text": "(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi",
946
+ "utc": ["Asia/Kolkata", "Asia/Calcutta"]
947
+ },
948
+ {
949
+ "value": "Sri Lanka Standard Time",
950
+ "abbr": "SLST",
951
+ "offset": 5.5,
952
+ "isdst": false,
953
+ "text": "(UTC+05:30) Sri Jayawardenepura",
954
+ "utc": ["Asia/Colombo"]
955
+ },
956
+ {
957
+ "value": "Nepal Standard Time",
958
+ "abbr": "NST",
959
+ "offset": 5.75,
960
+ "isdst": false,
961
+ "text": "(UTC+05:45) Kathmandu",
962
+ "utc": ["Asia/Kathmandu"]
963
+ },
964
+ {
965
+ "value": "Central Asia Standard Time",
966
+ "abbr": "CAST",
967
+ "offset": 6,
968
+ "isdst": false,
969
+ "text": "(UTC+06:00) Nur-Sultan (Astana)",
970
+ "utc": [
971
+ "Antarctica/Vostok",
972
+ "Asia/Almaty",
973
+ "Asia/Bishkek",
974
+ "Asia/Qyzylorda",
975
+ "Asia/Urumqi",
976
+ "Etc/GMT-6",
977
+ "Indian/Chagos"
978
+ ]
979
+ },
980
+ {
981
+ "value": "Bangladesh Standard Time",
982
+ "abbr": "BST",
983
+ "offset": 6,
984
+ "isdst": false,
985
+ "text": "(UTC+06:00) Dhaka",
986
+ "utc": ["Asia/Dhaka", "Asia/Thimphu"]
987
+ },
988
+ {
989
+ "value": "Myanmar Standard Time",
990
+ "abbr": "MST",
991
+ "offset": 6.5,
992
+ "isdst": false,
993
+ "text": "(UTC+06:30) Yangon (Rangoon)",
994
+ "utc": ["Asia/Rangoon", "Indian/Cocos"]
995
+ },
996
+ {
997
+ "value": "SE Asia Standard Time",
998
+ "abbr": "SAST",
999
+ "offset": 7,
1000
+ "isdst": false,
1001
+ "text": "(UTC+07:00) Bangkok, Hanoi, Jakarta",
1002
+ "utc": [
1003
+ "Antarctica/Davis",
1004
+ "Asia/Bangkok",
1005
+ "Asia/Hovd",
1006
+ "Asia/Jakarta",
1007
+ "Asia/Phnom_Penh",
1008
+ "Asia/Pontianak",
1009
+ "Asia/Saigon",
1010
+ "Asia/Vientiane",
1011
+ "Etc/GMT-7",
1012
+ "Indian/Christmas"
1013
+ ]
1014
+ },
1015
+ {
1016
+ "value": "N. Central Asia Standard Time",
1017
+ "abbr": "NCAST",
1018
+ "offset": 7,
1019
+ "isdst": false,
1020
+ "text": "(UTC+07:00) Novosibirsk",
1021
+ "utc": ["Asia/Novokuznetsk", "Asia/Novosibirsk", "Asia/Omsk"]
1022
+ },
1023
+ {
1024
+ "value": "China Standard Time",
1025
+ "abbr": "CST",
1026
+ "offset": 8,
1027
+ "isdst": false,
1028
+ "text": "(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi",
1029
+ "utc": ["Asia/Hong_Kong", "Asia/Macau", "Asia/Shanghai"]
1030
+ },
1031
+ {
1032
+ "value": "North Asia Standard Time",
1033
+ "abbr": "NAST",
1034
+ "offset": 8,
1035
+ "isdst": false,
1036
+ "text": "(UTC+08:00) Krasnoyarsk",
1037
+ "utc": ["Asia/Krasnoyarsk"]
1038
+ },
1039
+ {
1040
+ "value": "Singapore Standard Time",
1041
+ "abbr": "MPST",
1042
+ "offset": 8,
1043
+ "isdst": false,
1044
+ "text": "(UTC+08:00) Kuala Lumpur, Singapore",
1045
+ "utc": [
1046
+ "Asia/Brunei",
1047
+ "Asia/Kuala_Lumpur",
1048
+ "Asia/Kuching",
1049
+ "Asia/Makassar",
1050
+ "Asia/Manila",
1051
+ "Asia/Singapore",
1052
+ "Etc/GMT-8"
1053
+ ]
1054
+ },
1055
+ {
1056
+ "value": "W. Australia Standard Time",
1057
+ "abbr": "WAST",
1058
+ "offset": 8,
1059
+ "isdst": false,
1060
+ "text": "(UTC+08:00) Perth",
1061
+ "utc": ["Antarctica/Casey", "Australia/Perth"]
1062
+ },
1063
+ {
1064
+ "value": "Taipei Standard Time",
1065
+ "abbr": "TST",
1066
+ "offset": 8,
1067
+ "isdst": false,
1068
+ "text": "(UTC+08:00) Taipei",
1069
+ "utc": ["Asia/Taipei"]
1070
+ },
1071
+ {
1072
+ "value": "Ulaanbaatar Standard Time",
1073
+ "abbr": "UST",
1074
+ "offset": 8,
1075
+ "isdst": false,
1076
+ "text": "(UTC+08:00) Ulaanbaatar",
1077
+ "utc": ["Asia/Choibalsan", "Asia/Ulaanbaatar"]
1078
+ },
1079
+ {
1080
+ "value": "North Asia East Standard Time",
1081
+ "abbr": "NAEST",
1082
+ "offset": 8,
1083
+ "isdst": false,
1084
+ "text": "(UTC+08:00) Irkutsk",
1085
+ "utc": ["Asia/Irkutsk"]
1086
+ },
1087
+ {
1088
+ "value": "Japan Standard Time",
1089
+ "abbr": "JST",
1090
+ "offset": 9,
1091
+ "isdst": false,
1092
+ "text": "(UTC+09:00) Osaka, Sapporo, Tokyo",
1093
+ "utc": [
1094
+ "Asia/Dili",
1095
+ "Asia/Jayapura",
1096
+ "Asia/Tokyo",
1097
+ "Etc/GMT-9",
1098
+ "Pacific/Palau"
1099
+ ]
1100
+ },
1101
+ {
1102
+ "value": "Korea Standard Time",
1103
+ "abbr": "KST",
1104
+ "offset": 9,
1105
+ "isdst": false,
1106
+ "text": "(UTC+09:00) Seoul",
1107
+ "utc": ["Asia/Pyongyang", "Asia/Seoul"]
1108
+ },
1109
+ {
1110
+ "value": "Cen. Australia Standard Time",
1111
+ "abbr": "CAST",
1112
+ "offset": 9.5,
1113
+ "isdst": false,
1114
+ "text": "(UTC+09:30) Adelaide",
1115
+ "utc": ["Australia/Adelaide", "Australia/Broken_Hill"]
1116
+ },
1117
+ {
1118
+ "value": "AUS Central Standard Time",
1119
+ "abbr": "ACST",
1120
+ "offset": 9.5,
1121
+ "isdst": false,
1122
+ "text": "(UTC+09:30) Darwin",
1123
+ "utc": ["Australia/Darwin"]
1124
+ },
1125
+ {
1126
+ "value": "E. Australia Standard Time",
1127
+ "abbr": "EAST",
1128
+ "offset": 10,
1129
+ "isdst": false,
1130
+ "text": "(UTC+10:00) Brisbane",
1131
+ "utc": ["Australia/Brisbane", "Australia/Lindeman"]
1132
+ },
1133
+ {
1134
+ "value": "AUS Eastern Standard Time",
1135
+ "abbr": "AEST",
1136
+ "offset": 10,
1137
+ "isdst": false,
1138
+ "text": "(UTC+10:00) Canberra, Melbourne, Sydney",
1139
+ "utc": ["Australia/Melbourne", "Australia/Sydney"]
1140
+ },
1141
+ {
1142
+ "value": "West Pacific Standard Time",
1143
+ "abbr": "WPST",
1144
+ "offset": 10,
1145
+ "isdst": false,
1146
+ "text": "(UTC+10:00) Guam, Port Moresby",
1147
+ "utc": [
1148
+ "Antarctica/DumontDUrville",
1149
+ "Etc/GMT-10",
1150
+ "Pacific/Guam",
1151
+ "Pacific/Port_Moresby",
1152
+ "Pacific/Saipan",
1153
+ "Pacific/Truk"
1154
+ ]
1155
+ },
1156
+ {
1157
+ "value": "Tasmania Standard Time",
1158
+ "abbr": "TST",
1159
+ "offset": 10,
1160
+ "isdst": false,
1161
+ "text": "(UTC+10:00) Hobart",
1162
+ "utc": ["Australia/Currie", "Australia/Hobart"]
1163
+ },
1164
+ {
1165
+ "value": "Yakutsk Standard Time",
1166
+ "abbr": "YST",
1167
+ "offset": 9,
1168
+ "isdst": false,
1169
+ "text": "(UTC+09:00) Yakutsk",
1170
+ "utc": ["Asia/Chita", "Asia/Khandyga", "Asia/Yakutsk"]
1171
+ },
1172
+ {
1173
+ "value": "Central Pacific Standard Time",
1174
+ "abbr": "CPST",
1175
+ "offset": 11,
1176
+ "isdst": false,
1177
+ "text": "(UTC+11:00) Solomon Is., New Caledonia",
1178
+ "utc": [
1179
+ "Antarctica/Macquarie",
1180
+ "Etc/GMT-11",
1181
+ "Pacific/Efate",
1182
+ "Pacific/Guadalcanal",
1183
+ "Pacific/Kosrae",
1184
+ "Pacific/Noumea",
1185
+ "Pacific/Ponape"
1186
+ ]
1187
+ },
1188
+ {
1189
+ "value": "Vladivostok Standard Time",
1190
+ "abbr": "VST",
1191
+ "offset": 11,
1192
+ "isdst": false,
1193
+ "text": "(UTC+11:00) Vladivostok",
1194
+ "utc": ["Asia/Sakhalin", "Asia/Ust-Nera", "Asia/Vladivostok"]
1195
+ },
1196
+ {
1197
+ "value": "New Zealand Standard Time",
1198
+ "abbr": "NZST",
1199
+ "offset": 12,
1200
+ "isdst": false,
1201
+ "text": "(UTC+12:00) Auckland, Wellington",
1202
+ "utc": ["Antarctica/McMurdo", "Pacific/Auckland"]
1203
+ },
1204
+ {
1205
+ "value": "UTC+12",
1206
+ "abbr": "U",
1207
+ "offset": 12,
1208
+ "isdst": false,
1209
+ "text": "(UTC+12:00) Coordinated Universal Time+12",
1210
+ "utc": [
1211
+ "Etc/GMT-12",
1212
+ "Pacific/Funafuti",
1213
+ "Pacific/Kwajalein",
1214
+ "Pacific/Majuro",
1215
+ "Pacific/Nauru",
1216
+ "Pacific/Tarawa",
1217
+ "Pacific/Wake",
1218
+ "Pacific/Wallis"
1219
+ ]
1220
+ },
1221
+ {
1222
+ "value": "Fiji Standard Time",
1223
+ "abbr": "FST",
1224
+ "offset": 12,
1225
+ "isdst": false,
1226
+ "text": "(UTC+12:00) Fiji",
1227
+ "utc": ["Pacific/Fiji"]
1228
+ },
1229
+ {
1230
+ "value": "Magadan Standard Time",
1231
+ "abbr": "MST",
1232
+ "offset": 12,
1233
+ "isdst": false,
1234
+ "text": "(UTC+12:00) Magadan",
1235
+ "utc": [
1236
+ "Asia/Anadyr",
1237
+ "Asia/Kamchatka",
1238
+ "Asia/Magadan",
1239
+ "Asia/Srednekolymsk"
1240
+ ]
1241
+ },
1242
+ {
1243
+ "value": "Kamchatka Standard Time",
1244
+ "abbr": "KDT",
1245
+ "offset": 13,
1246
+ "isdst": true,
1247
+ "text": "(UTC+12:00) Petropavlovsk-Kamchatsky - Old",
1248
+ "utc": ["Asia/Kamchatka"]
1249
+ },
1250
+ {
1251
+ "value": "Tonga Standard Time",
1252
+ "abbr": "TST",
1253
+ "offset": 13,
1254
+ "isdst": false,
1255
+ "text": "(UTC+13:00) Nuku'alofa",
1256
+ "utc": [
1257
+ "Etc/GMT-13",
1258
+ "Pacific/Enderbury",
1259
+ "Pacific/Fakaofo",
1260
+ "Pacific/Tongatapu"
1261
+ ]
1262
+ },
1263
+ {
1264
+ "value": "Samoa Standard Time",
1265
+ "abbr": "SST",
1266
+ "offset": 13,
1267
+ "isdst": false,
1268
+ "text": "(UTC+13:00) Samoa",
1269
+ "utc": ["Pacific/Apia"]
1270
+ }
1271
+ ]