th.go 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. package th
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type th struct {
  10. locale string
  11. pluralsCardinal []locales.PluralRule
  12. pluralsOrdinal []locales.PluralRule
  13. pluralsRange []locales.PluralRule
  14. decimal []byte
  15. group []byte
  16. minus []byte
  17. percent []byte
  18. perMille []byte
  19. timeSeparator []byte
  20. inifinity []byte
  21. currencies [][]byte // idx = enum of currency code
  22. currencyNegativePrefix []byte
  23. currencyNegativeSuffix []byte
  24. monthsAbbreviated [][]byte
  25. monthsNarrow [][]byte
  26. monthsWide [][]byte
  27. daysAbbreviated [][]byte
  28. daysNarrow [][]byte
  29. daysShort [][]byte
  30. daysWide [][]byte
  31. periodsAbbreviated [][]byte
  32. periodsNarrow [][]byte
  33. periodsShort [][]byte
  34. periodsWide [][]byte
  35. erasAbbreviated [][]byte
  36. erasNarrow [][]byte
  37. erasWide [][]byte
  38. timezones map[string][]byte
  39. }
  40. // New returns a new instance of translator for the 'th' locale
  41. func New() locales.Translator {
  42. return &th{
  43. locale: "th",
  44. pluralsCardinal: []locales.PluralRule{6},
  45. pluralsOrdinal: []locales.PluralRule{6},
  46. pluralsRange: []locales.PluralRule{6},
  47. decimal: []byte{0x2e},
  48. group: []byte{0x2c},
  49. minus: []byte{0x2d},
  50. percent: []byte{0x25},
  51. perMille: []byte{0xe2, 0x80, 0xb0},
  52. timeSeparator: []byte{0x3a},
  53. inifinity: []byte{0xe2, 0x88, 0x9e},
  54. currencies: [][]uint8{{0x41, 0x44, 0x50}, {0x41, 0x45, 0x44}, {0x41, 0x46, 0x41}, {0x41, 0x46, 0x4e}, {0x41, 0x4c, 0x4b, 0x20}, {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}, {0x42, 0x54, 0x4e}, {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, 0x20}, {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, 0x20}, {0xe2, 0x82, 0xaa}, {0xe2, 0x82, 0xb9}, {0x49, 0x51, 0x44}, {0x49, 0x52, 0x52}, {0x49, 0x53, 0x4a, 0x20}, {0x49, 0x53, 0x4b}, {0x49, 0x54, 0x4c}, {0x4a, 0x4d, 0x44}, {0x4a, 0x4f, 0x44}, {0xc2, 0xa5}, {0x4b, 0x45, 0x53}, {0x4b, 0x47, 0x53}, {0x4b, 0x48, 0x52}, {0x4b, 0x4d, 0x46}, {0x4b, 0x50, 0x57}, {0x4b, 0x52, 0x48}, {0x4b, 0x52, 0x4f}, {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, 0x20}, {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, 0x42}, {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}, {0xe2, 0x82, 0xab}, {0x56, 0x4e, 0x4e}, {0x56, 0x55, 0x56}, {0x57, 0x53, 0x54}, {0x46, 0x43, 0x46, 0x41}, {0x58, 0x41, 0x47}, {0x58, 0x41, 0x55}, {0x58, 0x42, 0x41}, {0x58, 0x42, 0x42}, {0x58, 0x42, 0x43}, {0x58, 0x42, 0x44}, {0x45, 0x43, 0x24}, {0x58, 0x44, 0x52}, {0x58, 0x45, 0x55}, {0x58, 0x46, 0x4f}, {0x58, 0x46, 0x55}, {0x43, 0x46, 0x41}, {0x58, 0x50, 0x44}, {0x43, 0x46, 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}},
  55. currencyNegativePrefix: []byte{0x28},
  56. currencyNegativeSuffix: []byte{0x29},
  57. monthsAbbreviated: [][]uint8{[]uint8(nil), {0xe0, 0xb8, 0xa1, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0x81, 0x2e, 0xe0, 0xb8, 0x9e, 0x2e}, {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb5, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x9e, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb4, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x81, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0xaa, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0x81, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x95, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0x9e, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x98, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}},
  58. monthsNarrow: [][]uint8{[]uint8(nil), {0xe0, 0xb8, 0xa1, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0x81, 0x2e, 0xe0, 0xb8, 0x9e, 0x2e}, {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb5, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x9e, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb4, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x81, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0xaa, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0x81, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x95, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}, {0xe0, 0xb8, 0x9e, 0x2e, 0xe0, 0xb8, 0xa2, 0x2e}, {0xe0, 0xb8, 0x98, 0x2e, 0xe0, 0xb8, 0x84, 0x2e}},
  59. monthsWide: [][]uint8{[]uint8(nil), {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}, {0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa0, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x98, 0xe0, 0xb9, 0x8c}, {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}, {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa9, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99}, {0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0xa9, 0xe0, 0xb8, 0xa0, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}, {0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x96, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99}, {0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x8e, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}, {0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}, {0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99}, {0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}, {0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0xa8, 0xe0, 0xb8, 0x88, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99}, {0xe0, 0xb8, 0x98, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa1}},
  60. daysAbbreviated: [][]uint8{{0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0x2e}, {0xe0, 0xb8, 0x88, 0x2e}, {0xe0, 0xb8, 0xad, 0x2e}, {0xe0, 0xb8, 0x9e, 0x2e}, {0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xa4, 0x2e}, {0xe0, 0xb8, 0xa8, 0x2e}, {0xe0, 0xb8, 0xaa, 0x2e}},
  61. daysNarrow: [][]uint8{{0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2}, {0xe0, 0xb8, 0x88}, {0xe0, 0xb8, 0xad}, {0xe0, 0xb8, 0x9e}, {0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xa4}, {0xe0, 0xb8, 0xa8}, {0xe0, 0xb8, 0xaa}},
  62. daysShort: [][]uint8{{0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0x2e}, {0xe0, 0xb8, 0x88, 0x2e}, {0xe0, 0xb8, 0xad, 0x2e}, {0xe0, 0xb8, 0x9e, 0x2e}, {0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xa4, 0x2e}, {0xe0, 0xb8, 0xa8, 0x2e}, {0xe0, 0xb8, 0xaa, 0x2e}},
  63. daysWide: [][]uint8{{0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa2, 0xe0, 0xb9, 0x8c}, {0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x88, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c}, {0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa3}, {0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0x98}, {0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x9e, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x9a, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb5}, {0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa8, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c}, {0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c}},
  64. periodsAbbreviated: [][]uint8{{0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x87}, {0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x87}},
  65. periodsNarrow: [][]uint8{{0x61}, {0x70}},
  66. periodsWide: [][]uint8{{0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x87}, {0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x87}},
  67. erasAbbreviated: [][]uint8{{0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0x20, 0xe0, 0xb8, 0x84, 0x2e, 0xe0, 0xb8, 0xa8, 0x2e}, {0xe0, 0xb8, 0x84, 0x2e, 0xe0, 0xb8, 0xa8, 0x2e}},
  68. erasNarrow: [][]uint8{{0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0x20, 0xe0, 0xb8, 0x84, 0x2e, 0xe0, 0xb8, 0xa8, 0x2e}, {0xe0, 0xb8, 0x84, 0x2e, 0xe0, 0xb8, 0xa8, 0x2e}},
  69. erasWide: [][]uint8{{0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x95, 0xe0, 0xb9, 0x8c, 0xe0, 0xb8, 0xa8, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x8a}, {0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x95, 0xe0, 0xb9, 0x8c, 0xe0, 0xb8, 0xa8, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x8a}},
  70. timezones: map[string][]uint8{"AKST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb0, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2}, "AKDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb0, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2}, "EST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "WITA": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87}, "SAST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x95, 0xe0, 0xb9, 0x89}, "OESZ": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81}, "PST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "∅∅∅": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3}, "HKT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xae, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x87}, "MESZ": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87}, "HADT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xae, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0x2d, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb9, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99}, "HNT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x8c}, "MYT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "BT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa0, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0x8f, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99}, "CAT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87}, "MEZ": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87}, "MDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0x96, 0xe0, 0xb8, 0x9a, 0xe0, 0xb8, 0xa0, 0xe0, 0xb8, 0xb9, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "AWDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "ECT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c}, "WAST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81}, "AEDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "WESZ": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81}, "MST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0x96, 0xe0, 0xb8, 0x9a, 0xe0, 0xb8, 0xa0, 0xe0, 0xb8, 0xb9, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "BOT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x9a, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb4, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "AEST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "COT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x9a, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "CHADT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0xa1}, "CDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "EDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "LHST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xae, 0xe0, 0xb8, 0xa7, 0xe0, 0xb9, 0x8c}, "ACWST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "WAT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81}, "AST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x95, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81}, "CLT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5}, "GFT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x8a, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2}, "ChST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3}, "SGT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x84, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c}, "HAT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x8c}, "AWST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "ACST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "WARST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x88, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2}, "GYT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2}, "ADT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x95, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81}, "UYT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0xa2}, "WART": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x88, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2}, "COST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x84, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x9a, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "CLST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5}, "ART": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x88, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2}, "NZDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x8c}, "ACWDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "CST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "GMT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x8a}, "UYST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb8, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0xa2}, "NZST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x8c}, "SRT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1}, "IST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "CHAST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0xa1}, "WEZ": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81}, "HKST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xae, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x87}, "WIB": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x9d, 0xe0, 0xb8, 0xb1, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0x81}, "OEZ": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81}, "VET": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2}, "TMT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x96, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99}, "TMST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x96, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99}, "EAT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81}, "PDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x9f, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb9, 0x83, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xab, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb7, 0xe0, 0xb8, 0xad}, "JST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x8d, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0x99}, "JDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x8d, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0x9b, 0xe0, 0xb8, 0xb8, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0x99}, "WIT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x8b, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x9d, 0xe0, 0xb8, 0xb1, 0xe0, 0xb9, 0x88, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb1, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x81}, "LHDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb8, 0x94, 0xe0, 0xb9, 0x82, 0xe0, 0xb8, 0xae, 0xe0, 0xb8, 0xa7, 0xe0, 0xb9, 0x8c}, "ACDT": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xa1, 0xe0, 0xb9, 0x81, 0xe0, 0xb8, 0xaa, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x87, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xaa, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2}, "HAST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa1, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xa3, 0xe0, 0xb8, 0x90, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xae, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa2, 0x2d, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb0, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb9, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x8a, 0xe0, 0xb8, 0xb5, 0xe0, 0xb8, 0xa2, 0xe0, 0xb8, 0x99}, "ARST": {0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xa5, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa4, 0xe0, 0xb8, 0x94, 0xe0, 0xb8, 0xb9, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x89, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xad, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xa3, 0xe0, 0xb9, 0x8c, 0xe0, 0xb9, 0x80, 0xe0, 0xb8, 0x88, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0x95, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2}},
  71. }
  72. }
  73. // Locale returns the current translators string locale
  74. func (th *th) Locale() string {
  75. return th.locale
  76. }
  77. // PluralsCardinal returns the list of cardinal plural rules associated with 'th'
  78. func (th *th) PluralsCardinal() []locales.PluralRule {
  79. return th.pluralsCardinal
  80. }
  81. // PluralsOrdinal returns the list of ordinal plural rules associated with 'th'
  82. func (th *th) PluralsOrdinal() []locales.PluralRule {
  83. return th.pluralsOrdinal
  84. }
  85. // PluralsRange returns the list of range plural rules associated with 'th'
  86. func (th *th) PluralsRange() []locales.PluralRule {
  87. return th.pluralsRange
  88. }
  89. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'th'
  90. func (th *th) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  91. return locales.PluralRuleOther
  92. }
  93. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'th'
  94. func (th *th) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  95. return locales.PluralRuleOther
  96. }
  97. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'th'
  98. func (th *th) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  99. return locales.PluralRuleOther
  100. }
  101. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  102. func (th *th) MonthAbbreviated(month time.Month) []byte {
  103. return th.monthsAbbreviated[month]
  104. }
  105. // MonthsAbbreviated returns the locales abbreviated months
  106. func (th *th) MonthsAbbreviated() [][]byte {
  107. return th.monthsAbbreviated[1:]
  108. }
  109. // MonthNarrow returns the locales narrow month given the 'month' provided
  110. func (th *th) MonthNarrow(month time.Month) []byte {
  111. return th.monthsNarrow[month]
  112. }
  113. // MonthsNarrow returns the locales narrow months
  114. func (th *th) MonthsNarrow() [][]byte {
  115. return th.monthsNarrow[1:]
  116. }
  117. // MonthWide returns the locales wide month given the 'month' provided
  118. func (th *th) MonthWide(month time.Month) []byte {
  119. return th.monthsWide[month]
  120. }
  121. // MonthsWide returns the locales wide months
  122. func (th *th) MonthsWide() [][]byte {
  123. return th.monthsWide[1:]
  124. }
  125. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  126. func (th *th) WeekdayAbbreviated(weekday time.Weekday) []byte {
  127. return th.daysAbbreviated[weekday]
  128. }
  129. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  130. func (th *th) WeekdaysAbbreviated() [][]byte {
  131. return th.daysAbbreviated
  132. }
  133. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  134. func (th *th) WeekdayNarrow(weekday time.Weekday) []byte {
  135. return th.daysNarrow[weekday]
  136. }
  137. // WeekdaysNarrow returns the locales narrow weekdays
  138. func (th *th) WeekdaysNarrow() [][]byte {
  139. return th.daysNarrow
  140. }
  141. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  142. func (th *th) WeekdayShort(weekday time.Weekday) []byte {
  143. return th.daysShort[weekday]
  144. }
  145. // WeekdaysShort returns the locales short weekdays
  146. func (th *th) WeekdaysShort() [][]byte {
  147. return th.daysShort
  148. }
  149. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  150. func (th *th) WeekdayWide(weekday time.Weekday) []byte {
  151. return th.daysWide[weekday]
  152. }
  153. // WeekdaysWide returns the locales wide weekdays
  154. func (th *th) WeekdaysWide() [][]byte {
  155. return th.daysWide
  156. }
  157. // FmtNumber returns 'num' with digits/precision of 'v' for 'th' and handles both Whole and Real numbers based on 'v'
  158. // returned as a []byte just in case the caller wishes to add more and can help
  159. // avoid allocations; otherwise just cast as string.
  160. func (th *th) FmtNumber(num float64, v uint64) []byte {
  161. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  162. l := len(s) + len(th.decimal) + len(th.group)*len(s[:len(s)-int(v)-1])/3
  163. count := 0
  164. inWhole := v == 0
  165. b := make([]byte, 0, l)
  166. for i := len(s) - 1; i >= 0; i-- {
  167. if s[i] == '.' {
  168. b = append(b, th.decimal[0])
  169. inWhole = true
  170. continue
  171. }
  172. if inWhole {
  173. if count == 3 {
  174. b = append(b, th.group[0])
  175. count = 1
  176. } else {
  177. count++
  178. }
  179. }
  180. b = append(b, s[i])
  181. }
  182. if num < 0 {
  183. b = append(b, th.minus[0])
  184. }
  185. // reverse
  186. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  187. b[i], b[j] = b[j], b[i]
  188. }
  189. return b
  190. }
  191. // FmtPercent returns 'num' with digits/precision of 'v' for 'th' and handles both Whole and Real numbers based on 'v'
  192. // returned as a []byte just in case the caller wishes to add more and can help
  193. // avoid allocations; otherwise just cast as string.
  194. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  195. func (th *th) FmtPercent(num float64, v uint64) []byte {
  196. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  197. l := len(s) + len(th.decimal)
  198. b := make([]byte, 0, l)
  199. for i := len(s) - 1; i >= 0; i-- {
  200. if s[i] == '.' {
  201. b = append(b, th.decimal[0])
  202. continue
  203. }
  204. b = append(b, s[i])
  205. }
  206. if num < 0 {
  207. b = append(b, th.minus[0])
  208. }
  209. // reverse
  210. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  211. b[i], b[j] = b[j], b[i]
  212. }
  213. b = append(b, th.percent...)
  214. return b
  215. }
  216. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'th'
  217. // returned as a []byte just in case the caller wishes to add more and can help
  218. // avoid allocations; otherwise just cast as string.
  219. func (th *th) FmtCurrency(num float64, v uint64, currency currency.Type) []byte {
  220. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  221. symbol := th.currencies[currency]
  222. l := len(s) + len(th.decimal) + len(th.group)*len(s[:len(s)-int(v)-1])/3
  223. count := 0
  224. inWhole := v == 0
  225. b := make([]byte, 0, l)
  226. for i := len(s) - 1; i >= 0; i-- {
  227. if s[i] == '.' {
  228. b = append(b, th.decimal[0])
  229. inWhole = true
  230. continue
  231. }
  232. if inWhole {
  233. if count == 3 {
  234. b = append(b, th.group[0])
  235. count = 1
  236. } else {
  237. count++
  238. }
  239. }
  240. b = append(b, s[i])
  241. }
  242. for j := len(symbol) - 1; j >= 0; j-- {
  243. b = append(b, symbol[j])
  244. }
  245. if num < 0 {
  246. b = append(b, th.minus[0])
  247. }
  248. // reverse
  249. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  250. b[i], b[j] = b[j], b[i]
  251. }
  252. if int(v) < 2 {
  253. if v == 0 {
  254. b = append(b, th.decimal...)
  255. }
  256. for i := 0; i < 2-int(v); i++ {
  257. b = append(b, '0')
  258. }
  259. }
  260. return b
  261. }
  262. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'th'
  263. // in accounting notation. returned as a []byte just in case the caller wishes to add more and can help
  264. // avoid allocations; otherwise just cast as string.
  265. func (th *th) FmtAccounting(num float64, v uint64, currency currency.Type) []byte {
  266. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  267. symbol := th.currencies[currency]
  268. l := len(s) + len(th.decimal) + len(th.group)*len(s[:len(s)-int(v)-1])/3
  269. count := 0
  270. inWhole := v == 0
  271. b := make([]byte, 0, l)
  272. for i := len(s) - 1; i >= 0; i-- {
  273. if s[i] == '.' {
  274. b = append(b, th.decimal[0])
  275. inWhole = true
  276. continue
  277. }
  278. if inWhole {
  279. if count == 3 {
  280. b = append(b, th.group[0])
  281. count = 1
  282. } else {
  283. count++
  284. }
  285. }
  286. b = append(b, s[i])
  287. }
  288. if num < 0 {
  289. for j := len(symbol) - 1; j >= 0; j-- {
  290. b = append(b, symbol[j])
  291. }
  292. for j := len(th.currencyNegativePrefix) - 1; j >= 0; j-- {
  293. b = append(b, th.currencyNegativePrefix[j])
  294. }
  295. } else {
  296. for j := len(symbol) - 1; j >= 0; j-- {
  297. b = append(b, symbol[j])
  298. }
  299. }
  300. // reverse
  301. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  302. b[i], b[j] = b[j], b[i]
  303. }
  304. if int(v) < 2 {
  305. if v == 0 {
  306. b = append(b, th.decimal...)
  307. }
  308. for i := 0; i < 2-int(v); i++ {
  309. b = append(b, '0')
  310. }
  311. }
  312. if num < 0 {
  313. b = append(b, th.currencyNegativeSuffix...)
  314. }
  315. return b
  316. }
  317. // FmtDateShort returns the short date representation of 't' for 'th'
  318. // returned as a []byte just in case the caller wishes to add more and can help
  319. // avoid allocations; otherwise just cast as string.
  320. func (th *th) FmtDateShort(t time.Time) []byte {
  321. b := make([]byte, 0, 32)
  322. b = strconv.AppendInt(b, int64(t.Day()), 10)
  323. b = append(b, []byte{0x2f}...)
  324. b = strconv.AppendInt(b, int64(t.Month()), 10)
  325. b = append(b, []byte{0x2f}...)
  326. if t.Year() > 9 {
  327. b = append(b, strconv.Itoa(t.Year())[2:]...)
  328. } else {
  329. b = append(b, strconv.Itoa(t.Year())[1:]...)
  330. }
  331. return b
  332. }
  333. // FmtDateMedium returns the medium date representation of 't' for 'th'
  334. // returned as a []byte just in case the caller wishes to add more and can help
  335. // avoid allocations; otherwise just cast as string.
  336. func (th *th) FmtDateMedium(t time.Time) []byte {
  337. b := make([]byte, 0, 32)
  338. b = strconv.AppendInt(b, int64(t.Day()), 10)
  339. b = append(b, []byte{0x20}...)
  340. b = append(b, th.monthsAbbreviated[t.Month()]...)
  341. b = append(b, []byte{0x20}...)
  342. b = strconv.AppendInt(b, int64(t.Year()), 10)
  343. return b
  344. }
  345. // FmtDateLong returns the long date representation of 't' for 'th'
  346. // returned as a []byte just in case the caller wishes to add more and can help
  347. // avoid allocations; otherwise just cast as string.
  348. func (th *th) FmtDateLong(t time.Time) []byte {
  349. b := make([]byte, 0, 32)
  350. b = strconv.AppendInt(b, int64(t.Day()), 10)
  351. b = append(b, []byte{0x20}...)
  352. b = append(b, th.monthsWide[t.Month()]...)
  353. b = append(b, []byte{0x20}...)
  354. if t.Year() < 0 {
  355. b = append(b, th.erasAbbreviated[0]...)
  356. } else {
  357. b = append(b, th.erasAbbreviated[1]...)
  358. }
  359. b = append(b, []byte{0x20}...)
  360. b = strconv.AppendInt(b, int64(t.Year()), 10)
  361. return b
  362. }
  363. // FmtDateFull returns the full date representation of 't' for 'th'
  364. // returned as a []byte just in case the caller wishes to add more and can help
  365. // avoid allocations; otherwise just cast as string.
  366. func (th *th) FmtDateFull(t time.Time) []byte {
  367. b := make([]byte, 0, 32)
  368. b = append(b, th.daysWide[t.Weekday()]...)
  369. b = append(b, []byte{0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0xe0, 0xb9, 0x88, 0x20}...)
  370. b = strconv.AppendInt(b, int64(t.Day()), 10)
  371. b = append(b, []byte{0x20}...)
  372. b = append(b, th.monthsWide[t.Month()]...)
  373. b = append(b, []byte{0x20}...)
  374. if t.Year() < 0 {
  375. b = append(b, th.erasWide[0]...)
  376. } else {
  377. b = append(b, th.erasWide[1]...)
  378. }
  379. b = append(b, []byte{0x20}...)
  380. b = strconv.AppendInt(b, int64(t.Year()), 10)
  381. return b
  382. }
  383. // FmtTimeShort returns the short time representation of 't' for 'th'
  384. // returned as a []byte just in case the caller wishes to add more and can help
  385. // avoid allocations; otherwise just cast as string.
  386. func (th *th) FmtTimeShort(t time.Time) []byte {
  387. b := make([]byte, 0, 32)
  388. if t.Hour() < 10 {
  389. b = append(b, '0')
  390. }
  391. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  392. b = append(b, th.timeSeparator...)
  393. if t.Minute() < 10 {
  394. b = append(b, '0')
  395. }
  396. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  397. return b
  398. }
  399. // FmtTimeMedium returns the medium time representation of 't' for 'th'
  400. // returned as a []byte just in case the caller wishes to add more and can help
  401. // avoid allocations; otherwise just cast as string.
  402. func (th *th) FmtTimeMedium(t time.Time) []byte {
  403. b := make([]byte, 0, 32)
  404. if t.Hour() < 10 {
  405. b = append(b, '0')
  406. }
  407. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  408. b = append(b, th.timeSeparator...)
  409. if t.Minute() < 10 {
  410. b = append(b, '0')
  411. }
  412. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  413. b = append(b, th.timeSeparator...)
  414. if t.Second() < 10 {
  415. b = append(b, '0')
  416. }
  417. b = strconv.AppendInt(b, int64(t.Second()), 10)
  418. return b
  419. }
  420. // FmtTimeLong returns the long time representation of 't' for 'th'
  421. // returned as a []byte just in case the caller wishes to add more and can help
  422. // avoid allocations; otherwise just cast as string.
  423. func (th *th) FmtTimeLong(t time.Time) []byte {
  424. b := make([]byte, 0, 32)
  425. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  426. b = append(b, []byte{0x20, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xac, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0x20}...)
  427. if t.Minute() < 10 {
  428. b = append(b, '0')
  429. }
  430. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  431. b = append(b, []byte{0x20, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0x20}...)
  432. if t.Second() < 10 {
  433. b = append(b, '0')
  434. }
  435. b = strconv.AppendInt(b, int64(t.Second()), 10)
  436. b = append(b, []byte{0x20, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0x20}...)
  437. tz, _ := t.Zone()
  438. b = append(b, tz...)
  439. return b
  440. }
  441. // FmtTimeFull returns the full time representation of 't' for 'th'
  442. // returned as a []byte just in case the caller wishes to add more and can help
  443. // avoid allocations; otherwise just cast as string.
  444. func (th *th) FmtTimeFull(t time.Time) []byte {
  445. b := make([]byte, 0, 32)
  446. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  447. b = append(b, []byte{0x20, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0xac, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0xb2, 0x20}...)
  448. if t.Minute() < 10 {
  449. b = append(b, '0')
  450. }
  451. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  452. b = append(b, []byte{0x20, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0x20}...)
  453. if t.Second() < 10 {
  454. b = append(b, '0')
  455. }
  456. b = strconv.AppendInt(b, int64(t.Second()), 10)
  457. b = append(b, []byte{0x20, 0xe0, 0xb8, 0xa7, 0xe0, 0xb8, 0xb4, 0xe0, 0xb8, 0x99, 0xe0, 0xb8, 0xb2, 0xe0, 0xb8, 0x97, 0xe0, 0xb8, 0xb5, 0x20}...)
  458. tz, _ := t.Zone()
  459. if btz, ok := th.timezones[tz]; ok {
  460. b = append(b, btz...)
  461. } else {
  462. b = append(b, tz...)
  463. }
  464. return b
  465. }