pagy 8.4.5 → 8.6.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.
data/apps/calendar.ru CHANGED
@@ -2,9 +2,6 @@
2
2
 
3
3
  # Interactive showcase for the pagy calendar extra (https://ddnexus.github.io/pagy/docs/extras/calendar)
4
4
 
5
- # DEMO USAGE
6
- # pagy calendar
7
-
8
5
  # DEV USAGE
9
6
  # pagy clone calendar
10
7
  # pagy ./calendar.ru
@@ -16,2185 +13,733 @@
16
13
  # pagy -h
17
14
 
18
15
  # DOC
19
- # https://ddnexus.github.io/pagy/playground/#4-calendar-app
16
+ # https://ddnexus.github.io/pagy/playground/#5-calendar-app
20
17
 
21
- VERSION = '8.4.5'
18
+ VERSION = '8.6.1'
22
19
 
20
+ # Gemfile
23
21
  require 'bundler/inline'
24
22
  require 'bundler'
25
23
  Bundler.configure
26
24
  gemfile(ENV['PAGY_INSTALL_BUNDLE'] == 'true') do
27
25
  source 'https://rubygems.org'
28
- gem 'activesupport'
29
- gem 'oj'
26
+ gem 'groupdate'
30
27
  gem 'puma'
31
- gem 'sinatra'
32
- gem 'sinatra-contrib'
28
+ gem 'rails'
29
+ # activerecord/sqlite3_adapter.rb probably useless) constraint !!!
30
+ # https://github.com/rails/rails/blame/v7.1.3.4/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb#L14
31
+ gem 'sqlite3', '~> 1.4.0'
33
32
  end
34
33
 
35
- # pagy initializer
34
+ # require 'rails/all' # too much stuff
35
+ require 'action_controller/railtie'
36
+ require 'active_record'
37
+
38
+ OUTPUT = Rails.env.showcase? ? IO::NULL : $stdout
39
+
40
+ # Rails config
41
+ class Calendar < Rails::Application # :nodoc:
42
+ config.root = __dir__
43
+ config.session_store :cookie_store, key: 'cookie_store_key'
44
+ Rails.application.credentials.secret_key_base = 'absolute_secret'
45
+
46
+ config.logger = Logger.new(OUTPUT)
47
+ Rails.logger = config.logger
48
+
49
+ routes.draw do
50
+ root to: 'events#index'
51
+ end
52
+ end
53
+
54
+ # AR config
55
+ dir = Rails.env.development? ? '.' : Dir.pwd # app dir in dev or pwd otherwise
56
+ unless File.writable?(dir)
57
+ warn "ERROR: directory #{dir.inspect} is not writable (the calendar-app needs to create DB files)"
58
+ exit 1
59
+ end
60
+
61
+ # Pagy initializer
36
62
  require 'pagy/extras/calendar'
37
63
  require 'pagy/extras/bootstrap'
38
64
  Pagy::DEFAULT.freeze
39
65
 
40
- require 'sinatra/base'
41
- # Sinatra application
42
- class PagyCalendar < Sinatra::Base
43
- configure do
44
- enable :inline_templates
45
- end
46
- include Pagy::Backend
66
+ # Groupdate initializer (https://github.com/ankane/groupdate)
67
+ # Groupdate does not support the time zone with sqlite, so for this demo we can live with UTC
68
+ Groupdate.time_zone = false
69
+ # Groupdate week_start default is :sunday, while rails and pagy default to :monday
70
+ Groupdate.week_start = :monday
47
71
 
48
- # Edit this section adding your own helpers as needed
49
- helpers do
50
- include Pagy::Frontend
72
+ # Activerecord initializer
73
+ ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: "#{dir}/tmp/calendar.sqlite3")
74
+ ActiveRecord::Schema.define do
75
+ create_table :events, force: true do |t|
76
+ t.string :title
77
+ t.timestamp :time
51
78
  end
79
+ end
80
+
81
+ # Models
82
+ class Event < ActiveRecord::Base
83
+ end
84
+
85
+ # Helpers
86
+ module EventsHelper
87
+ include Pagy::Frontend
88
+ end
89
+
90
+ # Controllers
91
+ class EventsController < ActionController::Base
92
+ include Rails.application.routes.url_helpers
93
+ include Pagy::Backend
52
94
 
53
95
  # This method must be implemented by the application.
54
96
  # It must return the starting and ending local Time objects array defining the calendar :period
55
97
  def pagy_calendar_period(collection)
56
- collection.minmax.map(&:in_time_zone)
98
+ starting = collection.minimum('time')
99
+ ending = collection.maximum('time')
100
+ [starting.in_time_zone, ending.in_time_zone]
57
101
  end
58
102
 
59
103
  # This method must be implemented by the application.
60
104
  # It receives the main collection and must return a filtered version of it.
61
105
  # The filter logic must be equivalent to {storage_time >= from && storage_time < to}
62
106
  def pagy_calendar_filter(collection, from, to)
63
- collection.select_page_of_records(from.utc, to.utc) # storage in UTC
107
+ collection.where(time: from...to)
64
108
  end
65
109
 
66
- # Controller action
67
- get '/' do
68
- Time.zone = 'EST' # convert the UTC storage time to time with zone 'EST'
69
- yaml = settings.templates[:yaml_collection].first
70
- array = YAML.load(yaml, permitted_classes: [ActiveSupport::TimeWithZone, ActiveSupport::TimeZone, Time], aliases: ['1'])
71
- collection = CalendarCollection.new(array)
110
+ # This method may optionally be implemented by the application.
111
+ # It must return an array of counts grouped by unit or nil/false to skip the counts.
112
+ # If the counts are returned, pagy adds the "empty-page" CSS class to the empty page links
113
+ # and the tooltip feedback with the count to each page link.
114
+ def pagy_calendar_counts(collection, unit, from, to)
115
+ # The group_by_period method is provided by the groupdate gem
116
+ # We use the :skip_counts param for testing the output in cypress
117
+ collection.group_by_period(unit, :time, range: from...to).count.values \
118
+ unless params[:skip_counts] == 'true'
119
+ end
120
+
121
+ def index
122
+ # We need UTC to work with the limitation of groupdate with sqlite
123
+ Time.zone = 'UTC'
72
124
  # Default calendar
73
125
  # The conf Hash defines the pagy objects variables keyed by calendar unit and the final pagy standard object
74
126
  # The :skip is an optional and arbitrarily named param that skips the calendar pagination and uses only the pagy
75
127
  # object to paginate the unfiltered collection. (It's active by default even without a :skip param).
76
128
  # You way want to invert the logic (also in the view) with something like `active: params[:active]`,
77
129
  # which would be inactive by default and only active on demand.
78
- @calendar, @pagy, @records = pagy_calendar(collection, year: {},
79
- month: {},
80
- day: {},
81
- active: !params[:skip])
82
- Time.now.to_s
83
- erb :pagy_demo # template available in the __END__ section as @@ pagy_demo
130
+ @calendar, @pagy, @events = pagy_calendar(Event.all,
131
+ year: {},
132
+ month: {},
133
+ day: {},
134
+ active: !params[:skip])
135
+ render inline: TEMPLATE
84
136
  end
85
137
  end
86
138
 
87
- run PagyCalendar
88
-
89
- # Simple array-based collection that acts as a standard DB collection.
90
- class CalendarCollection < Array
91
- def initialize(...)
92
- super
93
- @collection = clone
94
- end
95
-
96
- def offset(value)
97
- @collection = self[value..]
98
- self
99
- end
100
-
101
- def limit(value)
102
- @collection[0, value]
103
- end
104
-
105
- def count(*)
106
- size
107
- end
139
+ TEMPLATE = <<~ERB
140
+ <!DOCTYPE html>
141
+ <html lang="en">
142
+ <html>
143
+ <head>
144
+ <title>Pagy Calendar App</title>
145
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
146
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
147
+ integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
108
148
 
109
- # Select days from the beginning of start_day to the end of end_day
110
- # Accepts strings or DateTime args
111
- def select_page_of_records(start_date, end_date)
112
- paged = select { |date| date >= start_date && date < end_date }
113
- # mock AR scope, returning the same type of object
114
- self.class.new(paged)
115
- end
116
- end
149
+ <style type="text/css">
150
+ @media screen { html, body {
151
+ font-size: .8rem;
152
+ line-height: 1.1s;
153
+ padding: 0;
154
+ margin: 0;
155
+ } }
156
+ body {
157
+ background-color: #f7f7f7;
158
+ color: #51585F;"
159
+ font-family: sans-serif;
160
+ }
161
+ .content {
162
+ padding: 1rem 1.5rem 2rem;
163
+ }
164
+ /* added with the pagy counts feature */
165
+ a.empty-page {
166
+ color: #888888;
167
+ }
168
+ </style>
169
+ </head>
117
170
 
118
- __END__
171
+ <body>
119
172
 
120
- @@ layout
121
- <!DOCTYPE html>
122
- <html lang="en" style="font-size: 0.8rem">
123
- <head>
124
- <title>Pagy Calendar App</title>
125
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
126
- integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
127
- </head>
128
- <body style="background-color: #f7f7f7; color: #51585F;">
129
- <%= yield %>
130
- </body>
131
- </html>
173
+ <div class="container">
174
+ <h1>Pagy Calendar App</h1>
175
+ <p>Self-contained, standalone Rails app implementing nested calendar pagination for year, month, day units.</p>
176
+ <p>See the <a href="https://ddnexus.github.io/pagy/docs/extras/calendar">Pagy Calendar Extra</a> for details.</p>
177
+ <p>Please, report the following versions in any new issue.</p>
178
+ <h2>Versions</h2>
179
+ <ul>
180
+ <li>Ruby: <%== RUBY_VERSION %></li>
181
+ <li>Rack: <%== Rack::RELEASE %></li>
182
+ <li>Rails: <%== Rails.version %></li>
183
+ <li>Pagy: <%== Pagy::VERSION %></li>
184
+ </ul>
185
+ <hr>
132
186
 
133
- @@ pagy_demo
134
- <div class="container">
187
+ <!-- calendar UI manual toggle -->
188
+ <p>
189
+ <% if params[:skip] %>
190
+ <a id="toggle" href="/" >Show Calendar</a>
191
+ <% else %>
192
+ <a id="toggle" href="?skip=true" >Hide Calendar</a>
193
+ <br>
194
+ <a id="go-to-day" href="<%= pagy_calendar_url_at(@calendar, Time.zone.parse('2022-03-02')) %>">Go to the 2022-03-02 Page</a>
195
+ <!-- You can use Time.zone.now to find the current page if your time period include today -->
196
+ <% end %>
197
+ </p>
135
198
 
136
- <h1>Pagy Calendar App</h1>
137
- <p>Self-contained, standalone Sinatra app implementing nested calendar pagination for year, month, day units.</p>
138
- <p>See the <a href="https://ddnexus.github.io/pagy/docs/extras/calendar">Pagy Calendar Extra</a> for details.</p>
139
- <hr>
199
+ <!-- calendar filtering navs -->
200
+ <% if @calendar %>
201
+ <p>Showtime: <%= @calendar.showtime %></p>
202
+ <%== pagy_bootstrap_nav(@calendar[:year], id: "year-nav", aria_label: "Years") %> <!-- year nav -->
203
+ <%== pagy_bootstrap_nav(@calendar[:month], id: "month-nav", aria_label: "Months") %> <!-- month nav -->
204
+ <%== pagy_bootstrap_nav(@calendar[:day], id: "day-nav", aria_label: "Days") %> <!-- day nav -->
205
+ <% end %>
140
206
 
141
- <!-- calendar UI manual toggle -->
142
- <p>
143
- <% if params[:skip] %>
144
- <a id="toggle" href="/" >Show Calendar</a>
145
- <% else %>
146
- <a id="toggle" href="?skip=true" >Hide Calendar</a>
147
- <br>
148
- <a id="go-to-day" href="<%= pagy_calendar_url_at(@calendar, Time.zone.parse('2022-03-02')) %>">Go to the 2022-03-02 Page</a>
149
- <!-- You can use Time.zone.now to find the current page if your time period include today -->
150
- <% end %>
151
- </p>
207
+ <!-- page info extended for the calendar unit -->
208
+ <div class="alert alert-primary" role="alert">
209
+ <%== pagy_info(@pagy, id: 'pagy-info') %>
210
+ <% if @calendar %>
211
+ for <b><%= @calendar.showtime.strftime('%Y-%m-%d') %></b>
212
+ <% end %>
213
+ </div>
152
214
 
153
- <!-- calendar filtering navs -->
154
- <% if @calendar %>
155
- <p>Showtime: <%= @calendar.showtime %></p>
156
- <%= pagy_bootstrap_nav(@calendar[:year], id: "year-nav", aria_label: "Years") %> <!-- year nav -->
157
- <%= pagy_bootstrap_nav(@calendar[:month], id: "month-nav", aria_label: "Months") %> <!-- month nav -->
158
- <%= pagy_bootstrap_nav(@calendar[:day], id: "day-nav", aria_label: "Days") %> <!-- day nav -->
159
- <% end %>
215
+ <!-- page records (time converted in your local time)-->
216
+ <div id="records" class="list-group">
217
+ <% @events.each do |event| %>
218
+ <p class="list-group-item"><%= event.title %> - <%= event.time.to_s %></p>
219
+ <% end %>
220
+ </div>
160
221
 
161
- <!-- page info extended for the calendar unit -->
162
- <div class="alert alert-primary" role="alert">
163
- <%= pagy_info(@pagy, id: 'pagy-info') %><%= " for <b>#{@calendar.showtime.strftime('%Y-%m-%d')}</b>" if @calendar %>
164
- </div>
222
+ <!-- standard pagination of the selected month -->
223
+ <p><%== pagy_bootstrap_nav(@pagy, id: 'pages-nav', aria_label: 'Pages') if @pagy.pages > 1 %><p/>
224
+ </div>
225
+ </body>
226
+ </html>
227
+ ERB
165
228
 
166
- <!-- page records (time converted in your local time)-->
167
- <div id="records" class="list-group">
168
- <% @records.each do |record| %>
169
- <p class="list-group-item"><%= record.in_time_zone.to_s %></p>
170
- <% end %>
171
- </div>
229
+ TIMES = <<~TIMES
230
+ 2021-10-21 13:18:23 +0000
231
+ 2021-10-21 23:14:50 +0000
232
+ 2021-10-23 01:06:02 +0000
233
+ 2021-10-25 18:54:35 +0000
234
+ 2021-10-26 02:22:17 +0000
235
+ 2021-10-28 22:59:49 +0000
236
+ 2021-10-30 15:02:25 +0000
237
+ 2021-11-02 04:03:39 +0000
238
+ 2021-11-04 22:41:23 +0000
239
+ 2021-11-06 00:34:29 +0000
240
+ 2021-11-06 23:56:16 +0000
241
+ 2021-11-07 06:22:04 +0000
242
+ 2021-11-07 19:46:08 +0000
243
+ 2021-11-08 09:31:13 +0000
244
+ 2021-11-09 17:22:03 +0000
245
+ 2021-11-11 05:29:54 +0000
246
+ 2021-11-13 09:41:04 +0000
247
+ 2021-11-16 07:48:22 +0000
248
+ 2021-11-16 12:43:44 +0000
249
+ 2021-11-17 16:03:07 +0000
250
+ 2021-11-20 02:39:01 +0000
251
+ 2021-11-21 02:01:24 +0000
252
+ 2021-11-23 19:24:43 +0000
253
+ 2021-11-26 11:47:22 +0000
254
+ 2021-11-28 06:30:04 +0000
255
+ 2021-12-01 00:13:55 +0000
256
+ 2021-12-03 19:10:16 +0000
257
+ 2021-12-04 00:43:47 +0000
258
+ 2021-12-06 20:15:35 +0000
259
+ 2021-12-09 16:27:07 +0000
260
+ 2021-12-10 15:28:48 +0000
261
+ 2021-12-10 23:08:16 +0000
262
+ 2021-12-11 23:09:08 +0000
263
+ 2021-12-14 04:56:58 +0000
264
+ 2021-12-14 14:00:56 +0000
265
+ 2021-12-15 22:58:51 +0000
266
+ 2021-12-16 01:28:21 +0000
267
+ 2021-12-16 20:16:54 +0000
268
+ 2021-12-19 00:34:04 +0000
269
+ 2021-12-19 06:58:41 +0000
270
+ 2021-12-21 11:13:53 +0000
271
+ 2021-12-23 07:28:50 +0000
272
+ 2021-12-23 07:57:58 +0000
273
+ 2021-12-23 18:32:13 +0000
274
+ 2021-12-24 01:17:51 +0000
275
+ 2021-12-25 05:36:16 +0000
276
+ 2021-12-25 23:21:57 +0000
277
+ 2021-12-27 12:18:57 +0000
278
+ 2021-12-28 16:59:57 +0000
279
+ 2021-12-31 15:10:23 +0000
280
+ 2022-01-01 19:18:06 +0000
281
+ 2022-01-03 08:36:27 +0000
282
+ 2022-01-03 23:31:01 +0000
283
+ 2022-01-05 02:14:57 +0000
284
+ 2022-01-06 09:26:03 +0000
285
+ 2022-01-07 20:22:22 +0000
286
+ 2022-01-10 04:04:28 +0000
287
+ 2022-01-11 17:17:55 +0000
288
+ 2022-01-14 05:21:54 +0000
289
+ 2022-01-16 01:18:58 +0000
290
+ 2022-01-18 08:42:56 +0000
291
+ 2022-01-19 00:45:04 +0000
292
+ 2022-01-20 08:18:54 +0000
293
+ 2022-01-22 05:26:38 +0000
294
+ 2022-01-24 10:57:50 +0000
295
+ 2022-01-26 09:47:02 +0000
296
+ 2022-01-28 20:44:30 +0000
297
+ 2022-01-31 16:19:50 +0000
298
+ 2022-02-01 21:23:58 +0000
299
+ 2022-02-04 14:41:57 +0000
300
+ 2022-02-06 20:40:06 +0000
301
+ 2022-02-07 23:03:50 +0000
302
+ 2022-02-09 05:28:08 +0000
303
+ 2022-02-10 02:19:12 +0000
304
+ 2022-02-11 07:51:30 +0000
305
+ 2022-02-12 13:46:16 +0000
306
+ 2022-02-13 21:06:40 +0000
307
+ 2022-02-15 11:37:50 +0000
308
+ 2022-02-18 11:23:15 +0000
309
+ 2022-02-20 08:01:49 +0000
310
+ 2022-02-23 03:00:30 +0000
311
+ 2022-02-24 21:52:25 +0000
312
+ 2022-02-25 12:07:56 +0000
313
+ 2022-02-27 04:20:20 +0000
314
+ 2022-02-28 21:09:42 +0000
315
+ 2022-03-02 23:35:41 +0000
316
+ 2022-03-04 00:42:10 +0000
317
+ 2022-03-05 00:59:10 +0000
318
+ 2022-03-06 19:58:01 +0000
319
+ 2022-03-07 07:48:09 +0000
320
+ 2022-03-09 06:08:00 +0000
321
+ 2022-03-10 05:45:08 +0000
322
+ 2022-03-12 21:16:31 +0000
323
+ 2022-03-15 08:17:44 +0000
324
+ 2022-03-16 03:37:03 +0000
325
+ 2022-03-18 05:07:54 +0000
326
+ 2022-03-20 04:05:26 +0000
327
+ 2022-03-22 10:52:33 +0000
328
+ 2022-03-23 15:26:54 +0000
329
+ 2022-03-24 09:01:04 +0000
330
+ 2022-03-24 23:53:07 +0000
331
+ 2022-03-27 13:45:17 +0000
332
+ 2022-03-28 19:57:00 +0000
333
+ 2022-03-29 15:42:35 +0000
334
+ 2022-03-29 18:20:32 +0000
335
+ 2022-04-01 15:35:47 +0000
336
+ 2022-04-02 06:33:31 +0000
337
+ 2022-04-03 18:27:19 +0000
338
+ 2022-04-03 23:44:08 +0000
339
+ 2022-04-06 10:59:32 +0000
340
+ 2022-04-07 01:33:53 +0000
341
+ 2022-04-08 10:26:34 +0000
342
+ 2022-04-10 19:21:08 +0000
343
+ 2022-04-12 01:50:04 +0000
344
+ 2022-04-14 19:56:29 +0000
345
+ 2022-04-15 09:08:22 +0000
346
+ 2022-04-16 07:58:47 +0000
347
+ 2022-04-17 16:31:40 +0000
348
+ 2022-04-20 09:50:22 +0000
349
+ 2022-04-23 04:24:22 +0000
350
+ 2022-04-25 07:18:04 +0000
351
+ 2022-04-27 16:57:48 +0000
352
+ 2022-04-29 18:48:09 +0000
353
+ 2022-04-29 20:30:25 +0000
354
+ 2022-05-02 03:44:25 +0000
355
+ 2022-05-03 15:27:57 +0000
356
+ 2022-05-04 08:11:15 +0000
357
+ 2022-05-07 00:42:14 +0000
358
+ 2022-05-09 15:23:31 +0000
359
+ 2022-05-10 19:11:49 +0000
360
+ 2022-05-11 14:04:17 +0000
361
+ 2022-05-14 12:09:34 +0000
362
+ 2022-05-15 13:31:54 +0000
363
+ 2022-05-17 21:21:37 +0000
364
+ 2022-05-19 01:27:43 +0000
365
+ 2022-05-21 04:34:59 +0000
366
+ 2022-05-23 11:05:18 +0000
367
+ 2022-05-23 19:14:50 +0000
368
+ 2022-05-26 13:16:18 +0000
369
+ 2022-05-27 11:39:35 +0000
370
+ 2022-05-29 07:09:07 +0000
371
+ 2022-05-30 15:13:23 +0000
372
+ 2022-06-01 04:18:40 +0000
373
+ 2022-06-01 11:11:51 +0000
374
+ 2022-06-01 12:45:06 +0000
375
+ 2022-06-03 07:08:31 +0000
376
+ 2022-06-04 23:28:11 +0000
377
+ 2022-06-07 12:14:01 +0000
378
+ 2022-06-08 13:32:22 +0000
379
+ 2022-06-10 18:56:37 +0000
380
+ 2022-06-12 16:00:09 +0000
381
+ 2022-06-15 13:28:55 +0000
382
+ 2022-06-16 18:42:37 +0000
383
+ 2022-06-17 00:36:21 +0000
384
+ 2022-06-18 16:21:27 +0000
385
+ 2022-06-20 13:50:27 +0000
386
+ 2022-06-22 09:43:55 +0000
387
+ 2022-06-25 09:43:17 +0000
388
+ 2022-06-27 06:51:01 +0000
389
+ 2022-06-28 09:10:53 +0000
390
+ 2022-06-30 18:46:16 +0000
391
+ 2022-07-01 16:05:14 +0000
392
+ 2022-07-02 14:02:12 +0000
393
+ 2022-07-05 11:08:11 +0000
394
+ 2022-07-05 12:44:38 +0000
395
+ 2022-07-08 03:55:17 +0000
396
+ 2022-07-08 18:02:14 +0000
397
+ 2022-07-09 09:41:17 +0000
398
+ 2022-07-11 07:34:51 +0000
399
+ 2022-07-13 05:11:19 +0000
400
+ 2022-07-15 02:46:56 +0000
401
+ 2022-07-16 15:40:39 +0000
402
+ 2022-07-17 19:44:15 +0000
403
+ 2022-07-19 00:31:12 +0000
404
+ 2022-07-21 21:58:24 +0000
405
+ 2022-07-22 05:25:48 +0000
406
+ 2022-07-22 18:33:04 +0000
407
+ 2022-07-24 07:42:24 +0000
408
+ 2022-07-25 07:21:20 +0000
409
+ 2022-07-27 12:02:44 +0000
410
+ 2022-07-29 03:29:28 +0000
411
+ 2022-07-29 11:35:43 +0000
412
+ 2022-07-30 05:25:21 +0000
413
+ 2022-07-30 19:39:10 +0000
414
+ 2022-07-31 18:54:58 +0000
415
+ 2022-08-03 11:18:44 +0000
416
+ 2022-08-05 00:37:47 +0000
417
+ 2022-08-05 12:08:08 +0000
418
+ 2022-08-07 14:39:19 +0000
419
+ 2022-08-08 09:52:59 +0000
420
+ 2022-08-09 13:48:29 +0000
421
+ 2022-08-11 19:03:04 +0000
422
+ 2022-08-13 01:56:49 +0000
423
+ 2022-08-15 11:33:09 +0000
424
+ 2022-08-17 23:37:45 +0000
425
+ 2022-08-19 00:47:19 +0000
426
+ 2022-08-19 01:01:12 +0000
427
+ 2022-08-21 07:37:55 +0000
428
+ 2022-08-21 21:42:15 +0000
429
+ 2022-08-23 10:55:39 +0000
430
+ 2022-08-25 16:20:29 +0000
431
+ 2022-08-27 06:28:14 +0000
432
+ 2022-08-27 13:12:57 +0000
433
+ 2022-08-28 23:00:13 +0000
434
+ 2022-08-31 05:19:56 +0000
435
+ 2022-09-02 18:00:18 +0000
436
+ 2022-09-04 12:02:47 +0000
437
+ 2022-09-06 00:57:21 +0000
438
+ 2022-09-08 04:26:01 +0000
439
+ 2022-09-09 04:55:45 +0000
440
+ 2022-09-11 22:59:36 +0000
441
+ 2022-09-12 00:54:25 +0000
442
+ 2022-09-12 17:44:24 +0000
443
+ 2022-09-12 20:47:30 +0000
444
+ 2022-09-15 11:39:20 +0000
445
+ 2022-09-16 07:54:15 +0000
446
+ 2022-09-17 08:06:29 +0000
447
+ 2022-09-18 07:17:17 +0000
448
+ 2022-09-19 08:39:55 +0000
449
+ 2022-09-22 06:32:56 +0000
450
+ 2022-09-22 21:26:29 +0000
451
+ 2022-09-24 16:06:50 +0000
452
+ 2022-09-27 05:50:18 +0000
453
+ 2022-09-28 12:12:13 +0000
454
+ 2022-09-29 21:13:01 +0000
455
+ 2022-09-30 00:09:29 +0000
456
+ 2022-10-02 04:35:07 +0000
457
+ 2022-10-02 16:30:20 +0000
458
+ 2022-10-04 10:35:59 +0000
459
+ 2022-10-04 23:39:37 +0000
460
+ 2022-10-07 23:25:10 +0000
461
+ 2022-10-08 20:31:14 +0000
462
+ 2022-10-09 07:30:41 +0000
463
+ 2022-10-11 07:29:41 +0000
464
+ 2022-10-11 08:00:58 +0000
465
+ 2022-10-14 03:22:26 +0000
466
+ 2022-10-16 14:47:54 +0000
467
+ 2022-10-17 00:28:32 +0000
468
+ 2022-10-19 10:46:33 +0000
469
+ 2022-10-21 02:39:31 +0000
470
+ 2022-10-21 19:24:24 +0000
471
+ 2022-10-23 05:38:26 +0000
472
+ 2022-10-25 13:28:28 +0000
473
+ 2022-10-26 20:26:31 +0000
474
+ 2022-10-29 12:43:40 +0000
475
+ 2022-10-31 11:21:43 +0000
476
+ 2022-11-03 04:42:32 +0000
477
+ 2022-11-04 20:26:28 +0000
478
+ 2022-11-05 15:08:01 +0000
479
+ 2022-11-06 10:55:38 +0000
480
+ 2022-11-07 04:13:28 +0000
481
+ 2022-11-08 03:42:59 +0000
482
+ 2022-11-10 13:56:10 +0000
483
+ 2022-11-13 13:01:38 +0000
484
+ 2022-11-15 02:04:32 +0000
485
+ 2022-11-17 09:10:48 +0000
486
+ 2022-11-19 11:37:01 +0000
487
+ 2022-11-20 06:15:33 +0000
488
+ 2022-11-22 08:35:41 +0000
489
+ 2022-11-24 20:42:50 +0000
490
+ 2022-11-25 17:45:48 +0000
491
+ 2022-11-28 06:16:15 +0000
492
+ 2022-11-28 18:12:24 +0000
493
+ 2022-11-30 20:09:46 +0000
494
+ 2022-12-01 03:29:43 +0000
495
+ 2022-12-02 03:58:02 +0000
496
+ 2022-12-02 19:47:06 +0000
497
+ 2022-12-04 14:54:02 +0000
498
+ 2022-12-06 02:22:58 +0000
499
+ 2022-12-06 09:29:06 +0000
500
+ 2022-12-06 17:16:19 +0000
501
+ 2022-12-09 14:10:12 +0000
502
+ 2022-12-11 19:54:41 +0000
503
+ 2022-12-11 23:48:45 +0000
504
+ 2022-12-12 12:05:28 +0000
505
+ 2022-12-12 21:37:48 +0000
506
+ 2022-12-15 05:08:10 +0000
507
+ 2022-12-16 19:06:39 +0000
508
+ 2022-12-18 21:49:36 +0000
509
+ 2022-12-20 00:54:09 +0000
510
+ 2022-12-22 21:51:31 +0000
511
+ 2022-12-25 08:40:02 +0000
512
+ 2022-12-26 22:01:45 +0000
513
+ 2022-12-29 18:46:07 +0000
514
+ 2023-01-01 01:55:31 +0000
515
+ 2023-01-01 17:34:53 +0000
516
+ 2023-01-04 09:05:13 +0000
517
+ 2023-01-05 01:57:33 +0000
518
+ 2023-01-06 08:56:47 +0000
519
+ 2023-01-07 18:52:12 +0000
520
+ 2023-01-08 00:43:40 +0000
521
+ 2023-01-10 13:28:23 +0000
522
+ 2023-01-13 10:22:38 +0000
523
+ 2023-01-15 01:43:06 +0000
524
+ 2023-01-15 04:30:52 +0000
525
+ 2023-01-16 23:13:04 +0000
526
+ 2023-01-19 17:16:31 +0000
527
+ 2023-01-21 09:25:58 +0000
528
+ 2023-01-23 09:42:42 +0000
529
+ 2023-01-24 11:13:59 +0000
530
+ 2023-01-25 00:57:26 +0000
531
+ 2023-01-27 10:31:18 +0000
532
+ 2023-01-28 07:08:54 +0000
533
+ 2023-01-28 09:46:16 +0000
534
+ 2023-01-30 04:34:32 +0000
535
+ 2023-01-30 05:30:26 +0000
536
+ 2023-01-31 08:08:44 +0000
537
+ 2023-02-03 01:02:02 +0000
538
+ 2023-02-03 10:02:38 +0000
539
+ 2023-02-05 02:22:53 +0000
540
+ 2023-02-05 05:55:46 +0000
541
+ 2023-02-07 06:18:28 +0000
542
+ 2023-02-08 13:57:28 +0000
543
+ 2023-02-08 17:53:12 +0000
544
+ 2023-02-10 08:40:27 +0000
545
+ 2023-02-10 10:28:23 +0000
546
+ 2023-02-12 15:42:42 +0000
547
+ 2023-02-14 06:11:35 +0000
548
+ 2023-02-14 12:22:06 +0000
549
+ 2023-02-16 14:43:29 +0000
550
+ 2023-02-16 15:58:19 +0000
551
+ 2023-02-17 08:36:37 +0000
552
+ 2023-02-19 04:20:36 +0000
553
+ 2023-02-21 03:27:07 +0000
554
+ 2023-02-22 09:09:23 +0000
555
+ 2023-02-24 10:19:14 +0000
556
+ 2023-02-26 13:28:50 +0000
557
+ 2023-02-27 15:33:38 +0000
558
+ 2023-03-01 14:48:42 +0000
559
+ 2023-03-02 19:17:52 +0000
560
+ 2023-03-03 09:48:41 +0000
561
+ 2023-03-04 12:44:18 +0000
562
+ 2023-03-06 18:24:47 +0000
563
+ 2023-03-09 13:55:36 +0000
564
+ 2023-03-11 13:50:26 +0000
565
+ 2023-03-14 05:57:47 +0000
566
+ 2023-03-14 09:16:38 +0000
567
+ 2023-03-14 12:34:22 +0000
568
+ 2023-03-14 15:15:53 +0000
569
+ 2023-03-16 18:34:04 +0000
570
+ 2023-03-19 13:01:38 +0000
571
+ 2023-03-19 15:24:32 +0000
572
+ 2023-03-20 14:56:28 +0000
573
+ 2023-03-21 12:32:45 +0000
574
+ 2023-03-23 22:16:22 +0000
575
+ 2023-03-24 01:05:24 +0000
576
+ 2023-03-26 12:01:36 +0000
577
+ 2023-03-29 07:45:17 +0000
578
+ 2023-04-01 06:03:31 +0000
579
+ 2023-04-02 20:45:43 +0000
580
+ 2023-04-03 05:33:10 +0000
581
+ 2023-04-03 16:15:11 +0000
582
+ 2023-04-05 14:56:49 +0000
583
+ 2023-04-06 22:21:46 +0000
584
+ 2023-04-08 19:50:51 +0000
585
+ 2023-04-09 06:14:30 +0000
586
+ 2023-04-09 11:26:27 +0000
587
+ 2023-04-11 21:34:04 +0000
588
+ 2023-04-14 08:51:06 +0000
589
+ 2023-04-16 15:58:05 +0000
590
+ 2023-04-17 03:06:43 +0000
591
+ 2023-04-18 16:28:30 +0000
592
+ 2023-04-18 17:32:38 +0000
593
+ 2023-04-19 20:34:45 +0000
594
+ 2023-04-22 06:16:01 +0000
595
+ 2023-04-22 12:00:25 +0000
596
+ 2023-04-24 21:12:27 +0000
597
+ 2023-04-27 15:19:36 +0000
598
+ 2023-04-29 00:43:46 +0000
599
+ 2023-04-29 17:50:02 +0000
600
+ 2023-04-30 05:22:14 +0000
601
+ 2023-05-01 07:20:17 +0000
602
+ 2023-05-03 05:11:16 +0000
603
+ 2023-05-05 00:13:31 +0000
604
+ 2023-05-05 12:08:33 +0000
605
+ 2023-05-05 16:26:19 +0000
606
+ 2023-05-07 23:53:00 +0000
607
+ 2023-05-10 17:41:27 +0000
608
+ 2023-05-12 01:37:24 +0000
609
+ 2023-05-14 08:18:36 +0000
610
+ 2023-05-16 15:17:43 +0000
611
+ 2023-05-16 18:24:55 +0000
612
+ 2023-05-19 16:16:45 +0000
613
+ 2023-05-21 00:48:36 +0000
614
+ 2023-05-22 00:54:41 +0000
615
+ 2023-05-24 05:36:25 +0000
616
+ 2023-05-25 10:05:39 +0000
617
+ 2023-05-26 16:09:51 +0000
618
+ 2023-05-29 12:40:29 +0000
619
+ 2023-05-29 13:15:05 +0000
620
+ 2023-05-31 15:28:14 +0000
621
+ 2023-06-02 02:05:21 +0000
622
+ 2023-06-02 13:05:50 +0000
623
+ 2023-06-04 11:12:19 +0000
624
+ 2023-06-05 10:04:34 +0000
625
+ 2023-06-06 02:47:22 +0000
626
+ 2023-06-07 04:35:17 +0000
627
+ 2023-06-07 16:20:27 +0000
628
+ 2023-06-08 07:43:14 +0000
629
+ 2023-06-10 17:55:59 +0000
630
+ 2023-06-12 17:00:02 +0000
631
+ 2023-06-14 08:37:14 +0000
632
+ 2023-06-14 18:07:30 +0000
633
+ 2023-06-16 12:07:26 +0000
634
+ 2023-06-18 22:29:39 +0000
635
+ 2023-06-19 02:32:54 +0000
636
+ 2023-06-20 14:24:40 +0000
637
+ 2023-06-22 09:27:59 +0000
638
+ 2023-06-23 07:31:20 +0000
639
+ 2023-06-23 21:06:55 +0000
640
+ 2023-06-26 06:57:28 +0000
641
+ 2023-06-28 17:08:12 +0000
642
+ 2023-06-29 03:06:47 +0000
643
+ 2023-06-30 12:25:41 +0000
644
+ 2023-07-02 08:49:42 +0000
645
+ 2023-07-03 20:09:26 +0000
646
+ 2023-07-06 17:39:13 +0000
647
+ 2023-07-09 00:18:52 +0000
648
+ 2023-07-11 03:58:21 +0000
649
+ 2023-07-12 22:37:00 +0000
650
+ 2023-07-14 01:58:44 +0000
651
+ 2023-07-16 20:21:13 +0000
652
+ 2023-07-17 01:41:47 +0000
653
+ 2023-07-19 10:06:35 +0000
654
+ 2023-07-21 17:44:16 +0000
655
+ 2023-07-22 02:46:04 +0000
656
+ 2023-07-22 06:52:04 +0000
657
+ 2023-07-23 04:53:49 +0000
658
+ 2023-07-25 16:37:24 +0000
659
+ 2023-07-27 18:34:33 +0000
660
+ 2023-07-28 02:34:02 +0000
661
+ 2023-07-29 19:53:32 +0000
662
+ 2023-07-30 23:30:11 +0000
663
+ 2023-08-02 17:46:22 +0000
664
+ 2023-08-03 00:01:21 +0000
665
+ 2023-08-03 03:57:56 +0000
666
+ 2023-08-03 21:41:28 +0000
667
+ 2023-08-04 23:37:31 +0000
668
+ 2023-08-05 08:20:42 +0000
669
+ 2023-08-07 21:01:55 +0000
670
+ 2023-08-10 17:03:47 +0000
671
+ 2023-08-11 21:06:31 +0000
672
+ 2023-08-12 08:45:08 +0000
673
+ 2023-08-13 07:09:39 +0000
674
+ 2023-08-14 11:15:10 +0000
675
+ 2023-08-16 04:15:48 +0000
676
+ 2023-08-19 04:11:43 +0000
677
+ 2023-08-19 10:10:27 +0000
678
+ 2023-08-22 09:41:20 +0000
679
+ 2023-08-24 10:27:08 +0000
680
+ 2023-08-24 18:16:12 +0000
681
+ 2023-08-25 17:02:28 +0000
682
+ 2023-08-27 15:58:52 +0000
683
+ 2023-08-27 23:29:53 +0000
684
+ 2023-08-28 21:31:27 +0000
685
+ 2023-08-29 03:35:29 +0000
686
+ 2023-08-31 06:15:19 +0000
687
+ 2023-09-01 21:56:52 +0000
688
+ 2023-09-02 22:57:53 +0000
689
+ 2023-09-05 03:28:30 +0000
690
+ 2023-09-07 04:57:12 +0000
691
+ 2023-09-09 19:16:05 +0000
692
+ 2023-09-09 20:01:39 +0000
693
+ 2023-09-11 03:23:22 +0000
694
+ 2023-09-12 15:18:29 +0000
695
+ 2023-09-13 14:14:43 +0000
696
+ 2023-09-13 17:37:25 +0000
697
+ 2023-09-14 18:17:49 +0000
698
+ 2023-09-16 19:56:55 +0000
699
+ 2023-09-18 14:21:02 +0000
700
+ 2023-09-21 00:34:13 +0000
701
+ 2023-09-23 07:14:06 +0000
702
+ 2023-09-24 17:22:22 +0000
703
+ 2023-09-27 12:42:54 +0000
704
+ 2023-09-28 14:48:45 +0000
705
+ 2023-10-01 11:54:24 +0000
706
+ 2023-10-03 07:36:32 +0000
707
+ 2023-10-05 05:13:57 +0000
708
+ 2023-10-06 16:07:06 +0000
709
+ 2023-10-09 00:03:52 +0000
710
+ 2023-10-09 02:32:01 +0000
711
+ 2023-10-10 16:39:07 +0000
712
+ 2023-10-12 13:28:16 +0000
713
+ 2023-10-14 04:29:14 +0000
714
+ 2023-10-17 03:30:24 +0000
715
+ 2023-10-20 03:13:15 +0000
716
+ 2023-10-20 20:47:06 +0000
717
+ 2023-10-21 13:59:34 +0000
718
+ 2023-10-23 21:38:48 +0000
719
+ 2023-10-24 06:07:13 +0000
720
+ 2023-10-25 22:51:17 +0000
721
+ 2023-10-26 21:12:50 +0000
722
+ 2023-10-28 05:52:20 +0000
723
+ 2023-10-29 22:11:01 +0000
724
+ 2023-10-30 12:29:25 +0000
725
+ 2023-11-02 02:52:55 +0000
726
+ 2023-11-02 06:00:32 +0000
727
+ 2023-11-03 08:39:06 +0000
728
+ 2023-11-04 23:51:22 +0000
729
+ 2023-11-07 16:11:33 +0000
730
+ 2023-11-10 10:55:29 +0000
731
+ 2023-11-12 01:20:18 +0000
732
+ 2023-11-12 04:22:50 +0000
733
+ 2023-11-12 08:38:58 +0000
734
+ 2023-11-13 15:43:40 +0000
735
+ TIMES
172
736
 
173
- <!-- standard pagination of the selected month -->
174
- <p><%= pagy_bootstrap_nav(@pagy, id: 'pages-nav', aria_label: 'Pages') if @pagy.pages > 1 %><p/>
737
+ # DB seed
738
+ TIMES.each_line(chomp: true).with_index do |time, i|
739
+ Event.create(title: "Event ##{i + 1}", time:)
740
+ end
175
741
 
176
- </div>
742
+ # Down here to avoid logging the DB seed above at each restart
743
+ ActiveRecord::Base.logger = Logger.new(OUTPUT)
177
744
 
178
- @@ yaml_collection
179
- ---
180
- - !ruby/object:ActiveSupport::TimeWithZone
181
- utc: 2021-10-21 13:18:23.000000000 Z
182
- zone: &1 !ruby/object:ActiveSupport::TimeZone
183
- name: GMT
184
- time: 2021-10-21 13:18:23.000000000 Z
185
- - !ruby/object:ActiveSupport::TimeWithZone
186
- utc: 2021-10-21 23:14:50.000000000 Z
187
- zone: *1
188
- time: 2021-10-21 23:14:50.000000000 Z
189
- - !ruby/object:ActiveSupport::TimeWithZone
190
- utc: 2021-10-23 01:06:02.000000000 Z
191
- zone: *1
192
- time: 2021-10-23 01:06:02.000000000 Z
193
- - !ruby/object:ActiveSupport::TimeWithZone
194
- utc: 2021-10-25 18:54:35.000000000 Z
195
- zone: *1
196
- time: 2021-10-25 18:54:35.000000000 Z
197
- - !ruby/object:ActiveSupport::TimeWithZone
198
- utc: 2021-10-26 02:22:17.000000000 Z
199
- zone: *1
200
- time: 2021-10-26 02:22:17.000000000 Z
201
- - !ruby/object:ActiveSupport::TimeWithZone
202
- utc: 2021-10-28 22:59:49.000000000 Z
203
- zone: *1
204
- time: 2021-10-28 22:59:49.000000000 Z
205
- - !ruby/object:ActiveSupport::TimeWithZone
206
- utc: 2021-10-30 15:02:25.000000000 Z
207
- zone: *1
208
- time: 2021-10-30 15:02:25.000000000 Z
209
- - !ruby/object:ActiveSupport::TimeWithZone
210
- utc: 2021-11-02 04:03:39.000000000 Z
211
- zone: *1
212
- time: 2021-11-02 04:03:39.000000000 Z
213
- - !ruby/object:ActiveSupport::TimeWithZone
214
- utc: 2021-11-04 22:41:23.000000000 Z
215
- zone: *1
216
- time: 2021-11-04 22:41:23.000000000 Z
217
- - !ruby/object:ActiveSupport::TimeWithZone
218
- utc: 2021-11-06 00:34:29.000000000 Z
219
- zone: *1
220
- time: 2021-11-06 00:34:29.000000000 Z
221
- - !ruby/object:ActiveSupport::TimeWithZone
222
- utc: 2021-11-06 23:56:16.000000000 Z
223
- zone: *1
224
- time: 2021-11-06 23:56:16.000000000 Z
225
- - !ruby/object:ActiveSupport::TimeWithZone
226
- utc: 2021-11-07 06:22:04.000000000 Z
227
- zone: *1
228
- time: 2021-11-07 06:22:04.000000000 Z
229
- - !ruby/object:ActiveSupport::TimeWithZone
230
- utc: 2021-11-07 19:46:08.000000000 Z
231
- zone: *1
232
- time: 2021-11-07 19:46:08.000000000 Z
233
- - !ruby/object:ActiveSupport::TimeWithZone
234
- utc: 2021-11-08 09:31:13.000000000 Z
235
- zone: *1
236
- time: 2021-11-08 09:31:13.000000000 Z
237
- - !ruby/object:ActiveSupport::TimeWithZone
238
- utc: 2021-11-09 17:22:03.000000000 Z
239
- zone: *1
240
- time: 2021-11-09 17:22:03.000000000 Z
241
- - !ruby/object:ActiveSupport::TimeWithZone
242
- utc: 2021-11-11 05:29:54.000000000 Z
243
- zone: *1
244
- time: 2021-11-11 05:29:54.000000000 Z
245
- - !ruby/object:ActiveSupport::TimeWithZone
246
- utc: 2021-11-13 09:41:04.000000000 Z
247
- zone: *1
248
- time: 2021-11-13 09:41:04.000000000 Z
249
- - !ruby/object:ActiveSupport::TimeWithZone
250
- utc: 2021-11-16 07:48:22.000000000 Z
251
- zone: *1
252
- time: 2021-11-16 07:48:22.000000000 Z
253
- - !ruby/object:ActiveSupport::TimeWithZone
254
- utc: 2021-11-16 12:43:44.000000000 Z
255
- zone: *1
256
- time: 2021-11-16 12:43:44.000000000 Z
257
- - !ruby/object:ActiveSupport::TimeWithZone
258
- utc: 2021-11-17 16:03:07.000000000 Z
259
- zone: *1
260
- time: 2021-11-17 16:03:07.000000000 Z
261
- - !ruby/object:ActiveSupport::TimeWithZone
262
- utc: 2021-11-20 02:39:01.000000000 Z
263
- zone: *1
264
- time: 2021-11-20 02:39:01.000000000 Z
265
- - !ruby/object:ActiveSupport::TimeWithZone
266
- utc: 2021-11-21 02:01:24.000000000 Z
267
- zone: *1
268
- time: 2021-11-21 02:01:24.000000000 Z
269
- - !ruby/object:ActiveSupport::TimeWithZone
270
- utc: 2021-11-23 19:24:43.000000000 Z
271
- zone: *1
272
- time: 2021-11-23 19:24:43.000000000 Z
273
- - !ruby/object:ActiveSupport::TimeWithZone
274
- utc: 2021-11-26 11:47:22.000000000 Z
275
- zone: *1
276
- time: 2021-11-26 11:47:22.000000000 Z
277
- - !ruby/object:ActiveSupport::TimeWithZone
278
- utc: 2021-11-28 06:30:04.000000000 Z
279
- zone: *1
280
- time: 2021-11-28 06:30:04.000000000 Z
281
- - !ruby/object:ActiveSupport::TimeWithZone
282
- utc: 2021-12-01 00:13:55.000000000 Z
283
- zone: *1
284
- time: 2021-12-01 00:13:55.000000000 Z
285
- - !ruby/object:ActiveSupport::TimeWithZone
286
- utc: 2021-12-03 19:10:16.000000000 Z
287
- zone: *1
288
- time: 2021-12-03 19:10:16.000000000 Z
289
- - !ruby/object:ActiveSupport::TimeWithZone
290
- utc: 2021-12-04 00:43:47.000000000 Z
291
- zone: *1
292
- time: 2021-12-04 00:43:47.000000000 Z
293
- - !ruby/object:ActiveSupport::TimeWithZone
294
- utc: 2021-12-06 20:15:35.000000000 Z
295
- zone: *1
296
- time: 2021-12-06 20:15:35.000000000 Z
297
- - !ruby/object:ActiveSupport::TimeWithZone
298
- utc: 2021-12-09 16:27:07.000000000 Z
299
- zone: *1
300
- time: 2021-12-09 16:27:07.000000000 Z
301
- - !ruby/object:ActiveSupport::TimeWithZone
302
- utc: 2021-12-10 15:28:48.000000000 Z
303
- zone: *1
304
- time: 2021-12-10 15:28:48.000000000 Z
305
- - !ruby/object:ActiveSupport::TimeWithZone
306
- utc: 2021-12-10 23:08:16.000000000 Z
307
- zone: *1
308
- time: 2021-12-10 23:08:16.000000000 Z
309
- - !ruby/object:ActiveSupport::TimeWithZone
310
- utc: 2021-12-11 23:09:08.000000000 Z
311
- zone: *1
312
- time: 2021-12-11 23:09:08.000000000 Z
313
- - !ruby/object:ActiveSupport::TimeWithZone
314
- utc: 2021-12-14 04:56:58.000000000 Z
315
- zone: *1
316
- time: 2021-12-14 04:56:58.000000000 Z
317
- - !ruby/object:ActiveSupport::TimeWithZone
318
- utc: 2021-12-14 14:00:56.000000000 Z
319
- zone: *1
320
- time: 2021-12-14 14:00:56.000000000 Z
321
- - !ruby/object:ActiveSupport::TimeWithZone
322
- utc: 2021-12-15 22:58:51.000000000 Z
323
- zone: *1
324
- time: 2021-12-15 22:58:51.000000000 Z
325
- - !ruby/object:ActiveSupport::TimeWithZone
326
- utc: 2021-12-16 01:28:21.000000000 Z
327
- zone: *1
328
- time: 2021-12-16 01:28:21.000000000 Z
329
- - !ruby/object:ActiveSupport::TimeWithZone
330
- utc: 2021-12-16 20:16:54.000000000 Z
331
- zone: *1
332
- time: 2021-12-16 20:16:54.000000000 Z
333
- - !ruby/object:ActiveSupport::TimeWithZone
334
- utc: 2021-12-19 00:34:04.000000000 Z
335
- zone: *1
336
- time: 2021-12-19 00:34:04.000000000 Z
337
- - !ruby/object:ActiveSupport::TimeWithZone
338
- utc: 2021-12-19 06:58:41.000000000 Z
339
- zone: *1
340
- time: 2021-12-19 06:58:41.000000000 Z
341
- - !ruby/object:ActiveSupport::TimeWithZone
342
- utc: 2021-12-21 11:13:53.000000000 Z
343
- zone: *1
344
- time: 2021-12-21 11:13:53.000000000 Z
345
- - !ruby/object:ActiveSupport::TimeWithZone
346
- utc: 2021-12-23 07:28:50.000000000 Z
347
- zone: *1
348
- time: 2021-12-23 07:28:50.000000000 Z
349
- - !ruby/object:ActiveSupport::TimeWithZone
350
- utc: 2021-12-23 07:57:58.000000000 Z
351
- zone: *1
352
- time: 2021-12-23 07:57:58.000000000 Z
353
- - !ruby/object:ActiveSupport::TimeWithZone
354
- utc: 2021-12-23 18:32:13.000000000 Z
355
- zone: *1
356
- time: 2021-12-23 18:32:13.000000000 Z
357
- - !ruby/object:ActiveSupport::TimeWithZone
358
- utc: 2021-12-24 01:17:51.000000000 Z
359
- zone: *1
360
- time: 2021-12-24 01:17:51.000000000 Z
361
- - !ruby/object:ActiveSupport::TimeWithZone
362
- utc: 2021-12-25 05:36:16.000000000 Z
363
- zone: *1
364
- time: 2021-12-25 05:36:16.000000000 Z
365
- - !ruby/object:ActiveSupport::TimeWithZone
366
- utc: 2021-12-25 23:21:57.000000000 Z
367
- zone: *1
368
- time: 2021-12-25 23:21:57.000000000 Z
369
- - !ruby/object:ActiveSupport::TimeWithZone
370
- utc: 2021-12-27 12:18:57.000000000 Z
371
- zone: *1
372
- time: 2021-12-27 12:18:57.000000000 Z
373
- - !ruby/object:ActiveSupport::TimeWithZone
374
- utc: 2021-12-28 16:59:57.000000000 Z
375
- zone: *1
376
- time: 2021-12-28 16:59:57.000000000 Z
377
- - !ruby/object:ActiveSupport::TimeWithZone
378
- utc: 2021-12-31 15:10:23.000000000 Z
379
- zone: *1
380
- time: 2021-12-31 15:10:23.000000000 Z
381
- - !ruby/object:ActiveSupport::TimeWithZone
382
- utc: 2022-01-01 19:18:06.000000000 Z
383
- zone: *1
384
- time: 2022-01-01 19:18:06.000000000 Z
385
- - !ruby/object:ActiveSupport::TimeWithZone
386
- utc: 2022-01-03 08:36:27.000000000 Z
387
- zone: *1
388
- time: 2022-01-03 08:36:27.000000000 Z
389
- - !ruby/object:ActiveSupport::TimeWithZone
390
- utc: 2022-01-03 23:31:01.000000000 Z
391
- zone: *1
392
- time: 2022-01-03 23:31:01.000000000 Z
393
- - !ruby/object:ActiveSupport::TimeWithZone
394
- utc: 2022-01-05 02:14:57.000000000 Z
395
- zone: *1
396
- time: 2022-01-05 02:14:57.000000000 Z
397
- - !ruby/object:ActiveSupport::TimeWithZone
398
- utc: 2022-01-06 09:26:03.000000000 Z
399
- zone: *1
400
- time: 2022-01-06 09:26:03.000000000 Z
401
- - !ruby/object:ActiveSupport::TimeWithZone
402
- utc: 2022-01-07 20:22:22.000000000 Z
403
- zone: *1
404
- time: 2022-01-07 20:22:22.000000000 Z
405
- - !ruby/object:ActiveSupport::TimeWithZone
406
- utc: 2022-01-10 04:04:28.000000000 Z
407
- zone: *1
408
- time: 2022-01-10 04:04:28.000000000 Z
409
- - !ruby/object:ActiveSupport::TimeWithZone
410
- utc: 2022-01-11 17:17:55.000000000 Z
411
- zone: *1
412
- time: 2022-01-11 17:17:55.000000000 Z
413
- - !ruby/object:ActiveSupport::TimeWithZone
414
- utc: 2022-01-14 05:21:54.000000000 Z
415
- zone: *1
416
- time: 2022-01-14 05:21:54.000000000 Z
417
- - !ruby/object:ActiveSupport::TimeWithZone
418
- utc: 2022-01-16 01:18:58.000000000 Z
419
- zone: *1
420
- time: 2022-01-16 01:18:58.000000000 Z
421
- - !ruby/object:ActiveSupport::TimeWithZone
422
- utc: 2022-01-18 08:42:56.000000000 Z
423
- zone: *1
424
- time: 2022-01-18 08:42:56.000000000 Z
425
- - !ruby/object:ActiveSupport::TimeWithZone
426
- utc: 2022-01-19 00:45:04.000000000 Z
427
- zone: *1
428
- time: 2022-01-19 00:45:04.000000000 Z
429
- - !ruby/object:ActiveSupport::TimeWithZone
430
- utc: 2022-01-20 08:18:54.000000000 Z
431
- zone: *1
432
- time: 2022-01-20 08:18:54.000000000 Z
433
- - !ruby/object:ActiveSupport::TimeWithZone
434
- utc: 2022-01-22 05:26:38.000000000 Z
435
- zone: *1
436
- time: 2022-01-22 05:26:38.000000000 Z
437
- - !ruby/object:ActiveSupport::TimeWithZone
438
- utc: 2022-01-24 10:57:50.000000000 Z
439
- zone: *1
440
- time: 2022-01-24 10:57:50.000000000 Z
441
- - !ruby/object:ActiveSupport::TimeWithZone
442
- utc: 2022-01-26 09:47:02.000000000 Z
443
- zone: *1
444
- time: 2022-01-26 09:47:02.000000000 Z
445
- - !ruby/object:ActiveSupport::TimeWithZone
446
- utc: 2022-01-28 20:44:30.000000000 Z
447
- zone: *1
448
- time: 2022-01-28 20:44:30.000000000 Z
449
- - !ruby/object:ActiveSupport::TimeWithZone
450
- utc: 2022-01-31 16:19:50.000000000 Z
451
- zone: *1
452
- time: 2022-01-31 16:19:50.000000000 Z
453
- - !ruby/object:ActiveSupport::TimeWithZone
454
- utc: 2022-02-01 21:23:58.000000000 Z
455
- zone: *1
456
- time: 2022-02-01 21:23:58.000000000 Z
457
- - !ruby/object:ActiveSupport::TimeWithZone
458
- utc: 2022-02-04 14:41:57.000000000 Z
459
- zone: *1
460
- time: 2022-02-04 14:41:57.000000000 Z
461
- - !ruby/object:ActiveSupport::TimeWithZone
462
- utc: 2022-02-06 20:40:06.000000000 Z
463
- zone: *1
464
- time: 2022-02-06 20:40:06.000000000 Z
465
- - !ruby/object:ActiveSupport::TimeWithZone
466
- utc: 2022-02-07 23:03:50.000000000 Z
467
- zone: *1
468
- time: 2022-02-07 23:03:50.000000000 Z
469
- - !ruby/object:ActiveSupport::TimeWithZone
470
- utc: 2022-02-09 05:28:08.000000000 Z
471
- zone: *1
472
- time: 2022-02-09 05:28:08.000000000 Z
473
- - !ruby/object:ActiveSupport::TimeWithZone
474
- utc: 2022-02-10 02:19:12.000000000 Z
475
- zone: *1
476
- time: 2022-02-10 02:19:12.000000000 Z
477
- - !ruby/object:ActiveSupport::TimeWithZone
478
- utc: 2022-02-11 07:51:30.000000000 Z
479
- zone: *1
480
- time: 2022-02-11 07:51:30.000000000 Z
481
- - !ruby/object:ActiveSupport::TimeWithZone
482
- utc: 2022-02-12 13:46:16.000000000 Z
483
- zone: *1
484
- time: 2022-02-12 13:46:16.000000000 Z
485
- - !ruby/object:ActiveSupport::TimeWithZone
486
- utc: 2022-02-13 21:06:40.000000000 Z
487
- zone: *1
488
- time: 2022-02-13 21:06:40.000000000 Z
489
- - !ruby/object:ActiveSupport::TimeWithZone
490
- utc: 2022-02-15 11:37:50.000000000 Z
491
- zone: *1
492
- time: 2022-02-15 11:37:50.000000000 Z
493
- - !ruby/object:ActiveSupport::TimeWithZone
494
- utc: 2022-02-18 11:23:15.000000000 Z
495
- zone: *1
496
- time: 2022-02-18 11:23:15.000000000 Z
497
- - !ruby/object:ActiveSupport::TimeWithZone
498
- utc: 2022-02-20 08:01:49.000000000 Z
499
- zone: *1
500
- time: 2022-02-20 08:01:49.000000000 Z
501
- - !ruby/object:ActiveSupport::TimeWithZone
502
- utc: 2022-02-23 03:00:30.000000000 Z
503
- zone: *1
504
- time: 2022-02-23 03:00:30.000000000 Z
505
- - !ruby/object:ActiveSupport::TimeWithZone
506
- utc: 2022-02-24 21:52:25.000000000 Z
507
- zone: *1
508
- time: 2022-02-24 21:52:25.000000000 Z
509
- - !ruby/object:ActiveSupport::TimeWithZone
510
- utc: 2022-02-25 12:07:56.000000000 Z
511
- zone: *1
512
- time: 2022-02-25 12:07:56.000000000 Z
513
- - !ruby/object:ActiveSupport::TimeWithZone
514
- utc: 2022-02-27 04:20:20.000000000 Z
515
- zone: *1
516
- time: 2022-02-27 04:20:20.000000000 Z
517
- - !ruby/object:ActiveSupport::TimeWithZone
518
- utc: 2022-02-28 21:09:42.000000000 Z
519
- zone: *1
520
- time: 2022-02-28 21:09:42.000000000 Z
521
- - !ruby/object:ActiveSupport::TimeWithZone
522
- utc: 2022-03-02 23:35:41.000000000 Z
523
- zone: *1
524
- time: 2022-03-02 23:35:41.000000000 Z
525
- - !ruby/object:ActiveSupport::TimeWithZone
526
- utc: 2022-03-04 00:42:10.000000000 Z
527
- zone: *1
528
- time: 2022-03-04 00:42:10.000000000 Z
529
- - !ruby/object:ActiveSupport::TimeWithZone
530
- utc: 2022-03-05 00:59:10.000000000 Z
531
- zone: *1
532
- time: 2022-03-05 00:59:10.000000000 Z
533
- - !ruby/object:ActiveSupport::TimeWithZone
534
- utc: 2022-03-06 19:58:01.000000000 Z
535
- zone: *1
536
- time: 2022-03-06 19:58:01.000000000 Z
537
- - !ruby/object:ActiveSupport::TimeWithZone
538
- utc: 2022-03-07 07:48:09.000000000 Z
539
- zone: *1
540
- time: 2022-03-07 07:48:09.000000000 Z
541
- - !ruby/object:ActiveSupport::TimeWithZone
542
- utc: 2022-03-09 06:08:00.000000000 Z
543
- zone: *1
544
- time: 2022-03-09 06:08:00.000000000 Z
545
- - !ruby/object:ActiveSupport::TimeWithZone
546
- utc: 2022-03-10 05:45:08.000000000 Z
547
- zone: *1
548
- time: 2022-03-10 05:45:08.000000000 Z
549
- - !ruby/object:ActiveSupport::TimeWithZone
550
- utc: 2022-03-12 21:16:31.000000000 Z
551
- zone: *1
552
- time: 2022-03-12 21:16:31.000000000 Z
553
- - !ruby/object:ActiveSupport::TimeWithZone
554
- utc: 2022-03-15 08:17:44.000000000 Z
555
- zone: *1
556
- time: 2022-03-15 08:17:44.000000000 Z
557
- - !ruby/object:ActiveSupport::TimeWithZone
558
- utc: 2022-03-16 03:37:03.000000000 Z
559
- zone: *1
560
- time: 2022-03-16 03:37:03.000000000 Z
561
- - !ruby/object:ActiveSupport::TimeWithZone
562
- utc: 2022-03-18 05:07:54.000000000 Z
563
- zone: *1
564
- time: 2022-03-18 05:07:54.000000000 Z
565
- - !ruby/object:ActiveSupport::TimeWithZone
566
- utc: 2022-03-20 04:05:26.000000000 Z
567
- zone: *1
568
- time: 2022-03-20 04:05:26.000000000 Z
569
- - !ruby/object:ActiveSupport::TimeWithZone
570
- utc: 2022-03-22 10:52:33.000000000 Z
571
- zone: *1
572
- time: 2022-03-22 10:52:33.000000000 Z
573
- - !ruby/object:ActiveSupport::TimeWithZone
574
- utc: 2022-03-23 15:26:54.000000000 Z
575
- zone: *1
576
- time: 2022-03-23 15:26:54.000000000 Z
577
- - !ruby/object:ActiveSupport::TimeWithZone
578
- utc: 2022-03-24 09:01:04.000000000 Z
579
- zone: *1
580
- time: 2022-03-24 09:01:04.000000000 Z
581
- - !ruby/object:ActiveSupport::TimeWithZone
582
- utc: 2022-03-24 23:53:07.000000000 Z
583
- zone: *1
584
- time: 2022-03-24 23:53:07.000000000 Z
585
- - !ruby/object:ActiveSupport::TimeWithZone
586
- utc: 2022-03-27 13:45:17.000000000 Z
587
- zone: *1
588
- time: 2022-03-27 13:45:17.000000000 Z
589
- - !ruby/object:ActiveSupport::TimeWithZone
590
- utc: 2022-03-28 19:57:00.000000000 Z
591
- zone: *1
592
- time: 2022-03-28 19:57:00.000000000 Z
593
- - !ruby/object:ActiveSupport::TimeWithZone
594
- utc: 2022-03-29 15:42:35.000000000 Z
595
- zone: *1
596
- time: 2022-03-29 15:42:35.000000000 Z
597
- - !ruby/object:ActiveSupport::TimeWithZone
598
- utc: 2022-03-29 18:20:32.000000000 Z
599
- zone: *1
600
- time: 2022-03-29 18:20:32.000000000 Z
601
- - !ruby/object:ActiveSupport::TimeWithZone
602
- utc: 2022-04-01 15:35:47.000000000 Z
603
- zone: *1
604
- time: 2022-04-01 15:35:47.000000000 Z
605
- - !ruby/object:ActiveSupport::TimeWithZone
606
- utc: 2022-04-02 06:33:31.000000000 Z
607
- zone: *1
608
- time: 2022-04-02 06:33:31.000000000 Z
609
- - !ruby/object:ActiveSupport::TimeWithZone
610
- utc: 2022-04-03 18:27:19.000000000 Z
611
- zone: *1
612
- time: 2022-04-03 18:27:19.000000000 Z
613
- - !ruby/object:ActiveSupport::TimeWithZone
614
- utc: 2022-04-03 23:44:08.000000000 Z
615
- zone: *1
616
- time: 2022-04-03 23:44:08.000000000 Z
617
- - !ruby/object:ActiveSupport::TimeWithZone
618
- utc: 2022-04-06 10:59:32.000000000 Z
619
- zone: *1
620
- time: 2022-04-06 10:59:32.000000000 Z
621
- - !ruby/object:ActiveSupport::TimeWithZone
622
- utc: 2022-04-07 01:33:53.000000000 Z
623
- zone: *1
624
- time: 2022-04-07 01:33:53.000000000 Z
625
- - !ruby/object:ActiveSupport::TimeWithZone
626
- utc: 2022-04-08 10:26:34.000000000 Z
627
- zone: *1
628
- time: 2022-04-08 10:26:34.000000000 Z
629
- - !ruby/object:ActiveSupport::TimeWithZone
630
- utc: 2022-04-10 19:21:08.000000000 Z
631
- zone: *1
632
- time: 2022-04-10 19:21:08.000000000 Z
633
- - !ruby/object:ActiveSupport::TimeWithZone
634
- utc: 2022-04-12 01:50:04.000000000 Z
635
- zone: *1
636
- time: 2022-04-12 01:50:04.000000000 Z
637
- - !ruby/object:ActiveSupport::TimeWithZone
638
- utc: 2022-04-14 19:56:29.000000000 Z
639
- zone: *1
640
- time: 2022-04-14 19:56:29.000000000 Z
641
- - !ruby/object:ActiveSupport::TimeWithZone
642
- utc: 2022-04-15 09:08:22.000000000 Z
643
- zone: *1
644
- time: 2022-04-15 09:08:22.000000000 Z
645
- - !ruby/object:ActiveSupport::TimeWithZone
646
- utc: 2022-04-16 07:58:47.000000000 Z
647
- zone: *1
648
- time: 2022-04-16 07:58:47.000000000 Z
649
- - !ruby/object:ActiveSupport::TimeWithZone
650
- utc: 2022-04-17 16:31:40.000000000 Z
651
- zone: *1
652
- time: 2022-04-17 16:31:40.000000000 Z
653
- - !ruby/object:ActiveSupport::TimeWithZone
654
- utc: 2022-04-20 09:50:22.000000000 Z
655
- zone: *1
656
- time: 2022-04-20 09:50:22.000000000 Z
657
- - !ruby/object:ActiveSupport::TimeWithZone
658
- utc: 2022-04-23 04:24:22.000000000 Z
659
- zone: *1
660
- time: 2022-04-23 04:24:22.000000000 Z
661
- - !ruby/object:ActiveSupport::TimeWithZone
662
- utc: 2022-04-25 07:18:04.000000000 Z
663
- zone: *1
664
- time: 2022-04-25 07:18:04.000000000 Z
665
- - !ruby/object:ActiveSupport::TimeWithZone
666
- utc: 2022-04-27 16:57:48.000000000 Z
667
- zone: *1
668
- time: 2022-04-27 16:57:48.000000000 Z
669
- - !ruby/object:ActiveSupport::TimeWithZone
670
- utc: 2022-04-29 18:48:09.000000000 Z
671
- zone: *1
672
- time: 2022-04-29 18:48:09.000000000 Z
673
- - !ruby/object:ActiveSupport::TimeWithZone
674
- utc: 2022-04-29 20:30:25.000000000 Z
675
- zone: *1
676
- time: 2022-04-29 20:30:25.000000000 Z
677
- - !ruby/object:ActiveSupport::TimeWithZone
678
- utc: 2022-05-02 03:44:25.000000000 Z
679
- zone: *1
680
- time: 2022-05-02 03:44:25.000000000 Z
681
- - !ruby/object:ActiveSupport::TimeWithZone
682
- utc: 2022-05-03 15:27:57.000000000 Z
683
- zone: *1
684
- time: 2022-05-03 15:27:57.000000000 Z
685
- - !ruby/object:ActiveSupport::TimeWithZone
686
- utc: 2022-05-04 08:11:15.000000000 Z
687
- zone: *1
688
- time: 2022-05-04 08:11:15.000000000 Z
689
- - !ruby/object:ActiveSupport::TimeWithZone
690
- utc: 2022-05-07 00:42:14.000000000 Z
691
- zone: *1
692
- time: 2022-05-07 00:42:14.000000000 Z
693
- - !ruby/object:ActiveSupport::TimeWithZone
694
- utc: 2022-05-09 15:23:31.000000000 Z
695
- zone: *1
696
- time: 2022-05-09 15:23:31.000000000 Z
697
- - !ruby/object:ActiveSupport::TimeWithZone
698
- utc: 2022-05-10 19:11:49.000000000 Z
699
- zone: *1
700
- time: 2022-05-10 19:11:49.000000000 Z
701
- - !ruby/object:ActiveSupport::TimeWithZone
702
- utc: 2022-05-11 14:04:17.000000000 Z
703
- zone: *1
704
- time: 2022-05-11 14:04:17.000000000 Z
705
- - !ruby/object:ActiveSupport::TimeWithZone
706
- utc: 2022-05-14 12:09:34.000000000 Z
707
- zone: *1
708
- time: 2022-05-14 12:09:34.000000000 Z
709
- - !ruby/object:ActiveSupport::TimeWithZone
710
- utc: 2022-05-15 13:31:54.000000000 Z
711
- zone: *1
712
- time: 2022-05-15 13:31:54.000000000 Z
713
- - !ruby/object:ActiveSupport::TimeWithZone
714
- utc: 2022-05-17 21:21:37.000000000 Z
715
- zone: *1
716
- time: 2022-05-17 21:21:37.000000000 Z
717
- - !ruby/object:ActiveSupport::TimeWithZone
718
- utc: 2022-05-19 01:27:43.000000000 Z
719
- zone: *1
720
- time: 2022-05-19 01:27:43.000000000 Z
721
- - !ruby/object:ActiveSupport::TimeWithZone
722
- utc: 2022-05-21 04:34:59.000000000 Z
723
- zone: *1
724
- time: 2022-05-21 04:34:59.000000000 Z
725
- - !ruby/object:ActiveSupport::TimeWithZone
726
- utc: 2022-05-23 11:05:18.000000000 Z
727
- zone: *1
728
- time: 2022-05-23 11:05:18.000000000 Z
729
- - !ruby/object:ActiveSupport::TimeWithZone
730
- utc: 2022-05-23 19:14:50.000000000 Z
731
- zone: *1
732
- time: 2022-05-23 19:14:50.000000000 Z
733
- - !ruby/object:ActiveSupport::TimeWithZone
734
- utc: 2022-05-26 13:16:18.000000000 Z
735
- zone: *1
736
- time: 2022-05-26 13:16:18.000000000 Z
737
- - !ruby/object:ActiveSupport::TimeWithZone
738
- utc: 2022-05-27 11:39:35.000000000 Z
739
- zone: *1
740
- time: 2022-05-27 11:39:35.000000000 Z
741
- - !ruby/object:ActiveSupport::TimeWithZone
742
- utc: 2022-05-29 07:09:07.000000000 Z
743
- zone: *1
744
- time: 2022-05-29 07:09:07.000000000 Z
745
- - !ruby/object:ActiveSupport::TimeWithZone
746
- utc: 2022-05-30 15:13:23.000000000 Z
747
- zone: *1
748
- time: 2022-05-30 15:13:23.000000000 Z
749
- - !ruby/object:ActiveSupport::TimeWithZone
750
- utc: 2022-06-01 04:18:40.000000000 Z
751
- zone: *1
752
- time: 2022-06-01 04:18:40.000000000 Z
753
- - !ruby/object:ActiveSupport::TimeWithZone
754
- utc: 2022-06-01 11:11:51.000000000 Z
755
- zone: *1
756
- time: 2022-06-01 11:11:51.000000000 Z
757
- - !ruby/object:ActiveSupport::TimeWithZone
758
- utc: 2022-06-01 12:45:06.000000000 Z
759
- zone: *1
760
- time: 2022-06-01 12:45:06.000000000 Z
761
- - !ruby/object:ActiveSupport::TimeWithZone
762
- utc: 2022-06-03 07:08:31.000000000 Z
763
- zone: *1
764
- time: 2022-06-03 07:08:31.000000000 Z
765
- - !ruby/object:ActiveSupport::TimeWithZone
766
- utc: 2022-06-04 23:28:11.000000000 Z
767
- zone: *1
768
- time: 2022-06-04 23:28:11.000000000 Z
769
- - !ruby/object:ActiveSupport::TimeWithZone
770
- utc: 2022-06-07 12:14:01.000000000 Z
771
- zone: *1
772
- time: 2022-06-07 12:14:01.000000000 Z
773
- - !ruby/object:ActiveSupport::TimeWithZone
774
- utc: 2022-06-08 13:32:22.000000000 Z
775
- zone: *1
776
- time: 2022-06-08 13:32:22.000000000 Z
777
- - !ruby/object:ActiveSupport::TimeWithZone
778
- utc: 2022-06-10 18:56:37.000000000 Z
779
- zone: *1
780
- time: 2022-06-10 18:56:37.000000000 Z
781
- - !ruby/object:ActiveSupport::TimeWithZone
782
- utc: 2022-06-12 16:00:09.000000000 Z
783
- zone: *1
784
- time: 2022-06-12 16:00:09.000000000 Z
785
- - !ruby/object:ActiveSupport::TimeWithZone
786
- utc: 2022-06-15 13:28:55.000000000 Z
787
- zone: *1
788
- time: 2022-06-15 13:28:55.000000000 Z
789
- - !ruby/object:ActiveSupport::TimeWithZone
790
- utc: 2022-06-16 18:42:37.000000000 Z
791
- zone: *1
792
- time: 2022-06-16 18:42:37.000000000 Z
793
- - !ruby/object:ActiveSupport::TimeWithZone
794
- utc: 2022-06-17 00:36:21.000000000 Z
795
- zone: *1
796
- time: 2022-06-17 00:36:21.000000000 Z
797
- - !ruby/object:ActiveSupport::TimeWithZone
798
- utc: 2022-06-18 16:21:27.000000000 Z
799
- zone: *1
800
- time: 2022-06-18 16:21:27.000000000 Z
801
- - !ruby/object:ActiveSupport::TimeWithZone
802
- utc: 2022-06-20 13:50:27.000000000 Z
803
- zone: *1
804
- time: 2022-06-20 13:50:27.000000000 Z
805
- - !ruby/object:ActiveSupport::TimeWithZone
806
- utc: 2022-06-22 09:43:55.000000000 Z
807
- zone: *1
808
- time: 2022-06-22 09:43:55.000000000 Z
809
- - !ruby/object:ActiveSupport::TimeWithZone
810
- utc: 2022-06-25 09:43:17.000000000 Z
811
- zone: *1
812
- time: 2022-06-25 09:43:17.000000000 Z
813
- - !ruby/object:ActiveSupport::TimeWithZone
814
- utc: 2022-06-27 06:51:01.000000000 Z
815
- zone: *1
816
- time: 2022-06-27 06:51:01.000000000 Z
817
- - !ruby/object:ActiveSupport::TimeWithZone
818
- utc: 2022-06-28 09:10:53.000000000 Z
819
- zone: *1
820
- time: 2022-06-28 09:10:53.000000000 Z
821
- - !ruby/object:ActiveSupport::TimeWithZone
822
- utc: 2022-06-30 18:46:16.000000000 Z
823
- zone: *1
824
- time: 2022-06-30 18:46:16.000000000 Z
825
- - !ruby/object:ActiveSupport::TimeWithZone
826
- utc: 2022-07-01 16:05:14.000000000 Z
827
- zone: *1
828
- time: 2022-07-01 16:05:14.000000000 Z
829
- - !ruby/object:ActiveSupport::TimeWithZone
830
- utc: 2022-07-02 14:02:12.000000000 Z
831
- zone: *1
832
- time: 2022-07-02 14:02:12.000000000 Z
833
- - !ruby/object:ActiveSupport::TimeWithZone
834
- utc: 2022-07-05 11:08:11.000000000 Z
835
- zone: *1
836
- time: 2022-07-05 11:08:11.000000000 Z
837
- - !ruby/object:ActiveSupport::TimeWithZone
838
- utc: 2022-07-05 12:44:38.000000000 Z
839
- zone: *1
840
- time: 2022-07-05 12:44:38.000000000 Z
841
- - !ruby/object:ActiveSupport::TimeWithZone
842
- utc: 2022-07-08 03:55:17.000000000 Z
843
- zone: *1
844
- time: 2022-07-08 03:55:17.000000000 Z
845
- - !ruby/object:ActiveSupport::TimeWithZone
846
- utc: 2022-07-08 18:02:14.000000000 Z
847
- zone: *1
848
- time: 2022-07-08 18:02:14.000000000 Z
849
- - !ruby/object:ActiveSupport::TimeWithZone
850
- utc: 2022-07-09 09:41:17.000000000 Z
851
- zone: *1
852
- time: 2022-07-09 09:41:17.000000000 Z
853
- - !ruby/object:ActiveSupport::TimeWithZone
854
- utc: 2022-07-11 07:34:51.000000000 Z
855
- zone: *1
856
- time: 2022-07-11 07:34:51.000000000 Z
857
- - !ruby/object:ActiveSupport::TimeWithZone
858
- utc: 2022-07-13 05:11:19.000000000 Z
859
- zone: *1
860
- time: 2022-07-13 05:11:19.000000000 Z
861
- - !ruby/object:ActiveSupport::TimeWithZone
862
- utc: 2022-07-15 02:46:56.000000000 Z
863
- zone: *1
864
- time: 2022-07-15 02:46:56.000000000 Z
865
- - !ruby/object:ActiveSupport::TimeWithZone
866
- utc: 2022-07-16 15:40:39.000000000 Z
867
- zone: *1
868
- time: 2022-07-16 15:40:39.000000000 Z
869
- - !ruby/object:ActiveSupport::TimeWithZone
870
- utc: 2022-07-17 19:44:15.000000000 Z
871
- zone: *1
872
- time: 2022-07-17 19:44:15.000000000 Z
873
- - !ruby/object:ActiveSupport::TimeWithZone
874
- utc: 2022-07-19 00:31:12.000000000 Z
875
- zone: *1
876
- time: 2022-07-19 00:31:12.000000000 Z
877
- - !ruby/object:ActiveSupport::TimeWithZone
878
- utc: 2022-07-21 21:58:24.000000000 Z
879
- zone: *1
880
- time: 2022-07-21 21:58:24.000000000 Z
881
- - !ruby/object:ActiveSupport::TimeWithZone
882
- utc: 2022-07-22 05:25:48.000000000 Z
883
- zone: *1
884
- time: 2022-07-22 05:25:48.000000000 Z
885
- - !ruby/object:ActiveSupport::TimeWithZone
886
- utc: 2022-07-22 18:33:04.000000000 Z
887
- zone: *1
888
- time: 2022-07-22 18:33:04.000000000 Z
889
- - !ruby/object:ActiveSupport::TimeWithZone
890
- utc: 2022-07-24 07:42:24.000000000 Z
891
- zone: *1
892
- time: 2022-07-24 07:42:24.000000000 Z
893
- - !ruby/object:ActiveSupport::TimeWithZone
894
- utc: 2022-07-25 07:21:20.000000000 Z
895
- zone: *1
896
- time: 2022-07-25 07:21:20.000000000 Z
897
- - !ruby/object:ActiveSupport::TimeWithZone
898
- utc: 2022-07-27 12:02:44.000000000 Z
899
- zone: *1
900
- time: 2022-07-27 12:02:44.000000000 Z
901
- - !ruby/object:ActiveSupport::TimeWithZone
902
- utc: 2022-07-29 03:29:28.000000000 Z
903
- zone: *1
904
- time: 2022-07-29 03:29:28.000000000 Z
905
- - !ruby/object:ActiveSupport::TimeWithZone
906
- utc: 2022-07-29 11:35:43.000000000 Z
907
- zone: *1
908
- time: 2022-07-29 11:35:43.000000000 Z
909
- - !ruby/object:ActiveSupport::TimeWithZone
910
- utc: 2022-07-30 05:25:21.000000000 Z
911
- zone: *1
912
- time: 2022-07-30 05:25:21.000000000 Z
913
- - !ruby/object:ActiveSupport::TimeWithZone
914
- utc: 2022-07-30 19:39:10.000000000 Z
915
- zone: *1
916
- time: 2022-07-30 19:39:10.000000000 Z
917
- - !ruby/object:ActiveSupport::TimeWithZone
918
- utc: 2022-07-31 18:54:58.000000000 Z
919
- zone: *1
920
- time: 2022-07-31 18:54:58.000000000 Z
921
- - !ruby/object:ActiveSupport::TimeWithZone
922
- utc: 2022-08-03 11:18:44.000000000 Z
923
- zone: *1
924
- time: 2022-08-03 11:18:44.000000000 Z
925
- - !ruby/object:ActiveSupport::TimeWithZone
926
- utc: 2022-08-05 00:37:47.000000000 Z
927
- zone: *1
928
- time: 2022-08-05 00:37:47.000000000 Z
929
- - !ruby/object:ActiveSupport::TimeWithZone
930
- utc: 2022-08-05 12:08:08.000000000 Z
931
- zone: *1
932
- time: 2022-08-05 12:08:08.000000000 Z
933
- - !ruby/object:ActiveSupport::TimeWithZone
934
- utc: 2022-08-07 14:39:19.000000000 Z
935
- zone: *1
936
- time: 2022-08-07 14:39:19.000000000 Z
937
- - !ruby/object:ActiveSupport::TimeWithZone
938
- utc: 2022-08-08 09:52:59.000000000 Z
939
- zone: *1
940
- time: 2022-08-08 09:52:59.000000000 Z
941
- - !ruby/object:ActiveSupport::TimeWithZone
942
- utc: 2022-08-09 13:48:29.000000000 Z
943
- zone: *1
944
- time: 2022-08-09 13:48:29.000000000 Z
945
- - !ruby/object:ActiveSupport::TimeWithZone
946
- utc: 2022-08-11 19:03:04.000000000 Z
947
- zone: *1
948
- time: 2022-08-11 19:03:04.000000000 Z
949
- - !ruby/object:ActiveSupport::TimeWithZone
950
- utc: 2022-08-13 01:56:49.000000000 Z
951
- zone: *1
952
- time: 2022-08-13 01:56:49.000000000 Z
953
- - !ruby/object:ActiveSupport::TimeWithZone
954
- utc: 2022-08-15 11:33:09.000000000 Z
955
- zone: *1
956
- time: 2022-08-15 11:33:09.000000000 Z
957
- - !ruby/object:ActiveSupport::TimeWithZone
958
- utc: 2022-08-17 23:37:45.000000000 Z
959
- zone: *1
960
- time: 2022-08-17 23:37:45.000000000 Z
961
- - !ruby/object:ActiveSupport::TimeWithZone
962
- utc: 2022-08-19 00:47:19.000000000 Z
963
- zone: *1
964
- time: 2022-08-19 00:47:19.000000000 Z
965
- - !ruby/object:ActiveSupport::TimeWithZone
966
- utc: 2022-08-19 01:01:12.000000000 Z
967
- zone: *1
968
- time: 2022-08-19 01:01:12.000000000 Z
969
- - !ruby/object:ActiveSupport::TimeWithZone
970
- utc: 2022-08-21 07:37:55.000000000 Z
971
- zone: *1
972
- time: 2022-08-21 07:37:55.000000000 Z
973
- - !ruby/object:ActiveSupport::TimeWithZone
974
- utc: 2022-08-21 21:42:15.000000000 Z
975
- zone: *1
976
- time: 2022-08-21 21:42:15.000000000 Z
977
- - !ruby/object:ActiveSupport::TimeWithZone
978
- utc: 2022-08-23 10:55:39.000000000 Z
979
- zone: *1
980
- time: 2022-08-23 10:55:39.000000000 Z
981
- - !ruby/object:ActiveSupport::TimeWithZone
982
- utc: 2022-08-25 16:20:29.000000000 Z
983
- zone: *1
984
- time: 2022-08-25 16:20:29.000000000 Z
985
- - !ruby/object:ActiveSupport::TimeWithZone
986
- utc: 2022-08-27 06:28:14.000000000 Z
987
- zone: *1
988
- time: 2022-08-27 06:28:14.000000000 Z
989
- - !ruby/object:ActiveSupport::TimeWithZone
990
- utc: 2022-08-27 13:12:57.000000000 Z
991
- zone: *1
992
- time: 2022-08-27 13:12:57.000000000 Z
993
- - !ruby/object:ActiveSupport::TimeWithZone
994
- utc: 2022-08-28 23:00:13.000000000 Z
995
- zone: *1
996
- time: 2022-08-28 23:00:13.000000000 Z
997
- - !ruby/object:ActiveSupport::TimeWithZone
998
- utc: 2022-08-31 05:19:56.000000000 Z
999
- zone: *1
1000
- time: 2022-08-31 05:19:56.000000000 Z
1001
- - !ruby/object:ActiveSupport::TimeWithZone
1002
- utc: 2022-09-02 18:00:18.000000000 Z
1003
- zone: *1
1004
- time: 2022-09-02 18:00:18.000000000 Z
1005
- - !ruby/object:ActiveSupport::TimeWithZone
1006
- utc: 2022-09-04 12:02:47.000000000 Z
1007
- zone: *1
1008
- time: 2022-09-04 12:02:47.000000000 Z
1009
- - !ruby/object:ActiveSupport::TimeWithZone
1010
- utc: 2022-09-06 00:57:21.000000000 Z
1011
- zone: *1
1012
- time: 2022-09-06 00:57:21.000000000 Z
1013
- - !ruby/object:ActiveSupport::TimeWithZone
1014
- utc: 2022-09-08 04:26:01.000000000 Z
1015
- zone: *1
1016
- time: 2022-09-08 04:26:01.000000000 Z
1017
- - !ruby/object:ActiveSupport::TimeWithZone
1018
- utc: 2022-09-09 04:55:45.000000000 Z
1019
- zone: *1
1020
- time: 2022-09-09 04:55:45.000000000 Z
1021
- - !ruby/object:ActiveSupport::TimeWithZone
1022
- utc: 2022-09-11 22:59:36.000000000 Z
1023
- zone: *1
1024
- time: 2022-09-11 22:59:36.000000000 Z
1025
- - !ruby/object:ActiveSupport::TimeWithZone
1026
- utc: 2022-09-12 00:54:25.000000000 Z
1027
- zone: *1
1028
- time: 2022-09-12 00:54:25.000000000 Z
1029
- - !ruby/object:ActiveSupport::TimeWithZone
1030
- utc: 2022-09-12 17:44:24.000000000 Z
1031
- zone: *1
1032
- time: 2022-09-12 17:44:24.000000000 Z
1033
- - !ruby/object:ActiveSupport::TimeWithZone
1034
- utc: 2022-09-12 20:47:30.000000000 Z
1035
- zone: *1
1036
- time: 2022-09-12 20:47:30.000000000 Z
1037
- - !ruby/object:ActiveSupport::TimeWithZone
1038
- utc: 2022-09-15 11:39:20.000000000 Z
1039
- zone: *1
1040
- time: 2022-09-15 11:39:20.000000000 Z
1041
- - !ruby/object:ActiveSupport::TimeWithZone
1042
- utc: 2022-09-16 07:54:15.000000000 Z
1043
- zone: *1
1044
- time: 2022-09-16 07:54:15.000000000 Z
1045
- - !ruby/object:ActiveSupport::TimeWithZone
1046
- utc: 2022-09-17 08:06:29.000000000 Z
1047
- zone: *1
1048
- time: 2022-09-17 08:06:29.000000000 Z
1049
- - !ruby/object:ActiveSupport::TimeWithZone
1050
- utc: 2022-09-18 07:17:17.000000000 Z
1051
- zone: *1
1052
- time: 2022-09-18 07:17:17.000000000 Z
1053
- - !ruby/object:ActiveSupport::TimeWithZone
1054
- utc: 2022-09-19 08:39:55.000000000 Z
1055
- zone: *1
1056
- time: 2022-09-19 08:39:55.000000000 Z
1057
- - !ruby/object:ActiveSupport::TimeWithZone
1058
- utc: 2022-09-22 06:32:56.000000000 Z
1059
- zone: *1
1060
- time: 2022-09-22 06:32:56.000000000 Z
1061
- - !ruby/object:ActiveSupport::TimeWithZone
1062
- utc: 2022-09-22 21:26:29.000000000 Z
1063
- zone: *1
1064
- time: 2022-09-22 21:26:29.000000000 Z
1065
- - !ruby/object:ActiveSupport::TimeWithZone
1066
- utc: 2022-09-24 16:06:50.000000000 Z
1067
- zone: *1
1068
- time: 2022-09-24 16:06:50.000000000 Z
1069
- - !ruby/object:ActiveSupport::TimeWithZone
1070
- utc: 2022-09-27 05:50:18.000000000 Z
1071
- zone: *1
1072
- time: 2022-09-27 05:50:18.000000000 Z
1073
- - !ruby/object:ActiveSupport::TimeWithZone
1074
- utc: 2022-09-28 12:12:13.000000000 Z
1075
- zone: *1
1076
- time: 2022-09-28 12:12:13.000000000 Z
1077
- - !ruby/object:ActiveSupport::TimeWithZone
1078
- utc: 2022-09-29 21:13:01.000000000 Z
1079
- zone: *1
1080
- time: 2022-09-29 21:13:01.000000000 Z
1081
- - !ruby/object:ActiveSupport::TimeWithZone
1082
- utc: 2022-09-30 00:09:29.000000000 Z
1083
- zone: *1
1084
- time: 2022-09-30 00:09:29.000000000 Z
1085
- - !ruby/object:ActiveSupport::TimeWithZone
1086
- utc: 2022-10-02 04:35:07.000000000 Z
1087
- zone: *1
1088
- time: 2022-10-02 04:35:07.000000000 Z
1089
- - !ruby/object:ActiveSupport::TimeWithZone
1090
- utc: 2022-10-02 16:30:20.000000000 Z
1091
- zone: *1
1092
- time: 2022-10-02 16:30:20.000000000 Z
1093
- - !ruby/object:ActiveSupport::TimeWithZone
1094
- utc: 2022-10-04 10:35:59.000000000 Z
1095
- zone: *1
1096
- time: 2022-10-04 10:35:59.000000000 Z
1097
- - !ruby/object:ActiveSupport::TimeWithZone
1098
- utc: 2022-10-04 23:39:37.000000000 Z
1099
- zone: *1
1100
- time: 2022-10-04 23:39:37.000000000 Z
1101
- - !ruby/object:ActiveSupport::TimeWithZone
1102
- utc: 2022-10-07 23:25:10.000000000 Z
1103
- zone: *1
1104
- time: 2022-10-07 23:25:10.000000000 Z
1105
- - !ruby/object:ActiveSupport::TimeWithZone
1106
- utc: 2022-10-08 20:31:14.000000000 Z
1107
- zone: *1
1108
- time: 2022-10-08 20:31:14.000000000 Z
1109
- - !ruby/object:ActiveSupport::TimeWithZone
1110
- utc: 2022-10-09 07:30:41.000000000 Z
1111
- zone: *1
1112
- time: 2022-10-09 07:30:41.000000000 Z
1113
- - !ruby/object:ActiveSupport::TimeWithZone
1114
- utc: 2022-10-11 07:29:41.000000000 Z
1115
- zone: *1
1116
- time: 2022-10-11 07:29:41.000000000 Z
1117
- - !ruby/object:ActiveSupport::TimeWithZone
1118
- utc: 2022-10-11 08:00:58.000000000 Z
1119
- zone: *1
1120
- time: 2022-10-11 08:00:58.000000000 Z
1121
- - !ruby/object:ActiveSupport::TimeWithZone
1122
- utc: 2022-10-14 03:22:26.000000000 Z
1123
- zone: *1
1124
- time: 2022-10-14 03:22:26.000000000 Z
1125
- - !ruby/object:ActiveSupport::TimeWithZone
1126
- utc: 2022-10-16 14:47:54.000000000 Z
1127
- zone: *1
1128
- time: 2022-10-16 14:47:54.000000000 Z
1129
- - !ruby/object:ActiveSupport::TimeWithZone
1130
- utc: 2022-10-17 00:28:32.000000000 Z
1131
- zone: *1
1132
- time: 2022-10-17 00:28:32.000000000 Z
1133
- - !ruby/object:ActiveSupport::TimeWithZone
1134
- utc: 2022-10-19 10:46:33.000000000 Z
1135
- zone: *1
1136
- time: 2022-10-19 10:46:33.000000000 Z
1137
- - !ruby/object:ActiveSupport::TimeWithZone
1138
- utc: 2022-10-21 02:39:31.000000000 Z
1139
- zone: *1
1140
- time: 2022-10-21 02:39:31.000000000 Z
1141
- - !ruby/object:ActiveSupport::TimeWithZone
1142
- utc: 2022-10-21 19:24:24.000000000 Z
1143
- zone: *1
1144
- time: 2022-10-21 19:24:24.000000000 Z
1145
- - !ruby/object:ActiveSupport::TimeWithZone
1146
- utc: 2022-10-23 05:38:26.000000000 Z
1147
- zone: *1
1148
- time: 2022-10-23 05:38:26.000000000 Z
1149
- - !ruby/object:ActiveSupport::TimeWithZone
1150
- utc: 2022-10-25 13:28:28.000000000 Z
1151
- zone: *1
1152
- time: 2022-10-25 13:28:28.000000000 Z
1153
- - !ruby/object:ActiveSupport::TimeWithZone
1154
- utc: 2022-10-26 20:26:31.000000000 Z
1155
- zone: *1
1156
- time: 2022-10-26 20:26:31.000000000 Z
1157
- - !ruby/object:ActiveSupport::TimeWithZone
1158
- utc: 2022-10-29 12:43:40.000000000 Z
1159
- zone: *1
1160
- time: 2022-10-29 12:43:40.000000000 Z
1161
- - !ruby/object:ActiveSupport::TimeWithZone
1162
- utc: 2022-10-31 11:21:43.000000000 Z
1163
- zone: *1
1164
- time: 2022-10-31 11:21:43.000000000 Z
1165
- - !ruby/object:ActiveSupport::TimeWithZone
1166
- utc: 2022-11-03 04:42:32.000000000 Z
1167
- zone: *1
1168
- time: 2022-11-03 04:42:32.000000000 Z
1169
- - !ruby/object:ActiveSupport::TimeWithZone
1170
- utc: 2022-11-04 20:26:28.000000000 Z
1171
- zone: *1
1172
- time: 2022-11-04 20:26:28.000000000 Z
1173
- - !ruby/object:ActiveSupport::TimeWithZone
1174
- utc: 2022-11-05 15:08:01.000000000 Z
1175
- zone: *1
1176
- time: 2022-11-05 15:08:01.000000000 Z
1177
- - !ruby/object:ActiveSupport::TimeWithZone
1178
- utc: 2022-11-06 10:55:38.000000000 Z
1179
- zone: *1
1180
- time: 2022-11-06 10:55:38.000000000 Z
1181
- - !ruby/object:ActiveSupport::TimeWithZone
1182
- utc: 2022-11-07 04:13:28.000000000 Z
1183
- zone: *1
1184
- time: 2022-11-07 04:13:28.000000000 Z
1185
- - !ruby/object:ActiveSupport::TimeWithZone
1186
- utc: 2022-11-08 03:42:59.000000000 Z
1187
- zone: *1
1188
- time: 2022-11-08 03:42:59.000000000 Z
1189
- - !ruby/object:ActiveSupport::TimeWithZone
1190
- utc: 2022-11-10 13:56:10.000000000 Z
1191
- zone: *1
1192
- time: 2022-11-10 13:56:10.000000000 Z
1193
- - !ruby/object:ActiveSupport::TimeWithZone
1194
- utc: 2022-11-13 13:01:38.000000000 Z
1195
- zone: *1
1196
- time: 2022-11-13 13:01:38.000000000 Z
1197
- - !ruby/object:ActiveSupport::TimeWithZone
1198
- utc: 2022-11-15 02:04:32.000000000 Z
1199
- zone: *1
1200
- time: 2022-11-15 02:04:32.000000000 Z
1201
- - !ruby/object:ActiveSupport::TimeWithZone
1202
- utc: 2022-11-17 09:10:48.000000000 Z
1203
- zone: *1
1204
- time: 2022-11-17 09:10:48.000000000 Z
1205
- - !ruby/object:ActiveSupport::TimeWithZone
1206
- utc: 2022-11-19 11:37:01.000000000 Z
1207
- zone: *1
1208
- time: 2022-11-19 11:37:01.000000000 Z
1209
- - !ruby/object:ActiveSupport::TimeWithZone
1210
- utc: 2022-11-20 06:15:33.000000000 Z
1211
- zone: *1
1212
- time: 2022-11-20 06:15:33.000000000 Z
1213
- - !ruby/object:ActiveSupport::TimeWithZone
1214
- utc: 2022-11-22 08:35:41.000000000 Z
1215
- zone: *1
1216
- time: 2022-11-22 08:35:41.000000000 Z
1217
- - !ruby/object:ActiveSupport::TimeWithZone
1218
- utc: 2022-11-24 20:42:50.000000000 Z
1219
- zone: *1
1220
- time: 2022-11-24 20:42:50.000000000 Z
1221
- - !ruby/object:ActiveSupport::TimeWithZone
1222
- utc: 2022-11-25 17:45:48.000000000 Z
1223
- zone: *1
1224
- time: 2022-11-25 17:45:48.000000000 Z
1225
- - !ruby/object:ActiveSupport::TimeWithZone
1226
- utc: 2022-11-28 06:16:15.000000000 Z
1227
- zone: *1
1228
- time: 2022-11-28 06:16:15.000000000 Z
1229
- - !ruby/object:ActiveSupport::TimeWithZone
1230
- utc: 2022-11-28 18:12:24.000000000 Z
1231
- zone: *1
1232
- time: 2022-11-28 18:12:24.000000000 Z
1233
- - !ruby/object:ActiveSupport::TimeWithZone
1234
- utc: 2022-11-30 20:09:46.000000000 Z
1235
- zone: *1
1236
- time: 2022-11-30 20:09:46.000000000 Z
1237
- - !ruby/object:ActiveSupport::TimeWithZone
1238
- utc: 2022-12-01 03:29:43.000000000 Z
1239
- zone: *1
1240
- time: 2022-12-01 03:29:43.000000000 Z
1241
- - !ruby/object:ActiveSupport::TimeWithZone
1242
- utc: 2022-12-02 03:58:02.000000000 Z
1243
- zone: *1
1244
- time: 2022-12-02 03:58:02.000000000 Z
1245
- - !ruby/object:ActiveSupport::TimeWithZone
1246
- utc: 2022-12-02 19:47:06.000000000 Z
1247
- zone: *1
1248
- time: 2022-12-02 19:47:06.000000000 Z
1249
- - !ruby/object:ActiveSupport::TimeWithZone
1250
- utc: 2022-12-04 14:54:02.000000000 Z
1251
- zone: *1
1252
- time: 2022-12-04 14:54:02.000000000 Z
1253
- - !ruby/object:ActiveSupport::TimeWithZone
1254
- utc: 2022-12-06 02:22:58.000000000 Z
1255
- zone: *1
1256
- time: 2022-12-06 02:22:58.000000000 Z
1257
- - !ruby/object:ActiveSupport::TimeWithZone
1258
- utc: 2022-12-06 09:29:06.000000000 Z
1259
- zone: *1
1260
- time: 2022-12-06 09:29:06.000000000 Z
1261
- - !ruby/object:ActiveSupport::TimeWithZone
1262
- utc: 2022-12-06 17:16:19.000000000 Z
1263
- zone: *1
1264
- time: 2022-12-06 17:16:19.000000000 Z
1265
- - !ruby/object:ActiveSupport::TimeWithZone
1266
- utc: 2022-12-09 14:10:12.000000000 Z
1267
- zone: *1
1268
- time: 2022-12-09 14:10:12.000000000 Z
1269
- - !ruby/object:ActiveSupport::TimeWithZone
1270
- utc: 2022-12-11 19:54:41.000000000 Z
1271
- zone: *1
1272
- time: 2022-12-11 19:54:41.000000000 Z
1273
- - !ruby/object:ActiveSupport::TimeWithZone
1274
- utc: 2022-12-11 23:48:45.000000000 Z
1275
- zone: *1
1276
- time: 2022-12-11 23:48:45.000000000 Z
1277
- - !ruby/object:ActiveSupport::TimeWithZone
1278
- utc: 2022-12-12 12:05:28.000000000 Z
1279
- zone: *1
1280
- time: 2022-12-12 12:05:28.000000000 Z
1281
- - !ruby/object:ActiveSupport::TimeWithZone
1282
- utc: 2022-12-12 21:37:48.000000000 Z
1283
- zone: *1
1284
- time: 2022-12-12 21:37:48.000000000 Z
1285
- - !ruby/object:ActiveSupport::TimeWithZone
1286
- utc: 2022-12-15 05:08:10.000000000 Z
1287
- zone: *1
1288
- time: 2022-12-15 05:08:10.000000000 Z
1289
- - !ruby/object:ActiveSupport::TimeWithZone
1290
- utc: 2022-12-16 19:06:39.000000000 Z
1291
- zone: *1
1292
- time: 2022-12-16 19:06:39.000000000 Z
1293
- - !ruby/object:ActiveSupport::TimeWithZone
1294
- utc: 2022-12-18 21:49:36.000000000 Z
1295
- zone: *1
1296
- time: 2022-12-18 21:49:36.000000000 Z
1297
- - !ruby/object:ActiveSupport::TimeWithZone
1298
- utc: 2022-12-20 00:54:09.000000000 Z
1299
- zone: *1
1300
- time: 2022-12-20 00:54:09.000000000 Z
1301
- - !ruby/object:ActiveSupport::TimeWithZone
1302
- utc: 2022-12-22 21:51:31.000000000 Z
1303
- zone: *1
1304
- time: 2022-12-22 21:51:31.000000000 Z
1305
- - !ruby/object:ActiveSupport::TimeWithZone
1306
- utc: 2022-12-25 08:40:02.000000000 Z
1307
- zone: *1
1308
- time: 2022-12-25 08:40:02.000000000 Z
1309
- - !ruby/object:ActiveSupport::TimeWithZone
1310
- utc: 2022-12-26 22:01:45.000000000 Z
1311
- zone: *1
1312
- time: 2022-12-26 22:01:45.000000000 Z
1313
- - !ruby/object:ActiveSupport::TimeWithZone
1314
- utc: 2022-12-29 18:46:07.000000000 Z
1315
- zone: *1
1316
- time: 2022-12-29 18:46:07.000000000 Z
1317
- - !ruby/object:ActiveSupport::TimeWithZone
1318
- utc: 2023-01-01 01:55:31.000000000 Z
1319
- zone: *1
1320
- time: 2023-01-01 01:55:31.000000000 Z
1321
- - !ruby/object:ActiveSupport::TimeWithZone
1322
- utc: 2023-01-01 17:34:53.000000000 Z
1323
- zone: *1
1324
- time: 2023-01-01 17:34:53.000000000 Z
1325
- - !ruby/object:ActiveSupport::TimeWithZone
1326
- utc: 2023-01-04 09:05:13.000000000 Z
1327
- zone: *1
1328
- time: 2023-01-04 09:05:13.000000000 Z
1329
- - !ruby/object:ActiveSupport::TimeWithZone
1330
- utc: 2023-01-05 01:57:33.000000000 Z
1331
- zone: *1
1332
- time: 2023-01-05 01:57:33.000000000 Z
1333
- - !ruby/object:ActiveSupport::TimeWithZone
1334
- utc: 2023-01-06 08:56:47.000000000 Z
1335
- zone: *1
1336
- time: 2023-01-06 08:56:47.000000000 Z
1337
- - !ruby/object:ActiveSupport::TimeWithZone
1338
- utc: 2023-01-07 18:52:12.000000000 Z
1339
- zone: *1
1340
- time: 2023-01-07 18:52:12.000000000 Z
1341
- - !ruby/object:ActiveSupport::TimeWithZone
1342
- utc: 2023-01-08 00:43:40.000000000 Z
1343
- zone: *1
1344
- time: 2023-01-08 00:43:40.000000000 Z
1345
- - !ruby/object:ActiveSupport::TimeWithZone
1346
- utc: 2023-01-10 13:28:23.000000000 Z
1347
- zone: *1
1348
- time: 2023-01-10 13:28:23.000000000 Z
1349
- - !ruby/object:ActiveSupport::TimeWithZone
1350
- utc: 2023-01-13 10:22:38.000000000 Z
1351
- zone: *1
1352
- time: 2023-01-13 10:22:38.000000000 Z
1353
- - !ruby/object:ActiveSupport::TimeWithZone
1354
- utc: 2023-01-15 01:43:06.000000000 Z
1355
- zone: *1
1356
- time: 2023-01-15 01:43:06.000000000 Z
1357
- - !ruby/object:ActiveSupport::TimeWithZone
1358
- utc: 2023-01-15 04:30:52.000000000 Z
1359
- zone: *1
1360
- time: 2023-01-15 04:30:52.000000000 Z
1361
- - !ruby/object:ActiveSupport::TimeWithZone
1362
- utc: 2023-01-16 23:13:04.000000000 Z
1363
- zone: *1
1364
- time: 2023-01-16 23:13:04.000000000 Z
1365
- - !ruby/object:ActiveSupport::TimeWithZone
1366
- utc: 2023-01-19 17:16:31.000000000 Z
1367
- zone: *1
1368
- time: 2023-01-19 17:16:31.000000000 Z
1369
- - !ruby/object:ActiveSupport::TimeWithZone
1370
- utc: 2023-01-21 09:25:58.000000000 Z
1371
- zone: *1
1372
- time: 2023-01-21 09:25:58.000000000 Z
1373
- - !ruby/object:ActiveSupport::TimeWithZone
1374
- utc: 2023-01-23 09:42:42.000000000 Z
1375
- zone: *1
1376
- time: 2023-01-23 09:42:42.000000000 Z
1377
- - !ruby/object:ActiveSupport::TimeWithZone
1378
- utc: 2023-01-24 11:13:59.000000000 Z
1379
- zone: *1
1380
- time: 2023-01-24 11:13:59.000000000 Z
1381
- - !ruby/object:ActiveSupport::TimeWithZone
1382
- utc: 2023-01-25 00:57:26.000000000 Z
1383
- zone: *1
1384
- time: 2023-01-25 00:57:26.000000000 Z
1385
- - !ruby/object:ActiveSupport::TimeWithZone
1386
- utc: 2023-01-27 10:31:18.000000000 Z
1387
- zone: *1
1388
- time: 2023-01-27 10:31:18.000000000 Z
1389
- - !ruby/object:ActiveSupport::TimeWithZone
1390
- utc: 2023-01-28 07:08:54.000000000 Z
1391
- zone: *1
1392
- time: 2023-01-28 07:08:54.000000000 Z
1393
- - !ruby/object:ActiveSupport::TimeWithZone
1394
- utc: 2023-01-28 09:46:16.000000000 Z
1395
- zone: *1
1396
- time: 2023-01-28 09:46:16.000000000 Z
1397
- - !ruby/object:ActiveSupport::TimeWithZone
1398
- utc: 2023-01-30 04:34:32.000000000 Z
1399
- zone: *1
1400
- time: 2023-01-30 04:34:32.000000000 Z
1401
- - !ruby/object:ActiveSupport::TimeWithZone
1402
- utc: 2023-01-30 05:30:26.000000000 Z
1403
- zone: *1
1404
- time: 2023-01-30 05:30:26.000000000 Z
1405
- - !ruby/object:ActiveSupport::TimeWithZone
1406
- utc: 2023-01-31 08:08:44.000000000 Z
1407
- zone: *1
1408
- time: 2023-01-31 08:08:44.000000000 Z
1409
- - !ruby/object:ActiveSupport::TimeWithZone
1410
- utc: 2023-02-03 01:02:02.000000000 Z
1411
- zone: *1
1412
- time: 2023-02-03 01:02:02.000000000 Z
1413
- - !ruby/object:ActiveSupport::TimeWithZone
1414
- utc: 2023-02-03 10:02:38.000000000 Z
1415
- zone: *1
1416
- time: 2023-02-03 10:02:38.000000000 Z
1417
- - !ruby/object:ActiveSupport::TimeWithZone
1418
- utc: 2023-02-05 02:22:53.000000000 Z
1419
- zone: *1
1420
- time: 2023-02-05 02:22:53.000000000 Z
1421
- - !ruby/object:ActiveSupport::TimeWithZone
1422
- utc: 2023-02-05 05:55:46.000000000 Z
1423
- zone: *1
1424
- time: 2023-02-05 05:55:46.000000000 Z
1425
- - !ruby/object:ActiveSupport::TimeWithZone
1426
- utc: 2023-02-07 06:18:28.000000000 Z
1427
- zone: *1
1428
- time: 2023-02-07 06:18:28.000000000 Z
1429
- - !ruby/object:ActiveSupport::TimeWithZone
1430
- utc: 2023-02-08 13:57:28.000000000 Z
1431
- zone: *1
1432
- time: 2023-02-08 13:57:28.000000000 Z
1433
- - !ruby/object:ActiveSupport::TimeWithZone
1434
- utc: 2023-02-08 17:53:12.000000000 Z
1435
- zone: *1
1436
- time: 2023-02-08 17:53:12.000000000 Z
1437
- - !ruby/object:ActiveSupport::TimeWithZone
1438
- utc: 2023-02-10 08:40:27.000000000 Z
1439
- zone: *1
1440
- time: 2023-02-10 08:40:27.000000000 Z
1441
- - !ruby/object:ActiveSupport::TimeWithZone
1442
- utc: 2023-02-10 10:28:23.000000000 Z
1443
- zone: *1
1444
- time: 2023-02-10 10:28:23.000000000 Z
1445
- - !ruby/object:ActiveSupport::TimeWithZone
1446
- utc: 2023-02-12 15:42:42.000000000 Z
1447
- zone: *1
1448
- time: 2023-02-12 15:42:42.000000000 Z
1449
- - !ruby/object:ActiveSupport::TimeWithZone
1450
- utc: 2023-02-14 06:11:35.000000000 Z
1451
- zone: *1
1452
- time: 2023-02-14 06:11:35.000000000 Z
1453
- - !ruby/object:ActiveSupport::TimeWithZone
1454
- utc: 2023-02-14 12:22:06.000000000 Z
1455
- zone: *1
1456
- time: 2023-02-14 12:22:06.000000000 Z
1457
- - !ruby/object:ActiveSupport::TimeWithZone
1458
- utc: 2023-02-16 14:43:29.000000000 Z
1459
- zone: *1
1460
- time: 2023-02-16 14:43:29.000000000 Z
1461
- - !ruby/object:ActiveSupport::TimeWithZone
1462
- utc: 2023-02-16 15:58:19.000000000 Z
1463
- zone: *1
1464
- time: 2023-02-16 15:58:19.000000000 Z
1465
- - !ruby/object:ActiveSupport::TimeWithZone
1466
- utc: 2023-02-17 08:36:37.000000000 Z
1467
- zone: *1
1468
- time: 2023-02-17 08:36:37.000000000 Z
1469
- - !ruby/object:ActiveSupport::TimeWithZone
1470
- utc: 2023-02-19 04:20:36.000000000 Z
1471
- zone: *1
1472
- time: 2023-02-19 04:20:36.000000000 Z
1473
- - !ruby/object:ActiveSupport::TimeWithZone
1474
- utc: 2023-02-21 03:27:07.000000000 Z
1475
- zone: *1
1476
- time: 2023-02-21 03:27:07.000000000 Z
1477
- - !ruby/object:ActiveSupport::TimeWithZone
1478
- utc: 2023-02-22 09:09:23.000000000 Z
1479
- zone: *1
1480
- time: 2023-02-22 09:09:23.000000000 Z
1481
- - !ruby/object:ActiveSupport::TimeWithZone
1482
- utc: 2023-02-24 10:19:14.000000000 Z
1483
- zone: *1
1484
- time: 2023-02-24 10:19:14.000000000 Z
1485
- - !ruby/object:ActiveSupport::TimeWithZone
1486
- utc: 2023-02-26 13:28:50.000000000 Z
1487
- zone: *1
1488
- time: 2023-02-26 13:28:50.000000000 Z
1489
- - !ruby/object:ActiveSupport::TimeWithZone
1490
- utc: 2023-02-27 15:33:38.000000000 Z
1491
- zone: *1
1492
- time: 2023-02-27 15:33:38.000000000 Z
1493
- - !ruby/object:ActiveSupport::TimeWithZone
1494
- utc: 2023-03-01 14:48:42.000000000 Z
1495
- zone: *1
1496
- time: 2023-03-01 14:48:42.000000000 Z
1497
- - !ruby/object:ActiveSupport::TimeWithZone
1498
- utc: 2023-03-02 19:17:52.000000000 Z
1499
- zone: *1
1500
- time: 2023-03-02 19:17:52.000000000 Z
1501
- - !ruby/object:ActiveSupport::TimeWithZone
1502
- utc: 2023-03-03 09:48:41.000000000 Z
1503
- zone: *1
1504
- time: 2023-03-03 09:48:41.000000000 Z
1505
- - !ruby/object:ActiveSupport::TimeWithZone
1506
- utc: 2023-03-04 12:44:18.000000000 Z
1507
- zone: *1
1508
- time: 2023-03-04 12:44:18.000000000 Z
1509
- - !ruby/object:ActiveSupport::TimeWithZone
1510
- utc: 2023-03-06 18:24:47.000000000 Z
1511
- zone: *1
1512
- time: 2023-03-06 18:24:47.000000000 Z
1513
- - !ruby/object:ActiveSupport::TimeWithZone
1514
- utc: 2023-03-09 13:55:36.000000000 Z
1515
- zone: *1
1516
- time: 2023-03-09 13:55:36.000000000 Z
1517
- - !ruby/object:ActiveSupport::TimeWithZone
1518
- utc: 2023-03-11 13:50:26.000000000 Z
1519
- zone: *1
1520
- time: 2023-03-11 13:50:26.000000000 Z
1521
- - !ruby/object:ActiveSupport::TimeWithZone
1522
- utc: 2023-03-14 05:57:47.000000000 Z
1523
- zone: *1
1524
- time: 2023-03-14 05:57:47.000000000 Z
1525
- - !ruby/object:ActiveSupport::TimeWithZone
1526
- utc: 2023-03-14 09:16:38.000000000 Z
1527
- zone: *1
1528
- time: 2023-03-14 09:16:38.000000000 Z
1529
- - !ruby/object:ActiveSupport::TimeWithZone
1530
- utc: 2023-03-14 12:34:22.000000000 Z
1531
- zone: *1
1532
- time: 2023-03-14 12:34:22.000000000 Z
1533
- - !ruby/object:ActiveSupport::TimeWithZone
1534
- utc: 2023-03-14 15:15:53.000000000 Z
1535
- zone: *1
1536
- time: 2023-03-14 15:15:53.000000000 Z
1537
- - !ruby/object:ActiveSupport::TimeWithZone
1538
- utc: 2023-03-16 18:34:04.000000000 Z
1539
- zone: *1
1540
- time: 2023-03-16 18:34:04.000000000 Z
1541
- - !ruby/object:ActiveSupport::TimeWithZone
1542
- utc: 2023-03-19 13:01:38.000000000 Z
1543
- zone: *1
1544
- time: 2023-03-19 13:01:38.000000000 Z
1545
- - !ruby/object:ActiveSupport::TimeWithZone
1546
- utc: 2023-03-19 15:24:32.000000000 Z
1547
- zone: *1
1548
- time: 2023-03-19 15:24:32.000000000 Z
1549
- - !ruby/object:ActiveSupport::TimeWithZone
1550
- utc: 2023-03-20 14:56:28.000000000 Z
1551
- zone: *1
1552
- time: 2023-03-20 14:56:28.000000000 Z
1553
- - !ruby/object:ActiveSupport::TimeWithZone
1554
- utc: 2023-03-21 12:32:45.000000000 Z
1555
- zone: *1
1556
- time: 2023-03-21 12:32:45.000000000 Z
1557
- - !ruby/object:ActiveSupport::TimeWithZone
1558
- utc: 2023-03-23 22:16:22.000000000 Z
1559
- zone: *1
1560
- time: 2023-03-23 22:16:22.000000000 Z
1561
- - !ruby/object:ActiveSupport::TimeWithZone
1562
- utc: 2023-03-24 01:05:24.000000000 Z
1563
- zone: *1
1564
- time: 2023-03-24 01:05:24.000000000 Z
1565
- - !ruby/object:ActiveSupport::TimeWithZone
1566
- utc: 2023-03-26 12:01:36.000000000 Z
1567
- zone: *1
1568
- time: 2023-03-26 12:01:36.000000000 Z
1569
- - !ruby/object:ActiveSupport::TimeWithZone
1570
- utc: 2023-03-29 07:45:17.000000000 Z
1571
- zone: *1
1572
- time: 2023-03-29 07:45:17.000000000 Z
1573
- - !ruby/object:ActiveSupport::TimeWithZone
1574
- utc: 2023-04-01 06:03:31.000000000 Z
1575
- zone: *1
1576
- time: 2023-04-01 06:03:31.000000000 Z
1577
- - !ruby/object:ActiveSupport::TimeWithZone
1578
- utc: 2023-04-02 20:45:43.000000000 Z
1579
- zone: *1
1580
- time: 2023-04-02 20:45:43.000000000 Z
1581
- - !ruby/object:ActiveSupport::TimeWithZone
1582
- utc: 2023-04-03 05:33:10.000000000 Z
1583
- zone: *1
1584
- time: 2023-04-03 05:33:10.000000000 Z
1585
- - !ruby/object:ActiveSupport::TimeWithZone
1586
- utc: 2023-04-03 16:15:11.000000000 Z
1587
- zone: *1
1588
- time: 2023-04-03 16:15:11.000000000 Z
1589
- - !ruby/object:ActiveSupport::TimeWithZone
1590
- utc: 2023-04-05 14:56:49.000000000 Z
1591
- zone: *1
1592
- time: 2023-04-05 14:56:49.000000000 Z
1593
- - !ruby/object:ActiveSupport::TimeWithZone
1594
- utc: 2023-04-06 22:21:46.000000000 Z
1595
- zone: *1
1596
- time: 2023-04-06 22:21:46.000000000 Z
1597
- - !ruby/object:ActiveSupport::TimeWithZone
1598
- utc: 2023-04-08 19:50:51.000000000 Z
1599
- zone: *1
1600
- time: 2023-04-08 19:50:51.000000000 Z
1601
- - !ruby/object:ActiveSupport::TimeWithZone
1602
- utc: 2023-04-09 06:14:30.000000000 Z
1603
- zone: *1
1604
- time: 2023-04-09 06:14:30.000000000 Z
1605
- - !ruby/object:ActiveSupport::TimeWithZone
1606
- utc: 2023-04-09 11:26:27.000000000 Z
1607
- zone: *1
1608
- time: 2023-04-09 11:26:27.000000000 Z
1609
- - !ruby/object:ActiveSupport::TimeWithZone
1610
- utc: 2023-04-11 21:34:04.000000000 Z
1611
- zone: *1
1612
- time: 2023-04-11 21:34:04.000000000 Z
1613
- - !ruby/object:ActiveSupport::TimeWithZone
1614
- utc: 2023-04-14 08:51:06.000000000 Z
1615
- zone: *1
1616
- time: 2023-04-14 08:51:06.000000000 Z
1617
- - !ruby/object:ActiveSupport::TimeWithZone
1618
- utc: 2023-04-16 15:58:05.000000000 Z
1619
- zone: *1
1620
- time: 2023-04-16 15:58:05.000000000 Z
1621
- - !ruby/object:ActiveSupport::TimeWithZone
1622
- utc: 2023-04-17 03:06:43.000000000 Z
1623
- zone: *1
1624
- time: 2023-04-17 03:06:43.000000000 Z
1625
- - !ruby/object:ActiveSupport::TimeWithZone
1626
- utc: 2023-04-18 16:28:30.000000000 Z
1627
- zone: *1
1628
- time: 2023-04-18 16:28:30.000000000 Z
1629
- - !ruby/object:ActiveSupport::TimeWithZone
1630
- utc: 2023-04-18 17:32:38.000000000 Z
1631
- zone: *1
1632
- time: 2023-04-18 17:32:38.000000000 Z
1633
- - !ruby/object:ActiveSupport::TimeWithZone
1634
- utc: 2023-04-19 20:34:45.000000000 Z
1635
- zone: *1
1636
- time: 2023-04-19 20:34:45.000000000 Z
1637
- - !ruby/object:ActiveSupport::TimeWithZone
1638
- utc: 2023-04-22 06:16:01.000000000 Z
1639
- zone: *1
1640
- time: 2023-04-22 06:16:01.000000000 Z
1641
- - !ruby/object:ActiveSupport::TimeWithZone
1642
- utc: 2023-04-22 12:00:25.000000000 Z
1643
- zone: *1
1644
- time: 2023-04-22 12:00:25.000000000 Z
1645
- - !ruby/object:ActiveSupport::TimeWithZone
1646
- utc: 2023-04-24 21:12:27.000000000 Z
1647
- zone: *1
1648
- time: 2023-04-24 21:12:27.000000000 Z
1649
- - !ruby/object:ActiveSupport::TimeWithZone
1650
- utc: 2023-04-27 15:19:36.000000000 Z
1651
- zone: *1
1652
- time: 2023-04-27 15:19:36.000000000 Z
1653
- - !ruby/object:ActiveSupport::TimeWithZone
1654
- utc: 2023-04-29 00:43:46.000000000 Z
1655
- zone: *1
1656
- time: 2023-04-29 00:43:46.000000000 Z
1657
- - !ruby/object:ActiveSupport::TimeWithZone
1658
- utc: 2023-04-29 17:50:02.000000000 Z
1659
- zone: *1
1660
- time: 2023-04-29 17:50:02.000000000 Z
1661
- - !ruby/object:ActiveSupport::TimeWithZone
1662
- utc: 2023-04-30 05:22:14.000000000 Z
1663
- zone: *1
1664
- time: 2023-04-30 05:22:14.000000000 Z
1665
- - !ruby/object:ActiveSupport::TimeWithZone
1666
- utc: 2023-05-01 07:20:17.000000000 Z
1667
- zone: *1
1668
- time: 2023-05-01 07:20:17.000000000 Z
1669
- - !ruby/object:ActiveSupport::TimeWithZone
1670
- utc: 2023-05-03 05:11:16.000000000 Z
1671
- zone: *1
1672
- time: 2023-05-03 05:11:16.000000000 Z
1673
- - !ruby/object:ActiveSupport::TimeWithZone
1674
- utc: 2023-05-05 00:13:31.000000000 Z
1675
- zone: *1
1676
- time: 2023-05-05 00:13:31.000000000 Z
1677
- - !ruby/object:ActiveSupport::TimeWithZone
1678
- utc: 2023-05-05 12:08:33.000000000 Z
1679
- zone: *1
1680
- time: 2023-05-05 12:08:33.000000000 Z
1681
- - !ruby/object:ActiveSupport::TimeWithZone
1682
- utc: 2023-05-05 16:26:19.000000000 Z
1683
- zone: *1
1684
- time: 2023-05-05 16:26:19.000000000 Z
1685
- - !ruby/object:ActiveSupport::TimeWithZone
1686
- utc: 2023-05-07 23:53:00.000000000 Z
1687
- zone: *1
1688
- time: 2023-05-07 23:53:00.000000000 Z
1689
- - !ruby/object:ActiveSupport::TimeWithZone
1690
- utc: 2023-05-10 17:41:27.000000000 Z
1691
- zone: *1
1692
- time: 2023-05-10 17:41:27.000000000 Z
1693
- - !ruby/object:ActiveSupport::TimeWithZone
1694
- utc: 2023-05-12 01:37:24.000000000 Z
1695
- zone: *1
1696
- time: 2023-05-12 01:37:24.000000000 Z
1697
- - !ruby/object:ActiveSupport::TimeWithZone
1698
- utc: 2023-05-14 08:18:36.000000000 Z
1699
- zone: *1
1700
- time: 2023-05-14 08:18:36.000000000 Z
1701
- - !ruby/object:ActiveSupport::TimeWithZone
1702
- utc: 2023-05-16 15:17:43.000000000 Z
1703
- zone: *1
1704
- time: 2023-05-16 15:17:43.000000000 Z
1705
- - !ruby/object:ActiveSupport::TimeWithZone
1706
- utc: 2023-05-16 18:24:55.000000000 Z
1707
- zone: *1
1708
- time: 2023-05-16 18:24:55.000000000 Z
1709
- - !ruby/object:ActiveSupport::TimeWithZone
1710
- utc: 2023-05-19 16:16:45.000000000 Z
1711
- zone: *1
1712
- time: 2023-05-19 16:16:45.000000000 Z
1713
- - !ruby/object:ActiveSupport::TimeWithZone
1714
- utc: 2023-05-21 00:48:36.000000000 Z
1715
- zone: *1
1716
- time: 2023-05-21 00:48:36.000000000 Z
1717
- - !ruby/object:ActiveSupport::TimeWithZone
1718
- utc: 2023-05-22 00:54:41.000000000 Z
1719
- zone: *1
1720
- time: 2023-05-22 00:54:41.000000000 Z
1721
- - !ruby/object:ActiveSupport::TimeWithZone
1722
- utc: 2023-05-24 05:36:25.000000000 Z
1723
- zone: *1
1724
- time: 2023-05-24 05:36:25.000000000 Z
1725
- - !ruby/object:ActiveSupport::TimeWithZone
1726
- utc: 2023-05-25 10:05:39.000000000 Z
1727
- zone: *1
1728
- time: 2023-05-25 10:05:39.000000000 Z
1729
- - !ruby/object:ActiveSupport::TimeWithZone
1730
- utc: 2023-05-26 16:09:51.000000000 Z
1731
- zone: *1
1732
- time: 2023-05-26 16:09:51.000000000 Z
1733
- - !ruby/object:ActiveSupport::TimeWithZone
1734
- utc: 2023-05-29 12:40:29.000000000 Z
1735
- zone: *1
1736
- time: 2023-05-29 12:40:29.000000000 Z
1737
- - !ruby/object:ActiveSupport::TimeWithZone
1738
- utc: 2023-05-29 13:15:05.000000000 Z
1739
- zone: *1
1740
- time: 2023-05-29 13:15:05.000000000 Z
1741
- - !ruby/object:ActiveSupport::TimeWithZone
1742
- utc: 2023-05-31 15:28:14.000000000 Z
1743
- zone: *1
1744
- time: 2023-05-31 15:28:14.000000000 Z
1745
- - !ruby/object:ActiveSupport::TimeWithZone
1746
- utc: 2023-06-02 02:05:21.000000000 Z
1747
- zone: *1
1748
- time: 2023-06-02 02:05:21.000000000 Z
1749
- - !ruby/object:ActiveSupport::TimeWithZone
1750
- utc: 2023-06-02 13:05:50.000000000 Z
1751
- zone: *1
1752
- time: 2023-06-02 13:05:50.000000000 Z
1753
- - !ruby/object:ActiveSupport::TimeWithZone
1754
- utc: 2023-06-04 11:12:19.000000000 Z
1755
- zone: *1
1756
- time: 2023-06-04 11:12:19.000000000 Z
1757
- - !ruby/object:ActiveSupport::TimeWithZone
1758
- utc: 2023-06-05 10:04:34.000000000 Z
1759
- zone: *1
1760
- time: 2023-06-05 10:04:34.000000000 Z
1761
- - !ruby/object:ActiveSupport::TimeWithZone
1762
- utc: 2023-06-06 02:47:22.000000000 Z
1763
- zone: *1
1764
- time: 2023-06-06 02:47:22.000000000 Z
1765
- - !ruby/object:ActiveSupport::TimeWithZone
1766
- utc: 2023-06-07 04:35:17.000000000 Z
1767
- zone: *1
1768
- time: 2023-06-07 04:35:17.000000000 Z
1769
- - !ruby/object:ActiveSupport::TimeWithZone
1770
- utc: 2023-06-07 16:20:27.000000000 Z
1771
- zone: *1
1772
- time: 2023-06-07 16:20:27.000000000 Z
1773
- - !ruby/object:ActiveSupport::TimeWithZone
1774
- utc: 2023-06-08 07:43:14.000000000 Z
1775
- zone: *1
1776
- time: 2023-06-08 07:43:14.000000000 Z
1777
- - !ruby/object:ActiveSupport::TimeWithZone
1778
- utc: 2023-06-10 17:55:59.000000000 Z
1779
- zone: *1
1780
- time: 2023-06-10 17:55:59.000000000 Z
1781
- - !ruby/object:ActiveSupport::TimeWithZone
1782
- utc: 2023-06-12 17:00:02.000000000 Z
1783
- zone: *1
1784
- time: 2023-06-12 17:00:02.000000000 Z
1785
- - !ruby/object:ActiveSupport::TimeWithZone
1786
- utc: 2023-06-14 08:37:14.000000000 Z
1787
- zone: *1
1788
- time: 2023-06-14 08:37:14.000000000 Z
1789
- - !ruby/object:ActiveSupport::TimeWithZone
1790
- utc: 2023-06-14 18:07:30.000000000 Z
1791
- zone: *1
1792
- time: 2023-06-14 18:07:30.000000000 Z
1793
- - !ruby/object:ActiveSupport::TimeWithZone
1794
- utc: 2023-06-16 12:07:26.000000000 Z
1795
- zone: *1
1796
- time: 2023-06-16 12:07:26.000000000 Z
1797
- - !ruby/object:ActiveSupport::TimeWithZone
1798
- utc: 2023-06-18 22:29:39.000000000 Z
1799
- zone: *1
1800
- time: 2023-06-18 22:29:39.000000000 Z
1801
- - !ruby/object:ActiveSupport::TimeWithZone
1802
- utc: 2023-06-19 02:32:54.000000000 Z
1803
- zone: *1
1804
- time: 2023-06-19 02:32:54.000000000 Z
1805
- - !ruby/object:ActiveSupport::TimeWithZone
1806
- utc: 2023-06-20 14:24:40.000000000 Z
1807
- zone: *1
1808
- time: 2023-06-20 14:24:40.000000000 Z
1809
- - !ruby/object:ActiveSupport::TimeWithZone
1810
- utc: 2023-06-22 09:27:59.000000000 Z
1811
- zone: *1
1812
- time: 2023-06-22 09:27:59.000000000 Z
1813
- - !ruby/object:ActiveSupport::TimeWithZone
1814
- utc: 2023-06-23 07:31:20.000000000 Z
1815
- zone: *1
1816
- time: 2023-06-23 07:31:20.000000000 Z
1817
- - !ruby/object:ActiveSupport::TimeWithZone
1818
- utc: 2023-06-23 21:06:55.000000000 Z
1819
- zone: *1
1820
- time: 2023-06-23 21:06:55.000000000 Z
1821
- - !ruby/object:ActiveSupport::TimeWithZone
1822
- utc: 2023-06-26 06:57:28.000000000 Z
1823
- zone: *1
1824
- time: 2023-06-26 06:57:28.000000000 Z
1825
- - !ruby/object:ActiveSupport::TimeWithZone
1826
- utc: 2023-06-28 17:08:12.000000000 Z
1827
- zone: *1
1828
- time: 2023-06-28 17:08:12.000000000 Z
1829
- - !ruby/object:ActiveSupport::TimeWithZone
1830
- utc: 2023-06-29 03:06:47.000000000 Z
1831
- zone: *1
1832
- time: 2023-06-29 03:06:47.000000000 Z
1833
- - !ruby/object:ActiveSupport::TimeWithZone
1834
- utc: 2023-06-30 12:25:41.000000000 Z
1835
- zone: *1
1836
- time: 2023-06-30 12:25:41.000000000 Z
1837
- - !ruby/object:ActiveSupport::TimeWithZone
1838
- utc: 2023-07-02 08:49:42.000000000 Z
1839
- zone: *1
1840
- time: 2023-07-02 08:49:42.000000000 Z
1841
- - !ruby/object:ActiveSupport::TimeWithZone
1842
- utc: 2023-07-03 20:09:26.000000000 Z
1843
- zone: *1
1844
- time: 2023-07-03 20:09:26.000000000 Z
1845
- - !ruby/object:ActiveSupport::TimeWithZone
1846
- utc: 2023-07-06 17:39:13.000000000 Z
1847
- zone: *1
1848
- time: 2023-07-06 17:39:13.000000000 Z
1849
- - !ruby/object:ActiveSupport::TimeWithZone
1850
- utc: 2023-07-09 00:18:52.000000000 Z
1851
- zone: *1
1852
- time: 2023-07-09 00:18:52.000000000 Z
1853
- - !ruby/object:ActiveSupport::TimeWithZone
1854
- utc: 2023-07-11 03:58:21.000000000 Z
1855
- zone: *1
1856
- time: 2023-07-11 03:58:21.000000000 Z
1857
- - !ruby/object:ActiveSupport::TimeWithZone
1858
- utc: 2023-07-12 22:37:00.000000000 Z
1859
- zone: *1
1860
- time: 2023-07-12 22:37:00.000000000 Z
1861
- - !ruby/object:ActiveSupport::TimeWithZone
1862
- utc: 2023-07-14 01:58:44.000000000 Z
1863
- zone: *1
1864
- time: 2023-07-14 01:58:44.000000000 Z
1865
- - !ruby/object:ActiveSupport::TimeWithZone
1866
- utc: 2023-07-16 20:21:13.000000000 Z
1867
- zone: *1
1868
- time: 2023-07-16 20:21:13.000000000 Z
1869
- - !ruby/object:ActiveSupport::TimeWithZone
1870
- utc: 2023-07-17 01:41:47.000000000 Z
1871
- zone: *1
1872
- time: 2023-07-17 01:41:47.000000000 Z
1873
- - !ruby/object:ActiveSupport::TimeWithZone
1874
- utc: 2023-07-19 10:06:35.000000000 Z
1875
- zone: *1
1876
- time: 2023-07-19 10:06:35.000000000 Z
1877
- - !ruby/object:ActiveSupport::TimeWithZone
1878
- utc: 2023-07-21 17:44:16.000000000 Z
1879
- zone: *1
1880
- time: 2023-07-21 17:44:16.000000000 Z
1881
- - !ruby/object:ActiveSupport::TimeWithZone
1882
- utc: 2023-07-22 02:46:04.000000000 Z
1883
- zone: *1
1884
- time: 2023-07-22 02:46:04.000000000 Z
1885
- - !ruby/object:ActiveSupport::TimeWithZone
1886
- utc: 2023-07-22 06:52:04.000000000 Z
1887
- zone: *1
1888
- time: 2023-07-22 06:52:04.000000000 Z
1889
- - !ruby/object:ActiveSupport::TimeWithZone
1890
- utc: 2023-07-23 04:53:49.000000000 Z
1891
- zone: *1
1892
- time: 2023-07-23 04:53:49.000000000 Z
1893
- - !ruby/object:ActiveSupport::TimeWithZone
1894
- utc: 2023-07-25 16:37:24.000000000 Z
1895
- zone: *1
1896
- time: 2023-07-25 16:37:24.000000000 Z
1897
- - !ruby/object:ActiveSupport::TimeWithZone
1898
- utc: 2023-07-27 18:34:33.000000000 Z
1899
- zone: *1
1900
- time: 2023-07-27 18:34:33.000000000 Z
1901
- - !ruby/object:ActiveSupport::TimeWithZone
1902
- utc: 2023-07-28 02:34:02.000000000 Z
1903
- zone: *1
1904
- time: 2023-07-28 02:34:02.000000000 Z
1905
- - !ruby/object:ActiveSupport::TimeWithZone
1906
- utc: 2023-07-29 19:53:32.000000000 Z
1907
- zone: *1
1908
- time: 2023-07-29 19:53:32.000000000 Z
1909
- - !ruby/object:ActiveSupport::TimeWithZone
1910
- utc: 2023-07-30 23:30:11.000000000 Z
1911
- zone: *1
1912
- time: 2023-07-30 23:30:11.000000000 Z
1913
- - !ruby/object:ActiveSupport::TimeWithZone
1914
- utc: 2023-08-02 17:46:22.000000000 Z
1915
- zone: *1
1916
- time: 2023-08-02 17:46:22.000000000 Z
1917
- - !ruby/object:ActiveSupport::TimeWithZone
1918
- utc: 2023-08-03 00:01:21.000000000 Z
1919
- zone: *1
1920
- time: 2023-08-03 00:01:21.000000000 Z
1921
- - !ruby/object:ActiveSupport::TimeWithZone
1922
- utc: 2023-08-03 03:57:56.000000000 Z
1923
- zone: *1
1924
- time: 2023-08-03 03:57:56.000000000 Z
1925
- - !ruby/object:ActiveSupport::TimeWithZone
1926
- utc: 2023-08-03 21:41:28.000000000 Z
1927
- zone: *1
1928
- time: 2023-08-03 21:41:28.000000000 Z
1929
- - !ruby/object:ActiveSupport::TimeWithZone
1930
- utc: 2023-08-04 23:37:31.000000000 Z
1931
- zone: *1
1932
- time: 2023-08-04 23:37:31.000000000 Z
1933
- - !ruby/object:ActiveSupport::TimeWithZone
1934
- utc: 2023-08-05 08:20:42.000000000 Z
1935
- zone: *1
1936
- time: 2023-08-05 08:20:42.000000000 Z
1937
- - !ruby/object:ActiveSupport::TimeWithZone
1938
- utc: 2023-08-07 21:01:55.000000000 Z
1939
- zone: *1
1940
- time: 2023-08-07 21:01:55.000000000 Z
1941
- - !ruby/object:ActiveSupport::TimeWithZone
1942
- utc: 2023-08-10 17:03:47.000000000 Z
1943
- zone: *1
1944
- time: 2023-08-10 17:03:47.000000000 Z
1945
- - !ruby/object:ActiveSupport::TimeWithZone
1946
- utc: 2023-08-11 21:06:31.000000000 Z
1947
- zone: *1
1948
- time: 2023-08-11 21:06:31.000000000 Z
1949
- - !ruby/object:ActiveSupport::TimeWithZone
1950
- utc: 2023-08-12 08:45:08.000000000 Z
1951
- zone: *1
1952
- time: 2023-08-12 08:45:08.000000000 Z
1953
- - !ruby/object:ActiveSupport::TimeWithZone
1954
- utc: 2023-08-13 07:09:39.000000000 Z
1955
- zone: *1
1956
- time: 2023-08-13 07:09:39.000000000 Z
1957
- - !ruby/object:ActiveSupport::TimeWithZone
1958
- utc: 2023-08-14 11:15:10.000000000 Z
1959
- zone: *1
1960
- time: 2023-08-14 11:15:10.000000000 Z
1961
- - !ruby/object:ActiveSupport::TimeWithZone
1962
- utc: 2023-08-16 04:15:48.000000000 Z
1963
- zone: *1
1964
- time: 2023-08-16 04:15:48.000000000 Z
1965
- - !ruby/object:ActiveSupport::TimeWithZone
1966
- utc: 2023-08-19 04:11:43.000000000 Z
1967
- zone: *1
1968
- time: 2023-08-19 04:11:43.000000000 Z
1969
- - !ruby/object:ActiveSupport::TimeWithZone
1970
- utc: 2023-08-19 10:10:27.000000000 Z
1971
- zone: *1
1972
- time: 2023-08-19 10:10:27.000000000 Z
1973
- - !ruby/object:ActiveSupport::TimeWithZone
1974
- utc: 2023-08-22 09:41:20.000000000 Z
1975
- zone: *1
1976
- time: 2023-08-22 09:41:20.000000000 Z
1977
- - !ruby/object:ActiveSupport::TimeWithZone
1978
- utc: 2023-08-24 10:27:08.000000000 Z
1979
- zone: *1
1980
- time: 2023-08-24 10:27:08.000000000 Z
1981
- - !ruby/object:ActiveSupport::TimeWithZone
1982
- utc: 2023-08-24 18:16:12.000000000 Z
1983
- zone: *1
1984
- time: 2023-08-24 18:16:12.000000000 Z
1985
- - !ruby/object:ActiveSupport::TimeWithZone
1986
- utc: 2023-08-25 17:02:28.000000000 Z
1987
- zone: *1
1988
- time: 2023-08-25 17:02:28.000000000 Z
1989
- - !ruby/object:ActiveSupport::TimeWithZone
1990
- utc: 2023-08-27 15:58:52.000000000 Z
1991
- zone: *1
1992
- time: 2023-08-27 15:58:52.000000000 Z
1993
- - !ruby/object:ActiveSupport::TimeWithZone
1994
- utc: 2023-08-27 23:29:53.000000000 Z
1995
- zone: *1
1996
- time: 2023-08-27 23:29:53.000000000 Z
1997
- - !ruby/object:ActiveSupport::TimeWithZone
1998
- utc: 2023-08-28 21:31:27.000000000 Z
1999
- zone: *1
2000
- time: 2023-08-28 21:31:27.000000000 Z
2001
- - !ruby/object:ActiveSupport::TimeWithZone
2002
- utc: 2023-08-29 03:35:29.000000000 Z
2003
- zone: *1
2004
- time: 2023-08-29 03:35:29.000000000 Z
2005
- - !ruby/object:ActiveSupport::TimeWithZone
2006
- utc: 2023-08-31 06:15:19.000000000 Z
2007
- zone: *1
2008
- time: 2023-08-31 06:15:19.000000000 Z
2009
- - !ruby/object:ActiveSupport::TimeWithZone
2010
- utc: 2023-09-01 21:56:52.000000000 Z
2011
- zone: *1
2012
- time: 2023-09-01 21:56:52.000000000 Z
2013
- - !ruby/object:ActiveSupport::TimeWithZone
2014
- utc: 2023-09-02 22:57:53.000000000 Z
2015
- zone: *1
2016
- time: 2023-09-02 22:57:53.000000000 Z
2017
- - !ruby/object:ActiveSupport::TimeWithZone
2018
- utc: 2023-09-05 03:28:30.000000000 Z
2019
- zone: *1
2020
- time: 2023-09-05 03:28:30.000000000 Z
2021
- - !ruby/object:ActiveSupport::TimeWithZone
2022
- utc: 2023-09-07 04:57:12.000000000 Z
2023
- zone: *1
2024
- time: 2023-09-07 04:57:12.000000000 Z
2025
- - !ruby/object:ActiveSupport::TimeWithZone
2026
- utc: 2023-09-09 19:16:05.000000000 Z
2027
- zone: *1
2028
- time: 2023-09-09 19:16:05.000000000 Z
2029
- - !ruby/object:ActiveSupport::TimeWithZone
2030
- utc: 2023-09-09 20:01:39.000000000 Z
2031
- zone: *1
2032
- time: 2023-09-09 20:01:39.000000000 Z
2033
- - !ruby/object:ActiveSupport::TimeWithZone
2034
- utc: 2023-09-11 03:23:22.000000000 Z
2035
- zone: *1
2036
- time: 2023-09-11 03:23:22.000000000 Z
2037
- - !ruby/object:ActiveSupport::TimeWithZone
2038
- utc: 2023-09-12 15:18:29.000000000 Z
2039
- zone: *1
2040
- time: 2023-09-12 15:18:29.000000000 Z
2041
- - !ruby/object:ActiveSupport::TimeWithZone
2042
- utc: 2023-09-13 14:14:43.000000000 Z
2043
- zone: *1
2044
- time: 2023-09-13 14:14:43.000000000 Z
2045
- - !ruby/object:ActiveSupport::TimeWithZone
2046
- utc: 2023-09-13 17:37:25.000000000 Z
2047
- zone: *1
2048
- time: 2023-09-13 17:37:25.000000000 Z
2049
- - !ruby/object:ActiveSupport::TimeWithZone
2050
- utc: 2023-09-14 18:17:49.000000000 Z
2051
- zone: *1
2052
- time: 2023-09-14 18:17:49.000000000 Z
2053
- - !ruby/object:ActiveSupport::TimeWithZone
2054
- utc: 2023-09-16 19:56:55.000000000 Z
2055
- zone: *1
2056
- time: 2023-09-16 19:56:55.000000000 Z
2057
- - !ruby/object:ActiveSupport::TimeWithZone
2058
- utc: 2023-09-18 14:21:02.000000000 Z
2059
- zone: *1
2060
- time: 2023-09-18 14:21:02.000000000 Z
2061
- - !ruby/object:ActiveSupport::TimeWithZone
2062
- utc: 2023-09-21 00:34:13.000000000 Z
2063
- zone: *1
2064
- time: 2023-09-21 00:34:13.000000000 Z
2065
- - !ruby/object:ActiveSupport::TimeWithZone
2066
- utc: 2023-09-23 07:14:06.000000000 Z
2067
- zone: *1
2068
- time: 2023-09-23 07:14:06.000000000 Z
2069
- - !ruby/object:ActiveSupport::TimeWithZone
2070
- utc: 2023-09-24 17:22:22.000000000 Z
2071
- zone: *1
2072
- time: 2023-09-24 17:22:22.000000000 Z
2073
- - !ruby/object:ActiveSupport::TimeWithZone
2074
- utc: 2023-09-27 12:42:54.000000000 Z
2075
- zone: *1
2076
- time: 2023-09-27 12:42:54.000000000 Z
2077
- - !ruby/object:ActiveSupport::TimeWithZone
2078
- utc: 2023-09-28 14:48:45.000000000 Z
2079
- zone: *1
2080
- time: 2023-09-28 14:48:45.000000000 Z
2081
- - !ruby/object:ActiveSupport::TimeWithZone
2082
- utc: 2023-10-01 11:54:24.000000000 Z
2083
- zone: *1
2084
- time: 2023-10-01 11:54:24.000000000 Z
2085
- - !ruby/object:ActiveSupport::TimeWithZone
2086
- utc: 2023-10-03 07:36:32.000000000 Z
2087
- zone: *1
2088
- time: 2023-10-03 07:36:32.000000000 Z
2089
- - !ruby/object:ActiveSupport::TimeWithZone
2090
- utc: 2023-10-05 05:13:57.000000000 Z
2091
- zone: *1
2092
- time: 2023-10-05 05:13:57.000000000 Z
2093
- - !ruby/object:ActiveSupport::TimeWithZone
2094
- utc: 2023-10-06 16:07:06.000000000 Z
2095
- zone: *1
2096
- time: 2023-10-06 16:07:06.000000000 Z
2097
- - !ruby/object:ActiveSupport::TimeWithZone
2098
- utc: 2023-10-09 00:03:52.000000000 Z
2099
- zone: *1
2100
- time: 2023-10-09 00:03:52.000000000 Z
2101
- - !ruby/object:ActiveSupport::TimeWithZone
2102
- utc: 2023-10-09 02:32:01.000000000 Z
2103
- zone: *1
2104
- time: 2023-10-09 02:32:01.000000000 Z
2105
- - !ruby/object:ActiveSupport::TimeWithZone
2106
- utc: 2023-10-10 16:39:07.000000000 Z
2107
- zone: *1
2108
- time: 2023-10-10 16:39:07.000000000 Z
2109
- - !ruby/object:ActiveSupport::TimeWithZone
2110
- utc: 2023-10-12 13:28:16.000000000 Z
2111
- zone: *1
2112
- time: 2023-10-12 13:28:16.000000000 Z
2113
- - !ruby/object:ActiveSupport::TimeWithZone
2114
- utc: 2023-10-14 04:29:14.000000000 Z
2115
- zone: *1
2116
- time: 2023-10-14 04:29:14.000000000 Z
2117
- - !ruby/object:ActiveSupport::TimeWithZone
2118
- utc: 2023-10-17 03:30:24.000000000 Z
2119
- zone: *1
2120
- time: 2023-10-17 03:30:24.000000000 Z
2121
- - !ruby/object:ActiveSupport::TimeWithZone
2122
- utc: 2023-10-20 03:13:15.000000000 Z
2123
- zone: *1
2124
- time: 2023-10-20 03:13:15.000000000 Z
2125
- - !ruby/object:ActiveSupport::TimeWithZone
2126
- utc: 2023-10-20 20:47:06.000000000 Z
2127
- zone: *1
2128
- time: 2023-10-20 20:47:06.000000000 Z
2129
- - !ruby/object:ActiveSupport::TimeWithZone
2130
- utc: 2023-10-21 13:59:34.000000000 Z
2131
- zone: *1
2132
- time: 2023-10-21 13:59:34.000000000 Z
2133
- - !ruby/object:ActiveSupport::TimeWithZone
2134
- utc: 2023-10-23 21:38:48.000000000 Z
2135
- zone: *1
2136
- time: 2023-10-23 21:38:48.000000000 Z
2137
- - !ruby/object:ActiveSupport::TimeWithZone
2138
- utc: 2023-10-24 06:07:13.000000000 Z
2139
- zone: *1
2140
- time: 2023-10-24 06:07:13.000000000 Z
2141
- - !ruby/object:ActiveSupport::TimeWithZone
2142
- utc: 2023-10-25 22:51:17.000000000 Z
2143
- zone: *1
2144
- time: 2023-10-25 22:51:17.000000000 Z
2145
- - !ruby/object:ActiveSupport::TimeWithZone
2146
- utc: 2023-10-26 21:12:50.000000000 Z
2147
- zone: *1
2148
- time: 2023-10-26 21:12:50.000000000 Z
2149
- - !ruby/object:ActiveSupport::TimeWithZone
2150
- utc: 2023-10-28 05:52:20.000000000 Z
2151
- zone: *1
2152
- time: 2023-10-28 05:52:20.000000000 Z
2153
- - !ruby/object:ActiveSupport::TimeWithZone
2154
- utc: 2023-10-29 22:11:01.000000000 Z
2155
- zone: *1
2156
- time: 2023-10-29 22:11:01.000000000 Z
2157
- - !ruby/object:ActiveSupport::TimeWithZone
2158
- utc: 2023-10-30 12:29:25.000000000 Z
2159
- zone: *1
2160
- time: 2023-10-30 12:29:25.000000000 Z
2161
- - !ruby/object:ActiveSupport::TimeWithZone
2162
- utc: 2023-11-02 02:52:55.000000000 Z
2163
- zone: *1
2164
- time: 2023-11-02 02:52:55.000000000 Z
2165
- - !ruby/object:ActiveSupport::TimeWithZone
2166
- utc: 2023-11-02 06:00:32.000000000 Z
2167
- zone: *1
2168
- time: 2023-11-02 06:00:32.000000000 Z
2169
- - !ruby/object:ActiveSupport::TimeWithZone
2170
- utc: 2023-11-03 08:39:06.000000000 Z
2171
- zone: *1
2172
- time: 2023-11-03 08:39:06.000000000 Z
2173
- - !ruby/object:ActiveSupport::TimeWithZone
2174
- utc: 2023-11-04 23:51:22.000000000 Z
2175
- zone: *1
2176
- time: 2023-11-04 23:51:22.000000000 Z
2177
- - !ruby/object:ActiveSupport::TimeWithZone
2178
- utc: 2023-11-07 16:11:33.000000000 Z
2179
- zone: *1
2180
- time: 2023-11-07 16:11:33.000000000 Z
2181
- - !ruby/object:ActiveSupport::TimeWithZone
2182
- utc: 2023-11-10 10:55:29.000000000 Z
2183
- zone: *1
2184
- time: 2023-11-10 10:55:29.000000000 Z
2185
- - !ruby/object:ActiveSupport::TimeWithZone
2186
- utc: 2023-11-12 01:20:18.000000000 Z
2187
- zone: *1
2188
- time: 2023-11-12 01:20:18.000000000 Z
2189
- - !ruby/object:ActiveSupport::TimeWithZone
2190
- utc: 2023-11-12 04:22:50.000000000 Z
2191
- zone: *1
2192
- time: 2023-11-12 04:22:50.000000000 Z
2193
- - !ruby/object:ActiveSupport::TimeWithZone
2194
- utc: 2023-11-12 08:38:58.000000000 Z
2195
- zone: *1
2196
- time: 2023-11-12 08:38:58.000000000 Z
2197
- - !ruby/object:ActiveSupport::TimeWithZone
2198
- utc: 2023-11-13 15:43:40.000000000 Z
2199
- zone: *1
2200
- time: 2023-11-13 15:43:40.000000000 Z
745
+ run Calendar