ml.go 63 KB

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