pagy 7.0.11 → 8.0.0

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