twitter_cldr 6.11.0 → 6.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/twitter_cldr/resources/cldr_document_set.rb +9 -1
 - data/lib/twitter_cldr/resources/loader.rb +3 -1
 - data/lib/twitter_cldr/version.rb +1 -1
 - data/resources/locales/bo/calendars.yml +56 -56
 - data/resources/locales/en/calendars.yml +75 -69
 - data/resources/locales/en-001/calendars.yml +65 -59
 - data/resources/locales/en-150/calendars.yml +65 -59
 - data/resources/locales/en-AU/calendars.yml +4 -4
 - data/resources/locales/en-CA/calendars.yml +61 -59
 - data/resources/locales/en-GB/calendars.yml +7 -3
 - data/resources/locales/en-IE/calendars.yml +65 -59
 - data/resources/locales/en-IN/calendars.yml +65 -59
 - data/resources/locales/en-NZ/calendars.yml +65 -59
 - data/resources/locales/en-SG/calendars.yml +65 -59
 - data/resources/locales/en-US/calendars.yml +75 -69
 - data/resources/locales/en-ZA/calendars.yml +65 -59
 - data/resources/locales/eo/calendars.yml +82 -82
 - data/resources/locales/ga/calendars.yml +4 -4
 - data/resources/locales/pt/calendars.yml +33 -33
 - data/resources/locales/pt-PT/calendars.yml +19 -19
 - data/resources/locales/ru/calendars.yml +7 -7
 - data/resources/locales/xh/calendars.yml +14 -14
 - data/resources/locales/zh-Hant/calendars.yml +4 -4
 - data/resources/locales/zu/calendars.yml +1 -1
 - data/spec/shared/calendar_spec.rb +17 -0
 - metadata +6 -7
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 48841a5568664132e97c2e06a0ea9381e7099502d07da55a9b09ab9a60590297
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: bec1e296fb57a3b93b11eaff0bfa9d834cf44153fea3413202fa7ad3c8ac9b04
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 27b9c0be54620888b8c3fd6310b366b1c3eeaaa606a5e4164b1db5104d3d10be4d5933bd7a4b372b8552f89c0c8a5f41ed97d74c1531c1ffd1be0648be8cd9dd
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: '09ec1c6f77f31d3ba433ac1d9c6e6f119e39f70b51e44550b876c18371fe05699965f900b18c202ab8774af33702fa41eaa09f6c6134d546dd98beea7b7e60f4'
         
     | 
| 
         @@ -62,7 +62,15 @@ module TwitterCldr 
     | 
|
| 
       62 
62 
     | 
    
         | 
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
                  def self.join_xpaths(*paths)
         
     | 
| 
       65 
     | 
    
         
            -
                    paths. 
     | 
| 
      
 65 
     | 
    
         
            +
                    segments = paths.flat_map { |a| a.chomp('/').split('/') }
         
     | 
| 
      
 66 
     | 
    
         
            +
                    segments = segments.each_with_object([]) do |segment, result|
         
     | 
| 
      
 67 
     | 
    
         
            +
                      if segment == '..'
         
     | 
| 
      
 68 
     | 
    
         
            +
                        result.pop
         
     | 
| 
      
 69 
     | 
    
         
            +
                      else
         
     | 
| 
      
 70 
     | 
    
         
            +
                        result << segment
         
     | 
| 
      
 71 
     | 
    
         
            +
                      end
         
     | 
| 
      
 72 
     | 
    
         
            +
                    end
         
     | 
| 
      
 73 
     | 
    
         
            +
                    segments.join('/')
         
     | 
| 
       66 
74 
     | 
    
         
             
                  end
         
     | 
| 
       67 
75 
     | 
    
         | 
| 
       68 
76 
     | 
    
         
             
                  attr_reader :path, :cldr_locale, :cldr_requirement
         
     | 
| 
         @@ -3,6 +3,8 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            # Copyright 2012 Twitter, Inc
         
     | 
| 
       4 
4 
     | 
    
         
             
            # http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
      
 6 
     | 
    
         
            +
            require 'yaml'
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
       6 
8 
     | 
    
         
             
            module TwitterCldr
         
     | 
| 
       7 
9 
     | 
    
         
             
              module Resources
         
     | 
| 
       8 
10 
     | 
    
         | 
| 
         @@ -12,7 +14,7 @@ module TwitterCldr 
     | 
|
| 
       12 
14 
     | 
    
         | 
| 
       13 
15 
     | 
    
         
             
                  class << self
         
     | 
| 
       14 
16 
     | 
    
         
             
                    def load_yaml(yaml, permitted_classes: [])
         
     | 
| 
       15 
     | 
    
         
            -
                      if  
     | 
| 
      
 17 
     | 
    
         
            +
                      if Psych::VERSION >= '4'
         
     | 
| 
       16 
18 
     | 
    
         
             
                        YAML.safe_load(yaml, permitted_classes: permitted_classes)
         
     | 
| 
       17 
19 
     | 
    
         
             
                      else
         
     | 
| 
       18 
20 
     | 
    
         
             
                        YAML.safe_load(yaml, permitted_classes)
         
     | 
    
        data/lib/twitter_cldr/version.rb
    CHANGED
    
    
| 
         @@ -71,13 +71,13 @@ 
     | 
|
| 
       71 
71 
     | 
    
         
             
                        :tue: མིག
         
     | 
| 
       72 
72 
     | 
    
         
             
                        :wed: ལྷག
         
     | 
| 
       73 
73 
     | 
    
         
             
                      :short: 
         
     | 
| 
       74 
     | 
    
         
            -
                        :fri:  
     | 
| 
       75 
     | 
    
         
            -
                        :mon:  
     | 
| 
       76 
     | 
    
         
            -
                        :sat:  
     | 
| 
       77 
     | 
    
         
            -
                        :sun:  
     | 
| 
       78 
     | 
    
         
            -
                        :thu:  
     | 
| 
       79 
     | 
    
         
            -
                        :tue:  
     | 
| 
       80 
     | 
    
         
            -
                        :wed:  
     | 
| 
      
 74 
     | 
    
         
            +
                        :fri: པ་སངས་
         
     | 
| 
      
 75 
     | 
    
         
            +
                        :mon: ཟླ་བ་
         
     | 
| 
      
 76 
     | 
    
         
            +
                        :sat: སྤེན་པ་
         
     | 
| 
      
 77 
     | 
    
         
            +
                        :sun: ཉི་མ་
         
     | 
| 
      
 78 
     | 
    
         
            +
                        :thu: ཕུར་བུ་
         
     | 
| 
      
 79 
     | 
    
         
            +
                        :tue: མིག་དམར་
         
     | 
| 
      
 80 
     | 
    
         
            +
                        :wed: ལྷག་པ་
         
     | 
| 
       81 
81 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       82 
82 
     | 
    
         
             
                        :fri: གཟའ་པ་སངས་
         
     | 
| 
       83 
83 
     | 
    
         
             
                        :mon: གཟའ་ཟླ་བ་
         
     | 
| 
         @@ -104,13 +104,13 @@ 
     | 
|
| 
       104 
104 
     | 
    
         
             
                        :tue: མིག
         
     | 
| 
       105 
105 
     | 
    
         
             
                        :wed: ལྷག
         
     | 
| 
       106 
106 
     | 
    
         
             
                      :short: 
         
     | 
| 
       107 
     | 
    
         
            -
                        :fri:  
     | 
| 
       108 
     | 
    
         
            -
                        :mon:  
     | 
| 
       109 
     | 
    
         
            -
                        :sat:  
     | 
| 
       110 
     | 
    
         
            -
                        :sun:  
     | 
| 
       111 
     | 
    
         
            -
                        :thu:  
     | 
| 
       112 
     | 
    
         
            -
                        :tue:  
     | 
| 
       113 
     | 
    
         
            -
                        :wed:  
     | 
| 
      
 107 
     | 
    
         
            +
                        :fri: པ་སངས་
         
     | 
| 
      
 108 
     | 
    
         
            +
                        :mon: ཟླ་བ་
         
     | 
| 
      
 109 
     | 
    
         
            +
                        :sat: སྤེན་པ་
         
     | 
| 
      
 110 
     | 
    
         
            +
                        :sun: ཉི་མ་
         
     | 
| 
      
 111 
     | 
    
         
            +
                        :thu: ཕུར་བུ་
         
     | 
| 
      
 112 
     | 
    
         
            +
                        :tue: མིག་དམར་
         
     | 
| 
      
 113 
     | 
    
         
            +
                        :wed: ལྷག་པ་
         
     | 
| 
       114 
114 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       115 
115 
     | 
    
         
             
                        :fri: གཟའ་པ་སངས་
         
     | 
| 
       116 
116 
     | 
    
         
             
                        :mon: གཟའ་ཟླ་བ་
         
     | 
| 
         @@ -131,50 +131,50 @@ 
     | 
|
| 
       131 
131 
     | 
    
         
             
                      1: CE
         
     | 
| 
       132 
132 
     | 
    
         
             
                  :fields: 
         
     | 
| 
       133 
133 
     | 
    
         
             
                    :day: ཉིན།
         
     | 
| 
       134 
     | 
    
         
            -
                    :day-narrow:  
     | 
| 
       135 
     | 
    
         
            -
                    :day-short:  
     | 
| 
      
 134 
     | 
    
         
            +
                    :day-narrow: ཉིན།
         
     | 
| 
      
 135 
     | 
    
         
            +
                    :day-short: ཉིན།
         
     | 
| 
       136 
136 
     | 
    
         
             
                    :dayOfYear: "Day Of Year"
         
     | 
| 
       137 
137 
     | 
    
         
             
                    :dayOfYear-narrow: "Day Of Year"
         
     | 
| 
       138 
138 
     | 
    
         
             
                    :dayOfYear-short: "Day Of Year"
         
     | 
| 
       139 
139 
     | 
    
         
             
                    :dayperiod: "སྔ་དྲོ། ཕྱི་དྲོ།"
         
     | 
| 
       140 
     | 
    
         
            -
                    :dayperiod-narrow:  
     | 
| 
       141 
     | 
    
         
            -
                    :dayperiod-short:  
     | 
| 
      
 140 
     | 
    
         
            +
                    :dayperiod-narrow: "སྔ་དྲོ། ཕྱི་དྲོ།"
         
     | 
| 
      
 141 
     | 
    
         
            +
                    :dayperiod-short: "སྔ་དྲོ། ཕྱི་དྲོ།"
         
     | 
| 
       142 
142 
     | 
    
         
             
                    :era: ལོ་རིམ།
         
     | 
| 
       143 
     | 
    
         
            -
                    :era-narrow:  
     | 
| 
       144 
     | 
    
         
            -
                    :era-short:  
     | 
| 
      
 143 
     | 
    
         
            +
                    :era-narrow: ལོ་རིམ།
         
     | 
| 
      
 144 
     | 
    
         
            +
                    :era-short: ལོ་རིམ།
         
     | 
| 
       145 
145 
     | 
    
         
             
                    :hour: ཆུ་ཚོད་
         
     | 
| 
       146 
     | 
    
         
            -
                    :hour-narrow:  
     | 
| 
       147 
     | 
    
         
            -
                    :hour-short:  
     | 
| 
      
 146 
     | 
    
         
            +
                    :hour-narrow: ཆུ་ཚོད་
         
     | 
| 
      
 147 
     | 
    
         
            +
                    :hour-short: ཆུ་ཚོད་
         
     | 
| 
       148 
148 
     | 
    
         
             
                    :minute: སྐར་མ།
         
     | 
| 
       149 
     | 
    
         
            -
                    :minute-narrow:  
     | 
| 
       150 
     | 
    
         
            -
                    :minute-short:  
     | 
| 
      
 149 
     | 
    
         
            +
                    :minute-narrow: སྐར་མ།
         
     | 
| 
      
 150 
     | 
    
         
            +
                    :minute-short: སྐར་མ།
         
     | 
| 
       151 
151 
     | 
    
         
             
                    :month: ཟླ་བ་
         
     | 
| 
       152 
     | 
    
         
            -
                    :month-narrow:  
     | 
| 
       153 
     | 
    
         
            -
                    :month-short:  
     | 
| 
      
 152 
     | 
    
         
            +
                    :month-narrow: ཟླ་བ་
         
     | 
| 
      
 153 
     | 
    
         
            +
                    :month-short: ཟླ་བ་
         
     | 
| 
       154 
154 
     | 
    
         
             
                    :quarter: Quarter
         
     | 
| 
       155 
155 
     | 
    
         
             
                    :quarter-narrow: Quarter
         
     | 
| 
       156 
156 
     | 
    
         
             
                    :quarter-short: Quarter
         
     | 
| 
       157 
157 
     | 
    
         
             
                    :second: སྐར་ཆ།
         
     | 
| 
       158 
     | 
    
         
            -
                    :second-narrow:  
     | 
| 
       159 
     | 
    
         
            -
                    :second-short:  
     | 
| 
      
 158 
     | 
    
         
            +
                    :second-narrow: སྐར་ཆ།
         
     | 
| 
      
 159 
     | 
    
         
            +
                    :second-short: སྐར་ཆ།
         
     | 
| 
       160 
160 
     | 
    
         
             
                    :week: གཟའ་འཁོར།
         
     | 
| 
       161 
     | 
    
         
            -
                    :week-narrow:  
     | 
| 
       162 
     | 
    
         
            -
                    :week-short:  
     | 
| 
      
 161 
     | 
    
         
            +
                    :week-narrow: གཟའ་འཁོར།
         
     | 
| 
      
 162 
     | 
    
         
            +
                    :week-short: གཟའ་འཁོར།
         
     | 
| 
       163 
163 
     | 
    
         
             
                    :weekOfMonth: "Week Of Month"
         
     | 
| 
       164 
164 
     | 
    
         
             
                    :weekOfMonth-narrow: "Week Of Month"
         
     | 
| 
       165 
165 
     | 
    
         
             
                    :weekOfMonth-short: "Week Of Month"
         
     | 
| 
       166 
166 
     | 
    
         
             
                    :weekday: གཟའ་འཁོར་གཅིག
         
     | 
| 
       167 
     | 
    
         
            -
                    :weekday-narrow:  
     | 
| 
       168 
     | 
    
         
            -
                    :weekday-short:  
     | 
| 
      
 167 
     | 
    
         
            +
                    :weekday-narrow: གཟའ་འཁོར་གཅིག
         
     | 
| 
      
 168 
     | 
    
         
            +
                    :weekday-short: གཟའ་འཁོར་གཅིག
         
     | 
| 
       169 
169 
     | 
    
         
             
                    :weekdayOfMonth: "Weekday Of Month"
         
     | 
| 
       170 
170 
     | 
    
         
             
                    :weekdayOfMonth-narrow: "Weekday Of Month"
         
     | 
| 
       171 
171 
     | 
    
         
             
                    :weekdayOfMonth-short: "Weekday Of Month"
         
     | 
| 
       172 
172 
     | 
    
         
             
                    :year: ལོ།
         
     | 
| 
       173 
     | 
    
         
            -
                    :year-narrow:  
     | 
| 
       174 
     | 
    
         
            -
                    :year-short:  
     | 
| 
      
 173 
     | 
    
         
            +
                    :year-narrow: ལོ།
         
     | 
| 
      
 174 
     | 
    
         
            +
                    :year-short: ལོ།
         
     | 
| 
       175 
175 
     | 
    
         
             
                    :zone: དུས་ཚོད།
         
     | 
| 
       176 
     | 
    
         
            -
                    :zone-narrow:  
     | 
| 
       177 
     | 
    
         
            -
                    :zone-short:  
     | 
| 
      
 176 
     | 
    
         
            +
                    :zone-narrow: དུས་ཚོད།
         
     | 
| 
      
 177 
     | 
    
         
            +
                    :zone-short: དུས་ཚོད།
         
     | 
| 
       178 
178 
     | 
    
         
             
                  :formats: 
         
     | 
| 
       179 
179 
     | 
    
         
             
                    :date: 
         
     | 
| 
       180 
180 
     | 
    
         
             
                      :full: 
         
     | 
| 
         @@ -246,18 +246,18 @@ 
     | 
|
| 
       246 
246 
     | 
    
         
             
                        9: ཟླ་བ་དགུ་པ
         
     | 
| 
       247 
247 
     | 
    
         
             
                    :stand-alone: 
         
     | 
| 
       248 
248 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
       249 
     | 
    
         
            -
                        1:  
     | 
| 
       250 
     | 
    
         
            -
                        10:  
     | 
| 
       251 
     | 
    
         
            -
                        11:  
     | 
| 
       252 
     | 
    
         
            -
                        12:  
     | 
| 
       253 
     | 
    
         
            -
                        2:  
     | 
| 
       254 
     | 
    
         
            -
                        3:  
     | 
| 
       255 
     | 
    
         
            -
                        4:  
     | 
| 
       256 
     | 
    
         
            -
                        5:  
     | 
| 
       257 
     | 
    
         
            -
                        6:  
     | 
| 
       258 
     | 
    
         
            -
                        7:  
     | 
| 
       259 
     | 
    
         
            -
                        8:  
     | 
| 
       260 
     | 
    
         
            -
                        9:  
     | 
| 
      
 249 
     | 
    
         
            +
                        1: ཟླ་༡
         
     | 
| 
      
 250 
     | 
    
         
            +
                        10: ཟླ་༡༠
         
     | 
| 
      
 251 
     | 
    
         
            +
                        11: ཟླ་༡༡
         
     | 
| 
      
 252 
     | 
    
         
            +
                        12: ཟླ་༡༢
         
     | 
| 
      
 253 
     | 
    
         
            +
                        2: ཟླ་༢
         
     | 
| 
      
 254 
     | 
    
         
            +
                        3: ཟླ་༣
         
     | 
| 
      
 255 
     | 
    
         
            +
                        4: ཟླ་༤
         
     | 
| 
      
 256 
     | 
    
         
            +
                        5: ཟླ་༥
         
     | 
| 
      
 257 
     | 
    
         
            +
                        6: ཟླ་༦
         
     | 
| 
      
 258 
     | 
    
         
            +
                        7: ཟླ་༧
         
     | 
| 
      
 259 
     | 
    
         
            +
                        8: ཟླ་༨
         
     | 
| 
      
 260 
     | 
    
         
            +
                        9: ཟླ་༩
         
     | 
| 
       261 
261 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       262 
262 
     | 
    
         
             
                        1: "1"
         
     | 
| 
       263 
263 
     | 
    
         
             
                        10: "10"
         
     | 
| 
         @@ -290,21 +290,21 @@ 
     | 
|
| 
       290 
290 
     | 
    
         
             
                        :am: སྔ་དྲོ་
         
     | 
| 
       291 
291 
     | 
    
         
             
                        :pm: ཕྱི་དྲོ་
         
     | 
| 
       292 
292 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       293 
     | 
    
         
            -
                        :am:  
     | 
| 
       294 
     | 
    
         
            -
                        :pm:  
     | 
| 
      
 293 
     | 
    
         
            +
                        :am: སྔ་དྲོ་
         
     | 
| 
      
 294 
     | 
    
         
            +
                        :pm: ཕྱི་དྲོ་
         
     | 
| 
       295 
295 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       296 
296 
     | 
    
         
             
                        :am: སྔ་དྲོ་
         
     | 
| 
       297 
297 
     | 
    
         
             
                        :pm: ཕྱི་དྲོ་
         
     | 
| 
       298 
298 
     | 
    
         
             
                    :stand-alone: 
         
     | 
| 
       299 
299 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
       300 
     | 
    
         
            -
                        :am:  
     | 
| 
       301 
     | 
    
         
            -
                        :pm:  
     | 
| 
      
 300 
     | 
    
         
            +
                        :am: སྔ་དྲོ་
         
     | 
| 
      
 301 
     | 
    
         
            +
                        :pm: ཕྱི་དྲོ་
         
     | 
| 
       302 
302 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       303 
     | 
    
         
            -
                        :am:  
     | 
| 
       304 
     | 
    
         
            -
                        :pm:  
     | 
| 
      
 303 
     | 
    
         
            +
                        :am: སྔ་དྲོ་
         
     | 
| 
      
 304 
     | 
    
         
            +
                        :pm: ཕྱི་དྲོ་
         
     | 
| 
       305 
305 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       306 
     | 
    
         
            -
                        :am:  
     | 
| 
       307 
     | 
    
         
            -
                        :pm:  
     | 
| 
      
 306 
     | 
    
         
            +
                        :am: སྔ་དྲོ་
         
     | 
| 
      
 307 
     | 
    
         
            +
                        :pm: ཕྱི་དྲོ་
         
     | 
| 
       308 
308 
     | 
    
         
             
                  :quarters: 
         
     | 
| 
       309 
309 
     | 
    
         
             
                    :format: 
         
     | 
| 
       310 
310 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
         @@ -103,21 +103,21 @@ 
     | 
|
| 
       103 
103 
     | 
    
         
             
                        :tue: T
         
     | 
| 
       104 
104 
     | 
    
         
             
                        :wed: W
         
     | 
| 
       105 
105 
     | 
    
         
             
                      :short: 
         
     | 
| 
       106 
     | 
    
         
            -
                        :fri:  
     | 
| 
       107 
     | 
    
         
            -
                        :mon:  
     | 
| 
       108 
     | 
    
         
            -
                        :sat:  
     | 
| 
       109 
     | 
    
         
            -
                        :sun:  
     | 
| 
       110 
     | 
    
         
            -
                        :thu:  
     | 
| 
       111 
     | 
    
         
            -
                        :tue:  
     | 
| 
       112 
     | 
    
         
            -
                        :wed:  
     | 
| 
      
 106 
     | 
    
         
            +
                        :fri: Fr
         
     | 
| 
      
 107 
     | 
    
         
            +
                        :mon: Mo
         
     | 
| 
      
 108 
     | 
    
         
            +
                        :sat: Sa
         
     | 
| 
      
 109 
     | 
    
         
            +
                        :sun: Su
         
     | 
| 
      
 110 
     | 
    
         
            +
                        :thu: Th
         
     | 
| 
      
 111 
     | 
    
         
            +
                        :tue: Tu
         
     | 
| 
      
 112 
     | 
    
         
            +
                        :wed: We
         
     | 
| 
       113 
113 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       114 
     | 
    
         
            -
                        :fri:  
     | 
| 
       115 
     | 
    
         
            -
                        :mon:  
     | 
| 
       116 
     | 
    
         
            -
                        :sat:  
     | 
| 
       117 
     | 
    
         
            -
                        :sun:  
     | 
| 
       118 
     | 
    
         
            -
                        :thu:  
     | 
| 
       119 
     | 
    
         
            -
                        :tue:  
     | 
| 
       120 
     | 
    
         
            -
                        :wed:  
     | 
| 
      
 114 
     | 
    
         
            +
                        :fri: Friday
         
     | 
| 
      
 115 
     | 
    
         
            +
                        :mon: Monday
         
     | 
| 
      
 116 
     | 
    
         
            +
                        :sat: Saturday
         
     | 
| 
      
 117 
     | 
    
         
            +
                        :sun: Sunday
         
     | 
| 
      
 118 
     | 
    
         
            +
                        :thu: Thursday
         
     | 
| 
      
 119 
     | 
    
         
            +
                        :tue: Tuesday
         
     | 
| 
      
 120 
     | 
    
         
            +
                        :wed: Wednesday
         
     | 
| 
       121 
121 
     | 
    
         
             
                  :eras: 
         
     | 
| 
       122 
122 
     | 
    
         
             
                    :abbr: 
         
     | 
| 
       123 
123 
     | 
    
         
             
                      0: BCE
         
     | 
| 
         @@ -130,49 +130,49 @@ 
     | 
|
| 
       130 
130 
     | 
    
         
             
                      1: A
         
     | 
| 
       131 
131 
     | 
    
         
             
                  :fields: 
         
     | 
| 
       132 
132 
     | 
    
         
             
                    :day: day
         
     | 
| 
       133 
     | 
    
         
            -
                    :day-narrow:  
     | 
| 
      
 133 
     | 
    
         
            +
                    :day-narrow: day
         
     | 
| 
       134 
134 
     | 
    
         
             
                    :day-short: day
         
     | 
| 
       135 
135 
     | 
    
         
             
                    :dayOfYear: "day of year"
         
     | 
| 
       136 
     | 
    
         
            -
                    :dayOfYear-narrow: " 
     | 
| 
      
 136 
     | 
    
         
            +
                    :dayOfYear-narrow: "day of yr."
         
     | 
| 
       137 
137 
     | 
    
         
             
                    :dayOfYear-short: "day of yr."
         
     | 
| 
       138 
138 
     | 
    
         
             
                    :dayperiod: AM/PM
         
     | 
| 
       139 
     | 
    
         
            -
                    :dayperiod-narrow:  
     | 
| 
      
 139 
     | 
    
         
            +
                    :dayperiod-narrow: AM/PM
         
     | 
| 
       140 
140 
     | 
    
         
             
                    :dayperiod-short: AM/PM
         
     | 
| 
       141 
141 
     | 
    
         
             
                    :era: era
         
     | 
| 
       142 
     | 
    
         
            -
                    :era-narrow:  
     | 
| 
      
 142 
     | 
    
         
            +
                    :era-narrow: era
         
     | 
| 
       143 
143 
     | 
    
         
             
                    :era-short: era
         
     | 
| 
       144 
144 
     | 
    
         
             
                    :hour: hour
         
     | 
| 
       145 
     | 
    
         
            -
                    :hour-narrow:  
     | 
| 
      
 145 
     | 
    
         
            +
                    :hour-narrow: hr.
         
     | 
| 
       146 
146 
     | 
    
         
             
                    :hour-short: hr.
         
     | 
| 
       147 
147 
     | 
    
         
             
                    :minute: minute
         
     | 
| 
       148 
     | 
    
         
            -
                    :minute-narrow:  
     | 
| 
      
 148 
     | 
    
         
            +
                    :minute-narrow: min.
         
     | 
| 
       149 
149 
     | 
    
         
             
                    :minute-short: min.
         
     | 
| 
       150 
150 
     | 
    
         
             
                    :month: month
         
     | 
| 
       151 
     | 
    
         
            -
                    :month-narrow:  
     | 
| 
      
 151 
     | 
    
         
            +
                    :month-narrow: mo.
         
     | 
| 
       152 
152 
     | 
    
         
             
                    :month-short: mo.
         
     | 
| 
       153 
153 
     | 
    
         
             
                    :quarter: quarter
         
     | 
| 
       154 
     | 
    
         
            -
                    :quarter-narrow:  
     | 
| 
      
 154 
     | 
    
         
            +
                    :quarter-narrow: qtr.
         
     | 
| 
       155 
155 
     | 
    
         
             
                    :quarter-short: qtr.
         
     | 
| 
       156 
156 
     | 
    
         
             
                    :second: second
         
     | 
| 
       157 
     | 
    
         
            -
                    :second-narrow:  
     | 
| 
      
 157 
     | 
    
         
            +
                    :second-narrow: sec.
         
     | 
| 
       158 
158 
     | 
    
         
             
                    :second-short: sec.
         
     | 
| 
       159 
159 
     | 
    
         
             
                    :week: week
         
     | 
| 
       160 
     | 
    
         
            -
                    :week-narrow:  
     | 
| 
      
 160 
     | 
    
         
            +
                    :week-narrow: wk.
         
     | 
| 
       161 
161 
     | 
    
         
             
                    :week-short: wk.
         
     | 
| 
       162 
162 
     | 
    
         
             
                    :weekOfMonth: "week of month"
         
     | 
| 
       163 
     | 
    
         
            -
                    :weekOfMonth-narrow: " 
     | 
| 
      
 163 
     | 
    
         
            +
                    :weekOfMonth-narrow: "wk. of mo."
         
     | 
| 
       164 
164 
     | 
    
         
             
                    :weekOfMonth-short: "wk. of mo."
         
     | 
| 
       165 
165 
     | 
    
         
             
                    :weekday: "day of the week"
         
     | 
| 
       166 
     | 
    
         
            -
                    :weekday-narrow: " 
     | 
| 
      
 166 
     | 
    
         
            +
                    :weekday-narrow: "day of wk."
         
     | 
| 
       167 
167 
     | 
    
         
             
                    :weekday-short: "day of wk."
         
     | 
| 
       168 
168 
     | 
    
         
             
                    :weekdayOfMonth: "weekday of the month"
         
     | 
| 
       169 
     | 
    
         
            -
                    :weekdayOfMonth-narrow: " 
     | 
| 
      
 169 
     | 
    
         
            +
                    :weekdayOfMonth-narrow: "wkday. of mo."
         
     | 
| 
       170 
170 
     | 
    
         
             
                    :weekdayOfMonth-short: "wkday. of mo."
         
     | 
| 
       171 
171 
     | 
    
         
             
                    :year: year
         
     | 
| 
       172 
     | 
    
         
            -
                    :year-narrow:  
     | 
| 
      
 172 
     | 
    
         
            +
                    :year-narrow: yr.
         
     | 
| 
       173 
173 
     | 
    
         
             
                    :year-short: yr.
         
     | 
| 
       174 
174 
     | 
    
         
             
                    :zone: "time zone"
         
     | 
| 
       175 
     | 
    
         
            -
                    :zone-narrow:  
     | 
| 
      
 175 
     | 
    
         
            +
                    :zone-narrow: zone
         
     | 
| 
       176 
176 
     | 
    
         
             
                    :zone-short: zone
         
     | 
| 
       177 
177 
     | 
    
         
             
                  :formats: 
         
     | 
| 
       178 
178 
     | 
    
         
             
                    :date: 
         
     | 
| 
         @@ -218,18 +218,18 @@ 
     | 
|
| 
       218 
218 
     | 
    
         
             
                        8: Aug
         
     | 
| 
       219 
219 
     | 
    
         
             
                        9: Sep
         
     | 
| 
       220 
220 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       221 
     | 
    
         
            -
                        1:  
     | 
| 
       222 
     | 
    
         
            -
                        10:  
     | 
| 
       223 
     | 
    
         
            -
                        11: " 
     | 
| 
       224 
     | 
    
         
            -
                        12:  
     | 
| 
       225 
     | 
    
         
            -
                        2:  
     | 
| 
       226 
     | 
    
         
            -
                        3:  
     | 
| 
       227 
     | 
    
         
            -
                        4:  
     | 
| 
       228 
     | 
    
         
            -
                        5:  
     | 
| 
       229 
     | 
    
         
            -
                        6:  
     | 
| 
       230 
     | 
    
         
            -
                        7:  
     | 
| 
       231 
     | 
    
         
            -
                        8:  
     | 
| 
       232 
     | 
    
         
            -
                        9:  
     | 
| 
      
 221 
     | 
    
         
            +
                        1: J
         
     | 
| 
      
 222 
     | 
    
         
            +
                        10: O
         
     | 
| 
      
 223 
     | 
    
         
            +
                        11: "N"
         
     | 
| 
      
 224 
     | 
    
         
            +
                        12: D
         
     | 
| 
      
 225 
     | 
    
         
            +
                        2: F
         
     | 
| 
      
 226 
     | 
    
         
            +
                        3: M
         
     | 
| 
      
 227 
     | 
    
         
            +
                        4: A
         
     | 
| 
      
 228 
     | 
    
         
            +
                        5: M
         
     | 
| 
      
 229 
     | 
    
         
            +
                        6: J
         
     | 
| 
      
 230 
     | 
    
         
            +
                        7: J
         
     | 
| 
      
 231 
     | 
    
         
            +
                        8: A
         
     | 
| 
      
 232 
     | 
    
         
            +
                        9: S
         
     | 
| 
       233 
233 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       234 
234 
     | 
    
         
             
                        1: January
         
     | 
| 
       235 
235 
     | 
    
         
             
                        10: October
         
     | 
| 
         @@ -245,18 +245,18 @@ 
     | 
|
| 
       245 
245 
     | 
    
         
             
                        9: September
         
     | 
| 
       246 
246 
     | 
    
         
             
                    :stand-alone: 
         
     | 
| 
       247 
247 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
       248 
     | 
    
         
            -
                        1:  
     | 
| 
       249 
     | 
    
         
            -
                        10:  
     | 
| 
       250 
     | 
    
         
            -
                        11:  
     | 
| 
       251 
     | 
    
         
            -
                        12:  
     | 
| 
       252 
     | 
    
         
            -
                        2:  
     | 
| 
       253 
     | 
    
         
            -
                        3:  
     | 
| 
       254 
     | 
    
         
            -
                        4:  
     | 
| 
       255 
     | 
    
         
            -
                        5:  
     | 
| 
       256 
     | 
    
         
            -
                        6:  
     | 
| 
       257 
     | 
    
         
            -
                        7:  
     | 
| 
       258 
     | 
    
         
            -
                        8:  
     | 
| 
       259 
     | 
    
         
            -
                        9:  
     | 
| 
      
 248 
     | 
    
         
            +
                        1: Jan
         
     | 
| 
      
 249 
     | 
    
         
            +
                        10: Oct
         
     | 
| 
      
 250 
     | 
    
         
            +
                        11: Nov
         
     | 
| 
      
 251 
     | 
    
         
            +
                        12: Dec
         
     | 
| 
      
 252 
     | 
    
         
            +
                        2: Feb
         
     | 
| 
      
 253 
     | 
    
         
            +
                        3: Mar
         
     | 
| 
      
 254 
     | 
    
         
            +
                        4: Apr
         
     | 
| 
      
 255 
     | 
    
         
            +
                        5: May
         
     | 
| 
      
 256 
     | 
    
         
            +
                        6: Jun
         
     | 
| 
      
 257 
     | 
    
         
            +
                        7: Jul
         
     | 
| 
      
 258 
     | 
    
         
            +
                        8: Aug
         
     | 
| 
      
 259 
     | 
    
         
            +
                        9: Sep
         
     | 
| 
       260 
260 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       261 
261 
     | 
    
         
             
                        1: J
         
     | 
| 
       262 
262 
     | 
    
         
             
                        10: O
         
     | 
| 
         @@ -271,18 +271,18 @@ 
     | 
|
| 
       271 
271 
     | 
    
         
             
                        8: A
         
     | 
| 
       272 
272 
     | 
    
         
             
                        9: S
         
     | 
| 
       273 
273 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       274 
     | 
    
         
            -
                        1:  
     | 
| 
       275 
     | 
    
         
            -
                        10:  
     | 
| 
       276 
     | 
    
         
            -
                        11:  
     | 
| 
       277 
     | 
    
         
            -
                        12:  
     | 
| 
       278 
     | 
    
         
            -
                        2:  
     | 
| 
       279 
     | 
    
         
            -
                        3:  
     | 
| 
       280 
     | 
    
         
            -
                        4:  
     | 
| 
       281 
     | 
    
         
            -
                        5:  
     | 
| 
       282 
     | 
    
         
            -
                        6:  
     | 
| 
       283 
     | 
    
         
            -
                        7:  
     | 
| 
       284 
     | 
    
         
            -
                        8:  
     | 
| 
       285 
     | 
    
         
            -
                        9:  
     | 
| 
      
 274 
     | 
    
         
            +
                        1: January
         
     | 
| 
      
 275 
     | 
    
         
            +
                        10: October
         
     | 
| 
      
 276 
     | 
    
         
            +
                        11: November
         
     | 
| 
      
 277 
     | 
    
         
            +
                        12: December
         
     | 
| 
      
 278 
     | 
    
         
            +
                        2: February
         
     | 
| 
      
 279 
     | 
    
         
            +
                        3: March
         
     | 
| 
      
 280 
     | 
    
         
            +
                        4: April
         
     | 
| 
      
 281 
     | 
    
         
            +
                        5: May
         
     | 
| 
      
 282 
     | 
    
         
            +
                        6: June
         
     | 
| 
      
 283 
     | 
    
         
            +
                        7: July
         
     | 
| 
      
 284 
     | 
    
         
            +
                        8: August
         
     | 
| 
      
 285 
     | 
    
         
            +
                        9: September
         
     | 
| 
       286 
286 
     | 
    
         
             
                  :periods: 
         
     | 
| 
       287 
287 
     | 
    
         
             
                    :format: 
         
     | 
| 
       288 
288 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
         @@ -329,7 +329,13 @@ 
     | 
|
| 
       329 
329 
     | 
    
         
             
                        :noon: noon
         
     | 
| 
       330 
330 
     | 
    
         
             
                        :pm: PM
         
     | 
| 
       331 
331 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
      
 332 
     | 
    
         
            +
                        :afternoon1: afternoon
         
     | 
| 
       332 
333 
     | 
    
         
             
                        :am: AM
         
     | 
| 
      
 334 
     | 
    
         
            +
                        :evening1: evening
         
     | 
| 
      
 335 
     | 
    
         
            +
                        :midnight: midnight
         
     | 
| 
      
 336 
     | 
    
         
            +
                        :morning1: morning
         
     | 
| 
      
 337 
     | 
    
         
            +
                        :night1: night
         
     | 
| 
      
 338 
     | 
    
         
            +
                        :noon: noon
         
     | 
| 
       333 
339 
     | 
    
         
             
                        :pm: PM
         
     | 
| 
       334 
340 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       335 
341 
     | 
    
         
             
                        :afternoon1: afternoon
         
     | 
| 
         @@ -369,7 +375,7 @@ 
     | 
|
| 
       369 
375 
     | 
    
         
             
                        3: "3"
         
     | 
| 
       370 
376 
     | 
    
         
             
                        4: "4"
         
     | 
| 
       371 
377 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       372 
     | 
    
         
            -
                        1:  
     | 
| 
       373 
     | 
    
         
            -
                        2:  
     | 
| 
       374 
     | 
    
         
            -
                        3:  
     | 
| 
       375 
     | 
    
         
            -
                        4:  
     | 
| 
      
 378 
     | 
    
         
            +
                        1: "1st quarter"
         
     | 
| 
      
 379 
     | 
    
         
            +
                        2: "2nd quarter"
         
     | 
| 
      
 380 
     | 
    
         
            +
                        3: "3rd quarter"
         
     | 
| 
      
 381 
     | 
    
         
            +
                        4: "4th quarter"
         
     | 
| 
         @@ -104,21 +104,21 @@ 
     | 
|
| 
       104 
104 
     | 
    
         
             
                        :tue: T
         
     | 
| 
       105 
105 
     | 
    
         
             
                        :wed: W
         
     | 
| 
       106 
106 
     | 
    
         
             
                      :short: 
         
     | 
| 
       107 
     | 
    
         
            -
                        :fri:  
     | 
| 
       108 
     | 
    
         
            -
                        :mon:  
     | 
| 
       109 
     | 
    
         
            -
                        :sat:  
     | 
| 
       110 
     | 
    
         
            -
                        :sun:  
     | 
| 
       111 
     | 
    
         
            -
                        :thu:  
     | 
| 
       112 
     | 
    
         
            -
                        :tue:  
     | 
| 
       113 
     | 
    
         
            -
                        :wed:  
     | 
| 
      
 107 
     | 
    
         
            +
                        :fri: Fr
         
     | 
| 
      
 108 
     | 
    
         
            +
                        :mon: Mo
         
     | 
| 
      
 109 
     | 
    
         
            +
                        :sat: Sa
         
     | 
| 
      
 110 
     | 
    
         
            +
                        :sun: Su
         
     | 
| 
      
 111 
     | 
    
         
            +
                        :thu: Th
         
     | 
| 
      
 112 
     | 
    
         
            +
                        :tue: Tu
         
     | 
| 
      
 113 
     | 
    
         
            +
                        :wed: We
         
     | 
| 
       114 
114 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       115 
     | 
    
         
            -
                        :fri:  
     | 
| 
       116 
     | 
    
         
            -
                        :mon:  
     | 
| 
       117 
     | 
    
         
            -
                        :sat:  
     | 
| 
       118 
     | 
    
         
            -
                        :sun:  
     | 
| 
       119 
     | 
    
         
            -
                        :thu:  
     | 
| 
       120 
     | 
    
         
            -
                        :tue:  
     | 
| 
       121 
     | 
    
         
            -
                        :wed:  
     | 
| 
      
 115 
     | 
    
         
            +
                        :fri: Friday
         
     | 
| 
      
 116 
     | 
    
         
            +
                        :mon: Monday
         
     | 
| 
      
 117 
     | 
    
         
            +
                        :sat: Saturday
         
     | 
| 
      
 118 
     | 
    
         
            +
                        :sun: Sunday
         
     | 
| 
      
 119 
     | 
    
         
            +
                        :thu: Thursday
         
     | 
| 
      
 120 
     | 
    
         
            +
                        :tue: Tuesday
         
     | 
| 
      
 121 
     | 
    
         
            +
                        :wed: Wednesday
         
     | 
| 
       122 
122 
     | 
    
         
             
                  :eras: 
         
     | 
| 
       123 
123 
     | 
    
         
             
                    :abbr: 
         
     | 
| 
       124 
124 
     | 
    
         
             
                      0: BCE
         
     | 
| 
         @@ -131,7 +131,7 @@ 
     | 
|
| 
       131 
131 
     | 
    
         
             
                      1: A
         
     | 
| 
       132 
132 
     | 
    
         
             
                  :fields: 
         
     | 
| 
       133 
133 
     | 
    
         
             
                    :day: day
         
     | 
| 
       134 
     | 
    
         
            -
                    :day-narrow:  
     | 
| 
      
 134 
     | 
    
         
            +
                    :day-narrow: day
         
     | 
| 
       135 
135 
     | 
    
         
             
                    :day-short: day
         
     | 
| 
       136 
136 
     | 
    
         
             
                    :dayOfYear: "day of year"
         
     | 
| 
       137 
137 
     | 
    
         
             
                    :dayOfYear-narrow: "day of yr"
         
     | 
| 
         @@ -140,10 +140,10 @@ 
     | 
|
| 
       140 
140 
     | 
    
         
             
                    :dayperiod-narrow: am/pm
         
     | 
| 
       141 
141 
     | 
    
         
             
                    :dayperiod-short: am/pm
         
     | 
| 
       142 
142 
     | 
    
         
             
                    :era: era
         
     | 
| 
       143 
     | 
    
         
            -
                    :era-narrow:  
     | 
| 
      
 143 
     | 
    
         
            +
                    :era-narrow: era
         
     | 
| 
       144 
144 
     | 
    
         
             
                    :era-short: era
         
     | 
| 
       145 
145 
     | 
    
         
             
                    :hour: hour
         
     | 
| 
       146 
     | 
    
         
            -
                    :hour-narrow:  
     | 
| 
      
 146 
     | 
    
         
            +
                    :hour-narrow: hr.
         
     | 
| 
       147 
147 
     | 
    
         
             
                    :hour-short: hr
         
     | 
| 
       148 
148 
     | 
    
         
             
                    :minute: minute
         
     | 
| 
       149 
149 
     | 
    
         
             
                    :minute-narrow: min
         
     | 
| 
         @@ -155,7 +155,7 @@ 
     | 
|
| 
       155 
155 
     | 
    
         
             
                    :quarter-narrow: qtr
         
     | 
| 
       156 
156 
     | 
    
         
             
                    :quarter-short: qtr
         
     | 
| 
       157 
157 
     | 
    
         
             
                    :second: second
         
     | 
| 
       158 
     | 
    
         
            -
                    :second-narrow:  
     | 
| 
      
 158 
     | 
    
         
            +
                    :second-narrow: sec.
         
     | 
| 
       159 
159 
     | 
    
         
             
                    :second-short: sec
         
     | 
| 
       160 
160 
     | 
    
         
             
                    :week: week
         
     | 
| 
       161 
161 
     | 
    
         
             
                    :week-narrow: wk
         
     | 
| 
         @@ -170,10 +170,10 @@ 
     | 
|
| 
       170 
170 
     | 
    
         
             
                    :weekdayOfMonth-narrow: "wkday of mo"
         
     | 
| 
       171 
171 
     | 
    
         
             
                    :weekdayOfMonth-short: "wkday of mo"
         
     | 
| 
       172 
172 
     | 
    
         
             
                    :year: year
         
     | 
| 
       173 
     | 
    
         
            -
                    :year-narrow:  
     | 
| 
      
 173 
     | 
    
         
            +
                    :year-narrow: yr.
         
     | 
| 
       174 
174 
     | 
    
         
             
                    :year-short: yr
         
     | 
| 
       175 
175 
     | 
    
         
             
                    :zone: "time zone"
         
     | 
| 
       176 
     | 
    
         
            -
                    :zone-narrow:  
     | 
| 
      
 176 
     | 
    
         
            +
                    :zone-narrow: zone
         
     | 
| 
       177 
177 
     | 
    
         
             
                    :zone-short: zone
         
     | 
| 
       178 
178 
     | 
    
         
             
                  :formats: 
         
     | 
| 
       179 
179 
     | 
    
         
             
                    :date: 
         
     | 
| 
         @@ -219,18 +219,18 @@ 
     | 
|
| 
       219 
219 
     | 
    
         
             
                        8: Aug
         
     | 
| 
       220 
220 
     | 
    
         
             
                        9: Sept
         
     | 
| 
       221 
221 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       222 
     | 
    
         
            -
                        1:  
     | 
| 
       223 
     | 
    
         
            -
                        10:  
     | 
| 
       224 
     | 
    
         
            -
                        11: " 
     | 
| 
       225 
     | 
    
         
            -
                        12:  
     | 
| 
       226 
     | 
    
         
            -
                        2:  
     | 
| 
       227 
     | 
    
         
            -
                        3:  
     | 
| 
       228 
     | 
    
         
            -
                        4:  
     | 
| 
       229 
     | 
    
         
            -
                        5:  
     | 
| 
       230 
     | 
    
         
            -
                        6:  
     | 
| 
       231 
     | 
    
         
            -
                        7:  
     | 
| 
       232 
     | 
    
         
            -
                        8:  
     | 
| 
       233 
     | 
    
         
            -
                        9:  
     | 
| 
      
 222 
     | 
    
         
            +
                        1: J
         
     | 
| 
      
 223 
     | 
    
         
            +
                        10: O
         
     | 
| 
      
 224 
     | 
    
         
            +
                        11: "N"
         
     | 
| 
      
 225 
     | 
    
         
            +
                        12: D
         
     | 
| 
      
 226 
     | 
    
         
            +
                        2: F
         
     | 
| 
      
 227 
     | 
    
         
            +
                        3: M
         
     | 
| 
      
 228 
     | 
    
         
            +
                        4: A
         
     | 
| 
      
 229 
     | 
    
         
            +
                        5: M
         
     | 
| 
      
 230 
     | 
    
         
            +
                        6: J
         
     | 
| 
      
 231 
     | 
    
         
            +
                        7: J
         
     | 
| 
      
 232 
     | 
    
         
            +
                        8: A
         
     | 
| 
      
 233 
     | 
    
         
            +
                        9: S
         
     | 
| 
       234 
234 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       235 
235 
     | 
    
         
             
                        1: January
         
     | 
| 
       236 
236 
     | 
    
         
             
                        10: October
         
     | 
| 
         @@ -246,17 +246,17 @@ 
     | 
|
| 
       246 
246 
     | 
    
         
             
                        9: September
         
     | 
| 
       247 
247 
     | 
    
         
             
                    :stand-alone: 
         
     | 
| 
       248 
248 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
       249 
     | 
    
         
            -
                        1:  
     | 
| 
       250 
     | 
    
         
            -
                        10:  
     | 
| 
       251 
     | 
    
         
            -
                        11:  
     | 
| 
       252 
     | 
    
         
            -
                        12:  
     | 
| 
       253 
     | 
    
         
            -
                        2:  
     | 
| 
       254 
     | 
    
         
            -
                        3:  
     | 
| 
       255 
     | 
    
         
            -
                        4:  
     | 
| 
       256 
     | 
    
         
            -
                        5:  
     | 
| 
       257 
     | 
    
         
            -
                        6:  
     | 
| 
       258 
     | 
    
         
            -
                        7:  
     | 
| 
       259 
     | 
    
         
            -
                        8:  
     | 
| 
      
 249 
     | 
    
         
            +
                        1: Jan
         
     | 
| 
      
 250 
     | 
    
         
            +
                        10: Oct
         
     | 
| 
      
 251 
     | 
    
         
            +
                        11: Nov
         
     | 
| 
      
 252 
     | 
    
         
            +
                        12: Dec
         
     | 
| 
      
 253 
     | 
    
         
            +
                        2: Feb
         
     | 
| 
      
 254 
     | 
    
         
            +
                        3: Mar
         
     | 
| 
      
 255 
     | 
    
         
            +
                        4: Apr
         
     | 
| 
      
 256 
     | 
    
         
            +
                        5: May
         
     | 
| 
      
 257 
     | 
    
         
            +
                        6: Jun
         
     | 
| 
      
 258 
     | 
    
         
            +
                        7: Jul
         
     | 
| 
      
 259 
     | 
    
         
            +
                        8: Aug
         
     | 
| 
       260 
260 
     | 
    
         
             
                        9: Sept
         
     | 
| 
       261 
261 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
       262 
262 
     | 
    
         
             
                        1: J
         
     | 
| 
         @@ -272,18 +272,18 @@ 
     | 
|
| 
       272 
272 
     | 
    
         
             
                        8: A
         
     | 
| 
       273 
273 
     | 
    
         
             
                        9: S
         
     | 
| 
       274 
274 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       275 
     | 
    
         
            -
                        1:  
     | 
| 
       276 
     | 
    
         
            -
                        10:  
     | 
| 
       277 
     | 
    
         
            -
                        11:  
     | 
| 
       278 
     | 
    
         
            -
                        12:  
     | 
| 
       279 
     | 
    
         
            -
                        2:  
     | 
| 
       280 
     | 
    
         
            -
                        3:  
     | 
| 
       281 
     | 
    
         
            -
                        4:  
     | 
| 
       282 
     | 
    
         
            -
                        5:  
     | 
| 
       283 
     | 
    
         
            -
                        6:  
     | 
| 
       284 
     | 
    
         
            -
                        7:  
     | 
| 
       285 
     | 
    
         
            -
                        8:  
     | 
| 
       286 
     | 
    
         
            -
                        9:  
     | 
| 
      
 275 
     | 
    
         
            +
                        1: January
         
     | 
| 
      
 276 
     | 
    
         
            +
                        10: October
         
     | 
| 
      
 277 
     | 
    
         
            +
                        11: November
         
     | 
| 
      
 278 
     | 
    
         
            +
                        12: December
         
     | 
| 
      
 279 
     | 
    
         
            +
                        2: February
         
     | 
| 
      
 280 
     | 
    
         
            +
                        3: March
         
     | 
| 
      
 281 
     | 
    
         
            +
                        4: April
         
     | 
| 
      
 282 
     | 
    
         
            +
                        5: May
         
     | 
| 
      
 283 
     | 
    
         
            +
                        6: June
         
     | 
| 
      
 284 
     | 
    
         
            +
                        7: July
         
     | 
| 
      
 285 
     | 
    
         
            +
                        8: August
         
     | 
| 
      
 286 
     | 
    
         
            +
                        9: September
         
     | 
| 
       287 
287 
     | 
    
         
             
                  :periods: 
         
     | 
| 
       288 
288 
     | 
    
         
             
                    :format: 
         
     | 
| 
       289 
289 
     | 
    
         
             
                      :abbreviated: 
         
     | 
| 
         @@ -330,7 +330,13 @@ 
     | 
|
| 
       330 
330 
     | 
    
         
             
                        :noon: noon
         
     | 
| 
       331 
331 
     | 
    
         
             
                        :pm: pm
         
     | 
| 
       332 
332 
     | 
    
         
             
                      :narrow: 
         
     | 
| 
      
 333 
     | 
    
         
            +
                        :afternoon1: afternoon
         
     | 
| 
       333 
334 
     | 
    
         
             
                        :am: AM
         
     | 
| 
      
 335 
     | 
    
         
            +
                        :evening1: evening
         
     | 
| 
      
 336 
     | 
    
         
            +
                        :midnight: midnight
         
     | 
| 
      
 337 
     | 
    
         
            +
                        :morning1: morning
         
     | 
| 
      
 338 
     | 
    
         
            +
                        :night1: night
         
     | 
| 
      
 339 
     | 
    
         
            +
                        :noon: noon
         
     | 
| 
       334 
340 
     | 
    
         
             
                        :pm: pm
         
     | 
| 
       335 
341 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       336 
342 
     | 
    
         
             
                        :afternoon1: afternoon
         
     | 
| 
         @@ -370,7 +376,7 @@ 
     | 
|
| 
       370 
376 
     | 
    
         
             
                        3: "3"
         
     | 
| 
       371 
377 
     | 
    
         
             
                        4: "4"
         
     | 
| 
       372 
378 
     | 
    
         
             
                      :wide: 
         
     | 
| 
       373 
     | 
    
         
            -
                        1:  
     | 
| 
       374 
     | 
    
         
            -
                        2:  
     | 
| 
       375 
     | 
    
         
            -
                        3:  
     | 
| 
       376 
     | 
    
         
            -
                        4:  
     | 
| 
      
 379 
     | 
    
         
            +
                        1: "1st quarter"
         
     | 
| 
      
 380 
     | 
    
         
            +
                        2: "2nd quarter"
         
     | 
| 
      
 381 
     | 
    
         
            +
                        3: "3rd quarter"
         
     | 
| 
      
 382 
     | 
    
         
            +
                        4: "4th quarter"
         
     |