Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dz.go « dz - github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/dz/dz.go
blob: b47ba22d64bb4ae0cf20322ee95d17b77a99f25c (plain)
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
package dz

import (
	"math"
	"strconv"
	"time"

	"github.com/go-playground/locales"
	"github.com/go-playground/locales/currency"
)

type dz struct {
	locale                 string
	pluralsCardinal        []locales.PluralRule
	pluralsOrdinal         []locales.PluralRule
	decimal                []byte
	group                  []byte
	minus                  []byte
	percent                []byte
	percentPrefix          []byte
	percentSuffix          []byte
	perMille               []byte
	timeSeparator          []byte
	inifinity              []byte
	currencies             [][]byte // idx = enum of currency code
	currencyPositivePrefix []byte
	currencyPositiveSuffix []byte
	currencyNegativePrefix []byte
	currencyNegativeSuffix []byte
	monthsAbbreviated      [][]byte
	monthsNarrow           [][]byte
	monthsShort            [][]byte
	monthsWide             [][]byte
	daysAbbreviated        [][]byte
	daysNarrow             [][]byte
	daysShort              [][]byte
	daysWide               [][]byte
	periodsAbbreviated     [][]byte
	periodsNarrow          [][]byte
	periodsShort           [][]byte
	periodsWide            [][]byte
	erasAbbreviated        [][]byte
	erasNarrow             [][]byte
	erasWide               [][]byte
	timezones              map[string][]byte
}

// New returns a new instance of translator for the 'dz' locale
func New() locales.Translator {
	return &dz{
		locale:             "dz",
		pluralsCardinal:    []locales.PluralRule{6},
		pluralsOrdinal:     nil,
		decimal:            []byte{0x2e},
		group:              []byte{0x2c},
		minus:              []byte{0x2d},
		percent:            []byte{0x25},
		perMille:           []byte{0xe2, 0x80, 0xb0},
		timeSeparator:      []byte{0x3a},
		inifinity:          []byte{0xe2, 0x88, 0x9e},
		currencies:         [][]uint8{{0x41, 0x44, 0x50}, {0x41, 0x45, 0x44}, {0x41, 0x46, 0x41}, {0x41, 0x46, 0x4e}, {0x41, 0x4c, 0x4b}, {0x41, 0x4c, 0x4c}, {0x41, 0x4d, 0x44}, {0x41, 0x4e, 0x47}, {0x41, 0x4f, 0x41}, {0x41, 0x4f, 0x4b}, {0x41, 0x4f, 0x4e}, {0x41, 0x4f, 0x52}, {0x41, 0x52, 0x41}, {0x41, 0x52, 0x4c}, {0x41, 0x52, 0x4d}, {0x41, 0x52, 0x50}, {0x41, 0x52, 0x53}, {0x41, 0x54, 0x53}, {0x41, 0x55, 0x24}, {0x41, 0x57, 0x47}, {0x41, 0x5a, 0x4d}, {0x41, 0x5a, 0x4e}, {0x42, 0x41, 0x44}, {0x42, 0x41, 0x4d}, {0x42, 0x41, 0x4e}, {0x42, 0x42, 0x44}, {0x42, 0x44, 0x54}, {0x42, 0x45, 0x43}, {0x42, 0x45, 0x46}, {0x42, 0x45, 0x4c}, {0x42, 0x47, 0x4c}, {0x42, 0x47, 0x4d}, {0x42, 0x47, 0x4e}, {0x42, 0x47, 0x4f}, {0x42, 0x48, 0x44}, {0x42, 0x49, 0x46}, {0x42, 0x4d, 0x44}, {0x42, 0x4e, 0x44}, {0x42, 0x4f, 0x42}, {0x42, 0x4f, 0x4c}, {0x42, 0x4f, 0x50}, {0x42, 0x4f, 0x56}, {0x42, 0x52, 0x42}, {0x42, 0x52, 0x43}, {0x42, 0x52, 0x45}, {0x52, 0x24}, {0x42, 0x52, 0x4e}, {0x42, 0x52, 0x52}, {0x42, 0x52, 0x5a}, {0x42, 0x53, 0x44}, {0x4e, 0x75, 0x2e}, {0x42, 0x55, 0x4b}, {0x42, 0x57, 0x50}, {0x42, 0x59, 0x42}, {0x42, 0x59, 0x52}, {0x42, 0x5a, 0x44}, {0x43, 0x41, 0x24}, {0x43, 0x44, 0x46}, {0x43, 0x48, 0x45}, {0x43, 0x48, 0x46}, {0x43, 0x48, 0x57}, {0x43, 0x4c, 0x45}, {0x43, 0x4c, 0x46}, {0x43, 0x4c, 0x50}, {0x43, 0x4e, 0x58}, {0x43, 0x4e, 0xc2, 0xa5}, {0x43, 0x4f, 0x50}, {0x43, 0x4f, 0x55}, {0x43, 0x52, 0x43}, {0x43, 0x53, 0x44}, {0x43, 0x53, 0x4b}, {0x43, 0x55, 0x43}, {0x43, 0x55, 0x50}, {0x43, 0x56, 0x45}, {0x43, 0x59, 0x50}, {0x43, 0x5a, 0x4b}, {0x44, 0x44, 0x4d}, {0x44, 0x45, 0x4d}, {0x44, 0x4a, 0x46}, {0x44, 0x4b, 0x4b}, {0x44, 0x4f, 0x50}, {0x44, 0x5a, 0x44}, {0x45, 0x43, 0x53}, {0x45, 0x43, 0x56}, {0x45, 0x45, 0x4b}, {0x45, 0x47, 0x50}, {0x45, 0x52, 0x4e}, {0x45, 0x53, 0x41}, {0x45, 0x53, 0x42}, {0x45, 0x53, 0x50}, {0x45, 0x54, 0x42}, {0xe2, 0x82, 0xac}, {0x46, 0x49, 0x4d}, {0x46, 0x4a, 0x44}, {0x46, 0x4b, 0x50}, {0x46, 0x52, 0x46}, {0xc2, 0xa3}, {0x47, 0x45, 0x4b}, {0x47, 0x45, 0x4c}, {0x47, 0x48, 0x43}, {0x47, 0x48, 0x53}, {0x47, 0x49, 0x50}, {0x47, 0x4d, 0x44}, {0x47, 0x4e, 0x46}, {0x47, 0x4e, 0x53}, {0x47, 0x51, 0x45}, {0x47, 0x52, 0x44}, {0x47, 0x54, 0x51}, {0x47, 0x57, 0x45}, {0x47, 0x57, 0x50}, {0x47, 0x59, 0x44}, {0x48, 0x4b, 0x24}, {0x48, 0x4e, 0x4c}, {0x48, 0x52, 0x44}, {0x48, 0x52, 0x4b}, {0x48, 0x54, 0x47}, {0x48, 0x55, 0x46}, {0x49, 0x44, 0x52}, {0x49, 0x45, 0x50}, {0x49, 0x4c, 0x50}, {0x49, 0x4c, 0x52}, {0x49, 0x4c, 0x53}, {0xe2, 0x82, 0xb9}, {0x49, 0x51, 0x44}, {0x49, 0x52, 0x52}, {0x49, 0x53, 0x4a}, {0x49, 0x53, 0x4b}, {0x49, 0x54, 0x4c}, {0x4a, 0x4d, 0x44}, {0x4a, 0x4f, 0x44}, {0x4a, 0x50, 0xc2, 0xa5}, {0x4b, 0x45, 0x53}, {0x4b, 0x47, 0x53}, {0x4b, 0x48, 0x52}, {0x4b, 0x4d, 0x46}, {0x4b, 0x50, 0x57}, {0x4b, 0x52, 0x48}, {0x4b, 0x52, 0x4f}, {0x4b, 0x52, 0xe2, 0x82, 0xa9}, {0x4b, 0x57, 0x44}, {0x4b, 0x59, 0x44}, {0x4b, 0x5a, 0x54}, {0x4c, 0x41, 0x4b}, {0x4c, 0x42, 0x50}, {0x4c, 0x4b, 0x52}, {0x4c, 0x52, 0x44}, {0x4c, 0x53, 0x4c}, {0x4c, 0x54, 0x4c}, {0x4c, 0x54, 0x54}, {0x4c, 0x55, 0x43}, {0x4c, 0x55, 0x46}, {0x4c, 0x55, 0x4c}, {0x4c, 0x56, 0x4c}, {0x4c, 0x56, 0x52}, {0x4c, 0x59, 0x44}, {0x4d, 0x41, 0x44}, {0x4d, 0x41, 0x46}, {0x4d, 0x43, 0x46}, {0x4d, 0x44, 0x43}, {0x4d, 0x44, 0x4c}, {0x4d, 0x47, 0x41}, {0x4d, 0x47, 0x46}, {0x4d, 0x4b, 0x44}, {0x4d, 0x4b, 0x4e}, {0x4d, 0x4c, 0x46}, {0x4d, 0x4d, 0x4b}, {0x4d, 0x4e, 0x54}, {0x4d, 0x4f, 0x50}, {0x4d, 0x52, 0x4f}, {0x4d, 0x54, 0x4c}, {0x4d, 0x54, 0x50}, {0x4d, 0x55, 0x52}, {0x4d, 0x56, 0x50}, {0x4d, 0x56, 0x52}, {0x4d, 0x57, 0x4b}, {0x4d, 0x58, 0x24}, {0x4d, 0x58, 0x50}, {0x4d, 0x58, 0x56}, {0x4d, 0x59, 0x52}, {0x4d, 0x5a, 0x45}, {0x4d, 0x5a, 0x4d}, {0x4d, 0x5a, 0x4e}, {0x4e, 0x41, 0x44}, {0x4e, 0x47, 0x4e}, {0x4e, 0x49, 0x43}, {0x4e, 0x49, 0x4f}, {0x4e, 0x4c, 0x47}, {0x4e, 0x4f, 0x4b}, {0x4e, 0x50, 0x52}, {0x4e, 0x5a, 0x24}, {0x4f, 0x4d, 0x52}, {0x50, 0x41, 0x42}, {0x50, 0x45, 0x49}, {0x50, 0x45, 0x4e}, {0x50, 0x45, 0x53}, {0x50, 0x47, 0x4b}, {0x50, 0x48, 0x50}, {0x50, 0x4b, 0x52}, {0x50, 0x4c, 0x4e}, {0x50, 0x4c, 0x5a}, {0x50, 0x54, 0x45}, {0x50, 0x59, 0x47}, {0x51, 0x41, 0x52}, {0x52, 0x48, 0x44}, {0x52, 0x4f, 0x4c}, {0x52, 0x4f, 0x4e}, {0x52, 0x53, 0x44}, {0x52, 0x55, 0x42}, {0x52, 0x55, 0x52}, {0x52, 0x57, 0x46}, {0x53, 0x41, 0x52}, {0x53, 0x42, 0x44}, {0x53, 0x43, 0x52}, {0x53, 0x44, 0x44}, {0x53, 0x44, 0x47}, {0x53, 0x44, 0x50}, {0x53, 0x45, 0x4b}, {0x53, 0x47, 0x44}, {0x53, 0x48, 0x50}, {0x53, 0x49, 0x54}, {0x53, 0x4b, 0x4b}, {0x53, 0x4c, 0x4c}, {0x53, 0x4f, 0x53}, {0x53, 0x52, 0x44}, {0x53, 0x52, 0x47}, {0x53, 0x53, 0x50}, {0x53, 0x54, 0x44}, {0x53, 0x55, 0x52}, {0x53, 0x56, 0x43}, {0x53, 0x59, 0x50}, {0x53, 0x5a, 0x4c}, {0x54, 0x48, 0xe0, 0xb8, 0xbf}, {0x54, 0x4a, 0x52}, {0x54, 0x4a, 0x53}, {0x54, 0x4d, 0x4d}, {0x54, 0x4d, 0x54}, {0x54, 0x4e, 0x44}, {0x54, 0x4f, 0x50}, {0x54, 0x50, 0x45}, {0x54, 0x52, 0x4c}, {0x54, 0x52, 0x59}, {0x54, 0x54, 0x44}, {0x4e, 0x54, 0x24}, {0x54, 0x5a, 0x53}, {0x55, 0x41, 0x48}, {0x55, 0x41, 0x4b}, {0x55, 0x47, 0x53}, {0x55, 0x47, 0x58}, {0x55, 0x53, 0x24}, {0x55, 0x53, 0x4e}, {0x55, 0x53, 0x53}, {0x55, 0x59, 0x49}, {0x55, 0x59, 0x50}, {0x55, 0x59, 0x55}, {0x55, 0x5a, 0x53}, {0x56, 0x45, 0x42}, {0x56, 0x45, 0x46}, {0x56, 0x4e, 0x44}, {0x56, 0x4e, 0x4e}, {0x56, 0x55, 0x56}, {0x57, 0x53, 0x54}, {0x58, 0x41, 0x46}, {0x58, 0x41, 0x47}, {0x58, 0x41, 0x55}, {0x58, 0x42, 0x41}, {0x58, 0x42, 0x42}, {0x58, 0x42, 0x43}, {0x58, 0x42, 0x44}, {0x58, 0x43, 0x44}, {0x58, 0x44, 0x52}, {0x58, 0x45, 0x55}, {0x58, 0x46, 0x4f}, {0x58, 0x46, 0x55}, {0x58, 0x4f, 0x46}, {0x58, 0x50, 0x44}, {0x58, 0x50, 0x46}, {0x58, 0x50, 0x54}, {0x58, 0x52, 0x45}, {0x58, 0x53, 0x55}, {0x58, 0x54, 0x53}, {0x58, 0x55, 0x41}, {0x58, 0x58, 0x58}, {0x59, 0x44, 0x44}, {0x59, 0x45, 0x52}, {0x59, 0x55, 0x44}, {0x59, 0x55, 0x4d}, {0x59, 0x55, 0x4e}, {0x59, 0x55, 0x52}, {0x5a, 0x41, 0x4c}, {0x5a, 0x41, 0x52}, {0x5a, 0x4d, 0x4b}, {0x5a, 0x4d, 0x57}, {0x5a, 0x52, 0x4e}, {0x5a, 0x52, 0x5a}, {0x5a, 0x57, 0x44}, {0x5a, 0x57, 0x4c}, {0x5a, 0x57, 0x52}},
		percentSuffix:      []byte{0xc2, 0xa0},
		monthsAbbreviated:  [][]uint8{[]uint8(nil), {0xe0, 0xbc, 0xa1}, {0xe0, 0xbc, 0xa2}, {0xe0, 0xbc, 0xa3}, {0xe0, 0xbc, 0xa4}, {0xe0, 0xbc, 0xa5}, {0xe0, 0xbc, 0xa6}, {0xe0, 0xbc, 0xa7}, {0xe0, 0xbc, 0xa8}, {0xe0, 0xbc, 0xa9}, {0xe0, 0xbc, 0xa1, 0xe0, 0xbc, 0xa0}, {0xe0, 0xbc, 0xa1, 0xe0, 0xbc, 0xa1}, {0x31, 0x32}},
		monthsNarrow:       [][]uint8{[]uint8(nil), {0xe0, 0xbc, 0xa1}, {0xe0, 0xbc, 0xa2}, {0xe0, 0xbc, 0xa3}, {0x34}, {0xe0, 0xbc, 0xa5}, {0xe0, 0xbc, 0xa6}, {0xe0, 0xbc, 0xa7}, {0xe0, 0xbc, 0xa8}, {0x39}, {0xe0, 0xbc, 0xa1, 0xe0, 0xbc, 0xa0}, {0xe0, 0xbc, 0xa1, 0xe0, 0xbc, 0xa1}, {0xe0, 0xbc, 0xa1, 0xe0, 0xbc, 0xa2}},
		monthsWide:         [][]uint8{[]uint8(nil), {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x84, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0x9e, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0x94, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xa2, 0xe0, 0xbe, 0x92, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0x85, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0x85, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x85, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0x85, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}},
		daysAbbreviated:    [][]uint8{{0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0x84, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b}},
		daysNarrow:         [][]uint8{{0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3}, {0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa2}, {0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0x82}, {0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa2}, {0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0x84, 0xe0, 0xbe, 0xb6}, {0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93}, {0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2}},
		daysShort:          [][]uint8{{0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0x84, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b}},
		daysWide:           [][]uint8{{0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0x84, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0x9f, 0xe0, 0xbd, 0xa0, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b}},
		periodsAbbreviated: [][]uint8{{0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0x94, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b}},
		periodsNarrow:      [][]uint8{{0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0x94, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b}},
		periodsWide:        [][]uint8{{0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0x94, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b}, {0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b}},
		erasAbbreviated:    [][]uint8{{0x42, 0x43, 0x45}, {0x43, 0x45}},
		erasNarrow:         [][]uint8{[]uint8(nil), []uint8(nil)},
		erasWide:           [][]uint8{[]uint8(nil), []uint8(nil)},
		timezones:          map[string][]uint8{"ARST": {0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x87, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "WART": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x87, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "EST": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "GMT": {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9d, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x86, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "COT": {0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "SAST": {0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0x95, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xb1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "HNT": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x8c, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x8c, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "WESZ": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "WAST": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0x95, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xb1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ChST": {0x43, 0x68, 0x53, 0x54}, "BT": {0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "CST": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ACWDT": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "WIT": {0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8c, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "AEDT": {0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "NZST": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9b, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x8c, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "CLT": {0xe0, 0xbd, 0x85, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "JST": {0xe0, 0xbd, 0x87, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "AWDT": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "AKST": {0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "BOT": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "UYST": {0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9d, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "PST": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "COST": {0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb7, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "CDT": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "HKST": {0x48, 0x4b, 0x53, 0x54}, "WEZ": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "MYT": {0x4d, 0x59, 0x54}, "CHADT": {0x43, 0x48, 0x41, 0x44, 0x54}, "TMST": {0x54, 0x4d, 0x53, 0x54}, "WIB": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8c, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ACWST": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "CLST": {0xe0, 0xbd, 0x85, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ADT": {0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x8a, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "HADT": {0xe0, 0xbd, 0xa7, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9d, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0x2d, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "UYT": {0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9d, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ART": {0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x87, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "SRT": {0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "LHST": {0x4c, 0x48, 0x53, 0x54}, "JDT": {0xe0, 0xbd, 0x87, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ACST": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ACDT": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "LHDT": {0x4c, 0x48, 0x44, 0x54}, "HKT": {0x48, 0x4b, 0x54}, "OESZ": {0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "WARST": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x87, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "ECT": {0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8c, 0xe0, 0xbd, 0xbd, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "∅∅∅": {0xe2, 0x88, 0x85, 0xe2, 0x88, 0x85, 0xe2, 0x88, 0x85}, "OEZ": {0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "VET": {0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9b, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9d, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "EAT": {0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0x95, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xb1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "AST": {0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x8a, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "CHAST": {0x43, 0x48, 0x41, 0x53, 0x54}, "AKDT": {0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "NZDT": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9b, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x8c, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "MESZ": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "HAT": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x8c, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x8c, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "TMT": {0x54, 0x4d, 0x54}, "MEZ": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "CAT": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0x95, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xb1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "MST": {0x4d, 0x53, 0x54}, "IST": {0xe0, 0xbd, 0xa2, 0xe0, 0xbe, 0x92, 0xe0, 0xbe, 0xb1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "SGT": {0x53, 0x47, 0x54}, "EDT": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "HAST": {0xe0, 0xbd, 0xa7, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9d, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0x2d, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa0, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "WITA": {0xe0, 0xbd, 0x91, 0xe0, 0xbd, 0x96, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8c, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "GYT": {0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "GFT": {0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0x85, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "AEST": {0xe0, 0xbd, 0xa4, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "AWST": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x8a, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa3, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "PDT": {0xe0, 0xbd, 0x96, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x94, 0xe0, 0xbd, 0xba, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x82, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x89, 0xe0, 0xbd, 0xb2, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xb2, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x84, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}, "MDT": {0x4d, 0x44, 0x54}, "WAT": {0xe0, 0xbd, 0x93, 0xe0, 0xbd, 0xb4, 0xe0, 0xbd, 0x96, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x95, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x82, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa8, 0xe0, 0xbd, 0x95, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa2, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x80, 0xe0, 0xbd, 0xb1, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbe, 0xa1, 0xe0, 0xbd, 0x93, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91}},
	}
}

// Locale returns the current translators string locale
func (dz *dz) Locale() string {
	return dz.locale
}

// PluralsCardinal returns the list of cardinal plural rules associated with 'dz'
func (dz *dz) PluralsCardinal() []locales.PluralRule {
	return dz.pluralsCardinal
}

// PluralsOrdinal returns the list of ordinal plural rules associated with 'dz'
func (dz *dz) PluralsOrdinal() []locales.PluralRule {
	return dz.pluralsOrdinal
}

// CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'dz'
func (dz *dz) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
	return locales.PluralRuleOther
}

// OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'dz'
func (dz *dz) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
	return locales.PluralRuleUnknown
}

// RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'dz'
func (dz *dz) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
	return locales.PluralRuleUnknown
}

// FmtNumber returns 'num' with digits/precision of 'v' for 'dz' and handles both Whole and Real numbers based on 'v'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtNumber(num float64, v uint64) []byte {

	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
	l := len(s) + len(dz.decimal) + len(dz.group)*len(s[:len(s)-int(v)-1])/3
	count := 0
	inWhole := v == 0
	inSecondary := false
	groupThreshold := 3

	b := make([]byte, 0, l)

	for i := len(s) - 1; i >= 0; i-- {

		if s[i] == '.' {
			b = append(b, dz.decimal[0])
			inWhole = true
			continue
		}

		if inWhole {

			if count == groupThreshold {
				b = append(b, dz.group[0])
				count = 1

				if !inSecondary {
					inSecondary = true
					groupThreshold = 2
				}
			} else {
				count++
			}
		}

		b = append(b, s[i])
	}

	if num < 0 {
		b = append(b, dz.minus[0])
	}

	// reverse
	for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
		b[i], b[j] = b[j], b[i]
	}

	return b
}

// FmtPercent returns 'num' with digits/precision of 'v' for 'dz' and handles both Whole and Real numbers based on 'v'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
// NOTE: 'num' passed into FmtPercent is assumed to be in percent already
func (dz *dz) FmtPercent(num float64, v uint64) []byte {

	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
	l := len(s) + len(dz.decimal)
	b := make([]byte, 0, l)

	for i := len(s) - 1; i >= 0; i-- {

		if s[i] == '.' {
			b = append(b, dz.decimal[0])
			continue
		}

		b = append(b, s[i])
	}

	if num < 0 {
		b = append(b, dz.minus[0])
	}

	// reverse
	for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
		b[i], b[j] = b[j], b[i]
	}

	b = append(b, dz.percentSuffix...)

	b = append(b, dz.percent...)

	return b
}

// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtCurrency(num float64, v uint64, currency currency.Type) []byte {

	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
	symbol := dz.currencies[currency]
	l := len(s) + len(dz.decimal) + len(dz.group)*len(s[:len(s)-int(v)-1])/3
	count := 0
	inWhole := v == 0
	inSecondary := false
	groupThreshold := 3

	b := make([]byte, 0, l)

	for i := len(s) - 1; i >= 0; i-- {

		if s[i] == '.' {
			b = append(b, dz.decimal[0])
			inWhole = true
			continue
		}

		if inWhole {

			if count == groupThreshold {
				b = append(b, dz.group[0])
				count = 1

				if !inSecondary {
					inSecondary = true
					groupThreshold = 2
				}
			} else {
				count++
			}
		}

		b = append(b, s[i])
	}

	for j := len(symbol) - 1; j >= 0; j-- {
		b = append(b, symbol[j])
	}

	if num < 0 {
		b = append(b, dz.minus[0])
	}

	// reverse
	for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
		b[i], b[j] = b[j], b[i]
	}

	if int(v) < 2 {

		if v == 0 {
			b = append(b, dz.decimal...)
		}

		for i := 0; i < 2-int(v); i++ {
			b = append(b, '0')
		}
	}

	return b
}

// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'dz'
// in accounting notation. returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {

	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
	symbol := dz.currencies[currency]
	l := len(s) + len(dz.decimal) + len(dz.group)*len(s[:len(s)-int(v)-1])/3
	count := 0
	inWhole := v == 0
	inSecondary := false
	groupThreshold := 3

	b := make([]byte, 0, l)

	for i := len(s) - 1; i >= 0; i-- {

		if s[i] == '.' {
			b = append(b, dz.decimal[0])
			inWhole = true
			continue
		}

		if inWhole {

			if count == groupThreshold {
				b = append(b, dz.group[0])
				count = 1

				if !inSecondary {
					inSecondary = true
					groupThreshold = 2
				}
			} else {
				count++
			}
		}

		b = append(b, s[i])
	}

	if num < 0 {

		for j := len(symbol) - 1; j >= 0; j-- {
			b = append(b, symbol[j])
		}

		b = append(b, dz.minus[0])

	} else {

		for j := len(symbol) - 1; j >= 0; j-- {
			b = append(b, symbol[j])
		}

	}

	// reverse
	for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
		b[i], b[j] = b[j], b[i]
	}

	if int(v) < 2 {

		if v == 0 {
			b = append(b, dz.decimal...)
		}

		for i := 0; i < 2-int(v); i++ {
			b = append(b, '0')
		}
	}

	return b
}

// FmtDateShort returns the short date representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtDateShort(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = strconv.AppendInt(b, int64(t.Year()), 10)
	b = append(b, []byte{0x2d}...)

	if t.Month() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Month()), 10)

	b = append(b, []byte{0x2d}...)

	if t.Day() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Day()), 10)

	return b
}

// FmtDateMedium returns the medium date representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtDateMedium(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, []byte{0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b}...)
	b = strconv.AppendInt(b, int64(t.Year()), 10)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0x9f, 0xe0, 0xbe, 0xb3, 0xe0, 0xbc, 0x8b}...)
	b = append(b, dz.monthsAbbreviated[t.Month()]...)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b}...)

	if t.Day() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Day()), 10)

	return b
}

// FmtDateLong returns the long date representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtDateLong(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, []byte{0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b}...)
	b = strconv.AppendInt(b, int64(t.Year()), 10)
	b = append(b, []byte{0x20}...)
	b = append(b, dz.monthsWide[t.Month()]...)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b, 0x20}...)

	if t.Day() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Day()), 10)

	return b
}

// FmtDateFull returns the full date representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtDateFull(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, dz.daysWide[t.Day()]...)
	b = append(b, []byte{0x2c, 0x20, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0xa4, 0xe0, 0xbe, 0xb1, 0xe0, 0xbd, 0xb2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0xa3, 0xe0, 0xbd, 0xbc, 0xe0, 0xbc, 0x8b}...)
	b = strconv.AppendInt(b, int64(t.Year()), 10)
	b = append(b, []byte{0x20}...)
	b = append(b, dz.monthsWide[t.Month()]...)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xba, 0xe0, 0xbd, 0xa6, 0xe0, 0xbc, 0x8b}...)

	if t.Day() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Day()), 10)

	return b
}

// FmtTimeShort returns the short time representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtTimeShort(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, []byte{0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0x20}...)

	h := t.Hour()

	if h > 12 {
		h -= 12
	}
	b = strconv.AppendInt(b, int64(h), 10)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0x90, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0x20}...)

	if t.Minute() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Minute()), 10)
	b = append(b, []byte{0x20}...)

	if t.Hour() < 12 {
		b = append(b, dz.periodsAbbreviated[0]...)
	} else {
		b = append(b, dz.periodsAbbreviated[1]...)
	}

	return b
}

// FmtTimeMedium returns the medium time representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtTimeMedium(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, []byte{0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b}...)

	h := t.Hour()

	if h > 12 {
		h -= 12
	}
	b = strconv.AppendInt(b, int64(h), 10)
	b = append(b, dz.timeSeparator...)
	if t.Minute() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Minute()), 10)
	b = append(b, dz.timeSeparator...)
	if t.Second() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Second()), 10)
	b = append(b, []byte{0x20}...)

	if t.Hour() < 12 {
		b = append(b, dz.periodsAbbreviated[0]...)
	} else {
		b = append(b, dz.periodsAbbreviated[1]...)
	}

	return b
}

// FmtTimeLong returns the long time representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtTimeLong(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, []byte{0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0x20}...)

	h := t.Hour()

	if h > 12 {
		h -= 12
	}
	b = strconv.AppendInt(b, int64(h), 10)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0x90, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0x20}...)

	if t.Minute() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Minute()), 10)
	b = append(b, dz.timeSeparator...)
	if t.Second() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Second()), 10)
	b = append(b, []byte{0x20}...)

	if t.Hour() < 12 {
		b = append(b, dz.periodsAbbreviated[0]...)
	} else {
		b = append(b, dz.periodsAbbreviated[1]...)
	}

	b = append(b, []byte{0x20}...)

	tz, _ := t.Zone()
	b = append(b, tz...)

	return b
}

// FmtTimeFull returns the full time representation of 't' for 'dz'
// returned as a []byte just in case the caller wishes to add more and can help
// avoid allocations; otherwise just cast as string.
func (dz *dz) FmtTimeFull(t time.Time) []byte {

	b := make([]byte, 0, 32)

	b = append(b, []byte{0xe0, 0xbd, 0x86, 0xe0, 0xbd, 0xb4, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x9a, 0xe0, 0xbd, 0xbc, 0xe0, 0xbd, 0x91, 0xe0, 0xbc, 0x8b, 0x20}...)

	h := t.Hour()

	if h > 12 {
		h -= 12
	}
	b = strconv.AppendInt(b, int64(h), 10)
	b = append(b, []byte{0x20, 0xe0, 0xbd, 0xa6, 0xe0, 0xbe, 0x90, 0xe0, 0xbd, 0xa2, 0xe0, 0xbc, 0x8b, 0xe0, 0xbd, 0x98, 0xe0, 0xbc, 0x8b, 0x20}...)

	if t.Minute() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Minute()), 10)
	b = append(b, dz.timeSeparator...)
	if t.Second() < 10 {
		b = append(b, '0')
	}

	b = strconv.AppendInt(b, int64(t.Second()), 10)
	b = append(b, []byte{0x20}...)

	if t.Hour() < 12 {
		b = append(b, dz.periodsAbbreviated[0]...)
	} else {
		b = append(b, dz.periodsAbbreviated[1]...)
	}

	b = append(b, []byte{0x20}...)

	tz, _ := t.Zone()
	if btz, ok := dz.timezones[tz]; ok {
		b = append(b, btz...)
	} else {
		b = append(b, tz...)
	}

	return b
}