From 3367a1abc1af61348833f948ee34dbead767bb3e Mon Sep 17 00:00:00 2001 From: Devin McCurdy Date: Wed, 20 Mar 2024 16:26:33 -0400 Subject: [PATCH 1/3] use VPG for appointment slots --- .../mobile/v0/clinics_controller.rb | 25 + modules/mobile/config/routes.rb | 1 + modules/mobile/docs/openapi.yaml | 67 + .../spec/request/clinics_request_spec.rb | 185 +- .../controllers/vaos/v2/slots_controller.rb | 22 + modules/vaos/app/docs/vaos/v2/vaos_v2.yaml | 72 + .../services/vaos/v2/appointments_service.rb | 4 +- .../app/services/vaos/v2/systems_service.rb | 37 +- modules/vaos/config/routes.rb | 1 + .../v2/available_slots_request_spec.rb | 126 +- .../spec/services/v2/systems_service_spec.rb | 16 +- .../get_available_slots_vpg_200.yml | 3712 +++++++++++++++++ .../get_available_slots_vpg_500.yml | 60 + .../systems/get_available_slots_vpg_200.yml | 115 + .../systems/get_available_slots_vpg_500.yml | 60 + 15 files changed, 4463 insertions(+), 40 deletions(-) create mode 100644 spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_200.yml create mode 100644 spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_500.yml create mode 100644 spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_200.yml create mode 100644 spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_500.yml diff --git a/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb b/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb index 6bc38101367..e53e0571ab6 100644 --- a/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb +++ b/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb @@ -16,12 +16,37 @@ def slots response = systems_service.get_available_slots(location_id: facility_id, clinic_id:, + clinical_service: nil, start_dt: start_date, end_dt: end_date) render json: Mobile::V0::ClinicSlotsSerializer.new(response) end + def facility_slots + if !params[:clinic_id] && !params[:clinical_service] + render status: :bad_request, json: { + errors: [ + { + status: 400, + detail: 'clinic_id or clinical_service is required.' + } + ] + } + else + start_date = params[:start_date] || now.iso8601 + end_date = params[:end_date] || two_months_from_now.iso8601 + + response = systems_service.get_available_slots(location_id: facility_id, + clinic_id: params[:clinic_id], + clinical_service: params[:clinical_service], + start_dt: start_date, + end_dt: end_date) + + render json: Mobile::V0::ClinicSlotsSerializer.new(response) + end + end + private def systems_service diff --git a/modules/mobile/config/routes.rb b/modules/mobile/config/routes.rb index f5bc4504761..ca3f7799ac6 100644 --- a/modules/mobile/config/routes.rb +++ b/modules/mobile/config/routes.rb @@ -12,6 +12,7 @@ get '/appointments/facility/eligibility', to: 'facility_eligibility#index' get '/appointments/facilities/:facility_id/clinics', to: 'clinics#index' get '/appointments/facilities/:facility_id/clinics/:clinic_id/slots', to: 'clinics#slots' + get '/appointments/facilities/:facility_id/slots', to: 'clinics#facility_slots' get '/appointments/preferences', to: 'appointment_preferences#show' put '/appointments/preferences', to: 'appointment_preferences#update' post '/appointments/check-in', to: 'check_in#create' diff --git a/modules/mobile/docs/openapi.yaml b/modules/mobile/docs/openapi.yaml index bf2eb3f547d..1f241e3d1f9 100644 --- a/modules/mobile/docs/openapi.yaml +++ b/modules/mobile/docs/openapi.yaml @@ -623,6 +623,73 @@ paths: security: - Bearer: [] summary: /v0/appointments/facilities/{facility_id}/clinics/{clinic_id}/slots + /v0/appointments/facilities/{facility_id}/slots: + get: + description: Accepts date range for a va facility and returns available slots for a a direct schedule appointment. + parameters: + - description: The start date for the range of appointments slots in ISO 8601 UTC + format. If not provided the start date will be considered now. + example: 2020-10-29T07:00:00Z + in: query + name: startDate + schema: + format: date-time + type: string + - description: The end date for the range of appointments slots in ISO 8601 UTC format. + If not provided the end date will be 2 months from today's date + example: 2021-11-29T08:00:00Z + in: query + name: endDate + schema: + format: date-time + type: string + - description: The facility division ID + in: path + required: true + name: location_id + schema: + type: string + - description: The clinic IEN. Required if clinical_service not provided. + in: query + required: false + name: clinic_id + schema: + type: string + - description: The clinical service (type of care) to find appointment slots for. Required if clinic_id not provided. + in: query + required: false + name: clinical_service + schema: + type: string + - $ref: '#/components/parameters/InflectionHeader' + responses: + '200': + content: + application/json: + schema: + $ref: ./schemas/ClinicSlots.yml + description: OK + '401': + $ref: '#/components/responses/401' + '403': + $ref: '#/components/responses/403' + '404': + $ref: '#/components/responses/404' + '408': + $ref: '#/components/responses/408' + '422': + $ref: '#/components/responses/422' + '500': + $ref: '#/components/responses/500' + '502': + $ref: '#/components/responses/502' + '503': + $ref: '#/components/responses/503' + '504': + $ref: '#/components/responses/504' + security: + - Bearer: [ ] + summary: /v0/appointments/facilities/{facility_id}/clinics/{clinic_id}/slots /v0/appointments/preferences: get: description: Returns VAOS appointment contact preferences diff --git a/modules/mobile/spec/request/clinics_request_spec.rb b/modules/mobile/spec/request/clinics_request_spec.rb index ef5d549e50e..46730152f5e 100644 --- a/modules/mobile/spec/request/clinics_request_spec.rb +++ b/modules/mobile/spec/request/clinics_request_spec.rb @@ -13,7 +13,7 @@ allow_any_instance_of(VAOS::UserService).to receive(:session).and_return('stubbed_token') end - describe 'PUT /mobile/v0/appointments/facilities/:facility_id/clinics', :aggregate_failures do + describe 'GET /mobile/v0/appointments/facilities/:facility_id/clinics', :aggregate_failures do context 'when both facility id and service type is found' do let(:facility_id) { '983' } let(:params) { { service_type: 'audiology' } } @@ -60,19 +60,156 @@ end end - describe 'PUT /mobile/v0/appointments/facilities/{facililty_id}/clinics/{clinic_id}/slots', :aggregate_failures do + describe 'GET /mobile/v0/appointments/facilities/{facililty_id}/slots', :aggregate_failures do context 'when both facility id and clinic id is found' do + before do + Flipper.enable(:va_online_scheduling_use_vpg) + Flipper.enable(:va_online_scheduling_enable_OH_slots_search) + end + let(:facility_id) { '983' } - let(:clinic_id) { '1081' } - let(:params) { { start_date: '2021-10-26T00:00:00Z', end_date: '2021-12-30T23:59:59Z' } } + let(:params) do + { + start_date: '2021-10-26T00:00:00Z', + end_date: '2021-12-30T23:59:59Z', + clinic_id: '1081' + } + end it 'returns 200' do - VCR.use_cassette('mobile/appointments/get_available_slots_200', match_requests_on: %i[method uri]) do - get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, - headers: sis_headers + VCR.use_cassette('mobile/appointments/get_available_slots_vpg_200', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/slots", params:, + headers: sis_headers + expect(response).to have_http_status(:ok) + expect(response.body).to match_json_schema('clinic_slot') + end + end + end + + context 'when clinic_id and clinical_service are not given' do + let(:facility_id) { '983' } + + it 'returns 400 error' do + get "/mobile/v0/appointments/facilities/#{facility_id}/slots", params: {}, + headers: sis_headers + + expect(response).to have_http_status(:bad_request) + expect(JSON.parse(response.body)['errors'][0]['detail']) + .to eq('clinic_id or clinical_service is required.') + end + end + + context 'when start and end date are not given' do + let(:facility_id) { '983' } + let(:current_time) { '2021-10-25T01:00:00Z' } + let(:params) do + { + clinic_id: '1081' + } + end + + before do + Timecop.freeze(Time.zone.parse(current_time)) + end + + after do + Timecop.return + end + + it 'defaults time from now to 2 months from now' do + VCR.use_cassette('mobile/appointments/get_available_slots_200_no_start_end_date', + match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/slots", + params:, + headers: sis_headers expect(response).to have_http_status(:ok) expect(response.body).to match_json_schema('clinic_slot') + + parsed_response = response.parsed_body['data'] + min_start_date = parsed_response.map { |x| x.dig('attributes', 'startDate') }.min + max_end_date = parsed_response.map { |x| x.dig('attributes', 'endDate') }.max + expect(min_start_date).to be > current_time + expect(max_end_date).to be < '2021-12-25T23:59:59Z' + end + end + end + + context 'with a upstream service 500 response' do + let(:facility_id) { '983' } + let(:clinic_id) { '1081' } + let(:params) { { start_date: '2021-10-01T00:00:00Z', end_date: '2021-12-31T23:59:59Z' } } + + context 'using VAOS' do + before do + Flipper.disable(:va_online_scheduling_use_vpg) + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) + end + + it 'returns a 502 error' do + VCR.use_cassette('mobile/appointments/get_available_slots_500', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, + headers: sis_headers + expect(response).to have_http_status(:bad_gateway) + expect(response.body).to match_json_schema('errors') + end + end + end + + context 'using VPG' do + before do + Flipper.enable(:va_online_scheduling_use_vpg) + Flipper.enable(:va_online_scheduling_enable_OH_slots_search) + end + + it 'returns a 502 error' do + VCR.use_cassette('mobile/appointments/get_available_slots_vpg_500', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, + headers: sis_headers + expect(response).to have_http_status(:bad_gateway) + expect(response.body).to match_json_schema('errors') + end + end + end + end + end + + describe 'GET /mobile/v0/appointments/facilities/{facililty_id}/clinics/{clinic_id}/slots', :aggregate_failures do + context 'when both facility id and clinic id is found' do + let(:facility_id) { '983' } + let(:clinic_id) { '1081' } + let(:params) { { start_date: '2021-10-26T00:00:00Z', end_date: '2021-12-30T23:59:59Z' } } + + context 'using VAOS' do + before do + Flipper.disable(:va_online_scheduling_use_vpg) + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) + end + + it 'returns 200' do + VCR.use_cassette('mobile/appointments/get_available_slots_200', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, + headers: sis_headers + + expect(response).to have_http_status(:ok) + expect(response.body).to match_json_schema('clinic_slot') + end + end + end + + context 'using VPG' do + before do + Flipper.enable(:va_online_scheduling_use_vpg) + Flipper.enable(:va_online_scheduling_enable_OH_slots_search) + end + + it 'returns 200' do + VCR.use_cassette('mobile/appointments/get_available_slots_vpg_200', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, + headers: sis_headers + expect(response).to have_http_status(:ok) + expect(response.body).to match_json_schema('clinic_slot') + end end end end @@ -112,13 +249,35 @@ let(:clinic_id) { '1081' } let(:params) { { start_date: '2021-10-01T00:00:00Z', end_date: '2021-12-31T23:59:59Z' } } - it 'returns a 502 error' do - VCR.use_cassette('mobile/appointments/get_available_slots_500', match_requests_on: %i[method uri]) do - get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, - headers: sis_headers + context 'using VAOS' do + before do + Flipper.disable(:va_online_scheduling_use_vpg) + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) + end + + it 'returns a 502 error' do + VCR.use_cassette('mobile/appointments/get_available_slots_500', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, + headers: sis_headers + expect(response).to have_http_status(:bad_gateway) + expect(response.body).to match_json_schema('errors') + end + end + end + + context 'using VPG' do + before do + Flipper.enable(:va_online_scheduling_use_vpg) + Flipper.enable(:va_online_scheduling_enable_OH_slots_search) + end - expect(response).to have_http_status(:bad_gateway) - expect(response.body).to match_json_schema('errors') + it 'returns a 502 error' do + VCR.use_cassette('mobile/appointments/get_available_slots_vpg_500', match_requests_on: %i[method uri]) do + get "/mobile/v0/appointments/facilities/#{facility_id}/clinics/#{clinic_id}/slots", params:, + headers: sis_headers + expect(response).to have_http_status(:bad_gateway) + expect(response.body).to match_json_schema('errors') + end end end end diff --git a/modules/vaos/app/controllers/vaos/v2/slots_controller.rb b/modules/vaos/app/controllers/vaos/v2/slots_controller.rb index 18da7689640..f558671a99a 100644 --- a/modules/vaos/app/controllers/vaos/v2/slots_controller.rb +++ b/modules/vaos/app/controllers/vaos/v2/slots_controller.rb @@ -6,11 +6,33 @@ class SlotsController < VAOS::BaseController def index response = systems_service.get_available_slots(location_id:, clinic_id:, + clinical_service: nil, start_dt:, end_dt:) render json: VAOS::V2::SlotsSerializer.new(response) end + def facility_slots + if !params[:clinic_id] && !params[:clinical_service] + render status: :bad_request, json: { + errors: [ + { + status: 400, + detail: 'clinic_id or clinical_service is required.' + } + ] + } + + else + response = systems_service.get_available_slots(location_id:, + clinic_id: params[:clinic_id], + clinical_service: params[:clinical_service], + start_dt:, + end_dt:) + render json: VAOS::V2::SlotsSerializer.new(response) + end + end + private def systems_service diff --git a/modules/vaos/app/docs/vaos/v2/vaos_v2.yaml b/modules/vaos/app/docs/vaos/v2/vaos_v2.yaml index 993d9db9e8d..784be89d90a 100644 --- a/modules/vaos/app/docs/vaos/v2/vaos_v2.yaml +++ b/modules/vaos/app/docs/vaos/v2/vaos_v2.yaml @@ -611,6 +611,78 @@ paths: $ref: "#/components/responses/ServiceUnavailable" "504": $ref: "#/components/responses/GatewayTimeout" + "/locations/{location_id}/slots": + get: + tags: + - appointments + summary: Returns a list of available appointment slots for a given facility + operationId: getFacilityAppointmentSlots + security: + - bearerAuth: [] + parameters: + - in: path + required: true + name: location_id + description: The facility division ID + schema: + type: string + - in: query + required: false + name: clinic_id + description: The clinic IEN. Required if clinical_service not provided. + schema: + type: string + - in: query + required: false + name: clinical_service + description: The clinical service (type of care) to find appointment slots for. Required if clinic_id not provided. + schema: + type: string + - in: query + required: true + name: start + description: The start date for the query + schema: + type: string + - in: query + required: true + name: end + description: The end date for the query + schema: + type: string + responses: + "200": + description: Retrieves a list of available appointment slots for a given facility + content: + application/json: + schema: + required: + - data + properties: + data: + type: array + items: + $ref: "#/components/schemas/Slot" + "400": + $ref: "#/components/responses/BadRequest" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" + "404": + $ref: "#/components/responses/NotFound" + "422": + $ref: "#/components/responses/Unprocessable" + "500": + $ref: "#/components/responses/InternalServerError" + "501": + $ref: "#/components/responses/NotImplemented" + "502": + $ref: "#/components/responses/BadGateway" + "503": + $ref: "#/components/responses/ServiceUnavailable" + "504": + $ref: "#/components/responses/GatewayTimeout" "/eligibility": parameters: - in: query diff --git a/modules/vaos/app/services/vaos/v2/appointments_service.rb b/modules/vaos/app/services/vaos/v2/appointments_service.rb index 1b4d99d6283..95713103c7a 100644 --- a/modules/vaos/app/services/vaos/v2/appointments_service.rb +++ b/modules/vaos/app/services/vaos/v2/appointments_service.rb @@ -101,8 +101,8 @@ def post_appointment(request_object_body) def update_appointment(appt_id, status) with_monitoring do - response = if Flipper.enabled?(ORACLE_HEALTH_CANCELLATIONS) && - Flipper.enabled?(APPOINTMENTS_USE_VPG) + response = if Flipper.enabled?(ORACLE_HEALTH_CANCELLATIONS, user) && + Flipper.enabled?(APPOINTMENTS_USE_VPG, user) update_appointment_vpg(appt_id, status) else update_appointment_vaos(appt_id, status) diff --git a/modules/vaos/app/services/vaos/v2/systems_service.rb b/modules/vaos/app/services/vaos/v2/systems_service.rb index 7b8da35423a..c1db568ad91 100644 --- a/modules/vaos/app/services/vaos/v2/systems_service.rb +++ b/modules/vaos/app/services/vaos/v2/systems_service.rb @@ -32,14 +32,15 @@ def get_facility_clinics(location_id:, end end - def get_available_slots(location_id:, clinic_id:, start_dt:, end_dt:) + def get_available_slots(location_id:, clinic_id:, clinical_service:, start_dt:, end_dt:) with_monitoring do - url_path = "/vaos/v1/locations/#{location_id}/clinics/#{clinic_id}/slots" - url_params = { - 'start' => start_dt, - 'end' => end_dt - } - response = perform(:get, url_path, url_params, headers) + response = if Flipper.enabled?(:va_online_scheduling_use_vpg, user) && + Flipper.enabled?(:va_online_scheduling_enable_OH_slots_search, user) + get_slots_vpg(location_id:, clinic_id:, clinical_service:, start_dt:, end_dt:) + else + get_slots_vaos(location_id:, clinic_id:, start_dt:, end_dt:) + end + response.body[:data] ? response.body[:data].map { |slot| OpenStruct.new(slot) } : [] end end @@ -58,6 +59,28 @@ def get_icn(clinical_service) def get_clinic_ids(ids) ids.is_a?(Array) ? ids.to_csv(row_sep: nil) : ids end + + def get_slots_vaos(location_id:, clinic_id:, start_dt:, end_dt:) + url_path = "/vaos/v1/locations/#{location_id}/clinics/#{clinic_id}/slots" + url_params = { + 'start' => start_dt, + 'end' => end_dt + } + perform(:get, url_path, url_params, headers) + end + + def get_slots_vpg(location_id:, clinic_id:, clinical_service:, start_dt:, end_dt:) + url_path = '/vpg/v1/slots' + url_params = { + 'start' => start_dt, + 'end' => end_dt, + 'clinic' => clinic_id, + 'clinicalService' => clinical_service, + 'location' => location_id + }.compact + + perform(:get, url_path, url_params, headers) + end end end end diff --git a/modules/vaos/config/routes.rb b/modules/vaos/config/routes.rb index 10bf7c05426..508726e820a 100644 --- a/modules/vaos/config/routes.rb +++ b/modules/vaos/config/routes.rb @@ -22,6 +22,7 @@ get '/locations/:location_id/clinics', to: 'clinics#index' get '/locations/last_visited_clinic', to: 'clinics#last_visited_clinic' get '/locations/:location_id/clinics/:clinic_id/slots', to: 'slots#index' + get '/locations/:location_id/slots', to: 'slots#facility_slots' get '/eligibility/', to: 'patients#index' get '/scheduling/configurations', to: 'scheduling#configurations' get '/facilities', to: 'facilities#index' diff --git a/modules/vaos/spec/request/v2/available_slots_request_spec.rb b/modules/vaos/spec/request/v2/available_slots_request_spec.rb index 6a36c0d559f..2be13d3b76a 100644 --- a/modules/vaos/spec/request/v2/available_slots_request_spec.rb +++ b/modules/vaos/spec/request/v2/available_slots_request_spec.rb @@ -17,29 +17,113 @@ let(:user) { build(:user, :vaos) } describe 'GET available appointment slots' do + context 'using VAOS' do + before do + Flipper.disable(:va_online_scheduling_use_vpg) + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) + end + + context 'on a successful request' do + it 'returns list of available slots' do + VCR.use_cassette('vaos/v2/systems/get_available_slots_200', match_requests_on: %i[method path query]) do + get '/vaos/v2/locations/983/clinics/1081/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z', + headers: inflection_header + expect(response).to have_http_status(:ok) + expect(response.body).to match_camelized_schema('vaos/v2/slots', { strict: false }) + + slots = JSON.parse(response.body)['data'] + expect(slots.size).to eq(730) + slot = slots[1] + expect(slot['id']).to eq('3230323131303236323133303A323032313130323632323030') + expect(slot['type']).to eq('slots') + expect(slot['attributes']['start']).to eq('2021-10-26T21:30:00Z') + expect(slot['attributes']['end']).to eq('2021-10-26T22:00:00Z') + end + end + end + + context 'on a backend service error' do + it 'returns a 502 status code' do + VCR.use_cassette('vaos/v2/systems/get_available_slots_500', match_requests_on: %i[method path query]) do + get '/vaos/v2/locations/983/clinics/1081/slots?end=2021-12-31T23:59:59Z&start=2021-10-01T00:00:00Z' + + expect(response).to have_http_status(:bad_gateway) + expect(JSON.parse(response.body)['errors'][0]['detail']) + .to eq('Received an an invalid response from the upstream server') + end + end + end + end + end + + context 'using VPG' do + before do + Flipper.enable(:va_online_scheduling_use_vpg) + Flipper.enable(:va_online_scheduling_enable_OH_slots_search) + end + context 'on a successful request' do - it 'returns list of available slots' do - VCR.use_cassette('vaos/v2/systems/get_available_slots_200', match_requests_on: %i[method path query]) do - get '/vaos/v2/locations/983/clinics/1081/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z', - headers: inflection_header - expect(response).to have_http_status(:ok) - expect(response.body).to match_camelized_schema('vaos/v2/slots', { strict: false }) - - slots = JSON.parse(response.body)['data'] - expect(slots.size).to eq(730) - slot = slots[1] - expect(slot['id']).to eq('3230323131303236323133303A323032313130323632323030') - expect(slot['type']).to eq('slots') - expect(slot['attributes']['start']).to eq('2021-10-26T21:30:00Z') - expect(slot['attributes']['end']).to eq('2021-10-26T22:00:00Z') + context 'using existing route' do + it 'returns list of available slots for a clinic_id' do + VCR.use_cassette('vaos/v2/systems/get_available_slots_vpg_200', match_requests_on: %i[method path query]) do + get '/vaos/v2/locations/983/clinics/1081/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z', + headers: inflection_header + expect(response).to have_http_status(:ok) + expect(response.body).to match_camelized_schema('vaos/v2/slots', { strict: false }) + + slots = JSON.parse(response.body)['data'] + expect(slots.size).to eq(730) + slot = slots[1] + expect(slot['id']).to eq('3230323131303236323133303A323032313130323632323030') + expect(slot['type']).to eq('slots') + expect(slot['attributes']['start']).to eq('2021-10-26T21:30:00Z') + expect(slot['attributes']['end']).to eq('2021-10-26T22:00:00Z') + end + end + end + + context 'using facility-only route' do + it 'returns list of available slots for a clinic_id' do + VCR.use_cassette('vaos/v2/systems/get_available_slots_vpg_200', match_requests_on: %i[method path query]) do + get '/vaos/v2/locations/983/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z&clinic_id=1081', + headers: inflection_header + expect(response).to have_http_status(:ok) + expect(response.body).to match_camelized_schema('vaos/v2/slots', { strict: false }) + + slots = JSON.parse(response.body)['data'] + expect(slots.size).to eq(730) + slot = slots[1] + expect(slot['id']).to eq('3230323131303236323133303A323032313130323632323030') + expect(slot['type']).to eq('slots') + expect(slot['attributes']['start']).to eq('2021-10-26T21:30:00Z') + expect(slot['attributes']['end']).to eq('2021-10-26T22:00:00Z') + end + end + + it 'returns list of available slots for a clinical_service' do + VCR.use_cassette('vaos/v2/systems/get_available_slots_vpg_200', match_requests_on: %i[method path query]) do + get '/vaos/v2/locations/983/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z' \ + '&clinical_service=service', + headers: inflection_header + expect(response).to have_http_status(:ok) + expect(response.body).to match_camelized_schema('vaos/v2/slots', { strict: false }) + + slots = JSON.parse(response.body)['data'] + expect(slots.size).to eq(730) + slot = slots[1] + expect(slot['id']).to eq('3230323131303236323133303A323032313130323632323030') + expect(slot['type']).to eq('slots') + expect(slot['attributes']['start']).to eq('2021-10-26T21:30:00Z') + expect(slot['attributes']['end']).to eq('2021-10-26T22:00:00Z') + end end end end context 'on a backend service error' do it 'returns a 502 status code' do - VCR.use_cassette('vaos/v2/systems/get_available_slots_500', match_requests_on: %i[method path query]) do - get '/vaos/v2/locations/983/clinics/1081/slots?end=2021-12-31T23:59:59Z&start=2021-10-01T00:00:00Z' + VCR.use_cassette('vaos/v2/systems/get_available_slots_vpg_500', match_requests_on: %i[method path query]) do + get '/vaos/v2/locations/983/slots?end=2021-12-31T23:59:59Z&start=2021-10-01T00:00:00Z&clinic_id=1081' expect(response).to have_http_status(:bad_gateway) expect(JSON.parse(response.body)['errors'][0]['detail']) @@ -47,6 +131,16 @@ end end end + + context 'on a bad request' do + it 'requires clinic_id or clinical_service' do + get '/vaos/v2/locations/983/slots?end=2021-12-31T23:59:59Z&start=2021-10-01T00:00:00Z' + + expect(response).to have_http_status(:bad_request) + expect(JSON.parse(response.body)['errors'][0]['detail']) + .to eq('clinic_id or clinical_service is required.') + end + end end end end diff --git a/modules/vaos/spec/services/v2/systems_service_spec.rb b/modules/vaos/spec/services/v2/systems_service_spec.rb index 452bddab1a4..08aec602d8a 100644 --- a/modules/vaos/spec/services/v2/systems_service_spec.rb +++ b/modules/vaos/spec/services/v2/systems_service_spec.rb @@ -33,10 +33,16 @@ describe '#get_available_slots' do context 'when the upstream server returns status code 500' do + before do + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) + end + it 'raises a backend exception' do VCR.use_cassette('vaos/v2/systems/get_available_slots_500', match_requests_on: %i[method path query]) do expect do - subject.get_available_slots(location_id: '983', clinic_id: '1081', + subject.get_available_slots(location_id: '983', + clinic_id: '1081', + clinical_service: nil, start_dt: '2021-10-01T00:00:00Z', end_dt: '2021-12-31T23:59:59Z') end.to raise_error(Common::Exceptions::BackendServiceException, /VAOS_502/) @@ -45,9 +51,15 @@ end context 'when the upstream server returns status code 200' do + before do + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) + end + it 'returns a list of available slots' do VCR.use_cassette('vaos/v2/systems/get_available_slots_200', match_requests_on: %i[method path query]) do - available_slots = subject.get_available_slots(location_id: '983', clinic_id: '1081', + available_slots = subject.get_available_slots(location_id: '983', + clinic_id: '1081', + clinical_service: nil, start_dt: '2021-10-26T00:00:00Z', end_dt: '2021-12-30T23:59:59Z') expect(available_slots.size).to eq(730) diff --git a/spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_200.yml b/spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_200.yml new file mode 100644 index 00000000000..62f9824f669 --- /dev/null +++ b/spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_200.yml @@ -0,0 +1,3712 @@ +--- +http_interactions: +- request: + method: get + uri: https://veteran.apps.va.gov/vpg/v1/slots?clinic=1081&end=2021-12-30T23:59:59Z&location=983&start=2021-10-26T00:00:00Z + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Vets.gov Agent + Referer: + - https://review-instance.va.gov + X-Vamf-Jwt: + - stubbed_token + X-Request-Id: + - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 11 Oct 2021 18:41:19 GMT + Content-Type: + - application/json + Transfer-Encoding: + - chunked + Server: + - openresty + X-Vamf-Version: + - 1.10.0 + B3: + - 62cc41b5de2df75b-dc1d447244a4a01c-1 + Access-Control-Allow-Headers: + - x-vamf-jwt + X-Vamf-Build: + - 58ec2e2 + X-Vamf-Timestamp: + - '2021-08-18T13:44:12+0000' + Access-Control-Allow-Origin: + - "*" + Access-Control-Allow-Methods: + - GET,OPTIONS + Access-Control-Max-Age: + - '3600' + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '{ + "data":[ + { + "id":"3230323131303236323130303A323032313130323632313330", + "start":"2021-10-26T21:00:00Z", + "end":"2021-10-26T21:30:00Z" + }, + { + "id":"3230323131303236323133303A323032313130323632323030", + "start":"2021-10-26T21:30:00Z", + "end":"2021-10-26T22:00:00Z" + }, + { + "id":"3230323131303236323230303A323032313130323730303030", + "start":"2021-10-26T22:00:00Z", + "end":"2021-10-27T00:00:00Z" + }, + { + "id":"3230323131303237313430303A323032313130323731343330", + "start":"2021-10-27T14:00:00Z", + "end":"2021-10-27T14:30:00Z" + }, + { + "id":"3230323131303237313433303A323032313130323731353030", + "start":"2021-10-27T14:30:00Z", + "end":"2021-10-27T15:00:00Z" + }, + { + "id":"3230323131303237313530303A323032313130323731353330", + "start":"2021-10-27T15:00:00Z", + "end":"2021-10-27T15:30:00Z" + }, + { + "id":"3230323131303237313533303A323032313130323731363030", + "start":"2021-10-27T15:30:00Z", + "end":"2021-10-27T16:00:00Z" + }, + { + "id":"3230323131303237313630303A323032313130323731363330", + "start":"2021-10-27T16:00:00Z", + "end":"2021-10-27T16:30:00Z" + }, + { + "id":"3230323131303237313633303A323032313130323731373030", + "start":"2021-10-27T16:30:00Z", + "end":"2021-10-27T17:00:00Z" + }, + { + "id":"3230323131303237313730303A323032313130323731373330", + "start":"2021-10-27T17:00:00Z", + "end":"2021-10-27T17:30:00Z" + }, + { + "id":"3230323131303237313733303A323032313130323731383030", + "start":"2021-10-27T17:30:00Z", + "end":"2021-10-27T18:00:00Z" + }, + { + "id":"3230323131303237313830303A323032313130323731383330", + "start":"2021-10-27T18:00:00Z", + "end":"2021-10-27T18:30:00Z" + }, + { + "id":"3230323131303237313833303A323032313130323731393030", + "start":"2021-10-27T18:30:00Z", + "end":"2021-10-27T19:00:00Z" + }, + { + "id":"3230323131303237313930303A323032313130323731393330", + "start":"2021-10-27T19:00:00Z", + "end":"2021-10-27T19:30:00Z" + }, + { + "id":"3230323131303237313933303A323032313130323732303030", + "start":"2021-10-27T19:30:00Z", + "end":"2021-10-27T20:00:00Z" + }, + { + "id":"3230323131303237323030303A323032313130323732303330", + "start":"2021-10-27T20:00:00Z", + "end":"2021-10-27T20:30:00Z" + }, + { + "id":"3230323131303237323033303A323032313130323732313030", + "start":"2021-10-27T20:30:00Z", + "end":"2021-10-27T21:00:00Z" + }, + { + "id":"3230323131303237323130303A323032313130323732313330", + "start":"2021-10-27T21:00:00Z", + "end":"2021-10-27T21:30:00Z" + }, + { + "id":"3230323131303237323133303A323032313130323732323030", + "start":"2021-10-27T21:30:00Z", + "end":"2021-10-27T22:00:00Z" + }, + { + "id":"3230323131303237323230303A323032313130323830303030", + "start":"2021-10-27T22:00:00Z", + "end":"2021-10-28T00:00:00Z" + }, + { + "id":"3230323131303238313430303A323032313130323831343330", + "start":"2021-10-28T14:00:00Z", + "end":"2021-10-28T14:30:00Z" + }, + { + "id":"3230323131303238313433303A323032313130323831353030", + "start":"2021-10-28T14:30:00Z", + "end":"2021-10-28T15:00:00Z" + }, + { + "id":"3230323131303238313530303A323032313130323831353330", + "start":"2021-10-28T15:00:00Z", + "end":"2021-10-28T15:30:00Z" + }, + { + "id":"3230323131303238313533303A323032313130323831363030", + "start":"2021-10-28T15:30:00Z", + "end":"2021-10-28T16:00:00Z" + }, + { + "id":"3230323131303238313630303A323032313130323831363330", + "start":"2021-10-28T16:00:00Z", + "end":"2021-10-28T16:30:00Z" + }, + { + "id":"3230323131303238313633303A323032313130323831373030", + "start":"2021-10-28T16:30:00Z", + "end":"2021-10-28T17:00:00Z" + }, + { + "id":"3230323131303238313730303A323032313130323831373330", + "start":"2021-10-28T17:00:00Z", + "end":"2021-10-28T17:30:00Z" + }, + { + "id":"3230323131303238313733303A323032313130323831383030", + "start":"2021-10-28T17:30:00Z", + "end":"2021-10-28T18:00:00Z" + }, + { + "id":"3230323131303238313830303A323032313130323831383330", + "start":"2021-10-28T18:00:00Z", + "end":"2021-10-28T18:30:00Z" + }, + { + "id":"3230323131303238313833303A323032313130323831393030", + "start":"2021-10-28T18:30:00Z", + "end":"2021-10-28T19:00:00Z" + }, + { + "id":"3230323131303238313930303A323032313130323831393330", + "start":"2021-10-28T19:00:00Z", + "end":"2021-10-28T19:30:00Z" + }, + { + "id":"3230323131303238313933303A323032313130323832303030", + "start":"2021-10-28T19:30:00Z", + "end":"2021-10-28T20:00:00Z" + }, + { + "id":"3230323131303238323030303A323032313130323832303330", + "start":"2021-10-28T20:00:00Z", + "end":"2021-10-28T20:30:00Z" + }, + { + "id":"3230323131303238323033303A323032313130323832313030", + "start":"2021-10-28T20:30:00Z", + "end":"2021-10-28T21:00:00Z" + }, + { + "id":"3230323131303238323130303A323032313130323832313330", + "start":"2021-10-28T21:00:00Z", + "end":"2021-10-28T21:30:00Z" + }, + { + "id":"3230323131303238323133303A323032313130323832323030", + "start":"2021-10-28T21:30:00Z", + "end":"2021-10-28T22:00:00Z" + }, + { + "id":"3230323131303238323230303A323032313130323832323330", + "start":"2021-10-28T22:00:00Z", + "end":"2021-10-28T22:30:00Z" + }, + { + "id":"3230323131303238323233303A323032313130323832333030", + "start":"2021-10-28T22:30:00Z", + "end":"2021-10-28T23:00:00Z" + }, + { + "id":"3230323131303238323330303A323032313130323930303030", + "start":"2021-10-28T23:00:00Z", + "end":"2021-10-29T00:00:00Z" + }, + { + "id":"3230323131303239313430303A323032313130323931343330", + "start":"2021-10-29T14:00:00Z", + "end":"2021-10-29T14:30:00Z" + }, + { + "id":"3230323131303239313433303A323032313130323931353030", + "start":"2021-10-29T14:30:00Z", + "end":"2021-10-29T15:00:00Z" + }, + { + "id":"3230323131303239313530303A323032313130323931353330", + "start":"2021-10-29T15:00:00Z", + "end":"2021-10-29T15:30:00Z" + }, + { + "id":"3230323131303239313533303A323032313130323931363030", + "start":"2021-10-29T15:30:00Z", + "end":"2021-10-29T16:00:00Z" + }, + { + "id":"3230323131303239313630303A323032313130323931363330", + "start":"2021-10-29T16:00:00Z", + "end":"2021-10-29T16:30:00Z" + }, + { + "id":"3230323131303239313633303A323032313130323931373030", + "start":"2021-10-29T16:30:00Z", + "end":"2021-10-29T17:00:00Z" + }, + { + "id":"3230323131303239313730303A323032313130323931373330", + "start":"2021-10-29T17:00:00Z", + "end":"2021-10-29T17:30:00Z" + }, + { + "id":"3230323131303239313733303A323032313130323931383030", + "start":"2021-10-29T17:30:00Z", + "end":"2021-10-29T18:00:00Z" + }, + { + "id":"3230323131303239313830303A323032313130323931383330", + "start":"2021-10-29T18:00:00Z", + "end":"2021-10-29T18:30:00Z" + }, + { + "id":"3230323131303239313833303A323032313130323931393030", + "start":"2021-10-29T18:30:00Z", + "end":"2021-10-29T19:00:00Z" + }, + { + "id":"3230323131303239313930303A323032313130323931393330", + "start":"2021-10-29T19:00:00Z", + "end":"2021-10-29T19:30:00Z" + }, + { + "id":"3230323131303239313933303A323032313130323932303030", + "start":"2021-10-29T19:30:00Z", + "end":"2021-10-29T20:00:00Z" + }, + { + "id":"3230323131303239323030303A323032313130323932303330", + "start":"2021-10-29T20:00:00Z", + "end":"2021-10-29T20:30:00Z" + }, + { + "id":"3230323131303239323033303A323032313130323932313030", + "start":"2021-10-29T20:30:00Z", + "end":"2021-10-29T21:00:00Z" + }, + { + "id":"3230323131303239323130303A323032313130323932313330", + "start":"2021-10-29T21:00:00Z", + "end":"2021-10-29T21:30:00Z" + }, + { + "id":"3230323131303239323133303A323032313130323932323030", + "start":"2021-10-29T21:30:00Z", + "end":"2021-10-29T22:00:00Z" + }, + { + "id":"3230323131303239323230303A323032313130323932323330", + "start":"2021-10-29T22:00:00Z", + "end":"2021-10-29T22:30:00Z" + }, + { + "id":"3230323131303239323233303A323032313130323932333030", + "start":"2021-10-29T22:30:00Z", + "end":"2021-10-29T23:00:00Z" + }, + { + "id":"3230323131303239323330303A323032313130333030303030", + "start":"2021-10-29T23:00:00Z", + "end":"2021-10-30T00:00:00Z" + }, + { + "id":"3230323131313031313430303A323032313131303131343330", + "start":"2021-11-01T14:00:00Z", + "end":"2021-11-01T14:30:00Z" + }, + { + "id":"3230323131313031313433303A323032313131303131353030", + "start":"2021-11-01T14:30:00Z", + "end":"2021-11-01T15:00:00Z" + }, + { + "id":"3230323131313031313530303A323032313131303131353330", + "start":"2021-11-01T15:00:00Z", + "end":"2021-11-01T15:30:00Z" + }, + { + "id":"3230323131313031313533303A323032313131303131363030", + "start":"2021-11-01T15:30:00Z", + "end":"2021-11-01T16:00:00Z" + }, + { + "id":"3230323131313031313630303A323032313131303131363330", + "start":"2021-11-01T16:00:00Z", + "end":"2021-11-01T16:30:00Z" + }, + { + "id":"3230323131313031313633303A323032313131303131373030", + "start":"2021-11-01T16:30:00Z", + "end":"2021-11-01T17:00:00Z" + }, + { + "id":"3230323131313031313730303A323032313131303131373330", + "start":"2021-11-01T17:00:00Z", + "end":"2021-11-01T17:30:00Z" + }, + { + "id":"3230323131313031313733303A323032313131303131383030", + "start":"2021-11-01T17:30:00Z", + "end":"2021-11-01T18:00:00Z" + }, + { + "id":"3230323131313031313830303A323032313131303131383330", + "start":"2021-11-01T18:00:00Z", + "end":"2021-11-01T18:30:00Z" + }, + { + "id":"3230323131313031313833303A323032313131303131393030", + "start":"2021-11-01T18:30:00Z", + "end":"2021-11-01T19:00:00Z" + }, + { + "id":"3230323131313031313930303A323032313131303131393330", + "start":"2021-11-01T19:00:00Z", + "end":"2021-11-01T19:30:00Z" + }, + { + "id":"3230323131313031313933303A323032313131303132303030", + "start":"2021-11-01T19:30:00Z", + "end":"2021-11-01T20:00:00Z" + }, + { + "id":"3230323131313031323030303A323032313131303132303330", + "start":"2021-11-01T20:00:00Z", + "end":"2021-11-01T20:30:00Z" + }, + { + "id":"3230323131313031323033303A323032313131303132313030", + "start":"2021-11-01T20:30:00Z", + "end":"2021-11-01T21:00:00Z" + }, + { + "id":"3230323131313031323130303A323032313131303132313330", + "start":"2021-11-01T21:00:00Z", + "end":"2021-11-01T21:30:00Z" + }, + { + "id":"3230323131313031323133303A323032313131303132323030", + "start":"2021-11-01T21:30:00Z", + "end":"2021-11-01T22:00:00Z" + }, + { + "id":"3230323131313031323230303A323032313131303132323330", + "start":"2021-11-01T22:00:00Z", + "end":"2021-11-01T22:30:00Z" + }, + { + "id":"3230323131313031323233303A323032313131303132333030", + "start":"2021-11-01T22:30:00Z", + "end":"2021-11-01T23:00:00Z" + }, + { + "id":"3230323131313031323330303A323032313131303230303030", + "start":"2021-11-01T23:00:00Z", + "end":"2021-11-02T00:00:00Z" + }, + { + "id":"3230323131313032323130303A323032313131303232313330", + "start":"2021-11-02T21:00:00Z", + "end":"2021-11-02T21:30:00Z" + }, + { + "id":"3230323131313032323133303A323032313131303232323030", + "start":"2021-11-02T21:30:00Z", + "end":"2021-11-02T22:00:00Z" + }, + { + "id":"3230323131313032323230303A323032313131303330303030", + "start":"2021-11-02T22:00:00Z", + "end":"2021-11-03T00:00:00Z" + }, + { + "id":"3230323131313033313430303A323032313131303331343330", + "start":"2021-11-03T14:00:00Z", + "end":"2021-11-03T14:30:00Z" + }, + { + "id":"3230323131313033313433303A323032313131303331353030", + "start":"2021-11-03T14:30:00Z", + "end":"2021-11-03T15:00:00Z" + }, + { + "id":"3230323131313033313530303A323032313131303331353330", + "start":"2021-11-03T15:00:00Z", + "end":"2021-11-03T15:30:00Z" + }, + { + "id":"3230323131313033313533303A323032313131303331363030", + "start":"2021-11-03T15:30:00Z", + "end":"2021-11-03T16:00:00Z" + }, + { + "id":"3230323131313033313630303A323032313131303331363330", + "start":"2021-11-03T16:00:00Z", + "end":"2021-11-03T16:30:00Z" + }, + { + "id":"3230323131313033313633303A323032313131303331373030", + "start":"2021-11-03T16:30:00Z", + "end":"2021-11-03T17:00:00Z" + }, + { + "id":"3230323131313033313730303A323032313131303331373330", + "start":"2021-11-03T17:00:00Z", + "end":"2021-11-03T17:30:00Z" + }, + { + "id":"3230323131313033313733303A323032313131303331383030", + "start":"2021-11-03T17:30:00Z", + "end":"2021-11-03T18:00:00Z" + }, + { + "id":"3230323131313033313830303A323032313131303331383330", + "start":"2021-11-03T18:00:00Z", + "end":"2021-11-03T18:30:00Z" + }, + { + "id":"3230323131313033313833303A323032313131303331393030", + "start":"2021-11-03T18:30:00Z", + "end":"2021-11-03T19:00:00Z" + }, + { + "id":"3230323131313033313930303A323032313131303331393330", + "start":"2021-11-03T19:00:00Z", + "end":"2021-11-03T19:30:00Z" + }, + { + "id":"3230323131313033313933303A323032313131303332303030", + "start":"2021-11-03T19:30:00Z", + "end":"2021-11-03T20:00:00Z" + }, + { + "id":"3230323131313033323030303A323032313131303332303330", + "start":"2021-11-03T20:00:00Z", + "end":"2021-11-03T20:30:00Z" + }, + { + "id":"3230323131313033323033303A323032313131303332313030", + "start":"2021-11-03T20:30:00Z", + "end":"2021-11-03T21:00:00Z" + }, + { + "id":"3230323131313033323130303A323032313131303332313330", + "start":"2021-11-03T21:00:00Z", + "end":"2021-11-03T21:30:00Z" + }, + { + "id":"3230323131313033323133303A323032313131303332323030", + "start":"2021-11-03T21:30:00Z", + "end":"2021-11-03T22:00:00Z" + }, + { + "id":"3230323131313033323230303A323032313131303430303030", + "start":"2021-11-03T22:00:00Z", + "end":"2021-11-04T00:00:00Z" + }, + { + "id":"3230323131313034313430303A323032313131303431343330", + "start":"2021-11-04T14:00:00Z", + "end":"2021-11-04T14:30:00Z" + }, + { + "id":"3230323131313034313433303A323032313131303431353030", + "start":"2021-11-04T14:30:00Z", + "end":"2021-11-04T15:00:00Z" + }, + { + "id":"3230323131313034313530303A323032313131303431353330", + "start":"2021-11-04T15:00:00Z", + "end":"2021-11-04T15:30:00Z" + }, + { + "id":"3230323131313034313533303A323032313131303431363030", + "start":"2021-11-04T15:30:00Z", + "end":"2021-11-04T16:00:00Z" + }, + { + "id":"3230323131313034313630303A323032313131303431363330", + "start":"2021-11-04T16:00:00Z", + "end":"2021-11-04T16:30:00Z" + }, + { + "id":"3230323131313034313633303A323032313131303431373030", + "start":"2021-11-04T16:30:00Z", + "end":"2021-11-04T17:00:00Z" + }, + { + "id":"3230323131313034313730303A323032313131303431373330", + "start":"2021-11-04T17:00:00Z", + "end":"2021-11-04T17:30:00Z" + }, + { + "id":"3230323131313034313733303A323032313131303431383030", + "start":"2021-11-04T17:30:00Z", + "end":"2021-11-04T18:00:00Z" + }, + { + "id":"3230323131313034313830303A323032313131303431383330", + "start":"2021-11-04T18:00:00Z", + "end":"2021-11-04T18:30:00Z" + }, + { + "id":"3230323131313034313833303A323032313131303431393030", + "start":"2021-11-04T18:30:00Z", + "end":"2021-11-04T19:00:00Z" + }, + { + "id":"3230323131313034313930303A323032313131303431393330", + "start":"2021-11-04T19:00:00Z", + "end":"2021-11-04T19:30:00Z" + }, + { + "id":"3230323131313034313933303A323032313131303432303030", + "start":"2021-11-04T19:30:00Z", + "end":"2021-11-04T20:00:00Z" + }, + { + "id":"3230323131313034323030303A323032313131303432303330", + "start":"2021-11-04T20:00:00Z", + "end":"2021-11-04T20:30:00Z" + }, + { + "id":"3230323131313034323033303A323032313131303432313030", + "start":"2021-11-04T20:30:00Z", + "end":"2021-11-04T21:00:00Z" + }, + { + "id":"3230323131313034323130303A323032313131303432313330", + "start":"2021-11-04T21:00:00Z", + "end":"2021-11-04T21:30:00Z" + }, + { + "id":"3230323131313034323133303A323032313131303432323030", + "start":"2021-11-04T21:30:00Z", + "end":"2021-11-04T22:00:00Z" + }, + { + "id":"3230323131313034323230303A323032313131303432323330", + "start":"2021-11-04T22:00:00Z", + "end":"2021-11-04T22:30:00Z" + }, + { + "id":"3230323131313034323233303A323032313131303432333030", + "start":"2021-11-04T22:30:00Z", + "end":"2021-11-04T23:00:00Z" + }, + { + "id":"3230323131313034323330303A323032313131303530303030", + "start":"2021-11-04T23:00:00Z", + "end":"2021-11-05T00:00:00Z" + }, + { + "id":"3230323131313035313430303A323032313131303531343330", + "start":"2021-11-05T14:00:00Z", + "end":"2021-11-05T14:30:00Z" + }, + { + "id":"3230323131313035313433303A323032313131303531353030", + "start":"2021-11-05T14:30:00Z", + "end":"2021-11-05T15:00:00Z" + }, + { + "id":"3230323131313035313530303A323032313131303531353330", + "start":"2021-11-05T15:00:00Z", + "end":"2021-11-05T15:30:00Z" + }, + { + "id":"3230323131313035313533303A323032313131303531363030", + "start":"2021-11-05T15:30:00Z", + "end":"2021-11-05T16:00:00Z" + }, + { + "id":"3230323131313035313630303A323032313131303531363330", + "start":"2021-11-05T16:00:00Z", + "end":"2021-11-05T16:30:00Z" + }, + { + "id":"3230323131313035313633303A323032313131303531373030", + "start":"2021-11-05T16:30:00Z", + "end":"2021-11-05T17:00:00Z" + }, + { + "id":"3230323131313035313730303A323032313131303531373330", + "start":"2021-11-05T17:00:00Z", + "end":"2021-11-05T17:30:00Z" + }, + { + "id":"3230323131313035313733303A323032313131303531383030", + "start":"2021-11-05T17:30:00Z", + "end":"2021-11-05T18:00:00Z" + }, + { + "id":"3230323131313035313830303A323032313131303531383330", + "start":"2021-11-05T18:00:00Z", + "end":"2021-11-05T18:30:00Z" + }, + { + "id":"3230323131313035313833303A323032313131303531393030", + "start":"2021-11-05T18:30:00Z", + "end":"2021-11-05T19:00:00Z" + }, + { + "id":"3230323131313035313930303A323032313131303531393330", + "start":"2021-11-05T19:00:00Z", + "end":"2021-11-05T19:30:00Z" + }, + { + "id":"3230323131313035313933303A323032313131303532303030", + "start":"2021-11-05T19:30:00Z", + "end":"2021-11-05T20:00:00Z" + }, + { + "id":"3230323131313035323030303A323032313131303532303330", + "start":"2021-11-05T20:00:00Z", + "end":"2021-11-05T20:30:00Z" + }, + { + "id":"3230323131313035323033303A323032313131303532313030", + "start":"2021-11-05T20:30:00Z", + "end":"2021-11-05T21:00:00Z" + }, + { + "id":"3230323131313035323130303A323032313131303532313330", + "start":"2021-11-05T21:00:00Z", + "end":"2021-11-05T21:30:00Z" + }, + { + "id":"3230323131313035323133303A323032313131303532323030", + "start":"2021-11-05T21:30:00Z", + "end":"2021-11-05T22:00:00Z" + }, + { + "id":"3230323131313035323230303A323032313131303532323330", + "start":"2021-11-05T22:00:00Z", + "end":"2021-11-05T22:30:00Z" + }, + { + "id":"3230323131313035323233303A323032313131303532333030", + "start":"2021-11-05T22:30:00Z", + "end":"2021-11-05T23:00:00Z" + }, + { + "id":"3230323131313035323330303A323032313131303630303030", + "start":"2021-11-05T23:00:00Z", + "end":"2021-11-06T00:00:00Z" + }, + { + "id":"3230323131313038313530303A323032313131303831353330", + "start":"2021-11-08T15:00:00Z", + "end":"2021-11-08T15:30:00Z" + }, + { + "id":"3230323131313038313533303A323032313131303831363030", + "start":"2021-11-08T15:30:00Z", + "end":"2021-11-08T16:00:00Z" + }, + { + "id":"3230323131313038313630303A323032313131303831363330", + "start":"2021-11-08T16:00:00Z", + "end":"2021-11-08T16:30:00Z" + }, + { + "id":"3230323131313038313633303A323032313131303831373030", + "start":"2021-11-08T16:30:00Z", + "end":"2021-11-08T17:00:00Z" + }, + { + "id":"3230323131313038313730303A323032313131303831373330", + "start":"2021-11-08T17:00:00Z", + "end":"2021-11-08T17:30:00Z" + }, + { + "id":"3230323131313038313733303A323032313131303831383030", + "start":"2021-11-08T17:30:00Z", + "end":"2021-11-08T18:00:00Z" + }, + { + "id":"3230323131313038313830303A323032313131303831383330", + "start":"2021-11-08T18:00:00Z", + "end":"2021-11-08T18:30:00Z" + }, + { + "id":"3230323131313038313833303A323032313131303831393030", + "start":"2021-11-08T18:30:00Z", + "end":"2021-11-08T19:00:00Z" + }, + { + "id":"3230323131313038313930303A323032313131303831393330", + "start":"2021-11-08T19:00:00Z", + "end":"2021-11-08T19:30:00Z" + }, + { + "id":"3230323131313038313933303A323032313131303832303030", + "start":"2021-11-08T19:30:00Z", + "end":"2021-11-08T20:00:00Z" + }, + { + "id":"3230323131313038323030303A323032313131303832303330", + "start":"2021-11-08T20:00:00Z", + "end":"2021-11-08T20:30:00Z" + }, + { + "id":"3230323131313038323033303A323032313131303832313030", + "start":"2021-11-08T20:30:00Z", + "end":"2021-11-08T21:00:00Z" + }, + { + "id":"3230323131313038323130303A323032313131303832313330", + "start":"2021-11-08T21:00:00Z", + "end":"2021-11-08T21:30:00Z" + }, + { + "id":"3230323131313038323133303A323032313131303832323030", + "start":"2021-11-08T21:30:00Z", + "end":"2021-11-08T22:00:00Z" + }, + { + "id":"3230323131313038323230303A323032313131303832323330", + "start":"2021-11-08T22:00:00Z", + "end":"2021-11-08T22:30:00Z" + }, + { + "id":"3230323131313038323233303A323032313131303832333030", + "start":"2021-11-08T22:30:00Z", + "end":"2021-11-08T23:00:00Z" + }, + { + "id":"3230323131313038323330303A323032313131303832333330", + "start":"2021-11-08T23:00:00Z", + "end":"2021-11-08T23:30:00Z" + }, + { + "id":"3230323131313038323333303A323032313131303930303030", + "start":"2021-11-08T23:30:00Z", + "end":"2021-11-09T00:00:00Z" + }, + { + "id":"3230323131313039303030303A323032313131303930313030", + "start":"2021-11-09T00:00:00Z", + "end":"2021-11-09T01:00:00Z" + }, + { + "id":"3230323131313039323230303A323032313131303932323330", + "start":"2021-11-09T22:00:00Z", + "end":"2021-11-09T22:30:00Z" + }, + { + "id":"3230323131313039323233303A323032313131303932333030", + "start":"2021-11-09T22:30:00Z", + "end":"2021-11-09T23:00:00Z" + }, + { + "id":"3230323131313039323330303A323032313131313030313030", + "start":"2021-11-09T23:00:00Z", + "end":"2021-11-10T01:00:00Z" + }, + { + "id":"3230323131313130313530303A323032313131313031353330", + "start":"2021-11-10T15:00:00Z", + "end":"2021-11-10T15:30:00Z" + }, + { + "id":"3230323131313130313533303A323032313131313031363030", + "start":"2021-11-10T15:30:00Z", + "end":"2021-11-10T16:00:00Z" + }, + { + "id":"3230323131313130313630303A323032313131313031363330", + "start":"2021-11-10T16:00:00Z", + "end":"2021-11-10T16:30:00Z" + }, + { + "id":"3230323131313130313633303A323032313131313031373030", + "start":"2021-11-10T16:30:00Z", + "end":"2021-11-10T17:00:00Z" + }, + { + "id":"3230323131313130313730303A323032313131313031373330", + "start":"2021-11-10T17:00:00Z", + "end":"2021-11-10T17:30:00Z" + }, + { + "id":"3230323131313130313733303A323032313131313031383030", + "start":"2021-11-10T17:30:00Z", + "end":"2021-11-10T18:00:00Z" + }, + { + "id":"3230323131313130313830303A323032313131313031383330", + "start":"2021-11-10T18:00:00Z", + "end":"2021-11-10T18:30:00Z" + }, + { + "id":"3230323131313130313833303A323032313131313031393030", + "start":"2021-11-10T18:30:00Z", + "end":"2021-11-10T19:00:00Z" + }, + { + "id":"3230323131313130313930303A323032313131313031393330", + "start":"2021-11-10T19:00:00Z", + "end":"2021-11-10T19:30:00Z" + }, + { + "id":"3230323131313130313933303A323032313131313032303030", + "start":"2021-11-10T19:30:00Z", + "end":"2021-11-10T20:00:00Z" + }, + { + "id":"3230323131313130323030303A323032313131313032303330", + "start":"2021-11-10T20:00:00Z", + "end":"2021-11-10T20:30:00Z" + }, + { + "id":"3230323131313130323033303A323032313131313032313030", + "start":"2021-11-10T20:30:00Z", + "end":"2021-11-10T21:00:00Z" + }, + { + "id":"3230323131313130323130303A323032313131313032313330", + "start":"2021-11-10T21:00:00Z", + "end":"2021-11-10T21:30:00Z" + }, + { + "id":"3230323131313130323133303A323032313131313032323030", + "start":"2021-11-10T21:30:00Z", + "end":"2021-11-10T22:00:00Z" + }, + { + "id":"3230323131313130323230303A323032313131313032323330", + "start":"2021-11-10T22:00:00Z", + "end":"2021-11-10T22:30:00Z" + }, + { + "id":"3230323131313130323233303A323032313131313032333030", + "start":"2021-11-10T22:30:00Z", + "end":"2021-11-10T23:00:00Z" + }, + { + "id":"3230323131313130323330303A323032313131313130313030", + "start":"2021-11-10T23:00:00Z", + "end":"2021-11-11T01:00:00Z" + }, + { + "id":"3230323131313131313530303A323032313131313131353330", + "start":"2021-11-11T15:00:00Z", + "end":"2021-11-11T15:30:00Z" + }, + { + "id":"3230323131313131313533303A323032313131313131363030", + "start":"2021-11-11T15:30:00Z", + "end":"2021-11-11T16:00:00Z" + }, + { + "id":"3230323131313131313630303A323032313131313131363330", + "start":"2021-11-11T16:00:00Z", + "end":"2021-11-11T16:30:00Z" + }, + { + "id":"3230323131313131313633303A323032313131313131373030", + "start":"2021-11-11T16:30:00Z", + "end":"2021-11-11T17:00:00Z" + }, + { + "id":"3230323131313131313730303A323032313131313131373330", + "start":"2021-11-11T17:00:00Z", + "end":"2021-11-11T17:30:00Z" + }, + { + "id":"3230323131313131313733303A323032313131313131383030", + "start":"2021-11-11T17:30:00Z", + "end":"2021-11-11T18:00:00Z" + }, + { + "id":"3230323131313131313830303A323032313131313131383330", + "start":"2021-11-11T18:00:00Z", + "end":"2021-11-11T18:30:00Z" + }, + { + "id":"3230323131313131313833303A323032313131313131393030", + "start":"2021-11-11T18:30:00Z", + "end":"2021-11-11T19:00:00Z" + }, + { + "id":"3230323131313131313930303A323032313131313131393330", + "start":"2021-11-11T19:00:00Z", + "end":"2021-11-11T19:30:00Z" + }, + { + "id":"3230323131313131313933303A323032313131313132303030", + "start":"2021-11-11T19:30:00Z", + "end":"2021-11-11T20:00:00Z" + }, + { + "id":"3230323131313131323030303A323032313131313132303330", + "start":"2021-11-11T20:00:00Z", + "end":"2021-11-11T20:30:00Z" + }, + { + "id":"3230323131313131323033303A323032313131313132313030", + "start":"2021-11-11T20:30:00Z", + "end":"2021-11-11T21:00:00Z" + }, + { + "id":"3230323131313131323130303A323032313131313132313330", + "start":"2021-11-11T21:00:00Z", + "end":"2021-11-11T21:30:00Z" + }, + { + "id":"3230323131313131323133303A323032313131313132323030", + "start":"2021-11-11T21:30:00Z", + "end":"2021-11-11T22:00:00Z" + }, + { + "id":"3230323131313131323230303A323032313131313132323330", + "start":"2021-11-11T22:00:00Z", + "end":"2021-11-11T22:30:00Z" + }, + { + "id":"3230323131313131323233303A323032313131313132333030", + "start":"2021-11-11T22:30:00Z", + "end":"2021-11-11T23:00:00Z" + }, + { + "id":"3230323131313131323330303A323032313131313132333330", + "start":"2021-11-11T23:00:00Z", + "end":"2021-11-11T23:30:00Z" + }, + { + "id":"3230323131313131323333303A323032313131313230303030", + "start":"2021-11-11T23:30:00Z", + "end":"2021-11-12T00:00:00Z" + }, + { + "id":"3230323131313132303030303A323032313131313230313030", + "start":"2021-11-12T00:00:00Z", + "end":"2021-11-12T01:00:00Z" + }, + { + "id":"3230323131313132313530303A323032313131313231353330", + "start":"2021-11-12T15:00:00Z", + "end":"2021-11-12T15:30:00Z" + }, + { + "id":"3230323131313132313533303A323032313131313231363030", + "start":"2021-11-12T15:30:00Z", + "end":"2021-11-12T16:00:00Z" + }, + { + "id":"3230323131313132313630303A323032313131313231363330", + "start":"2021-11-12T16:00:00Z", + "end":"2021-11-12T16:30:00Z" + }, + { + "id":"3230323131313132313633303A323032313131313231373030", + "start":"2021-11-12T16:30:00Z", + "end":"2021-11-12T17:00:00Z" + }, + { + "id":"3230323131313132313730303A323032313131313231373330", + "start":"2021-11-12T17:00:00Z", + "end":"2021-11-12T17:30:00Z" + }, + { + "id":"3230323131313132313733303A323032313131313231383030", + "start":"2021-11-12T17:30:00Z", + "end":"2021-11-12T18:00:00Z" + }, + { + "id":"3230323131313132313830303A323032313131313231383330", + "start":"2021-11-12T18:00:00Z", + "end":"2021-11-12T18:30:00Z" + }, + { + "id":"3230323131313132313833303A323032313131313231393030", + "start":"2021-11-12T18:30:00Z", + "end":"2021-11-12T19:00:00Z" + }, + { + "id":"3230323131313132313930303A323032313131313231393330", + "start":"2021-11-12T19:00:00Z", + "end":"2021-11-12T19:30:00Z" + }, + { + "id":"3230323131313132313933303A323032313131313232303030", + "start":"2021-11-12T19:30:00Z", + "end":"2021-11-12T20:00:00Z" + }, + { + "id":"3230323131313132323030303A323032313131313232303330", + "start":"2021-11-12T20:00:00Z", + "end":"2021-11-12T20:30:00Z" + }, + { + "id":"3230323131313132323033303A323032313131313232313030", + "start":"2021-11-12T20:30:00Z", + "end":"2021-11-12T21:00:00Z" + }, + { + "id":"3230323131313132323130303A323032313131313232313330", + "start":"2021-11-12T21:00:00Z", + "end":"2021-11-12T21:30:00Z" + }, + { + "id":"3230323131313132323133303A323032313131313232323030", + "start":"2021-11-12T21:30:00Z", + "end":"2021-11-12T22:00:00Z" + }, + { + "id":"3230323131313132323230303A323032313131313232323330", + "start":"2021-11-12T22:00:00Z", + "end":"2021-11-12T22:30:00Z" + }, + { + "id":"3230323131313132323233303A323032313131313232333030", + "start":"2021-11-12T22:30:00Z", + "end":"2021-11-12T23:00:00Z" + }, + { + "id":"3230323131313132323330303A323032313131313232333330", + "start":"2021-11-12T23:00:00Z", + "end":"2021-11-12T23:30:00Z" + }, + { + "id":"3230323131313132323333303A323032313131313330303030", + "start":"2021-11-12T23:30:00Z", + "end":"2021-11-13T00:00:00Z" + }, + { + "id":"3230323131313133303030303A323032313131313330313030", + "start":"2021-11-13T00:00:00Z", + "end":"2021-11-13T01:00:00Z" + }, + { + "id":"3230323131313135313530303A323032313131313531353330", + "start":"2021-11-15T15:00:00Z", + "end":"2021-11-15T15:30:00Z" + }, + { + "id":"3230323131313135313533303A323032313131313531363030", + "start":"2021-11-15T15:30:00Z", + "end":"2021-11-15T16:00:00Z" + }, + { + "id":"3230323131313135313630303A323032313131313531363330", + "start":"2021-11-15T16:00:00Z", + "end":"2021-11-15T16:30:00Z" + }, + { + "id":"3230323131313135313633303A323032313131313531373030", + "start":"2021-11-15T16:30:00Z", + "end":"2021-11-15T17:00:00Z" + }, + { + "id":"3230323131313135313730303A323032313131313531373330", + "start":"2021-11-15T17:00:00Z", + "end":"2021-11-15T17:30:00Z" + }, + { + "id":"3230323131313135313733303A323032313131313531383030", + "start":"2021-11-15T17:30:00Z", + "end":"2021-11-15T18:00:00Z" + }, + { + "id":"3230323131313135313830303A323032313131313531383330", + "start":"2021-11-15T18:00:00Z", + "end":"2021-11-15T18:30:00Z" + }, + { + "id":"3230323131313135313833303A323032313131313531393030", + "start":"2021-11-15T18:30:00Z", + "end":"2021-11-15T19:00:00Z" + }, + { + "id":"3230323131313135313930303A323032313131313531393330", + "start":"2021-11-15T19:00:00Z", + "end":"2021-11-15T19:30:00Z" + }, + { + "id":"3230323131313135313933303A323032313131313532303030", + "start":"2021-11-15T19:30:00Z", + "end":"2021-11-15T20:00:00Z" + }, + { + "id":"3230323131313135323030303A323032313131313532303330", + "start":"2021-11-15T20:00:00Z", + "end":"2021-11-15T20:30:00Z" + }, + { + "id":"3230323131313135323033303A323032313131313532313030", + "start":"2021-11-15T20:30:00Z", + "end":"2021-11-15T21:00:00Z" + }, + { + "id":"3230323131313135323130303A323032313131313532313330", + "start":"2021-11-15T21:00:00Z", + "end":"2021-11-15T21:30:00Z" + }, + { + "id":"3230323131313135323133303A323032313131313532323030", + "start":"2021-11-15T21:30:00Z", + "end":"2021-11-15T22:00:00Z" + }, + { + "id":"3230323131313135323230303A323032313131313532323330", + "start":"2021-11-15T22:00:00Z", + "end":"2021-11-15T22:30:00Z" + }, + { + "id":"3230323131313135323233303A323032313131313532333030", + "start":"2021-11-15T22:30:00Z", + "end":"2021-11-15T23:00:00Z" + }, + { + "id":"3230323131313135323330303A323032313131313532333330", + "start":"2021-11-15T23:00:00Z", + "end":"2021-11-15T23:30:00Z" + }, + { + "id":"3230323131313135323333303A323032313131313630303030", + "start":"2021-11-15T23:30:00Z", + "end":"2021-11-16T00:00:00Z" + }, + { + "id":"3230323131313136303030303A323032313131313630313030", + "start":"2021-11-16T00:00:00Z", + "end":"2021-11-16T01:00:00Z" + }, + { + "id":"3230323131313136323230303A323032313131313632323330", + "start":"2021-11-16T22:00:00Z", + "end":"2021-11-16T22:30:00Z" + }, + { + "id":"3230323131313136323233303A323032313131313632333030", + "start":"2021-11-16T22:30:00Z", + "end":"2021-11-16T23:00:00Z" + }, + { + "id":"3230323131313136323330303A323032313131313730313030", + "start":"2021-11-16T23:00:00Z", + "end":"2021-11-17T01:00:00Z" + }, + { + "id":"3230323131313137313530303A323032313131313731353330", + "start":"2021-11-17T15:00:00Z", + "end":"2021-11-17T15:30:00Z" + }, + { + "id":"3230323131313137313533303A323032313131313731363030", + "start":"2021-11-17T15:30:00Z", + "end":"2021-11-17T16:00:00Z" + }, + { + "id":"3230323131313137313630303A323032313131313731363330", + "start":"2021-11-17T16:00:00Z", + "end":"2021-11-17T16:30:00Z" + }, + { + "id":"3230323131313137313633303A323032313131313731373030", + "start":"2021-11-17T16:30:00Z", + "end":"2021-11-17T17:00:00Z" + }, + { + "id":"3230323131313137313730303A323032313131313731373330", + "start":"2021-11-17T17:00:00Z", + "end":"2021-11-17T17:30:00Z" + }, + { + "id":"3230323131313137313733303A323032313131313731383030", + "start":"2021-11-17T17:30:00Z", + "end":"2021-11-17T18:00:00Z" + }, + { + "id":"3230323131313137313830303A323032313131313731383330", + "start":"2021-11-17T18:00:00Z", + "end":"2021-11-17T18:30:00Z" + }, + { + "id":"3230323131313137313833303A323032313131313731393030", + "start":"2021-11-17T18:30:00Z", + "end":"2021-11-17T19:00:00Z" + }, + { + "id":"3230323131313137313930303A323032313131313731393330", + "start":"2021-11-17T19:00:00Z", + "end":"2021-11-17T19:30:00Z" + }, + { + "id":"3230323131313137313933303A323032313131313732303030", + "start":"2021-11-17T19:30:00Z", + "end":"2021-11-17T20:00:00Z" + }, + { + "id":"3230323131313137323030303A323032313131313732303330", + "start":"2021-11-17T20:00:00Z", + "end":"2021-11-17T20:30:00Z" + }, + { + "id":"3230323131313137323033303A323032313131313732313030", + "start":"2021-11-17T20:30:00Z", + "end":"2021-11-17T21:00:00Z" + }, + { + "id":"3230323131313137323130303A323032313131313732313330", + "start":"2021-11-17T21:00:00Z", + "end":"2021-11-17T21:30:00Z" + }, + { + "id":"3230323131313137323133303A323032313131313732323030", + "start":"2021-11-17T21:30:00Z", + "end":"2021-11-17T22:00:00Z" + }, + { + "id":"3230323131313137323230303A323032313131313732323330", + "start":"2021-11-17T22:00:00Z", + "end":"2021-11-17T22:30:00Z" + }, + { + "id":"3230323131313137323233303A323032313131313732333030", + "start":"2021-11-17T22:30:00Z", + "end":"2021-11-17T23:00:00Z" + }, + { + "id":"3230323131313137323330303A323032313131313830313030", + "start":"2021-11-17T23:00:00Z", + "end":"2021-11-18T01:00:00Z" + }, + { + "id":"3230323131313138313530303A323032313131313831353330", + "start":"2021-11-18T15:00:00Z", + "end":"2021-11-18T15:30:00Z" + }, + { + "id":"3230323131313138313533303A323032313131313831363030", + "start":"2021-11-18T15:30:00Z", + "end":"2021-11-18T16:00:00Z" + }, + { + "id":"3230323131313138313630303A323032313131313831363330", + "start":"2021-11-18T16:00:00Z", + "end":"2021-11-18T16:30:00Z" + }, + { + "id":"3230323131313138313633303A323032313131313831373030", + "start":"2021-11-18T16:30:00Z", + "end":"2021-11-18T17:00:00Z" + }, + { + "id":"3230323131313138313730303A323032313131313831373330", + "start":"2021-11-18T17:00:00Z", + "end":"2021-11-18T17:30:00Z" + }, + { + "id":"3230323131313138313733303A323032313131313831383030", + "start":"2021-11-18T17:30:00Z", + "end":"2021-11-18T18:00:00Z" + }, + { + "id":"3230323131313138313830303A323032313131313831383330", + "start":"2021-11-18T18:00:00Z", + "end":"2021-11-18T18:30:00Z" + }, + { + "id":"3230323131313138313833303A323032313131313831393030", + "start":"2021-11-18T18:30:00Z", + "end":"2021-11-18T19:00:00Z" + }, + { + "id":"3230323131313138313930303A323032313131313831393330", + "start":"2021-11-18T19:00:00Z", + "end":"2021-11-18T19:30:00Z" + }, + { + "id":"3230323131313138313933303A323032313131313832303030", + "start":"2021-11-18T19:30:00Z", + "end":"2021-11-18T20:00:00Z" + }, + { + "id":"3230323131313138323030303A323032313131313832303330", + "start":"2021-11-18T20:00:00Z", + "end":"2021-11-18T20:30:00Z" + }, + { + "id":"3230323131313138323033303A323032313131313832313030", + "start":"2021-11-18T20:30:00Z", + "end":"2021-11-18T21:00:00Z" + }, + { + "id":"3230323131313138323130303A323032313131313832313330", + "start":"2021-11-18T21:00:00Z", + "end":"2021-11-18T21:30:00Z" + }, + { + "id":"3230323131313138323133303A323032313131313832323030", + "start":"2021-11-18T21:30:00Z", + "end":"2021-11-18T22:00:00Z" + }, + { + "id":"3230323131313138323230303A323032313131313832323330", + "start":"2021-11-18T22:00:00Z", + "end":"2021-11-18T22:30:00Z" + }, + { + "id":"3230323131313138323233303A323032313131313832333030", + "start":"2021-11-18T22:30:00Z", + "end":"2021-11-18T23:00:00Z" + }, + { + "id":"3230323131313138323330303A323032313131313832333330", + "start":"2021-11-18T23:00:00Z", + "end":"2021-11-18T23:30:00Z" + }, + { + "id":"3230323131313138323333303A323032313131313930303030", + "start":"2021-11-18T23:30:00Z", + "end":"2021-11-19T00:00:00Z" + }, + { + "id":"3230323131313139303030303A323032313131313930313030", + "start":"2021-11-19T00:00:00Z", + "end":"2021-11-19T01:00:00Z" + }, + { + "id":"3230323131313139313530303A323032313131313931353330", + "start":"2021-11-19T15:00:00Z", + "end":"2021-11-19T15:30:00Z" + }, + { + "id":"3230323131313139313533303A323032313131313931363030", + "start":"2021-11-19T15:30:00Z", + "end":"2021-11-19T16:00:00Z" + }, + { + "id":"3230323131313139313630303A323032313131313931363330", + "start":"2021-11-19T16:00:00Z", + "end":"2021-11-19T16:30:00Z" + }, + { + "id":"3230323131313139313633303A323032313131313931373030", + "start":"2021-11-19T16:30:00Z", + "end":"2021-11-19T17:00:00Z" + }, + { + "id":"3230323131313139313730303A323032313131313931373330", + "start":"2021-11-19T17:00:00Z", + "end":"2021-11-19T17:30:00Z" + }, + { + "id":"3230323131313139313733303A323032313131313931383030", + "start":"2021-11-19T17:30:00Z", + "end":"2021-11-19T18:00:00Z" + }, + { + "id":"3230323131313139313830303A323032313131313931383330", + "start":"2021-11-19T18:00:00Z", + "end":"2021-11-19T18:30:00Z" + }, + { + "id":"3230323131313139313833303A323032313131313931393030", + "start":"2021-11-19T18:30:00Z", + "end":"2021-11-19T19:00:00Z" + }, + { + "id":"3230323131313139313930303A323032313131313931393330", + "start":"2021-11-19T19:00:00Z", + "end":"2021-11-19T19:30:00Z" + }, + { + "id":"3230323131313139313933303A323032313131313932303030", + "start":"2021-11-19T19:30:00Z", + "end":"2021-11-19T20:00:00Z" + }, + { + "id":"3230323131313139323030303A323032313131313932303330", + "start":"2021-11-19T20:00:00Z", + "end":"2021-11-19T20:30:00Z" + }, + { + "id":"3230323131313139323033303A323032313131313932313030", + "start":"2021-11-19T20:30:00Z", + "end":"2021-11-19T21:00:00Z" + }, + { + "id":"3230323131313139323130303A323032313131313932313330", + "start":"2021-11-19T21:00:00Z", + "end":"2021-11-19T21:30:00Z" + }, + { + "id":"3230323131313139323133303A323032313131313932323030", + "start":"2021-11-19T21:30:00Z", + "end":"2021-11-19T22:00:00Z" + }, + { + "id":"3230323131313139323230303A323032313131313932323330", + "start":"2021-11-19T22:00:00Z", + "end":"2021-11-19T22:30:00Z" + }, + { + "id":"3230323131313139323233303A323032313131313932333030", + "start":"2021-11-19T22:30:00Z", + "end":"2021-11-19T23:00:00Z" + }, + { + "id":"3230323131313139323330303A323032313131313932333330", + "start":"2021-11-19T23:00:00Z", + "end":"2021-11-19T23:30:00Z" + }, + { + "id":"3230323131313139323333303A323032313131323030303030", + "start":"2021-11-19T23:30:00Z", + "end":"2021-11-20T00:00:00Z" + }, + { + "id":"3230323131313230303030303A323032313131323030313030", + "start":"2021-11-20T00:00:00Z", + "end":"2021-11-20T01:00:00Z" + }, + { + "id":"3230323131313232313530303A323032313131323231353330", + "start":"2021-11-22T15:00:00Z", + "end":"2021-11-22T15:30:00Z" + }, + { + "id":"3230323131313232313533303A323032313131323231363030", + "start":"2021-11-22T15:30:00Z", + "end":"2021-11-22T16:00:00Z" + }, + { + "id":"3230323131313232313630303A323032313131323231363330", + "start":"2021-11-22T16:00:00Z", + "end":"2021-11-22T16:30:00Z" + }, + { + "id":"3230323131313232313633303A323032313131323231373030", + "start":"2021-11-22T16:30:00Z", + "end":"2021-11-22T17:00:00Z" + }, + { + "id":"3230323131313232313730303A323032313131323231373330", + "start":"2021-11-22T17:00:00Z", + "end":"2021-11-22T17:30:00Z" + }, + { + "id":"3230323131313232313733303A323032313131323231383030", + "start":"2021-11-22T17:30:00Z", + "end":"2021-11-22T18:00:00Z" + }, + { + "id":"3230323131313232313830303A323032313131323231383330", + "start":"2021-11-22T18:00:00Z", + "end":"2021-11-22T18:30:00Z" + }, + { + "id":"3230323131313232313833303A323032313131323231393030", + "start":"2021-11-22T18:30:00Z", + "end":"2021-11-22T19:00:00Z" + }, + { + "id":"3230323131313232313930303A323032313131323231393330", + "start":"2021-11-22T19:00:00Z", + "end":"2021-11-22T19:30:00Z" + }, + { + "id":"3230323131313232313933303A323032313131323232303030", + "start":"2021-11-22T19:30:00Z", + "end":"2021-11-22T20:00:00Z" + }, + { + "id":"3230323131313232323030303A323032313131323232303330", + "start":"2021-11-22T20:00:00Z", + "end":"2021-11-22T20:30:00Z" + }, + { + "id":"3230323131313232323033303A323032313131323232313030", + "start":"2021-11-22T20:30:00Z", + "end":"2021-11-22T21:00:00Z" + }, + { + "id":"3230323131313232323130303A323032313131323232313330", + "start":"2021-11-22T21:00:00Z", + "end":"2021-11-22T21:30:00Z" + }, + { + "id":"3230323131313232323133303A323032313131323232323030", + "start":"2021-11-22T21:30:00Z", + "end":"2021-11-22T22:00:00Z" + }, + { + "id":"3230323131313232323230303A323032313131323232323330", + "start":"2021-11-22T22:00:00Z", + "end":"2021-11-22T22:30:00Z" + }, + { + "id":"3230323131313232323233303A323032313131323232333030", + "start":"2021-11-22T22:30:00Z", + "end":"2021-11-22T23:00:00Z" + }, + { + "id":"3230323131313232323330303A323032313131323232333330", + "start":"2021-11-22T23:00:00Z", + "end":"2021-11-22T23:30:00Z" + }, + { + "id":"3230323131313232323333303A323032313131323330303030", + "start":"2021-11-22T23:30:00Z", + "end":"2021-11-23T00:00:00Z" + }, + { + "id":"3230323131313233303030303A323032313131323330313030", + "start":"2021-11-23T00:00:00Z", + "end":"2021-11-23T01:00:00Z" + }, + { + "id":"3230323131313233323230303A323032313131323332323330", + "start":"2021-11-23T22:00:00Z", + "end":"2021-11-23T22:30:00Z" + }, + { + "id":"3230323131313233323233303A323032313131323332333030", + "start":"2021-11-23T22:30:00Z", + "end":"2021-11-23T23:00:00Z" + }, + { + "id":"3230323131313233323330303A323032313131323430313030", + "start":"2021-11-23T23:00:00Z", + "end":"2021-11-24T01:00:00Z" + }, + { + "id":"3230323131313234313530303A323032313131323431353330", + "start":"2021-11-24T15:00:00Z", + "end":"2021-11-24T15:30:00Z" + }, + { + "id":"3230323131313234313533303A323032313131323431363030", + "start":"2021-11-24T15:30:00Z", + "end":"2021-11-24T16:00:00Z" + }, + { + "id":"3230323131313234313630303A323032313131323431363330", + "start":"2021-11-24T16:00:00Z", + "end":"2021-11-24T16:30:00Z" + }, + { + "id":"3230323131313234313633303A323032313131323431373030", + "start":"2021-11-24T16:30:00Z", + "end":"2021-11-24T17:00:00Z" + }, + { + "id":"3230323131313234313730303A323032313131323431373330", + "start":"2021-11-24T17:00:00Z", + "end":"2021-11-24T17:30:00Z" + }, + { + "id":"3230323131313234313733303A323032313131323431383030", + "start":"2021-11-24T17:30:00Z", + "end":"2021-11-24T18:00:00Z" + }, + { + "id":"3230323131313234313830303A323032313131323431383330", + "start":"2021-11-24T18:00:00Z", + "end":"2021-11-24T18:30:00Z" + }, + { + "id":"3230323131313234313833303A323032313131323431393030", + "start":"2021-11-24T18:30:00Z", + "end":"2021-11-24T19:00:00Z" + }, + { + "id":"3230323131313234313930303A323032313131323431393330", + "start":"2021-11-24T19:00:00Z", + "end":"2021-11-24T19:30:00Z" + }, + { + "id":"3230323131313234313933303A323032313131323432303030", + "start":"2021-11-24T19:30:00Z", + "end":"2021-11-24T20:00:00Z" + }, + { + "id":"3230323131313234323030303A323032313131323432303330", + "start":"2021-11-24T20:00:00Z", + "end":"2021-11-24T20:30:00Z" + }, + { + "id":"3230323131313234323033303A323032313131323432313030", + "start":"2021-11-24T20:30:00Z", + "end":"2021-11-24T21:00:00Z" + }, + { + "id":"3230323131313234323130303A323032313131323432313330", + "start":"2021-11-24T21:00:00Z", + "end":"2021-11-24T21:30:00Z" + }, + { + "id":"3230323131313234323133303A323032313131323432323030", + "start":"2021-11-24T21:30:00Z", + "end":"2021-11-24T22:00:00Z" + }, + { + "id":"3230323131313234323230303A323032313131323432323330", + "start":"2021-11-24T22:00:00Z", + "end":"2021-11-24T22:30:00Z" + }, + { + "id":"3230323131313234323233303A323032313131323432333030", + "start":"2021-11-24T22:30:00Z", + "end":"2021-11-24T23:00:00Z" + }, + { + "id":"3230323131313234323330303A323032313131323530313030", + "start":"2021-11-24T23:00:00Z", + "end":"2021-11-25T01:00:00Z" + }, + { + "id":"3230323131313235313530303A323032313131323531353330", + "start":"2021-11-25T15:00:00Z", + "end":"2021-11-25T15:30:00Z" + }, + { + "id":"3230323131313235313533303A323032313131323531363030", + "start":"2021-11-25T15:30:00Z", + "end":"2021-11-25T16:00:00Z" + }, + { + "id":"3230323131313235313630303A323032313131323531363330", + "start":"2021-11-25T16:00:00Z", + "end":"2021-11-25T16:30:00Z" + }, + { + "id":"3230323131313235313633303A323032313131323531373030", + "start":"2021-11-25T16:30:00Z", + "end":"2021-11-25T17:00:00Z" + }, + { + "id":"3230323131313235313730303A323032313131323531373330", + "start":"2021-11-25T17:00:00Z", + "end":"2021-11-25T17:30:00Z" + }, + { + "id":"3230323131313235313733303A323032313131323531383030", + "start":"2021-11-25T17:30:00Z", + "end":"2021-11-25T18:00:00Z" + }, + { + "id":"3230323131313235313830303A323032313131323531383330", + "start":"2021-11-25T18:00:00Z", + "end":"2021-11-25T18:30:00Z" + }, + { + "id":"3230323131313235313833303A323032313131323531393030", + "start":"2021-11-25T18:30:00Z", + "end":"2021-11-25T19:00:00Z" + }, + { + "id":"3230323131313235313930303A323032313131323531393330", + "start":"2021-11-25T19:00:00Z", + "end":"2021-11-25T19:30:00Z" + }, + { + "id":"3230323131313235313933303A323032313131323532303030", + "start":"2021-11-25T19:30:00Z", + "end":"2021-11-25T20:00:00Z" + }, + { + "id":"3230323131313235323030303A323032313131323532303330", + "start":"2021-11-25T20:00:00Z", + "end":"2021-11-25T20:30:00Z" + }, + { + "id":"3230323131313235323033303A323032313131323532313030", + "start":"2021-11-25T20:30:00Z", + "end":"2021-11-25T21:00:00Z" + }, + { + "id":"3230323131313235323130303A323032313131323532313330", + "start":"2021-11-25T21:00:00Z", + "end":"2021-11-25T21:30:00Z" + }, + { + "id":"3230323131313235323133303A323032313131323532323030", + "start":"2021-11-25T21:30:00Z", + "end":"2021-11-25T22:00:00Z" + }, + { + "id":"3230323131313235323230303A323032313131323532323330", + "start":"2021-11-25T22:00:00Z", + "end":"2021-11-25T22:30:00Z" + }, + { + "id":"3230323131313235323233303A323032313131323532333030", + "start":"2021-11-25T22:30:00Z", + "end":"2021-11-25T23:00:00Z" + }, + { + "id":"3230323131313235323330303A323032313131323532333330", + "start":"2021-11-25T23:00:00Z", + "end":"2021-11-25T23:30:00Z" + }, + { + "id":"3230323131313235323333303A323032313131323630303030", + "start":"2021-11-25T23:30:00Z", + "end":"2021-11-26T00:00:00Z" + }, + { + "id":"3230323131313236303030303A323032313131323630313030", + "start":"2021-11-26T00:00:00Z", + "end":"2021-11-26T01:00:00Z" + }, + { + "id":"3230323131313236313530303A323032313131323631353330", + "start":"2021-11-26T15:00:00Z", + "end":"2021-11-26T15:30:00Z" + }, + { + "id":"3230323131313236313533303A323032313131323631363030", + "start":"2021-11-26T15:30:00Z", + "end":"2021-11-26T16:00:00Z" + }, + { + "id":"3230323131313236313630303A323032313131323631363330", + "start":"2021-11-26T16:00:00Z", + "end":"2021-11-26T16:30:00Z" + }, + { + "id":"3230323131313236313633303A323032313131323631373030", + "start":"2021-11-26T16:30:00Z", + "end":"2021-11-26T17:00:00Z" + }, + { + "id":"3230323131313236313730303A323032313131323631373330", + "start":"2021-11-26T17:00:00Z", + "end":"2021-11-26T17:30:00Z" + }, + { + "id":"3230323131313236313733303A323032313131323631383030", + "start":"2021-11-26T17:30:00Z", + "end":"2021-11-26T18:00:00Z" + }, + { + "id":"3230323131313236313830303A323032313131323631383330", + "start":"2021-11-26T18:00:00Z", + "end":"2021-11-26T18:30:00Z" + }, + { + "id":"3230323131313236313833303A323032313131323631393030", + "start":"2021-11-26T18:30:00Z", + "end":"2021-11-26T19:00:00Z" + }, + { + "id":"3230323131313236313930303A323032313131323631393330", + "start":"2021-11-26T19:00:00Z", + "end":"2021-11-26T19:30:00Z" + }, + { + "id":"3230323131313236313933303A323032313131323632303030", + "start":"2021-11-26T19:30:00Z", + "end":"2021-11-26T20:00:00Z" + }, + { + "id":"3230323131313236323030303A323032313131323632303330", + "start":"2021-11-26T20:00:00Z", + "end":"2021-11-26T20:30:00Z" + }, + { + "id":"3230323131313236323033303A323032313131323632313030", + "start":"2021-11-26T20:30:00Z", + "end":"2021-11-26T21:00:00Z" + }, + { + "id":"3230323131313236323130303A323032313131323632313330", + "start":"2021-11-26T21:00:00Z", + "end":"2021-11-26T21:30:00Z" + }, + { + "id":"3230323131313236323133303A323032313131323632323030", + "start":"2021-11-26T21:30:00Z", + "end":"2021-11-26T22:00:00Z" + }, + { + "id":"3230323131313236323230303A323032313131323632323330", + "start":"2021-11-26T22:00:00Z", + "end":"2021-11-26T22:30:00Z" + }, + { + "id":"3230323131313236323233303A323032313131323632333030", + "start":"2021-11-26T22:30:00Z", + "end":"2021-11-26T23:00:00Z" + }, + { + "id":"3230323131313236323330303A323032313131323632333330", + "start":"2021-11-26T23:00:00Z", + "end":"2021-11-26T23:30:00Z" + }, + { + "id":"3230323131313236323333303A323032313131323730303030", + "start":"2021-11-26T23:30:00Z", + "end":"2021-11-27T00:00:00Z" + }, + { + "id":"3230323131313237303030303A323032313131323730313030", + "start":"2021-11-27T00:00:00Z", + "end":"2021-11-27T01:00:00Z" + }, + { + "id":"3230323131313239313530303A323032313131323931353330", + "start":"2021-11-29T15:00:00Z", + "end":"2021-11-29T15:30:00Z" + }, + { + "id":"3230323131313239313533303A323032313131323931363030", + "start":"2021-11-29T15:30:00Z", + "end":"2021-11-29T16:00:00Z" + }, + { + "id":"3230323131313239313630303A323032313131323931363330", + "start":"2021-11-29T16:00:00Z", + "end":"2021-11-29T16:30:00Z" + }, + { + "id":"3230323131313239313633303A323032313131323931373030", + "start":"2021-11-29T16:30:00Z", + "end":"2021-11-29T17:00:00Z" + }, + { + "id":"3230323131313239313730303A323032313131323931373330", + "start":"2021-11-29T17:00:00Z", + "end":"2021-11-29T17:30:00Z" + }, + { + "id":"3230323131313239313733303A323032313131323931383030", + "start":"2021-11-29T17:30:00Z", + "end":"2021-11-29T18:00:00Z" + }, + { + "id":"3230323131313239313830303A323032313131323931383330", + "start":"2021-11-29T18:00:00Z", + "end":"2021-11-29T18:30:00Z" + }, + { + "id":"3230323131313239313833303A323032313131323931393030", + "start":"2021-11-29T18:30:00Z", + "end":"2021-11-29T19:00:00Z" + }, + { + "id":"3230323131313239313930303A323032313131323931393330", + "start":"2021-11-29T19:00:00Z", + "end":"2021-11-29T19:30:00Z" + }, + { + "id":"3230323131313239313933303A323032313131323932303030", + "start":"2021-11-29T19:30:00Z", + "end":"2021-11-29T20:00:00Z" + }, + { + "id":"3230323131313239323030303A323032313131323932303330", + "start":"2021-11-29T20:00:00Z", + "end":"2021-11-29T20:30:00Z" + }, + { + "id":"3230323131313239323033303A323032313131323932313030", + "start":"2021-11-29T20:30:00Z", + "end":"2021-11-29T21:00:00Z" + }, + { + "id":"3230323131313239323130303A323032313131323932313330", + "start":"2021-11-29T21:00:00Z", + "end":"2021-11-29T21:30:00Z" + }, + { + "id":"3230323131313239323133303A323032313131323932323030", + "start":"2021-11-29T21:30:00Z", + "end":"2021-11-29T22:00:00Z" + }, + { + "id":"3230323131313239323230303A323032313131323932323330", + "start":"2021-11-29T22:00:00Z", + "end":"2021-11-29T22:30:00Z" + }, + { + "id":"3230323131313239323233303A323032313131323932333030", + "start":"2021-11-29T22:30:00Z", + "end":"2021-11-29T23:00:00Z" + }, + { + "id":"3230323131313239323330303A323032313131323932333330", + "start":"2021-11-29T23:00:00Z", + "end":"2021-11-29T23:30:00Z" + }, + { + "id":"3230323131313239323333303A323032313131333030303030", + "start":"2021-11-29T23:30:00Z", + "end":"2021-11-30T00:00:00Z" + }, + { + "id":"3230323131313330303030303A323032313131333030313030", + "start":"2021-11-30T00:00:00Z", + "end":"2021-11-30T01:00:00Z" + }, + { + "id":"3230323131313330323230303A323032313131333032323330", + "start":"2021-11-30T22:00:00Z", + "end":"2021-11-30T22:30:00Z" + }, + { + "id":"3230323131313330323233303A323032313131333032333030", + "start":"2021-11-30T22:30:00Z", + "end":"2021-11-30T23:00:00Z" + }, + { + "id":"3230323131313330323330303A323032313132303130313030", + "start":"2021-11-30T23:00:00Z", + "end":"2021-12-01T01:00:00Z" + }, + { + "id":"3230323131323031313530303A323032313132303131353330", + "start":"2021-12-01T15:00:00Z", + "end":"2021-12-01T15:30:00Z" + }, + { + "id":"3230323131323031313533303A323032313132303131363030", + "start":"2021-12-01T15:30:00Z", + "end":"2021-12-01T16:00:00Z" + }, + { + "id":"3230323131323031313630303A323032313132303131363330", + "start":"2021-12-01T16:00:00Z", + "end":"2021-12-01T16:30:00Z" + }, + { + "id":"3230323131323031313633303A323032313132303131373030", + "start":"2021-12-01T16:30:00Z", + "end":"2021-12-01T17:00:00Z" + }, + { + "id":"3230323131323031313730303A323032313132303131373330", + "start":"2021-12-01T17:00:00Z", + "end":"2021-12-01T17:30:00Z" + }, + { + "id":"3230323131323031313733303A323032313132303131383030", + "start":"2021-12-01T17:30:00Z", + "end":"2021-12-01T18:00:00Z" + }, + { + "id":"3230323131323031313830303A323032313132303131383330", + "start":"2021-12-01T18:00:00Z", + "end":"2021-12-01T18:30:00Z" + }, + { + "id":"3230323131323031313833303A323032313132303131393030", + "start":"2021-12-01T18:30:00Z", + "end":"2021-12-01T19:00:00Z" + }, + { + "id":"3230323131323031313930303A323032313132303131393330", + "start":"2021-12-01T19:00:00Z", + "end":"2021-12-01T19:30:00Z" + }, + { + "id":"3230323131323031313933303A323032313132303132303030", + "start":"2021-12-01T19:30:00Z", + "end":"2021-12-01T20:00:00Z" + }, + { + "id":"3230323131323031323030303A323032313132303132303330", + "start":"2021-12-01T20:00:00Z", + "end":"2021-12-01T20:30:00Z" + }, + { + "id":"3230323131323031323033303A323032313132303132313030", + "start":"2021-12-01T20:30:00Z", + "end":"2021-12-01T21:00:00Z" + }, + { + "id":"3230323131323031323130303A323032313132303132313330", + "start":"2021-12-01T21:00:00Z", + "end":"2021-12-01T21:30:00Z" + }, + { + "id":"3230323131323031323133303A323032313132303132323030", + "start":"2021-12-01T21:30:00Z", + "end":"2021-12-01T22:00:00Z" + }, + { + "id":"3230323131323031323230303A323032313132303132323330", + "start":"2021-12-01T22:00:00Z", + "end":"2021-12-01T22:30:00Z" + }, + { + "id":"3230323131323031323233303A323032313132303132333030", + "start":"2021-12-01T22:30:00Z", + "end":"2021-12-01T23:00:00Z" + }, + { + "id":"3230323131323031323330303A323032313132303230313030", + "start":"2021-12-01T23:00:00Z", + "end":"2021-12-02T01:00:00Z" + }, + { + "id":"3230323131323032313530303A323032313132303231353330", + "start":"2021-12-02T15:00:00Z", + "end":"2021-12-02T15:30:00Z" + }, + { + "id":"3230323131323032313533303A323032313132303231363030", + "start":"2021-12-02T15:30:00Z", + "end":"2021-12-02T16:00:00Z" + }, + { + "id":"3230323131323032313630303A323032313132303231363330", + "start":"2021-12-02T16:00:00Z", + "end":"2021-12-02T16:30:00Z" + }, + { + "id":"3230323131323032313633303A323032313132303231373030", + "start":"2021-12-02T16:30:00Z", + "end":"2021-12-02T17:00:00Z" + }, + { + "id":"3230323131323032313730303A323032313132303231373330", + "start":"2021-12-02T17:00:00Z", + "end":"2021-12-02T17:30:00Z" + }, + { + "id":"3230323131323032313733303A323032313132303231383030", + "start":"2021-12-02T17:30:00Z", + "end":"2021-12-02T18:00:00Z" + }, + { + "id":"3230323131323032313830303A323032313132303231383330", + "start":"2021-12-02T18:00:00Z", + "end":"2021-12-02T18:30:00Z" + }, + { + "id":"3230323131323032313833303A323032313132303231393030", + "start":"2021-12-02T18:30:00Z", + "end":"2021-12-02T19:00:00Z" + }, + { + "id":"3230323131323032313930303A323032313132303231393330", + "start":"2021-12-02T19:00:00Z", + "end":"2021-12-02T19:30:00Z" + }, + { + "id":"3230323131323032313933303A323032313132303232303030", + "start":"2021-12-02T19:30:00Z", + "end":"2021-12-02T20:00:00Z" + }, + { + "id":"3230323131323032323030303A323032313132303232303330", + "start":"2021-12-02T20:00:00Z", + "end":"2021-12-02T20:30:00Z" + }, + { + "id":"3230323131323032323033303A323032313132303232313030", + "start":"2021-12-02T20:30:00Z", + "end":"2021-12-02T21:00:00Z" + }, + { + "id":"3230323131323032323130303A323032313132303232313330", + "start":"2021-12-02T21:00:00Z", + "end":"2021-12-02T21:30:00Z" + }, + { + "id":"3230323131323032323133303A323032313132303232323030", + "start":"2021-12-02T21:30:00Z", + "end":"2021-12-02T22:00:00Z" + }, + { + "id":"3230323131323032323230303A323032313132303232323330", + "start":"2021-12-02T22:00:00Z", + "end":"2021-12-02T22:30:00Z" + }, + { + "id":"3230323131323032323233303A323032313132303232333030", + "start":"2021-12-02T22:30:00Z", + "end":"2021-12-02T23:00:00Z" + }, + { + "id":"3230323131323032323330303A323032313132303232333330", + "start":"2021-12-02T23:00:00Z", + "end":"2021-12-02T23:30:00Z" + }, + { + "id":"3230323131323032323333303A323032313132303330303030", + "start":"2021-12-02T23:30:00Z", + "end":"2021-12-03T00:00:00Z" + }, + { + "id":"3230323131323033303030303A323032313132303330313030", + "start":"2021-12-03T00:00:00Z", + "end":"2021-12-03T01:00:00Z" + }, + { + "id":"3230323131323033313530303A323032313132303331353330", + "start":"2021-12-03T15:00:00Z", + "end":"2021-12-03T15:30:00Z" + }, + { + "id":"3230323131323033313533303A323032313132303331363030", + "start":"2021-12-03T15:30:00Z", + "end":"2021-12-03T16:00:00Z" + }, + { + "id":"3230323131323033313630303A323032313132303331363330", + "start":"2021-12-03T16:00:00Z", + "end":"2021-12-03T16:30:00Z" + }, + { + "id":"3230323131323033313633303A323032313132303331373030", + "start":"2021-12-03T16:30:00Z", + "end":"2021-12-03T17:00:00Z" + }, + { + "id":"3230323131323033313730303A323032313132303331373330", + "start":"2021-12-03T17:00:00Z", + "end":"2021-12-03T17:30:00Z" + }, + { + "id":"3230323131323033313733303A323032313132303331383030", + "start":"2021-12-03T17:30:00Z", + "end":"2021-12-03T18:00:00Z" + }, + { + "id":"3230323131323033313830303A323032313132303331383330", + "start":"2021-12-03T18:00:00Z", + "end":"2021-12-03T18:30:00Z" + }, + { + "id":"3230323131323033313833303A323032313132303331393030", + "start":"2021-12-03T18:30:00Z", + "end":"2021-12-03T19:00:00Z" + }, + { + "id":"3230323131323033313930303A323032313132303331393330", + "start":"2021-12-03T19:00:00Z", + "end":"2021-12-03T19:30:00Z" + }, + { + "id":"3230323131323033313933303A323032313132303332303030", + "start":"2021-12-03T19:30:00Z", + "end":"2021-12-03T20:00:00Z" + }, + { + "id":"3230323131323033323030303A323032313132303332303330", + "start":"2021-12-03T20:00:00Z", + "end":"2021-12-03T20:30:00Z" + }, + { + "id":"3230323131323033323033303A323032313132303332313030", + "start":"2021-12-03T20:30:00Z", + "end":"2021-12-03T21:00:00Z" + }, + { + "id":"3230323131323033323130303A323032313132303332313330", + "start":"2021-12-03T21:00:00Z", + "end":"2021-12-03T21:30:00Z" + }, + { + "id":"3230323131323033323133303A323032313132303332323030", + "start":"2021-12-03T21:30:00Z", + "end":"2021-12-03T22:00:00Z" + }, + { + "id":"3230323131323033323230303A323032313132303332323330", + "start":"2021-12-03T22:00:00Z", + "end":"2021-12-03T22:30:00Z" + }, + { + "id":"3230323131323033323233303A323032313132303332333030", + "start":"2021-12-03T22:30:00Z", + "end":"2021-12-03T23:00:00Z" + }, + { + "id":"3230323131323033323330303A323032313132303332333330", + "start":"2021-12-03T23:00:00Z", + "end":"2021-12-03T23:30:00Z" + }, + { + "id":"3230323131323033323333303A323032313132303430303030", + "start":"2021-12-03T23:30:00Z", + "end":"2021-12-04T00:00:00Z" + }, + { + "id":"3230323131323034303030303A323032313132303430313030", + "start":"2021-12-04T00:00:00Z", + "end":"2021-12-04T01:00:00Z" + }, + { + "id":"3230323131323036313530303A323032313132303631353330", + "start":"2021-12-06T15:00:00Z", + "end":"2021-12-06T15:30:00Z" + }, + { + "id":"3230323131323036313533303A323032313132303631363030", + "start":"2021-12-06T15:30:00Z", + "end":"2021-12-06T16:00:00Z" + }, + { + "id":"3230323131323036313630303A323032313132303631363330", + "start":"2021-12-06T16:00:00Z", + "end":"2021-12-06T16:30:00Z" + }, + { + "id":"3230323131323036313633303A323032313132303631373030", + "start":"2021-12-06T16:30:00Z", + "end":"2021-12-06T17:00:00Z" + }, + { + "id":"3230323131323036313730303A323032313132303631373330", + "start":"2021-12-06T17:00:00Z", + "end":"2021-12-06T17:30:00Z" + }, + { + "id":"3230323131323036313733303A323032313132303631383030", + "start":"2021-12-06T17:30:00Z", + "end":"2021-12-06T18:00:00Z" + }, + { + "id":"3230323131323036313830303A323032313132303631383330", + "start":"2021-12-06T18:00:00Z", + "end":"2021-12-06T18:30:00Z" + }, + { + "id":"3230323131323036313833303A323032313132303631393030", + "start":"2021-12-06T18:30:00Z", + "end":"2021-12-06T19:00:00Z" + }, + { + "id":"3230323131323036313930303A323032313132303631393330", + "start":"2021-12-06T19:00:00Z", + "end":"2021-12-06T19:30:00Z" + }, + { + "id":"3230323131323036313933303A323032313132303632303030", + "start":"2021-12-06T19:30:00Z", + "end":"2021-12-06T20:00:00Z" + }, + { + "id":"3230323131323036323030303A323032313132303632303330", + "start":"2021-12-06T20:00:00Z", + "end":"2021-12-06T20:30:00Z" + }, + { + "id":"3230323131323036323033303A323032313132303632313030", + "start":"2021-12-06T20:30:00Z", + "end":"2021-12-06T21:00:00Z" + }, + { + "id":"3230323131323036323130303A323032313132303632313330", + "start":"2021-12-06T21:00:00Z", + "end":"2021-12-06T21:30:00Z" + }, + { + "id":"3230323131323036323133303A323032313132303632323030", + "start":"2021-12-06T21:30:00Z", + "end":"2021-12-06T22:00:00Z" + }, + { + "id":"3230323131323036323230303A323032313132303632323330", + "start":"2021-12-06T22:00:00Z", + "end":"2021-12-06T22:30:00Z" + }, + { + "id":"3230323131323036323233303A323032313132303632333030", + "start":"2021-12-06T22:30:00Z", + "end":"2021-12-06T23:00:00Z" + }, + { + "id":"3230323131323036323330303A323032313132303632333330", + "start":"2021-12-06T23:00:00Z", + "end":"2021-12-06T23:30:00Z" + }, + { + "id":"3230323131323036323333303A323032313132303730303030", + "start":"2021-12-06T23:30:00Z", + "end":"2021-12-07T00:00:00Z" + }, + { + "id":"3230323131323037303030303A323032313132303730313030", + "start":"2021-12-07T00:00:00Z", + "end":"2021-12-07T01:00:00Z" + }, + { + "id":"3230323131323037323230303A323032313132303732323330", + "start":"2021-12-07T22:00:00Z", + "end":"2021-12-07T22:30:00Z" + }, + { + "id":"3230323131323037323233303A323032313132303732333030", + "start":"2021-12-07T22:30:00Z", + "end":"2021-12-07T23:00:00Z" + }, + { + "id":"3230323131323037323330303A323032313132303830313030", + "start":"2021-12-07T23:00:00Z", + "end":"2021-12-08T01:00:00Z" + }, + { + "id":"3230323131323038313530303A323032313132303831353330", + "start":"2021-12-08T15:00:00Z", + "end":"2021-12-08T15:30:00Z" + }, + { + "id":"3230323131323038313533303A323032313132303831363030", + "start":"2021-12-08T15:30:00Z", + "end":"2021-12-08T16:00:00Z" + }, + { + "id":"3230323131323038313630303A323032313132303831363330", + "start":"2021-12-08T16:00:00Z", + "end":"2021-12-08T16:30:00Z" + }, + { + "id":"3230323131323038313633303A323032313132303831373030", + "start":"2021-12-08T16:30:00Z", + "end":"2021-12-08T17:00:00Z" + }, + { + "id":"3230323131323038313730303A323032313132303831373330", + "start":"2021-12-08T17:00:00Z", + "end":"2021-12-08T17:30:00Z" + }, + { + "id":"3230323131323038313733303A323032313132303831383030", + "start":"2021-12-08T17:30:00Z", + "end":"2021-12-08T18:00:00Z" + }, + { + "id":"3230323131323038313830303A323032313132303831383330", + "start":"2021-12-08T18:00:00Z", + "end":"2021-12-08T18:30:00Z" + }, + { + "id":"3230323131323038313833303A323032313132303831393030", + "start":"2021-12-08T18:30:00Z", + "end":"2021-12-08T19:00:00Z" + }, + { + "id":"3230323131323038313930303A323032313132303831393330", + "start":"2021-12-08T19:00:00Z", + "end":"2021-12-08T19:30:00Z" + }, + { + "id":"3230323131323038313933303A323032313132303832303030", + "start":"2021-12-08T19:30:00Z", + "end":"2021-12-08T20:00:00Z" + }, + { + "id":"3230323131323038323030303A323032313132303832303330", + "start":"2021-12-08T20:00:00Z", + "end":"2021-12-08T20:30:00Z" + }, + { + "id":"3230323131323038323033303A323032313132303832313030", + "start":"2021-12-08T20:30:00Z", + "end":"2021-12-08T21:00:00Z" + }, + { + "id":"3230323131323038323130303A323032313132303832313330", + "start":"2021-12-08T21:00:00Z", + "end":"2021-12-08T21:30:00Z" + }, + { + "id":"3230323131323038323133303A323032313132303832323030", + "start":"2021-12-08T21:30:00Z", + "end":"2021-12-08T22:00:00Z" + }, + { + "id":"3230323131323038323230303A323032313132303832323330", + "start":"2021-12-08T22:00:00Z", + "end":"2021-12-08T22:30:00Z" + }, + { + "id":"3230323131323038323233303A323032313132303832333030", + "start":"2021-12-08T22:30:00Z", + "end":"2021-12-08T23:00:00Z" + }, + { + "id":"3230323131323038323330303A323032313132303930313030", + "start":"2021-12-08T23:00:00Z", + "end":"2021-12-09T01:00:00Z" + }, + { + "id":"3230323131323039313530303A323032313132303931353330", + "start":"2021-12-09T15:00:00Z", + "end":"2021-12-09T15:30:00Z" + }, + { + "id":"3230323131323039313533303A323032313132303931363030", + "start":"2021-12-09T15:30:00Z", + "end":"2021-12-09T16:00:00Z" + }, + { + "id":"3230323131323039313630303A323032313132303931363330", + "start":"2021-12-09T16:00:00Z", + "end":"2021-12-09T16:30:00Z" + }, + { + "id":"3230323131323039313633303A323032313132303931373030", + "start":"2021-12-09T16:30:00Z", + "end":"2021-12-09T17:00:00Z" + }, + { + "id":"3230323131323039313730303A323032313132303931373330", + "start":"2021-12-09T17:00:00Z", + "end":"2021-12-09T17:30:00Z" + }, + { + "id":"3230323131323039313733303A323032313132303931383030", + "start":"2021-12-09T17:30:00Z", + "end":"2021-12-09T18:00:00Z" + }, + { + "id":"3230323131323039313830303A323032313132303931383330", + "start":"2021-12-09T18:00:00Z", + "end":"2021-12-09T18:30:00Z" + }, + { + "id":"3230323131323039313833303A323032313132303931393030", + "start":"2021-12-09T18:30:00Z", + "end":"2021-12-09T19:00:00Z" + }, + { + "id":"3230323131323039313930303A323032313132303931393330", + "start":"2021-12-09T19:00:00Z", + "end":"2021-12-09T19:30:00Z" + }, + { + "id":"3230323131323039313933303A323032313132303932303030", + "start":"2021-12-09T19:30:00Z", + "end":"2021-12-09T20:00:00Z" + }, + { + "id":"3230323131323039323030303A323032313132303932303330", + "start":"2021-12-09T20:00:00Z", + "end":"2021-12-09T20:30:00Z" + }, + { + "id":"3230323131323039323033303A323032313132303932313030", + "start":"2021-12-09T20:30:00Z", + "end":"2021-12-09T21:00:00Z" + }, + { + "id":"3230323131323039323130303A323032313132303932313330", + "start":"2021-12-09T21:00:00Z", + "end":"2021-12-09T21:30:00Z" + }, + { + "id":"3230323131323039323133303A323032313132303932323030", + "start":"2021-12-09T21:30:00Z", + "end":"2021-12-09T22:00:00Z" + }, + { + "id":"3230323131323039323230303A323032313132303932323330", + "start":"2021-12-09T22:00:00Z", + "end":"2021-12-09T22:30:00Z" + }, + { + "id":"3230323131323039323233303A323032313132303932333030", + "start":"2021-12-09T22:30:00Z", + "end":"2021-12-09T23:00:00Z" + }, + { + "id":"3230323131323039323330303A323032313132303932333330", + "start":"2021-12-09T23:00:00Z", + "end":"2021-12-09T23:30:00Z" + }, + { + "id":"3230323131323039323333303A323032313132313030303030", + "start":"2021-12-09T23:30:00Z", + "end":"2021-12-10T00:00:00Z" + }, + { + "id":"3230323131323130303030303A323032313132313030313030", + "start":"2021-12-10T00:00:00Z", + "end":"2021-12-10T01:00:00Z" + }, + { + "id":"3230323131323130313530303A323032313132313031353330", + "start":"2021-12-10T15:00:00Z", + "end":"2021-12-10T15:30:00Z" + }, + { + "id":"3230323131323130313533303A323032313132313031363030", + "start":"2021-12-10T15:30:00Z", + "end":"2021-12-10T16:00:00Z" + }, + { + "id":"3230323131323130313630303A323032313132313031363330", + "start":"2021-12-10T16:00:00Z", + "end":"2021-12-10T16:30:00Z" + }, + { + "id":"3230323131323130313633303A323032313132313031373030", + "start":"2021-12-10T16:30:00Z", + "end":"2021-12-10T17:00:00Z" + }, + { + "id":"3230323131323130313730303A323032313132313031373330", + "start":"2021-12-10T17:00:00Z", + "end":"2021-12-10T17:30:00Z" + }, + { + "id":"3230323131323130313733303A323032313132313031383030", + "start":"2021-12-10T17:30:00Z", + "end":"2021-12-10T18:00:00Z" + }, + { + "id":"3230323131323130313830303A323032313132313031383330", + "start":"2021-12-10T18:00:00Z", + "end":"2021-12-10T18:30:00Z" + }, + { + "id":"3230323131323130313833303A323032313132313031393030", + "start":"2021-12-10T18:30:00Z", + "end":"2021-12-10T19:00:00Z" + }, + { + "id":"3230323131323130313930303A323032313132313031393330", + "start":"2021-12-10T19:00:00Z", + "end":"2021-12-10T19:30:00Z" + }, + { + "id":"3230323131323130313933303A323032313132313032303030", + "start":"2021-12-10T19:30:00Z", + "end":"2021-12-10T20:00:00Z" + }, + { + "id":"3230323131323130323030303A323032313132313032303330", + "start":"2021-12-10T20:00:00Z", + "end":"2021-12-10T20:30:00Z" + }, + { + "id":"3230323131323130323033303A323032313132313032313030", + "start":"2021-12-10T20:30:00Z", + "end":"2021-12-10T21:00:00Z" + }, + { + "id":"3230323131323130323130303A323032313132313032313330", + "start":"2021-12-10T21:00:00Z", + "end":"2021-12-10T21:30:00Z" + }, + { + "id":"3230323131323130323133303A323032313132313032323030", + "start":"2021-12-10T21:30:00Z", + "end":"2021-12-10T22:00:00Z" + }, + { + "id":"3230323131323130323230303A323032313132313032323330", + "start":"2021-12-10T22:00:00Z", + "end":"2021-12-10T22:30:00Z" + }, + { + "id":"3230323131323130323233303A323032313132313032333030", + "start":"2021-12-10T22:30:00Z", + "end":"2021-12-10T23:00:00Z" + }, + { + "id":"3230323131323130323330303A323032313132313032333330", + "start":"2021-12-10T23:00:00Z", + "end":"2021-12-10T23:30:00Z" + }, + { + "id":"3230323131323130323333303A323032313132313130303030", + "start":"2021-12-10T23:30:00Z", + "end":"2021-12-11T00:00:00Z" + }, + { + "id":"3230323131323131303030303A323032313132313130313030", + "start":"2021-12-11T00:00:00Z", + "end":"2021-12-11T01:00:00Z" + }, + { + "id":"3230323131323133313530303A323032313132313331353330", + "start":"2021-12-13T15:00:00Z", + "end":"2021-12-13T15:30:00Z" + }, + { + "id":"3230323131323133313533303A323032313132313331363030", + "start":"2021-12-13T15:30:00Z", + "end":"2021-12-13T16:00:00Z" + }, + { + "id":"3230323131323133313630303A323032313132313331363330", + "start":"2021-12-13T16:00:00Z", + "end":"2021-12-13T16:30:00Z" + }, + { + "id":"3230323131323133313633303A323032313132313331373030", + "start":"2021-12-13T16:30:00Z", + "end":"2021-12-13T17:00:00Z" + }, + { + "id":"3230323131323133313730303A323032313132313331373330", + "start":"2021-12-13T17:00:00Z", + "end":"2021-12-13T17:30:00Z" + }, + { + "id":"3230323131323133313733303A323032313132313331383030", + "start":"2021-12-13T17:30:00Z", + "end":"2021-12-13T18:00:00Z" + }, + { + "id":"3230323131323133313830303A323032313132313331383330", + "start":"2021-12-13T18:00:00Z", + "end":"2021-12-13T18:30:00Z" + }, + { + "id":"3230323131323133313833303A323032313132313331393030", + "start":"2021-12-13T18:30:00Z", + "end":"2021-12-13T19:00:00Z" + }, + { + "id":"3230323131323133313930303A323032313132313331393330", + "start":"2021-12-13T19:00:00Z", + "end":"2021-12-13T19:30:00Z" + }, + { + "id":"3230323131323133313933303A323032313132313332303030", + "start":"2021-12-13T19:30:00Z", + "end":"2021-12-13T20:00:00Z" + }, + { + "id":"3230323131323133323030303A323032313132313332303330", + "start":"2021-12-13T20:00:00Z", + "end":"2021-12-13T20:30:00Z" + }, + { + "id":"3230323131323133323033303A323032313132313332313030", + "start":"2021-12-13T20:30:00Z", + "end":"2021-12-13T21:00:00Z" + }, + { + "id":"3230323131323133323130303A323032313132313332313330", + "start":"2021-12-13T21:00:00Z", + "end":"2021-12-13T21:30:00Z" + }, + { + "id":"3230323131323133323133303A323032313132313332323030", + "start":"2021-12-13T21:30:00Z", + "end":"2021-12-13T22:00:00Z" + }, + { + "id":"3230323131323133323230303A323032313132313332323330", + "start":"2021-12-13T22:00:00Z", + "end":"2021-12-13T22:30:00Z" + }, + { + "id":"3230323131323133323233303A323032313132313332333030", + "start":"2021-12-13T22:30:00Z", + "end":"2021-12-13T23:00:00Z" + }, + { + "id":"3230323131323133323330303A323032313132313332333330", + "start":"2021-12-13T23:00:00Z", + "end":"2021-12-13T23:30:00Z" + }, + { + "id":"3230323131323133323333303A323032313132313430303030", + "start":"2021-12-13T23:30:00Z", + "end":"2021-12-14T00:00:00Z" + }, + { + "id":"3230323131323134303030303A323032313132313430313030", + "start":"2021-12-14T00:00:00Z", + "end":"2021-12-14T01:00:00Z" + }, + { + "id":"3230323131323134323230303A323032313132313432323330", + "start":"2021-12-14T22:00:00Z", + "end":"2021-12-14T22:30:00Z" + }, + { + "id":"3230323131323134323233303A323032313132313432333030", + "start":"2021-12-14T22:30:00Z", + "end":"2021-12-14T23:00:00Z" + }, + { + "id":"3230323131323134323330303A323032313132313530313030", + "start":"2021-12-14T23:00:00Z", + "end":"2021-12-15T01:00:00Z" + }, + { + "id":"3230323131323135313530303A323032313132313531353330", + "start":"2021-12-15T15:00:00Z", + "end":"2021-12-15T15:30:00Z" + }, + { + "id":"3230323131323135313533303A323032313132313531363030", + "start":"2021-12-15T15:30:00Z", + "end":"2021-12-15T16:00:00Z" + }, + { + "id":"3230323131323135313630303A323032313132313531363330", + "start":"2021-12-15T16:00:00Z", + "end":"2021-12-15T16:30:00Z" + }, + { + "id":"3230323131323135313633303A323032313132313531373030", + "start":"2021-12-15T16:30:00Z", + "end":"2021-12-15T17:00:00Z" + }, + { + "id":"3230323131323135313730303A323032313132313531373330", + "start":"2021-12-15T17:00:00Z", + "end":"2021-12-15T17:30:00Z" + }, + { + "id":"3230323131323135313733303A323032313132313531383030", + "start":"2021-12-15T17:30:00Z", + "end":"2021-12-15T18:00:00Z" + }, + { + "id":"3230323131323135313830303A323032313132313531383330", + "start":"2021-12-15T18:00:00Z", + "end":"2021-12-15T18:30:00Z" + }, + { + "id":"3230323131323135313833303A323032313132313531393030", + "start":"2021-12-15T18:30:00Z", + "end":"2021-12-15T19:00:00Z" + }, + { + "id":"3230323131323135313930303A323032313132313531393330", + "start":"2021-12-15T19:00:00Z", + "end":"2021-12-15T19:30:00Z" + }, + { + "id":"3230323131323135313933303A323032313132313532303030", + "start":"2021-12-15T19:30:00Z", + "end":"2021-12-15T20:00:00Z" + }, + { + "id":"3230323131323135323030303A323032313132313532303330", + "start":"2021-12-15T20:00:00Z", + "end":"2021-12-15T20:30:00Z" + }, + { + "id":"3230323131323135323033303A323032313132313532313030", + "start":"2021-12-15T20:30:00Z", + "end":"2021-12-15T21:00:00Z" + }, + { + "id":"3230323131323135323130303A323032313132313532313330", + "start":"2021-12-15T21:00:00Z", + "end":"2021-12-15T21:30:00Z" + }, + { + "id":"3230323131323135323133303A323032313132313532323030", + "start":"2021-12-15T21:30:00Z", + "end":"2021-12-15T22:00:00Z" + }, + { + "id":"3230323131323135323230303A323032313132313532323330", + "start":"2021-12-15T22:00:00Z", + "end":"2021-12-15T22:30:00Z" + }, + { + "id":"3230323131323135323233303A323032313132313532333030", + "start":"2021-12-15T22:30:00Z", + "end":"2021-12-15T23:00:00Z" + }, + { + "id":"3230323131323135323330303A323032313132313630313030", + "start":"2021-12-15T23:00:00Z", + "end":"2021-12-16T01:00:00Z" + }, + { + "id":"3230323131323136313530303A323032313132313631353330", + "start":"2021-12-16T15:00:00Z", + "end":"2021-12-16T15:30:00Z" + }, + { + "id":"3230323131323136313533303A323032313132313631363030", + "start":"2021-12-16T15:30:00Z", + "end":"2021-12-16T16:00:00Z" + }, + { + "id":"3230323131323136313630303A323032313132313631363330", + "start":"2021-12-16T16:00:00Z", + "end":"2021-12-16T16:30:00Z" + }, + { + "id":"3230323131323136313633303A323032313132313631373030", + "start":"2021-12-16T16:30:00Z", + "end":"2021-12-16T17:00:00Z" + }, + { + "id":"3230323131323136313730303A323032313132313631373330", + "start":"2021-12-16T17:00:00Z", + "end":"2021-12-16T17:30:00Z" + }, + { + "id":"3230323131323136313733303A323032313132313631383030", + "start":"2021-12-16T17:30:00Z", + "end":"2021-12-16T18:00:00Z" + }, + { + "id":"3230323131323136313830303A323032313132313631383330", + "start":"2021-12-16T18:00:00Z", + "end":"2021-12-16T18:30:00Z" + }, + { + "id":"3230323131323136313833303A323032313132313631393030", + "start":"2021-12-16T18:30:00Z", + "end":"2021-12-16T19:00:00Z" + }, + { + "id":"3230323131323136313930303A323032313132313631393330", + "start":"2021-12-16T19:00:00Z", + "end":"2021-12-16T19:30:00Z" + }, + { + "id":"3230323131323136313933303A323032313132313632303030", + "start":"2021-12-16T19:30:00Z", + "end":"2021-12-16T20:00:00Z" + }, + { + "id":"3230323131323136323030303A323032313132313632303330", + "start":"2021-12-16T20:00:00Z", + "end":"2021-12-16T20:30:00Z" + }, + { + "id":"3230323131323136323033303A323032313132313632313030", + "start":"2021-12-16T20:30:00Z", + "end":"2021-12-16T21:00:00Z" + }, + { + "id":"3230323131323136323130303A323032313132313632313330", + "start":"2021-12-16T21:00:00Z", + "end":"2021-12-16T21:30:00Z" + }, + { + "id":"3230323131323136323133303A323032313132313632323030", + "start":"2021-12-16T21:30:00Z", + "end":"2021-12-16T22:00:00Z" + }, + { + "id":"3230323131323136323230303A323032313132313632323330", + "start":"2021-12-16T22:00:00Z", + "end":"2021-12-16T22:30:00Z" + }, + { + "id":"3230323131323136323233303A323032313132313632333030", + "start":"2021-12-16T22:30:00Z", + "end":"2021-12-16T23:00:00Z" + }, + { + "id":"3230323131323136323330303A323032313132313632333330", + "start":"2021-12-16T23:00:00Z", + "end":"2021-12-16T23:30:00Z" + }, + { + "id":"3230323131323136323333303A323032313132313730303030", + "start":"2021-12-16T23:30:00Z", + "end":"2021-12-17T00:00:00Z" + }, + { + "id":"3230323131323137303030303A323032313132313730313030", + "start":"2021-12-17T00:00:00Z", + "end":"2021-12-17T01:00:00Z" + }, + { + "id":"3230323131323137313530303A323032313132313731353330", + "start":"2021-12-17T15:00:00Z", + "end":"2021-12-17T15:30:00Z" + }, + { + "id":"3230323131323137313533303A323032313132313731363030", + "start":"2021-12-17T15:30:00Z", + "end":"2021-12-17T16:00:00Z" + }, + { + "id":"3230323131323137313630303A323032313132313731363330", + "start":"2021-12-17T16:00:00Z", + "end":"2021-12-17T16:30:00Z" + }, + { + "id":"3230323131323137313633303A323032313132313731373030", + "start":"2021-12-17T16:30:00Z", + "end":"2021-12-17T17:00:00Z" + }, + { + "id":"3230323131323137313730303A323032313132313731373330", + "start":"2021-12-17T17:00:00Z", + "end":"2021-12-17T17:30:00Z" + }, + { + "id":"3230323131323137313733303A323032313132313731383030", + "start":"2021-12-17T17:30:00Z", + "end":"2021-12-17T18:00:00Z" + }, + { + "id":"3230323131323137313830303A323032313132313731383330", + "start":"2021-12-17T18:00:00Z", + "end":"2021-12-17T18:30:00Z" + }, + { + "id":"3230323131323137313833303A323032313132313731393030", + "start":"2021-12-17T18:30:00Z", + "end":"2021-12-17T19:00:00Z" + }, + { + "id":"3230323131323137313930303A323032313132313731393330", + "start":"2021-12-17T19:00:00Z", + "end":"2021-12-17T19:30:00Z" + }, + { + "id":"3230323131323137313933303A323032313132313732303030", + "start":"2021-12-17T19:30:00Z", + "end":"2021-12-17T20:00:00Z" + }, + { + "id":"3230323131323137323030303A323032313132313732303330", + "start":"2021-12-17T20:00:00Z", + "end":"2021-12-17T20:30:00Z" + }, + { + "id":"3230323131323137323033303A323032313132313732313030", + "start":"2021-12-17T20:30:00Z", + "end":"2021-12-17T21:00:00Z" + }, + { + "id":"3230323131323137323130303A323032313132313732313330", + "start":"2021-12-17T21:00:00Z", + "end":"2021-12-17T21:30:00Z" + }, + { + "id":"3230323131323137323133303A323032313132313732323030", + "start":"2021-12-17T21:30:00Z", + "end":"2021-12-17T22:00:00Z" + }, + { + "id":"3230323131323137323230303A323032313132313732323330", + "start":"2021-12-17T22:00:00Z", + "end":"2021-12-17T22:30:00Z" + }, + { + "id":"3230323131323137323233303A323032313132313732333030", + "start":"2021-12-17T22:30:00Z", + "end":"2021-12-17T23:00:00Z" + }, + { + "id":"3230323131323137323330303A323032313132313732333330", + "start":"2021-12-17T23:00:00Z", + "end":"2021-12-17T23:30:00Z" + }, + { + "id":"3230323131323137323333303A323032313132313830303030", + "start":"2021-12-17T23:30:00Z", + "end":"2021-12-18T00:00:00Z" + }, + { + "id":"3230323131323138303030303A323032313132313830313030", + "start":"2021-12-18T00:00:00Z", + "end":"2021-12-18T01:00:00Z" + }, + { + "id":"3230323131323230313530303A323032313132323031353330", + "start":"2021-12-20T15:00:00Z", + "end":"2021-12-20T15:30:00Z" + }, + { + "id":"3230323131323230313533303A323032313132323031363030", + "start":"2021-12-20T15:30:00Z", + "end":"2021-12-20T16:00:00Z" + }, + { + "id":"3230323131323230313630303A323032313132323031363330", + "start":"2021-12-20T16:00:00Z", + "end":"2021-12-20T16:30:00Z" + }, + { + "id":"3230323131323230313633303A323032313132323031373030", + "start":"2021-12-20T16:30:00Z", + "end":"2021-12-20T17:00:00Z" + }, + { + "id":"3230323131323230313730303A323032313132323031373330", + "start":"2021-12-20T17:00:00Z", + "end":"2021-12-20T17:30:00Z" + }, + { + "id":"3230323131323230313733303A323032313132323031383030", + "start":"2021-12-20T17:30:00Z", + "end":"2021-12-20T18:00:00Z" + }, + { + "id":"3230323131323230313830303A323032313132323031383330", + "start":"2021-12-20T18:00:00Z", + "end":"2021-12-20T18:30:00Z" + }, + { + "id":"3230323131323230313833303A323032313132323031393030", + "start":"2021-12-20T18:30:00Z", + "end":"2021-12-20T19:00:00Z" + }, + { + "id":"3230323131323230313930303A323032313132323031393330", + "start":"2021-12-20T19:00:00Z", + "end":"2021-12-20T19:30:00Z" + }, + { + "id":"3230323131323230313933303A323032313132323032303030", + "start":"2021-12-20T19:30:00Z", + "end":"2021-12-20T20:00:00Z" + }, + { + "id":"3230323131323230323030303A323032313132323032303330", + "start":"2021-12-20T20:00:00Z", + "end":"2021-12-20T20:30:00Z" + }, + { + "id":"3230323131323230323033303A323032313132323032313030", + "start":"2021-12-20T20:30:00Z", + "end":"2021-12-20T21:00:00Z" + }, + { + "id":"3230323131323230323130303A323032313132323032313330", + "start":"2021-12-20T21:00:00Z", + "end":"2021-12-20T21:30:00Z" + }, + { + "id":"3230323131323230323133303A323032313132323032323030", + "start":"2021-12-20T21:30:00Z", + "end":"2021-12-20T22:00:00Z" + }, + { + "id":"3230323131323230323230303A323032313132323032323330", + "start":"2021-12-20T22:00:00Z", + "end":"2021-12-20T22:30:00Z" + }, + { + "id":"3230323131323230323233303A323032313132323032333030", + "start":"2021-12-20T22:30:00Z", + "end":"2021-12-20T23:00:00Z" + }, + { + "id":"3230323131323230323330303A323032313132323032333330", + "start":"2021-12-20T23:00:00Z", + "end":"2021-12-20T23:30:00Z" + }, + { + "id":"3230323131323230323333303A323032313132323130303030", + "start":"2021-12-20T23:30:00Z", + "end":"2021-12-21T00:00:00Z" + }, + { + "id":"3230323131323231303030303A323032313132323130313030", + "start":"2021-12-21T00:00:00Z", + "end":"2021-12-21T01:00:00Z" + }, + { + "id":"3230323131323231323230303A323032313132323132323330", + "start":"2021-12-21T22:00:00Z", + "end":"2021-12-21T22:30:00Z" + }, + { + "id":"3230323131323231323233303A323032313132323132333030", + "start":"2021-12-21T22:30:00Z", + "end":"2021-12-21T23:00:00Z" + }, + { + "id":"3230323131323231323330303A323032313132323230313030", + "start":"2021-12-21T23:00:00Z", + "end":"2021-12-22T01:00:00Z" + }, + { + "id":"3230323131323232313530303A323032313132323231353330", + "start":"2021-12-22T15:00:00Z", + "end":"2021-12-22T15:30:00Z" + }, + { + "id":"3230323131323232313533303A323032313132323231363030", + "start":"2021-12-22T15:30:00Z", + "end":"2021-12-22T16:00:00Z" + }, + { + "id":"3230323131323232313630303A323032313132323231363330", + "start":"2021-12-22T16:00:00Z", + "end":"2021-12-22T16:30:00Z" + }, + { + "id":"3230323131323232313633303A323032313132323231373030", + "start":"2021-12-22T16:30:00Z", + "end":"2021-12-22T17:00:00Z" + }, + { + "id":"3230323131323232313730303A323032313132323231373330", + "start":"2021-12-22T17:00:00Z", + "end":"2021-12-22T17:30:00Z" + }, + { + "id":"3230323131323232313733303A323032313132323231383030", + "start":"2021-12-22T17:30:00Z", + "end":"2021-12-22T18:00:00Z" + }, + { + "id":"3230323131323232313830303A323032313132323231383330", + "start":"2021-12-22T18:00:00Z", + "end":"2021-12-22T18:30:00Z" + }, + { + "id":"3230323131323232313833303A323032313132323231393030", + "start":"2021-12-22T18:30:00Z", + "end":"2021-12-22T19:00:00Z" + }, + { + "id":"3230323131323232313930303A323032313132323231393330", + "start":"2021-12-22T19:00:00Z", + "end":"2021-12-22T19:30:00Z" + }, + { + "id":"3230323131323232313933303A323032313132323232303030", + "start":"2021-12-22T19:30:00Z", + "end":"2021-12-22T20:00:00Z" + }, + { + "id":"3230323131323232323030303A323032313132323232303330", + "start":"2021-12-22T20:00:00Z", + "end":"2021-12-22T20:30:00Z" + }, + { + "id":"3230323131323232323033303A323032313132323232313030", + "start":"2021-12-22T20:30:00Z", + "end":"2021-12-22T21:00:00Z" + }, + { + "id":"3230323131323232323130303A323032313132323232313330", + "start":"2021-12-22T21:00:00Z", + "end":"2021-12-22T21:30:00Z" + }, + { + "id":"3230323131323232323133303A323032313132323232323030", + "start":"2021-12-22T21:30:00Z", + "end":"2021-12-22T22:00:00Z" + }, + { + "id":"3230323131323232323230303A323032313132323232323330", + "start":"2021-12-22T22:00:00Z", + "end":"2021-12-22T22:30:00Z" + }, + { + "id":"3230323131323232323233303A323032313132323232333030", + "start":"2021-12-22T22:30:00Z", + "end":"2021-12-22T23:00:00Z" + }, + { + "id":"3230323131323232323330303A323032313132323330313030", + "start":"2021-12-22T23:00:00Z", + "end":"2021-12-23T01:00:00Z" + }, + { + "id":"3230323131323233313530303A323032313132323331353330", + "start":"2021-12-23T15:00:00Z", + "end":"2021-12-23T15:30:00Z" + }, + { + "id":"3230323131323233313533303A323032313132323331363030", + "start":"2021-12-23T15:30:00Z", + "end":"2021-12-23T16:00:00Z" + }, + { + "id":"3230323131323233313630303A323032313132323331363330", + "start":"2021-12-23T16:00:00Z", + "end":"2021-12-23T16:30:00Z" + }, + { + "id":"3230323131323233313633303A323032313132323331373030", + "start":"2021-12-23T16:30:00Z", + "end":"2021-12-23T17:00:00Z" + }, + { + "id":"3230323131323233313730303A323032313132323331373330", + "start":"2021-12-23T17:00:00Z", + "end":"2021-12-23T17:30:00Z" + }, + { + "id":"3230323131323233313733303A323032313132323331383030", + "start":"2021-12-23T17:30:00Z", + "end":"2021-12-23T18:00:00Z" + }, + { + "id":"3230323131323233313830303A323032313132323331383330", + "start":"2021-12-23T18:00:00Z", + "end":"2021-12-23T18:30:00Z" + }, + { + "id":"3230323131323233313833303A323032313132323331393030", + "start":"2021-12-23T18:30:00Z", + "end":"2021-12-23T19:00:00Z" + }, + { + "id":"3230323131323233313930303A323032313132323331393330", + "start":"2021-12-23T19:00:00Z", + "end":"2021-12-23T19:30:00Z" + }, + { + "id":"3230323131323233313933303A323032313132323332303030", + "start":"2021-12-23T19:30:00Z", + "end":"2021-12-23T20:00:00Z" + }, + { + "id":"3230323131323233323030303A323032313132323332303330", + "start":"2021-12-23T20:00:00Z", + "end":"2021-12-23T20:30:00Z" + }, + { + "id":"3230323131323233323033303A323032313132323332313030", + "start":"2021-12-23T20:30:00Z", + "end":"2021-12-23T21:00:00Z" + }, + { + "id":"3230323131323233323130303A323032313132323332313330", + "start":"2021-12-23T21:00:00Z", + "end":"2021-12-23T21:30:00Z" + }, + { + "id":"3230323131323233323133303A323032313132323332323030", + "start":"2021-12-23T21:30:00Z", + "end":"2021-12-23T22:00:00Z" + }, + { + "id":"3230323131323233323230303A323032313132323332323330", + "start":"2021-12-23T22:00:00Z", + "end":"2021-12-23T22:30:00Z" + }, + { + "id":"3230323131323233323233303A323032313132323332333030", + "start":"2021-12-23T22:30:00Z", + "end":"2021-12-23T23:00:00Z" + }, + { + "id":"3230323131323233323330303A323032313132323332333330", + "start":"2021-12-23T23:00:00Z", + "end":"2021-12-23T23:30:00Z" + }, + { + "id":"3230323131323233323333303A323032313132323430303030", + "start":"2021-12-23T23:30:00Z", + "end":"2021-12-24T00:00:00Z" + }, + { + "id":"3230323131323234303030303A323032313132323430313030", + "start":"2021-12-24T00:00:00Z", + "end":"2021-12-24T01:00:00Z" + }, + { + "id":"3230323131323234313530303A323032313132323431353330", + "start":"2021-12-24T15:00:00Z", + "end":"2021-12-24T15:30:00Z" + }, + { + "id":"3230323131323234313533303A323032313132323431363030", + "start":"2021-12-24T15:30:00Z", + "end":"2021-12-24T16:00:00Z" + }, + { + "id":"3230323131323234313630303A323032313132323431363330", + "start":"2021-12-24T16:00:00Z", + "end":"2021-12-24T16:30:00Z" + }, + { + "id":"3230323131323234313633303A323032313132323431373030", + "start":"2021-12-24T16:30:00Z", + "end":"2021-12-24T17:00:00Z" + }, + { + "id":"3230323131323234313730303A323032313132323431373330", + "start":"2021-12-24T17:00:00Z", + "end":"2021-12-24T17:30:00Z" + }, + { + "id":"3230323131323234313733303A323032313132323431383030", + "start":"2021-12-24T17:30:00Z", + "end":"2021-12-24T18:00:00Z" + }, + { + "id":"3230323131323234313830303A323032313132323431383330", + "start":"2021-12-24T18:00:00Z", + "end":"2021-12-24T18:30:00Z" + }, + { + "id":"3230323131323234313833303A323032313132323431393030", + "start":"2021-12-24T18:30:00Z", + "end":"2021-12-24T19:00:00Z" + }, + { + "id":"3230323131323234313930303A323032313132323431393330", + "start":"2021-12-24T19:00:00Z", + "end":"2021-12-24T19:30:00Z" + }, + { + "id":"3230323131323234313933303A323032313132323432303030", + "start":"2021-12-24T19:30:00Z", + "end":"2021-12-24T20:00:00Z" + }, + { + "id":"3230323131323234323030303A323032313132323432303330", + "start":"2021-12-24T20:00:00Z", + "end":"2021-12-24T20:30:00Z" + }, + { + "id":"3230323131323234323033303A323032313132323432313030", + "start":"2021-12-24T20:30:00Z", + "end":"2021-12-24T21:00:00Z" + }, + { + "id":"3230323131323234323130303A323032313132323432313330", + "start":"2021-12-24T21:00:00Z", + "end":"2021-12-24T21:30:00Z" + }, + { + "id":"3230323131323234323133303A323032313132323432323030", + "start":"2021-12-24T21:30:00Z", + "end":"2021-12-24T22:00:00Z" + }, + { + "id":"3230323131323234323230303A323032313132323432323330", + "start":"2021-12-24T22:00:00Z", + "end":"2021-12-24T22:30:00Z" + }, + { + "id":"3230323131323234323233303A323032313132323432333030", + "start":"2021-12-24T22:30:00Z", + "end":"2021-12-24T23:00:00Z" + }, + { + "id":"3230323131323234323330303A323032313132323432333330", + "start":"2021-12-24T23:00:00Z", + "end":"2021-12-24T23:30:00Z" + }, + { + "id":"3230323131323234323333303A323032313132323530303030", + "start":"2021-12-24T23:30:00Z", + "end":"2021-12-25T00:00:00Z" + }, + { + "id":"3230323131323235303030303A323032313132323530313030", + "start":"2021-12-25T00:00:00Z", + "end":"2021-12-25T01:00:00Z" + }, + { + "id":"3230323131323237313530303A323032313132323731353330", + "start":"2021-12-27T15:00:00Z", + "end":"2021-12-27T15:30:00Z" + }, + { + "id":"3230323131323237313533303A323032313132323731363030", + "start":"2021-12-27T15:30:00Z", + "end":"2021-12-27T16:00:00Z" + }, + { + "id":"3230323131323237313630303A323032313132323731363330", + "start":"2021-12-27T16:00:00Z", + "end":"2021-12-27T16:30:00Z" + }, + { + "id":"3230323131323237313633303A323032313132323731373030", + "start":"2021-12-27T16:30:00Z", + "end":"2021-12-27T17:00:00Z" + }, + { + "id":"3230323131323237313730303A323032313132323731373330", + "start":"2021-12-27T17:00:00Z", + "end":"2021-12-27T17:30:00Z" + }, + { + "id":"3230323131323237313733303A323032313132323731383030", + "start":"2021-12-27T17:30:00Z", + "end":"2021-12-27T18:00:00Z" + }, + { + "id":"3230323131323237313830303A323032313132323731383330", + "start":"2021-12-27T18:00:00Z", + "end":"2021-12-27T18:30:00Z" + }, + { + "id":"3230323131323237313833303A323032313132323731393030", + "start":"2021-12-27T18:30:00Z", + "end":"2021-12-27T19:00:00Z" + }, + { + "id":"3230323131323237313930303A323032313132323731393330", + "start":"2021-12-27T19:00:00Z", + "end":"2021-12-27T19:30:00Z" + }, + { + "id":"3230323131323237313933303A323032313132323732303030", + "start":"2021-12-27T19:30:00Z", + "end":"2021-12-27T20:00:00Z" + }, + { + "id":"3230323131323237323030303A323032313132323732303330", + "start":"2021-12-27T20:00:00Z", + "end":"2021-12-27T20:30:00Z" + }, + { + "id":"3230323131323237323033303A323032313132323732313030", + "start":"2021-12-27T20:30:00Z", + "end":"2021-12-27T21:00:00Z" + }, + { + "id":"3230323131323237323130303A323032313132323732313330", + "start":"2021-12-27T21:00:00Z", + "end":"2021-12-27T21:30:00Z" + }, + { + "id":"3230323131323237323133303A323032313132323732323030", + "start":"2021-12-27T21:30:00Z", + "end":"2021-12-27T22:00:00Z" + }, + { + "id":"3230323131323237323230303A323032313132323732323330", + "start":"2021-12-27T22:00:00Z", + "end":"2021-12-27T22:30:00Z" + }, + { + "id":"3230323131323237323233303A323032313132323732333030", + "start":"2021-12-27T22:30:00Z", + "end":"2021-12-27T23:00:00Z" + }, + { + "id":"3230323131323237323330303A323032313132323732333330", + "start":"2021-12-27T23:00:00Z", + "end":"2021-12-27T23:30:00Z" + }, + { + "id":"3230323131323237323333303A323032313132323830303030", + "start":"2021-12-27T23:30:00Z", + "end":"2021-12-28T00:00:00Z" + }, + { + "id":"3230323131323238303030303A323032313132323830313030", + "start":"2021-12-28T00:00:00Z", + "end":"2021-12-28T01:00:00Z" + }, + { + "id":"3230323131323238323230303A323032313132323832323330", + "start":"2021-12-28T22:00:00Z", + "end":"2021-12-28T22:30:00Z" + }, + { + "id":"3230323131323238323233303A323032313132323832333030", + "start":"2021-12-28T22:30:00Z", + "end":"2021-12-28T23:00:00Z" + }, + { + "id":"3230323131323238323330303A323032313132323930313030", + "start":"2021-12-28T23:00:00Z", + "end":"2021-12-29T01:00:00Z" + }, + { + "id":"3230323131323239313530303A323032313132323931353330", + "start":"2021-12-29T15:00:00Z", + "end":"2021-12-29T15:30:00Z" + }, + { + "id":"3230323131323239313533303A323032313132323931363030", + "start":"2021-12-29T15:30:00Z", + "end":"2021-12-29T16:00:00Z" + }, + { + "id":"3230323131323239313630303A323032313132323931363330", + "start":"2021-12-29T16:00:00Z", + "end":"2021-12-29T16:30:00Z" + }, + { + "id":"3230323131323239313633303A323032313132323931373030", + "start":"2021-12-29T16:30:00Z", + "end":"2021-12-29T17:00:00Z" + }, + { + "id":"3230323131323239313730303A323032313132323931373330", + "start":"2021-12-29T17:00:00Z", + "end":"2021-12-29T17:30:00Z" + }, + { + "id":"3230323131323239313733303A323032313132323931383030", + "start":"2021-12-29T17:30:00Z", + "end":"2021-12-29T18:00:00Z" + }, + { + "id":"3230323131323239313830303A323032313132323931383330", + "start":"2021-12-29T18:00:00Z", + "end":"2021-12-29T18:30:00Z" + }, + { + "id":"3230323131323239313833303A323032313132323931393030", + "start":"2021-12-29T18:30:00Z", + "end":"2021-12-29T19:00:00Z" + }, + { + "id":"3230323131323239313930303A323032313132323931393330", + "start":"2021-12-29T19:00:00Z", + "end":"2021-12-29T19:30:00Z" + }, + { + "id":"3230323131323239313933303A323032313132323932303030", + "start":"2021-12-29T19:30:00Z", + "end":"2021-12-29T20:00:00Z" + }, + { + "id":"3230323131323239323030303A323032313132323932303330", + "start":"2021-12-29T20:00:00Z", + "end":"2021-12-29T20:30:00Z" + }, + { + "id":"3230323131323239323033303A323032313132323932313030", + "start":"2021-12-29T20:30:00Z", + "end":"2021-12-29T21:00:00Z" + }, + { + "id":"3230323131323239323130303A323032313132323932313330", + "start":"2021-12-29T21:00:00Z", + "end":"2021-12-29T21:30:00Z" + }, + { + "id":"3230323131323239323133303A323032313132323932323030", + "start":"2021-12-29T21:30:00Z", + "end":"2021-12-29T22:00:00Z" + }, + { + "id":"3230323131323239323230303A323032313132323932323330", + "start":"2021-12-29T22:00:00Z", + "end":"2021-12-29T22:30:00Z" + }, + { + "id":"3230323131323239323233303A323032313132323932333030", + "start":"2021-12-29T22:30:00Z", + "end":"2021-12-29T23:00:00Z" + }, + { + "id":"3230323131323239323330303A323032313132333030313030", + "start":"2021-12-29T23:00:00Z", + "end":"2021-12-30T01:00:00Z" + }, + { + "id":"3230323131323330313530303A323032313132333031353330", + "start":"2021-12-30T15:00:00Z", + "end":"2021-12-30T15:30:00Z" + }, + { + "id":"3230323131323330313533303A323032313132333031363030", + "start":"2021-12-30T15:30:00Z", + "end":"2021-12-30T16:00:00Z" + }, + { + "id":"3230323131323330313630303A323032313132333031363330", + "start":"2021-12-30T16:00:00Z", + "end":"2021-12-30T16:30:00Z" + }, + { + "id":"3230323131323330313633303A323032313132333031373030", + "start":"2021-12-30T16:30:00Z", + "end":"2021-12-30T17:00:00Z" + }, + { + "id":"3230323131323330313730303A323032313132333031373330", + "start":"2021-12-30T17:00:00Z", + "end":"2021-12-30T17:30:00Z" + }, + { + "id":"3230323131323330313733303A323032313132333031383030", + "start":"2021-12-30T17:30:00Z", + "end":"2021-12-30T18:00:00Z" + }, + { + "id":"3230323131323330313830303A323032313132333031383330", + "start":"2021-12-30T18:00:00Z", + "end":"2021-12-30T18:30:00Z" + }, + { + "id":"3230323131323330313833303A323032313132333031393030", + "start":"2021-12-30T18:30:00Z", + "end":"2021-12-30T19:00:00Z" + }, + { + "id":"3230323131323330313930303A323032313132333031393330", + "start":"2021-12-30T19:00:00Z", + "end":"2021-12-30T19:30:00Z" + }, + { + "id":"3230323131323330313933303A323032313132333032303030", + "start":"2021-12-30T19:30:00Z", + "end":"2021-12-30T20:00:00Z" + }, + { + "id":"3230323131323330323030303A323032313132333032303330", + "start":"2021-12-30T20:00:00Z", + "end":"2021-12-30T20:30:00Z" + }, + { + "id":"3230323131323330323033303A323032313132333032313030", + "start":"2021-12-30T20:30:00Z", + "end":"2021-12-30T21:00:00Z" + }, + { + "id":"3230323131323330323130303A323032313132333032313330", + "start":"2021-12-30T21:00:00Z", + "end":"2021-12-30T21:30:00Z" + }, + { + "id":"3230323131323330323133303A323032313132333032323030", + "start":"2021-12-30T21:30:00Z", + "end":"2021-12-30T22:00:00Z" + }, + { + "id":"3230323131323330323230303A323032313132333032323330", + "start":"2021-12-30T22:00:00Z", + "end":"2021-12-30T22:30:00Z" + }, + { + "id":"3230323131323330323233303A323032313132333032333030", + "start":"2021-12-30T22:30:00Z", + "end":"2021-12-30T23:00:00Z" + }, + { + "id":"3230323131323330323330303A323032313132333032333330", + "start":"2021-12-30T23:00:00Z", + "end":"2021-12-30T23:30:00Z" + } + ] + }' + recorded_at: Mon, 11 Oct 2021 18:41:19 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_500.yml b/spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_500.yml new file mode 100644 index 00000000000..391ccd032d1 --- /dev/null +++ b/spec/support/vcr_cassettes/mobile/appointments/get_available_slots_vpg_500.yml @@ -0,0 +1,60 @@ +--- +http_interactions: +- request: + method: get + uri: https://veteran.apps.va.gov/vpg/v1/slots?clinic=1081&end=2021-12-31T23:59:59Z&location=983&start=2021-10-01T00:00:00Z + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Vets.gov Agent + Referer: + - https://review-instance.va.gov + X-Vamf-Jwt: + - stubbed_token + X-Request-Id: + - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 500 + message: Internal Server Error + headers: + Date: + - Mon, 11 Oct 2021 18:52:33 GMT + Content-Type: + - application/json + Transfer-Encoding: + - chunked + Server: + - openresty + X-Vamf-Version: + - 1.10.0 + B3: + - cb9c50235cfad84d-5c00879195fa36e7-1 + Access-Control-Allow-Headers: + - x-vamf-jwt + X-Vamf-Build: + - 58ec2e2 + X-Vamf-Timestamp: + - '2021-08-18T13:44:12+0000' + Access-Control-Allow-Origin: + - "*" + Access-Control-Allow-Methods: + - GET,OPTIONS + Access-Control-Max-Age: + - '3600' + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '{"id":"c195c4c2-f5b7-4ea3-8358-f6ad8b129c23","code":500,"errorCode":7007,"traceId":"cb9c50235cfad84d","message":"failed + to fetch slots","meta":{"upstreamErrorSource":"mobile-appointment-service","upstreamErrorId":"54291a36-2d69-4777-9612-94ae7be21378"}}' + recorded_at: Mon, 11 Oct 2021 18:52:33 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_200.yml b/spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_200.yml new file mode 100644 index 00000000000..a33ac3ce724 --- /dev/null +++ b/spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_200.yml @@ -0,0 +1,115 @@ +--- +http_interactions: +- request: + method: get + uri: https://veteran.apps.va.gov/vpg/v1/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z&clinic=1081&location=983 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Vets.gov Agent + Referer: + - https://review-instance.va.gov + X-Vamf-Jwt: + - stubbed_token + X-Request-Id: + - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 11 Oct 2021 18:41:19 GMT + Content-Type: + - application/json + Transfer-Encoding: + - chunked + Server: + - openresty + X-Vamf-Version: + - 1.10.0 + B3: + - 62cc41b5de2df75b-dc1d447244a4a01c-1 + Access-Control-Allow-Headers: + - x-vamf-jwt + X-Vamf-Build: + - 58ec2e2 + X-Vamf-Timestamp: + - '2021-08-18T13:44:12+0000' + Access-Control-Allow-Origin: + - "*" + Access-Control-Allow-Methods: + - GET,OPTIONS + Access-Control-Max-Age: + - '3600' + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '{"data":[{"id":"3230323131303236323130303A323032313130323632313330","start":"2021-10-26T21:00:00Z","end":"2021-10-26T21:30:00Z"},{"id":"3230323131303236323133303A323032313130323632323030","start":"2021-10-26T21:30:00Z","end":"2021-10-26T22:00:00Z"},{"id":"3230323131303236323230303A323032313130323730303030","start":"2021-10-26T22:00:00Z","end":"2021-10-27T00:00:00Z"},{"id":"3230323131303237313430303A323032313130323731343330","start":"2021-10-27T14:00:00Z","end":"2021-10-27T14:30:00Z"},{"id":"3230323131303237313433303A323032313130323731353030","start":"2021-10-27T14:30:00Z","end":"2021-10-27T15:00:00Z"},{"id":"3230323131303237313530303A323032313130323731353330","start":"2021-10-27T15:00:00Z","end":"2021-10-27T15:30:00Z"},{"id":"3230323131303237313533303A323032313130323731363030","start":"2021-10-27T15:30:00Z","end":"2021-10-27T16:00:00Z"},{"id":"3230323131303237313630303A323032313130323731363330","start":"2021-10-27T16:00:00Z","end":"2021-10-27T16:30:00Z"},{"id":"3230323131303237313633303A323032313130323731373030","start":"2021-10-27T16:30:00Z","end":"2021-10-27T17:00:00Z"},{"id":"3230323131303237313730303A323032313130323731373330","start":"2021-10-27T17:00:00Z","end":"2021-10-27T17:30:00Z"},{"id":"3230323131303237313733303A323032313130323731383030","start":"2021-10-27T17:30:00Z","end":"2021-10-27T18:00:00Z"},{"id":"3230323131303237313830303A323032313130323731383330","start":"2021-10-27T18:00:00Z","end":"2021-10-27T18:30:00Z"},{"id":"3230323131303237313833303A323032313130323731393030","start":"2021-10-27T18:30:00Z","end":"2021-10-27T19:00:00Z"},{"id":"3230323131303237313930303A323032313130323731393330","start":"2021-10-27T19:00:00Z","end":"2021-10-27T19:30:00Z"},{"id":"3230323131303237313933303A323032313130323732303030","start":"2021-10-27T19:30:00Z","end":"2021-10-27T20:00:00Z"},{"id":"3230323131303237323030303A323032313130323732303330","start":"2021-10-27T20:00:00Z","end":"2021-10-27T20:30:00Z"},{"id":"3230323131303237323033303A323032313130323732313030","start":"2021-10-27T20:30:00Z","end":"2021-10-27T21:00:00Z"},{"id":"3230323131303237323130303A323032313130323732313330","start":"2021-10-27T21:00:00Z","end":"2021-10-27T21:30:00Z"},{"id":"3230323131303237323133303A323032313130323732323030","start":"2021-10-27T21:30:00Z","end":"2021-10-27T22:00:00Z"},{"id":"3230323131303237323230303A323032313130323830303030","start":"2021-10-27T22:00:00Z","end":"2021-10-28T00:00:00Z"},{"id":"3230323131303238313430303A323032313130323831343330","start":"2021-10-28T14:00:00Z","end":"2021-10-28T14:30:00Z"},{"id":"3230323131303238313433303A323032313130323831353030","start":"2021-10-28T14:30:00Z","end":"2021-10-28T15:00:00Z"},{"id":"3230323131303238313530303A323032313130323831353330","start":"2021-10-28T15:00:00Z","end":"2021-10-28T15:30:00Z"},{"id":"3230323131303238313533303A323032313130323831363030","start":"2021-10-28T15:30:00Z","end":"2021-10-28T16:00:00Z"},{"id":"3230323131303238313630303A323032313130323831363330","start":"2021-10-28T16:00:00Z","end":"2021-10-28T16:30:00Z"},{"id":"3230323131303238313633303A323032313130323831373030","start":"2021-10-28T16:30:00Z","end":"2021-10-28T17:00:00Z"},{"id":"3230323131303238313730303A323032313130323831373330","start":"2021-10-28T17:00:00Z","end":"2021-10-28T17:30:00Z"},{"id":"3230323131303238313733303A323032313130323831383030","start":"2021-10-28T17:30:00Z","end":"2021-10-28T18:00:00Z"},{"id":"3230323131303238313830303A323032313130323831383330","start":"2021-10-28T18:00:00Z","end":"2021-10-28T18:30:00Z"},{"id":"3230323131303238313833303A323032313130323831393030","start":"2021-10-28T18:30:00Z","end":"2021-10-28T19:00:00Z"},{"id":"3230323131303238313930303A323032313130323831393330","start":"2021-10-28T19:00:00Z","end":"2021-10-28T19:30:00Z"},{"id":"3230323131303238313933303A323032313130323832303030","start":"2021-10-28T19:30:00Z","end":"2021-10-28T20:00:00Z"},{"id":"3230323131303238323030303A323032313130323832303330","start":"2021-10-28T20:00:00Z","end":"2021-10-28T20:30:00Z"},{"id":"3230323131303238323033303A323032313130323832313030","start":"2021-10-28T20:30:00Z","end":"2021-10-28T21:00:00Z"},{"id":"3230323131303238323130303A323032313130323832313330","start":"2021-10-28T21:00:00Z","end":"2021-10-28T21:30:00Z"},{"id":"3230323131303238323133303A323032313130323832323030","start":"2021-10-28T21:30:00Z","end":"2021-10-28T22:00:00Z"},{"id":"3230323131303238323230303A323032313130323832323330","start":"2021-10-28T22:00:00Z","end":"2021-10-28T22:30:00Z"},{"id":"3230323131303238323233303A323032313130323832333030","start":"2021-10-28T22:30:00Z","end":"2021-10-28T23:00:00Z"},{"id":"3230323131303238323330303A323032313130323930303030","start":"2021-10-28T23:00:00Z","end":"2021-10-29T00:00:00Z"},{"id":"3230323131303239313430303A323032313130323931343330","start":"2021-10-29T14:00:00Z","end":"2021-10-29T14:30:00Z"},{"id":"3230323131303239313433303A323032313130323931353030","start":"2021-10-29T14:30:00Z","end":"2021-10-29T15:00:00Z"},{"id":"3230323131303239313530303A323032313130323931353330","start":"2021-10-29T15:00:00Z","end":"2021-10-29T15:30:00Z"},{"id":"3230323131303239313533303A323032313130323931363030","start":"2021-10-29T15:30:00Z","end":"2021-10-29T16:00:00Z"},{"id":"3230323131303239313630303A323032313130323931363330","start":"2021-10-29T16:00:00Z","end":"2021-10-29T16:30:00Z"},{"id":"3230323131303239313633303A323032313130323931373030","start":"2021-10-29T16:30:00Z","end":"2021-10-29T17:00:00Z"},{"id":"3230323131303239313730303A323032313130323931373330","start":"2021-10-29T17:00:00Z","end":"2021-10-29T17:30:00Z"},{"id":"3230323131303239313733303A323032313130323931383030","start":"2021-10-29T17:30:00Z","end":"2021-10-29T18:00:00Z"},{"id":"3230323131303239313830303A323032313130323931383330","start":"2021-10-29T18:00:00Z","end":"2021-10-29T18:30:00Z"},{"id":"3230323131303239313833303A323032313130323931393030","start":"2021-10-29T18:30:00Z","end":"2021-10-29T19:00:00Z"},{"id":"3230323131303239313930303A323032313130323931393330","start":"2021-10-29T19:00:00Z","end":"2021-10-29T19:30:00Z"},{"id":"3230323131303239313933303A323032313130323932303030","start":"2021-10-29T19:30:00Z","end":"2021-10-29T20:00:00Z"},{"id":"3230323131303239323030303A323032313130323932303330","start":"2021-10-29T20:00:00Z","end":"2021-10-29T20:30:00Z"},{"id":"3230323131303239323033303A323032313130323932313030","start":"2021-10-29T20:30:00Z","end":"2021-10-29T21:00:00Z"},{"id":"3230323131303239323130303A323032313130323932313330","start":"2021-10-29T21:00:00Z","end":"2021-10-29T21:30:00Z"},{"id":"3230323131303239323133303A323032313130323932323030","start":"2021-10-29T21:30:00Z","end":"2021-10-29T22:00:00Z"},{"id":"3230323131303239323230303A323032313130323932323330","start":"2021-10-29T22:00:00Z","end":"2021-10-29T22:30:00Z"},{"id":"3230323131303239323233303A323032313130323932333030","start":"2021-10-29T22:30:00Z","end":"2021-10-29T23:00:00Z"},{"id":"3230323131303239323330303A323032313130333030303030","start":"2021-10-29T23:00:00Z","end":"2021-10-30T00:00:00Z"},{"id":"3230323131313031313430303A323032313131303131343330","start":"2021-11-01T14:00:00Z","end":"2021-11-01T14:30:00Z"},{"id":"3230323131313031313433303A323032313131303131353030","start":"2021-11-01T14:30:00Z","end":"2021-11-01T15:00:00Z"},{"id":"3230323131313031313530303A323032313131303131353330","start":"2021-11-01T15:00:00Z","end":"2021-11-01T15:30:00Z"},{"id":"3230323131313031313533303A323032313131303131363030","start":"2021-11-01T15:30:00Z","end":"2021-11-01T16:00:00Z"},{"id":"3230323131313031313630303A323032313131303131363330","start":"2021-11-01T16:00:00Z","end":"2021-11-01T16:30:00Z"},{"id":"3230323131313031313633303A323032313131303131373030","start":"2021-11-01T16:30:00Z","end":"2021-11-01T17:00:00Z"},{"id":"3230323131313031313730303A323032313131303131373330","start":"2021-11-01T17:00:00Z","end":"2021-11-01T17:30:00Z"},{"id":"3230323131313031313733303A323032313131303131383030","start":"2021-11-01T17:30:00Z","end":"2021-11-01T18:00:00Z"},{"id":"3230323131313031313830303A323032313131303131383330","start":"2021-11-01T18:00:00Z","end":"2021-11-01T18:30:00Z"},{"id":"3230323131313031313833303A323032313131303131393030","start":"2021-11-01T18:30:00Z","end":"2021-11-01T19:00:00Z"},{"id":"3230323131313031313930303A323032313131303131393330","start":"2021-11-01T19:00:00Z","end":"2021-11-01T19:30:00Z"},{"id":"3230323131313031313933303A323032313131303132303030","start":"2021-11-01T19:30:00Z","end":"2021-11-01T20:00:00Z"},{"id":"3230323131313031323030303A323032313131303132303330","start":"2021-11-01T20:00:00Z","end":"2021-11-01T20:30:00Z"},{"id":"3230323131313031323033303A323032313131303132313030","start":"2021-11-01T20:30:00Z","end":"2021-11-01T21:00:00Z"},{"id":"3230323131313031323130303A323032313131303132313330","start":"2021-11-01T21:00:00Z","end":"2021-11-01T21:30:00Z"},{"id":"3230323131313031323133303A323032313131303132323030","start":"2021-11-01T21:30:00Z","end":"2021-11-01T22:00:00Z"},{"id":"3230323131313031323230303A323032313131303132323330","start":"2021-11-01T22:00:00Z","end":"2021-11-01T22:30:00Z"},{"id":"3230323131313031323233303A323032313131303132333030","start":"2021-11-01T22:30:00Z","end":"2021-11-01T23:00:00Z"},{"id":"3230323131313031323330303A323032313131303230303030","start":"2021-11-01T23:00:00Z","end":"2021-11-02T00:00:00Z"},{"id":"3230323131313032323130303A323032313131303232313330","start":"2021-11-02T21:00:00Z","end":"2021-11-02T21:30:00Z"},{"id":"3230323131313032323133303A323032313131303232323030","start":"2021-11-02T21:30:00Z","end":"2021-11-02T22:00:00Z"},{"id":"3230323131313032323230303A323032313131303330303030","start":"2021-11-02T22:00:00Z","end":"2021-11-03T00:00:00Z"},{"id":"3230323131313033313430303A323032313131303331343330","start":"2021-11-03T14:00:00Z","end":"2021-11-03T14:30:00Z"},{"id":"3230323131313033313433303A323032313131303331353030","start":"2021-11-03T14:30:00Z","end":"2021-11-03T15:00:00Z"},{"id":"3230323131313033313530303A323032313131303331353330","start":"2021-11-03T15:00:00Z","end":"2021-11-03T15:30:00Z"},{"id":"3230323131313033313533303A323032313131303331363030","start":"2021-11-03T15:30:00Z","end":"2021-11-03T16:00:00Z"},{"id":"3230323131313033313630303A323032313131303331363330","start":"2021-11-03T16:00:00Z","end":"2021-11-03T16:30:00Z"},{"id":"3230323131313033313633303A323032313131303331373030","start":"2021-11-03T16:30:00Z","end":"2021-11-03T17:00:00Z"},{"id":"3230323131313033313730303A323032313131303331373330","start":"2021-11-03T17:00:00Z","end":"2021-11-03T17:30:00Z"},{"id":"3230323131313033313733303A323032313131303331383030","start":"2021-11-03T17:30:00Z","end":"2021-11-03T18:00:00Z"},{"id":"3230323131313033313830303A323032313131303331383330","start":"2021-11-03T18:00:00Z","end":"2021-11-03T18:30:00Z"},{"id":"3230323131313033313833303A323032313131303331393030","start":"2021-11-03T18:30:00Z","end":"2021-11-03T19:00:00Z"},{"id":"3230323131313033313930303A323032313131303331393330","start":"2021-11-03T19:00:00Z","end":"2021-11-03T19:30:00Z"},{"id":"3230323131313033313933303A323032313131303332303030","start":"2021-11-03T19:30:00Z","end":"2021-11-03T20:00:00Z"},{"id":"3230323131313033323030303A323032313131303332303330","start":"2021-11-03T20:00:00Z","end":"2021-11-03T20:30:00Z"},{"id":"3230323131313033323033303A323032313131303332313030","start":"2021-11-03T20:30:00Z","end":"2021-11-03T21:00:00Z"},{"id":"3230323131313033323130303A323032313131303332313330","start":"2021-11-03T21:00:00Z","end":"2021-11-03T21:30:00Z"},{"id":"3230323131313033323133303A323032313131303332323030","start":"2021-11-03T21:30:00Z","end":"2021-11-03T22:00:00Z"},{"id":"3230323131313033323230303A323032313131303430303030","start":"2021-11-03T22:00:00Z","end":"2021-11-04T00:00:00Z"},{"id":"3230323131313034313430303A323032313131303431343330","start":"2021-11-04T14:00:00Z","end":"2021-11-04T14:30:00Z"},{"id":"3230323131313034313433303A323032313131303431353030","start":"2021-11-04T14:30:00Z","end":"2021-11-04T15:00:00Z"},{"id":"3230323131313034313530303A323032313131303431353330","start":"2021-11-04T15:00:00Z","end":"2021-11-04T15:30:00Z"},{"id":"3230323131313034313533303A323032313131303431363030","start":"2021-11-04T15:30:00Z","end":"2021-11-04T16:00:00Z"},{"id":"3230323131313034313630303A323032313131303431363330","start":"2021-11-04T16:00:00Z","end":"2021-11-04T16:30:00Z"},{"id":"3230323131313034313633303A323032313131303431373030","start":"2021-11-04T16:30:00Z","end":"2021-11-04T17:00:00Z"},{"id":"3230323131313034313730303A323032313131303431373330","start":"2021-11-04T17:00:00Z","end":"2021-11-04T17:30:00Z"},{"id":"3230323131313034313733303A323032313131303431383030","start":"2021-11-04T17:30:00Z","end":"2021-11-04T18:00:00Z"},{"id":"3230323131313034313830303A323032313131303431383330","start":"2021-11-04T18:00:00Z","end":"2021-11-04T18:30:00Z"},{"id":"3230323131313034313833303A323032313131303431393030","start":"2021-11-04T18:30:00Z","end":"2021-11-04T19:00:00Z"},{"id":"3230323131313034313930303A323032313131303431393330","start":"2021-11-04T19:00:00Z","end":"2021-11-04T19:30:00Z"},{"id":"3230323131313034313933303A323032313131303432303030","start":"2021-11-04T19:30:00Z","end":"2021-11-04T20:00:00Z"},{"id":"3230323131313034323030303A323032313131303432303330","start":"2021-11-04T20:00:00Z","end":"2021-11-04T20:30:00Z"},{"id":"3230323131313034323033303A323032313131303432313030","start":"2021-11-04T20:30:00Z","end":"2021-11-04T21:00:00Z"},{"id":"3230323131313034323130303A323032313131303432313330","start":"2021-11-04T21:00:00Z","end":"2021-11-04T21:30:00Z"},{"id":"3230323131313034323133303A323032313131303432323030","start":"2021-11-04T21:30:00Z","end":"2021-11-04T22:00:00Z"},{"id":"3230323131313034323230303A323032313131303432323330","start":"2021-11-04T22:00:00Z","end":"2021-11-04T22:30:00Z"},{"id":"3230323131313034323233303A323032313131303432333030","start":"2021-11-04T22:30:00Z","end":"2021-11-04T23:00:00Z"},{"id":"3230323131313034323330303A323032313131303530303030","start":"2021-11-04T23:00:00Z","end":"2021-11-05T00:00:00Z"},{"id":"3230323131313035313430303A323032313131303531343330","start":"2021-11-05T14:00:00Z","end":"2021-11-05T14:30:00Z"},{"id":"3230323131313035313433303A323032313131303531353030","start":"2021-11-05T14:30:00Z","end":"2021-11-05T15:00:00Z"},{"id":"3230323131313035313530303A323032313131303531353330","start":"2021-11-05T15:00:00Z","end":"2021-11-05T15:30:00Z"},{"id":"3230323131313035313533303A323032313131303531363030","start":"2021-11-05T15:30:00Z","end":"2021-11-05T16:00:00Z"},{"id":"3230323131313035313630303A323032313131303531363330","start":"2021-11-05T16:00:00Z","end":"2021-11-05T16:30:00Z"},{"id":"3230323131313035313633303A323032313131303531373030","start":"2021-11-05T16:30:00Z","end":"2021-11-05T17:00:00Z"},{"id":"3230323131313035313730303A323032313131303531373330","start":"2021-11-05T17:00:00Z","end":"2021-11-05T17:30:00Z"},{"id":"3230323131313035313733303A323032313131303531383030","start":"2021-11-05T17:30:00Z","end":"2021-11-05T18:00:00Z"},{"id":"3230323131313035313830303A323032313131303531383330","start":"2021-11-05T18:00:00Z","end":"2021-11-05T18:30:00Z"},{"id":"3230323131313035313833303A323032313131303531393030","start":"2021-11-05T18:30:00Z","end":"2021-11-05T19:00:00Z"},{"id":"3230323131313035313930303A323032313131303531393330","start":"2021-11-05T19:00:00Z","end":"2021-11-05T19:30:00Z"},{"id":"3230323131313035313933303A323032313131303532303030","start":"2021-11-05T19:30:00Z","end":"2021-11-05T20:00:00Z"},{"id":"3230323131313035323030303A323032313131303532303330","start":"2021-11-05T20:00:00Z","end":"2021-11-05T20:30:00Z"},{"id":"3230323131313035323033303A323032313131303532313030","start":"2021-11-05T20:30:00Z","end":"2021-11-05T21:00:00Z"},{"id":"3230323131313035323130303A323032313131303532313330","start":"2021-11-05T21:00:00Z","end":"2021-11-05T21:30:00Z"},{"id":"3230323131313035323133303A323032313131303532323030","start":"2021-11-05T21:30:00Z","end":"2021-11-05T22:00:00Z"},{"id":"3230323131313035323230303A323032313131303532323330","start":"2021-11-05T22:00:00Z","end":"2021-11-05T22:30:00Z"},{"id":"3230323131313035323233303A323032313131303532333030","start":"2021-11-05T22:30:00Z","end":"2021-11-05T23:00:00Z"},{"id":"3230323131313035323330303A323032313131303630303030","start":"2021-11-05T23:00:00Z","end":"2021-11-06T00:00:00Z"},{"id":"3230323131313038313530303A323032313131303831353330","start":"2021-11-08T15:00:00Z","end":"2021-11-08T15:30:00Z"},{"id":"3230323131313038313533303A323032313131303831363030","start":"2021-11-08T15:30:00Z","end":"2021-11-08T16:00:00Z"},{"id":"3230323131313038313630303A323032313131303831363330","start":"2021-11-08T16:00:00Z","end":"2021-11-08T16:30:00Z"},{"id":"3230323131313038313633303A323032313131303831373030","start":"2021-11-08T16:30:00Z","end":"2021-11-08T17:00:00Z"},{"id":"3230323131313038313730303A323032313131303831373330","start":"2021-11-08T17:00:00Z","end":"2021-11-08T17:30:00Z"},{"id":"3230323131313038313733303A323032313131303831383030","start":"2021-11-08T17:30:00Z","end":"2021-11-08T18:00:00Z"},{"id":"3230323131313038313830303A323032313131303831383330","start":"2021-11-08T18:00:00Z","end":"2021-11-08T18:30:00Z"},{"id":"3230323131313038313833303A323032313131303831393030","start":"2021-11-08T18:30:00Z","end":"2021-11-08T19:00:00Z"},{"id":"3230323131313038313930303A323032313131303831393330","start":"2021-11-08T19:00:00Z","end":"2021-11-08T19:30:00Z"},{"id":"3230323131313038313933303A323032313131303832303030","start":"2021-11-08T19:30:00Z","end":"2021-11-08T20:00:00Z"},{"id":"3230323131313038323030303A323032313131303832303330","start":"2021-11-08T20:00:00Z","end":"2021-11-08T20:30:00Z"},{"id":"3230323131313038323033303A323032313131303832313030","start":"2021-11-08T20:30:00Z","end":"2021-11-08T21:00:00Z"},{"id":"3230323131313038323130303A323032313131303832313330","start":"2021-11-08T21:00:00Z","end":"2021-11-08T21:30:00Z"},{"id":"3230323131313038323133303A323032313131303832323030","start":"2021-11-08T21:30:00Z","end":"2021-11-08T22:00:00Z"},{"id":"3230323131313038323230303A323032313131303832323330","start":"2021-11-08T22:00:00Z","end":"2021-11-08T22:30:00Z"},{"id":"3230323131313038323233303A323032313131303832333030","start":"2021-11-08T22:30:00Z","end":"2021-11-08T23:00:00Z"},{"id":"3230323131313038323330303A323032313131303832333330","start":"2021-11-08T23:00:00Z","end":"2021-11-08T23:30:00Z"},{"id":"3230323131313038323333303A323032313131303930303030","start":"2021-11-08T23:30:00Z","end":"2021-11-09T00:00:00Z"},{"id":"3230323131313039303030303A323032313131303930313030","start":"2021-11-09T00:00:00Z","end":"2021-11-09T01:00:00Z"},{"id":"3230323131313039323230303A323032313131303932323330","start":"2021-11-09T22:00:00Z","end":"2021-11-09T22:30:00Z"},{"id":"3230323131313039323233303A323032313131303932333030","start":"2021-11-09T22:30:00Z","end":"2021-11-09T23:00:00Z"},{"id":"3230323131313039323330303A323032313131313030313030","start":"2021-11-09T23:00:00Z","end":"2021-11-10T01:00:00Z"},{"id":"3230323131313130313530303A323032313131313031353330","start":"2021-11-10T15:00:00Z","end":"2021-11-10T15:30:00Z"},{"id":"3230323131313130313533303A323032313131313031363030","start":"2021-11-10T15:30:00Z","end":"2021-11-10T16:00:00Z"},{"id":"3230323131313130313630303A323032313131313031363330","start":"2021-11-10T16:00:00Z","end":"2021-11-10T16:30:00Z"},{"id":"3230323131313130313633303A323032313131313031373030","start":"2021-11-10T16:30:00Z","end":"2021-11-10T17:00:00Z"},{"id":"3230323131313130313730303A323032313131313031373330","start":"2021-11-10T17:00:00Z","end":"2021-11-10T17:30:00Z"},{"id":"3230323131313130313733303A323032313131313031383030","start":"2021-11-10T17:30:00Z","end":"2021-11-10T18:00:00Z"},{"id":"3230323131313130313830303A323032313131313031383330","start":"2021-11-10T18:00:00Z","end":"2021-11-10T18:30:00Z"},{"id":"3230323131313130313833303A323032313131313031393030","start":"2021-11-10T18:30:00Z","end":"2021-11-10T19:00:00Z"},{"id":"3230323131313130313930303A323032313131313031393330","start":"2021-11-10T19:00:00Z","end":"2021-11-10T19:30:00Z"},{"id":"3230323131313130313933303A323032313131313032303030","start":"2021-11-10T19:30:00Z","end":"2021-11-10T20:00:00Z"},{"id":"3230323131313130323030303A323032313131313032303330","start":"2021-11-10T20:00:00Z","end":"2021-11-10T20:30:00Z"},{"id":"3230323131313130323033303A323032313131313032313030","start":"2021-11-10T20:30:00Z","end":"2021-11-10T21:00:00Z"},{"id":"3230323131313130323130303A323032313131313032313330","start":"2021-11-10T21:00:00Z","end":"2021-11-10T21:30:00Z"},{"id":"3230323131313130323133303A323032313131313032323030","start":"2021-11-10T21:30:00Z","end":"2021-11-10T22:00:00Z"},{"id":"3230323131313130323230303A323032313131313032323330","start":"2021-11-10T22:00:00Z","end":"2021-11-10T22:30:00Z"},{"id":"3230323131313130323233303A323032313131313032333030","start":"2021-11-10T22:30:00Z","end":"2021-11-10T23:00:00Z"},{"id":"3230323131313130323330303A323032313131313130313030","start":"2021-11-10T23:00:00Z","end":"2021-11-11T01:00:00Z"},{"id":"3230323131313131313530303A323032313131313131353330","start":"2021-11-11T15:00:00Z","end":"2021-11-11T15:30:00Z"},{"id":"3230323131313131313533303A323032313131313131363030","start":"2021-11-11T15:30:00Z","end":"2021-11-11T16:00:00Z"},{"id":"3230323131313131313630303A323032313131313131363330","start":"2021-11-11T16:00:00Z","end":"2021-11-11T16:30:00Z"},{"id":"3230323131313131313633303A323032313131313131373030","start":"2021-11-11T16:30:00Z","end":"2021-11-11T17:00:00Z"},{"id":"3230323131313131313730303A323032313131313131373330","start":"2021-11-11T17:00:00Z","end":"2021-11-11T17:30:00Z"},{"id":"3230323131313131313733303A323032313131313131383030","start":"2021-11-11T17:30:00Z","end":"2021-11-11T18:00:00Z"},{"id":"3230323131313131313830303A323032313131313131383330","start":"2021-11-11T18:00:00Z","end":"2021-11-11T18:30:00Z"},{"id":"3230323131313131313833303A323032313131313131393030","start":"2021-11-11T18:30:00Z","end":"2021-11-11T19:00:00Z"},{"id":"3230323131313131313930303A323032313131313131393330","start":"2021-11-11T19:00:00Z","end":"2021-11-11T19:30:00Z"},{"id":"3230323131313131313933303A323032313131313132303030","start":"2021-11-11T19:30:00Z","end":"2021-11-11T20:00:00Z"},{"id":"3230323131313131323030303A323032313131313132303330","start":"2021-11-11T20:00:00Z","end":"2021-11-11T20:30:00Z"},{"id":"3230323131313131323033303A323032313131313132313030","start":"2021-11-11T20:30:00Z","end":"2021-11-11T21:00:00Z"},{"id":"3230323131313131323130303A323032313131313132313330","start":"2021-11-11T21:00:00Z","end":"2021-11-11T21:30:00Z"},{"id":"3230323131313131323133303A323032313131313132323030","start":"2021-11-11T21:30:00Z","end":"2021-11-11T22:00:00Z"},{"id":"3230323131313131323230303A323032313131313132323330","start":"2021-11-11T22:00:00Z","end":"2021-11-11T22:30:00Z"},{"id":"3230323131313131323233303A323032313131313132333030","start":"2021-11-11T22:30:00Z","end":"2021-11-11T23:00:00Z"},{"id":"3230323131313131323330303A323032313131313132333330","start":"2021-11-11T23:00:00Z","end":"2021-11-11T23:30:00Z"},{"id":"3230323131313131323333303A323032313131313230303030","start":"2021-11-11T23:30:00Z","end":"2021-11-12T00:00:00Z"},{"id":"3230323131313132303030303A323032313131313230313030","start":"2021-11-12T00:00:00Z","end":"2021-11-12T01:00:00Z"},{"id":"3230323131313132313530303A323032313131313231353330","start":"2021-11-12T15:00:00Z","end":"2021-11-12T15:30:00Z"},{"id":"3230323131313132313533303A323032313131313231363030","start":"2021-11-12T15:30:00Z","end":"2021-11-12T16:00:00Z"},{"id":"3230323131313132313630303A323032313131313231363330","start":"2021-11-12T16:00:00Z","end":"2021-11-12T16:30:00Z"},{"id":"3230323131313132313633303A323032313131313231373030","start":"2021-11-12T16:30:00Z","end":"2021-11-12T17:00:00Z"},{"id":"3230323131313132313730303A323032313131313231373330","start":"2021-11-12T17:00:00Z","end":"2021-11-12T17:30:00Z"},{"id":"3230323131313132313733303A323032313131313231383030","start":"2021-11-12T17:30:00Z","end":"2021-11-12T18:00:00Z"},{"id":"3230323131313132313830303A323032313131313231383330","start":"2021-11-12T18:00:00Z","end":"2021-11-12T18:30:00Z"},{"id":"3230323131313132313833303A323032313131313231393030","start":"2021-11-12T18:30:00Z","end":"2021-11-12T19:00:00Z"},{"id":"3230323131313132313930303A323032313131313231393330","start":"2021-11-12T19:00:00Z","end":"2021-11-12T19:30:00Z"},{"id":"3230323131313132313933303A323032313131313232303030","start":"2021-11-12T19:30:00Z","end":"2021-11-12T20:00:00Z"},{"id":"3230323131313132323030303A323032313131313232303330","start":"2021-11-12T20:00:00Z","end":"2021-11-12T20:30:00Z"},{"id":"3230323131313132323033303A323032313131313232313030","start":"2021-11-12T20:30:00Z","end":"2021-11-12T21:00:00Z"},{"id":"3230323131313132323130303A323032313131313232313330","start":"2021-11-12T21:00:00Z","end":"2021-11-12T21:30:00Z"},{"id":"3230323131313132323133303A323032313131313232323030","start":"2021-11-12T21:30:00Z","end":"2021-11-12T22:00:00Z"},{"id":"3230323131313132323230303A323032313131313232323330","start":"2021-11-12T22:00:00Z","end":"2021-11-12T22:30:00Z"},{"id":"3230323131313132323233303A323032313131313232333030","start":"2021-11-12T22:30:00Z","end":"2021-11-12T23:00:00Z"},{"id":"3230323131313132323330303A323032313131313232333330","start":"2021-11-12T23:00:00Z","end":"2021-11-12T23:30:00Z"},{"id":"3230323131313132323333303A323032313131313330303030","start":"2021-11-12T23:30:00Z","end":"2021-11-13T00:00:00Z"},{"id":"3230323131313133303030303A323032313131313330313030","start":"2021-11-13T00:00:00Z","end":"2021-11-13T01:00:00Z"},{"id":"3230323131313135313530303A323032313131313531353330","start":"2021-11-15T15:00:00Z","end":"2021-11-15T15:30:00Z"},{"id":"3230323131313135313533303A323032313131313531363030","start":"2021-11-15T15:30:00Z","end":"2021-11-15T16:00:00Z"},{"id":"3230323131313135313630303A323032313131313531363330","start":"2021-11-15T16:00:00Z","end":"2021-11-15T16:30:00Z"},{"id":"3230323131313135313633303A323032313131313531373030","start":"2021-11-15T16:30:00Z","end":"2021-11-15T17:00:00Z"},{"id":"3230323131313135313730303A323032313131313531373330","start":"2021-11-15T17:00:00Z","end":"2021-11-15T17:30:00Z"},{"id":"3230323131313135313733303A323032313131313531383030","start":"2021-11-15T17:30:00Z","end":"2021-11-15T18:00:00Z"},{"id":"3230323131313135313830303A323032313131313531383330","start":"2021-11-15T18:00:00Z","end":"2021-11-15T18:30:00Z"},{"id":"3230323131313135313833303A323032313131313531393030","start":"2021-11-15T18:30:00Z","end":"2021-11-15T19:00:00Z"},{"id":"3230323131313135313930303A323032313131313531393330","start":"2021-11-15T19:00:00Z","end":"2021-11-15T19:30:00Z"},{"id":"3230323131313135313933303A323032313131313532303030","start":"2021-11-15T19:30:00Z","end":"2021-11-15T20:00:00Z"},{"id":"3230323131313135323030303A323032313131313532303330","start":"2021-11-15T20:00:00Z","end":"2021-11-15T20:30:00Z"},{"id":"3230323131313135323033303A323032313131313532313030","start":"2021-11-15T20:30:00Z","end":"2021-11-15T21:00:00Z"},{"id":"3230323131313135323130303A323032313131313532313330","start":"2021-11-15T21:00:00Z","end":"2021-11-15T21:30:00Z"},{"id":"3230323131313135323133303A323032313131313532323030","start":"2021-11-15T21:30:00Z","end":"2021-11-15T22:00:00Z"},{"id":"3230323131313135323230303A323032313131313532323330","start":"2021-11-15T22:00:00Z","end":"2021-11-15T22:30:00Z"},{"id":"3230323131313135323233303A323032313131313532333030","start":"2021-11-15T22:30:00Z","end":"2021-11-15T23:00:00Z"},{"id":"3230323131313135323330303A323032313131313532333330","start":"2021-11-15T23:00:00Z","end":"2021-11-15T23:30:00Z"},{"id":"3230323131313135323333303A323032313131313630303030","start":"2021-11-15T23:30:00Z","end":"2021-11-16T00:00:00Z"},{"id":"3230323131313136303030303A323032313131313630313030","start":"2021-11-16T00:00:00Z","end":"2021-11-16T01:00:00Z"},{"id":"3230323131313136323230303A323032313131313632323330","start":"2021-11-16T22:00:00Z","end":"2021-11-16T22:30:00Z"},{"id":"3230323131313136323233303A323032313131313632333030","start":"2021-11-16T22:30:00Z","end":"2021-11-16T23:00:00Z"},{"id":"3230323131313136323330303A323032313131313730313030","start":"2021-11-16T23:00:00Z","end":"2021-11-17T01:00:00Z"},{"id":"3230323131313137313530303A323032313131313731353330","start":"2021-11-17T15:00:00Z","end":"2021-11-17T15:30:00Z"},{"id":"3230323131313137313533303A323032313131313731363030","start":"2021-11-17T15:30:00Z","end":"2021-11-17T16:00:00Z"},{"id":"3230323131313137313630303A323032313131313731363330","start":"2021-11-17T16:00:00Z","end":"2021-11-17T16:30:00Z"},{"id":"3230323131313137313633303A323032313131313731373030","start":"2021-11-17T16:30:00Z","end":"2021-11-17T17:00:00Z"},{"id":"3230323131313137313730303A323032313131313731373330","start":"2021-11-17T17:00:00Z","end":"2021-11-17T17:30:00Z"},{"id":"3230323131313137313733303A323032313131313731383030","start":"2021-11-17T17:30:00Z","end":"2021-11-17T18:00:00Z"},{"id":"3230323131313137313830303A323032313131313731383330","start":"2021-11-17T18:00:00Z","end":"2021-11-17T18:30:00Z"},{"id":"3230323131313137313833303A323032313131313731393030","start":"2021-11-17T18:30:00Z","end":"2021-11-17T19:00:00Z"},{"id":"3230323131313137313930303A323032313131313731393330","start":"2021-11-17T19:00:00Z","end":"2021-11-17T19:30:00Z"},{"id":"3230323131313137313933303A323032313131313732303030","start":"2021-11-17T19:30:00Z","end":"2021-11-17T20:00:00Z"},{"id":"3230323131313137323030303A323032313131313732303330","start":"2021-11-17T20:00:00Z","end":"2021-11-17T20:30:00Z"},{"id":"3230323131313137323033303A323032313131313732313030","start":"2021-11-17T20:30:00Z","end":"2021-11-17T21:00:00Z"},{"id":"3230323131313137323130303A323032313131313732313330","start":"2021-11-17T21:00:00Z","end":"2021-11-17T21:30:00Z"},{"id":"3230323131313137323133303A323032313131313732323030","start":"2021-11-17T21:30:00Z","end":"2021-11-17T22:00:00Z"},{"id":"3230323131313137323230303A323032313131313732323330","start":"2021-11-17T22:00:00Z","end":"2021-11-17T22:30:00Z"},{"id":"3230323131313137323233303A323032313131313732333030","start":"2021-11-17T22:30:00Z","end":"2021-11-17T23:00:00Z"},{"id":"3230323131313137323330303A323032313131313830313030","start":"2021-11-17T23:00:00Z","end":"2021-11-18T01:00:00Z"},{"id":"3230323131313138313530303A323032313131313831353330","start":"2021-11-18T15:00:00Z","end":"2021-11-18T15:30:00Z"},{"id":"3230323131313138313533303A323032313131313831363030","start":"2021-11-18T15:30:00Z","end":"2021-11-18T16:00:00Z"},{"id":"3230323131313138313630303A323032313131313831363330","start":"2021-11-18T16:00:00Z","end":"2021-11-18T16:30:00Z"},{"id":"3230323131313138313633303A323032313131313831373030","start":"2021-11-18T16:30:00Z","end":"2021-11-18T17:00:00Z"},{"id":"3230323131313138313730303A323032313131313831373330","start":"2021-11-18T17:00:00Z","end":"2021-11-18T17:30:00Z"},{"id":"3230323131313138313733303A323032313131313831383030","start":"2021-11-18T17:30:00Z","end":"2021-11-18T18:00:00Z"},{"id":"3230323131313138313830303A323032313131313831383330","start":"2021-11-18T18:00:00Z","end":"2021-11-18T18:30:00Z"},{"id":"3230323131313138313833303A323032313131313831393030","start":"2021-11-18T18:30:00Z","end":"2021-11-18T19:00:00Z"},{"id":"3230323131313138313930303A323032313131313831393330","start":"2021-11-18T19:00:00Z","end":"2021-11-18T19:30:00Z"},{"id":"3230323131313138313933303A323032313131313832303030","start":"2021-11-18T19:30:00Z","end":"2021-11-18T20:00:00Z"},{"id":"3230323131313138323030303A323032313131313832303330","start":"2021-11-18T20:00:00Z","end":"2021-11-18T20:30:00Z"},{"id":"3230323131313138323033303A323032313131313832313030","start":"2021-11-18T20:30:00Z","end":"2021-11-18T21:00:00Z"},{"id":"3230323131313138323130303A323032313131313832313330","start":"2021-11-18T21:00:00Z","end":"2021-11-18T21:30:00Z"},{"id":"3230323131313138323133303A323032313131313832323030","start":"2021-11-18T21:30:00Z","end":"2021-11-18T22:00:00Z"},{"id":"3230323131313138323230303A323032313131313832323330","start":"2021-11-18T22:00:00Z","end":"2021-11-18T22:30:00Z"},{"id":"3230323131313138323233303A323032313131313832333030","start":"2021-11-18T22:30:00Z","end":"2021-11-18T23:00:00Z"},{"id":"3230323131313138323330303A323032313131313832333330","start":"2021-11-18T23:00:00Z","end":"2021-11-18T23:30:00Z"},{"id":"3230323131313138323333303A323032313131313930303030","start":"2021-11-18T23:30:00Z","end":"2021-11-19T00:00:00Z"},{"id":"3230323131313139303030303A323032313131313930313030","start":"2021-11-19T00:00:00Z","end":"2021-11-19T01:00:00Z"},{"id":"3230323131313139313530303A323032313131313931353330","start":"2021-11-19T15:00:00Z","end":"2021-11-19T15:30:00Z"},{"id":"3230323131313139313533303A323032313131313931363030","start":"2021-11-19T15:30:00Z","end":"2021-11-19T16:00:00Z"},{"id":"3230323131313139313630303A323032313131313931363330","start":"2021-11-19T16:00:00Z","end":"2021-11-19T16:30:00Z"},{"id":"3230323131313139313633303A323032313131313931373030","start":"2021-11-19T16:30:00Z","end":"2021-11-19T17:00:00Z"},{"id":"3230323131313139313730303A323032313131313931373330","start":"2021-11-19T17:00:00Z","end":"2021-11-19T17:30:00Z"},{"id":"3230323131313139313733303A323032313131313931383030","start":"2021-11-19T17:30:00Z","end":"2021-11-19T18:00:00Z"},{"id":"3230323131313139313830303A323032313131313931383330","start":"2021-11-19T18:00:00Z","end":"2021-11-19T18:30:00Z"},{"id":"3230323131313139313833303A323032313131313931393030","start":"2021-11-19T18:30:00Z","end":"2021-11-19T19:00:00Z"},{"id":"3230323131313139313930303A323032313131313931393330","start":"2021-11-19T19:00:00Z","end":"2021-11-19T19:30:00Z"},{"id":"3230323131313139313933303A323032313131313932303030","start":"2021-11-19T19:30:00Z","end":"2021-11-19T20:00:00Z"},{"id":"3230323131313139323030303A323032313131313932303330","start":"2021-11-19T20:00:00Z","end":"2021-11-19T20:30:00Z"},{"id":"3230323131313139323033303A323032313131313932313030","start":"2021-11-19T20:30:00Z","end":"2021-11-19T21:00:00Z"},{"id":"3230323131313139323130303A323032313131313932313330","start":"2021-11-19T21:00:00Z","end":"2021-11-19T21:30:00Z"},{"id":"3230323131313139323133303A323032313131313932323030","start":"2021-11-19T21:30:00Z","end":"2021-11-19T22:00:00Z"},{"id":"3230323131313139323230303A323032313131313932323330","start":"2021-11-19T22:00:00Z","end":"2021-11-19T22:30:00Z"},{"id":"3230323131313139323233303A323032313131313932333030","start":"2021-11-19T22:30:00Z","end":"2021-11-19T23:00:00Z"},{"id":"3230323131313139323330303A323032313131313932333330","start":"2021-11-19T23:00:00Z","end":"2021-11-19T23:30:00Z"},{"id":"3230323131313139323333303A323032313131323030303030","start":"2021-11-19T23:30:00Z","end":"2021-11-20T00:00:00Z"},{"id":"3230323131313230303030303A323032313131323030313030","start":"2021-11-20T00:00:00Z","end":"2021-11-20T01:00:00Z"},{"id":"3230323131313232313530303A323032313131323231353330","start":"2021-11-22T15:00:00Z","end":"2021-11-22T15:30:00Z"},{"id":"3230323131313232313533303A323032313131323231363030","start":"2021-11-22T15:30:00Z","end":"2021-11-22T16:00:00Z"},{"id":"3230323131313232313630303A323032313131323231363330","start":"2021-11-22T16:00:00Z","end":"2021-11-22T16:30:00Z"},{"id":"3230323131313232313633303A323032313131323231373030","start":"2021-11-22T16:30:00Z","end":"2021-11-22T17:00:00Z"},{"id":"3230323131313232313730303A323032313131323231373330","start":"2021-11-22T17:00:00Z","end":"2021-11-22T17:30:00Z"},{"id":"3230323131313232313733303A323032313131323231383030","start":"2021-11-22T17:30:00Z","end":"2021-11-22T18:00:00Z"},{"id":"3230323131313232313830303A323032313131323231383330","start":"2021-11-22T18:00:00Z","end":"2021-11-22T18:30:00Z"},{"id":"3230323131313232313833303A323032313131323231393030","start":"2021-11-22T18:30:00Z","end":"2021-11-22T19:00:00Z"},{"id":"3230323131313232313930303A323032313131323231393330","start":"2021-11-22T19:00:00Z","end":"2021-11-22T19:30:00Z"},{"id":"3230323131313232313933303A323032313131323232303030","start":"2021-11-22T19:30:00Z","end":"2021-11-22T20:00:00Z"},{"id":"3230323131313232323030303A323032313131323232303330","start":"2021-11-22T20:00:00Z","end":"2021-11-22T20:30:00Z"},{"id":"3230323131313232323033303A323032313131323232313030","start":"2021-11-22T20:30:00Z","end":"2021-11-22T21:00:00Z"},{"id":"3230323131313232323130303A323032313131323232313330","start":"2021-11-22T21:00:00Z","end":"2021-11-22T21:30:00Z"},{"id":"3230323131313232323133303A323032313131323232323030","start":"2021-11-22T21:30:00Z","end":"2021-11-22T22:00:00Z"},{"id":"3230323131313232323230303A323032313131323232323330","start":"2021-11-22T22:00:00Z","end":"2021-11-22T22:30:00Z"},{"id":"3230323131313232323233303A323032313131323232333030","start":"2021-11-22T22:30:00Z","end":"2021-11-22T23:00:00Z"},{"id":"3230323131313232323330303A323032313131323232333330","start":"2021-11-22T23:00:00Z","end":"2021-11-22T23:30:00Z"},{"id":"3230323131313232323333303A323032313131323330303030","start":"2021-11-22T23:30:00Z","end":"2021-11-23T00:00:00Z"},{"id":"3230323131313233303030303A323032313131323330313030","start":"2021-11-23T00:00:00Z","end":"2021-11-23T01:00:00Z"},{"id":"3230323131313233323230303A323032313131323332323330","start":"2021-11-23T22:00:00Z","end":"2021-11-23T22:30:00Z"},{"id":"3230323131313233323233303A323032313131323332333030","start":"2021-11-23T22:30:00Z","end":"2021-11-23T23:00:00Z"},{"id":"3230323131313233323330303A323032313131323430313030","start":"2021-11-23T23:00:00Z","end":"2021-11-24T01:00:00Z"},{"id":"3230323131313234313530303A323032313131323431353330","start":"2021-11-24T15:00:00Z","end":"2021-11-24T15:30:00Z"},{"id":"3230323131313234313533303A323032313131323431363030","start":"2021-11-24T15:30:00Z","end":"2021-11-24T16:00:00Z"},{"id":"3230323131313234313630303A323032313131323431363330","start":"2021-11-24T16:00:00Z","end":"2021-11-24T16:30:00Z"},{"id":"3230323131313234313633303A323032313131323431373030","start":"2021-11-24T16:30:00Z","end":"2021-11-24T17:00:00Z"},{"id":"3230323131313234313730303A323032313131323431373330","start":"2021-11-24T17:00:00Z","end":"2021-11-24T17:30:00Z"},{"id":"3230323131313234313733303A323032313131323431383030","start":"2021-11-24T17:30:00Z","end":"2021-11-24T18:00:00Z"},{"id":"3230323131313234313830303A323032313131323431383330","start":"2021-11-24T18:00:00Z","end":"2021-11-24T18:30:00Z"},{"id":"3230323131313234313833303A323032313131323431393030","start":"2021-11-24T18:30:00Z","end":"2021-11-24T19:00:00Z"},{"id":"3230323131313234313930303A323032313131323431393330","start":"2021-11-24T19:00:00Z","end":"2021-11-24T19:30:00Z"},{"id":"3230323131313234313933303A323032313131323432303030","start":"2021-11-24T19:30:00Z","end":"2021-11-24T20:00:00Z"},{"id":"3230323131313234323030303A323032313131323432303330","start":"2021-11-24T20:00:00Z","end":"2021-11-24T20:30:00Z"},{"id":"3230323131313234323033303A323032313131323432313030","start":"2021-11-24T20:30:00Z","end":"2021-11-24T21:00:00Z"},{"id":"3230323131313234323130303A323032313131323432313330","start":"2021-11-24T21:00:00Z","end":"2021-11-24T21:30:00Z"},{"id":"3230323131313234323133303A323032313131323432323030","start":"2021-11-24T21:30:00Z","end":"2021-11-24T22:00:00Z"},{"id":"3230323131313234323230303A323032313131323432323330","start":"2021-11-24T22:00:00Z","end":"2021-11-24T22:30:00Z"},{"id":"3230323131313234323233303A323032313131323432333030","start":"2021-11-24T22:30:00Z","end":"2021-11-24T23:00:00Z"},{"id":"3230323131313234323330303A323032313131323530313030","start":"2021-11-24T23:00:00Z","end":"2021-11-25T01:00:00Z"},{"id":"3230323131313235313530303A323032313131323531353330","start":"2021-11-25T15:00:00Z","end":"2021-11-25T15:30:00Z"},{"id":"3230323131313235313533303A323032313131323531363030","start":"2021-11-25T15:30:00Z","end":"2021-11-25T16:00:00Z"},{"id":"3230323131313235313630303A323032313131323531363330","start":"2021-11-25T16:00:00Z","end":"2021-11-25T16:30:00Z"},{"id":"3230323131313235313633303A323032313131323531373030","start":"2021-11-25T16:30:00Z","end":"2021-11-25T17:00:00Z"},{"id":"3230323131313235313730303A323032313131323531373330","start":"2021-11-25T17:00:00Z","end":"2021-11-25T17:30:00Z"},{"id":"3230323131313235313733303A323032313131323531383030","start":"2021-11-25T17:30:00Z","end":"2021-11-25T18:00:00Z"},{"id":"3230323131313235313830303A323032313131323531383330","start":"2021-11-25T18:00:00Z","end":"2021-11-25T18:30:00Z"},{"id":"3230323131313235313833303A323032313131323531393030","start":"2021-11-25T18:30:00Z","end":"2021-11-25T19:00:00Z"},{"id":"3230323131313235313930303A323032313131323531393330","start":"2021-11-25T19:00:00Z","end":"2021-11-25T19:30:00Z"},{"id":"3230323131313235313933303A323032313131323532303030","start":"2021-11-25T19:30:00Z","end":"2021-11-25T20:00:00Z"},{"id":"3230323131313235323030303A323032313131323532303330","start":"2021-11-25T20:00:00Z","end":"2021-11-25T20:30:00Z"},{"id":"3230323131313235323033303A323032313131323532313030","start":"2021-11-25T20:30:00Z","end":"2021-11-25T21:00:00Z"},{"id":"3230323131313235323130303A323032313131323532313330","start":"2021-11-25T21:00:00Z","end":"2021-11-25T21:30:00Z"},{"id":"3230323131313235323133303A323032313131323532323030","start":"2021-11-25T21:30:00Z","end":"2021-11-25T22:00:00Z"},{"id":"3230323131313235323230303A323032313131323532323330","start":"2021-11-25T22:00:00Z","end":"2021-11-25T22:30:00Z"},{"id":"3230323131313235323233303A323032313131323532333030","start":"2021-11-25T22:30:00Z","end":"2021-11-25T23:00:00Z"},{"id":"3230323131313235323330303A323032313131323532333330","start":"2021-11-25T23:00:00Z","end":"2021-11-25T23:30:00Z"},{"id":"3230323131313235323333303A323032313131323630303030","start":"2021-11-25T23:30:00Z","end":"2021-11-26T00:00:00Z"},{"id":"3230323131313236303030303A323032313131323630313030","start":"2021-11-26T00:00:00Z","end":"2021-11-26T01:00:00Z"},{"id":"3230323131313236313530303A323032313131323631353330","start":"2021-11-26T15:00:00Z","end":"2021-11-26T15:30:00Z"},{"id":"3230323131313236313533303A323032313131323631363030","start":"2021-11-26T15:30:00Z","end":"2021-11-26T16:00:00Z"},{"id":"3230323131313236313630303A323032313131323631363330","start":"2021-11-26T16:00:00Z","end":"2021-11-26T16:30:00Z"},{"id":"3230323131313236313633303A323032313131323631373030","start":"2021-11-26T16:30:00Z","end":"2021-11-26T17:00:00Z"},{"id":"3230323131313236313730303A323032313131323631373330","start":"2021-11-26T17:00:00Z","end":"2021-11-26T17:30:00Z"},{"id":"3230323131313236313733303A323032313131323631383030","start":"2021-11-26T17:30:00Z","end":"2021-11-26T18:00:00Z"},{"id":"3230323131313236313830303A323032313131323631383330","start":"2021-11-26T18:00:00Z","end":"2021-11-26T18:30:00Z"},{"id":"3230323131313236313833303A323032313131323631393030","start":"2021-11-26T18:30:00Z","end":"2021-11-26T19:00:00Z"},{"id":"3230323131313236313930303A323032313131323631393330","start":"2021-11-26T19:00:00Z","end":"2021-11-26T19:30:00Z"},{"id":"3230323131313236313933303A323032313131323632303030","start":"2021-11-26T19:30:00Z","end":"2021-11-26T20:00:00Z"},{"id":"3230323131313236323030303A323032313131323632303330","start":"2021-11-26T20:00:00Z","end":"2021-11-26T20:30:00Z"},{"id":"3230323131313236323033303A323032313131323632313030","start":"2021-11-26T20:30:00Z","end":"2021-11-26T21:00:00Z"},{"id":"3230323131313236323130303A323032313131323632313330","start":"2021-11-26T21:00:00Z","end":"2021-11-26T21:30:00Z"},{"id":"3230323131313236323133303A323032313131323632323030","start":"2021-11-26T21:30:00Z","end":"2021-11-26T22:00:00Z"},{"id":"3230323131313236323230303A323032313131323632323330","start":"2021-11-26T22:00:00Z","end":"2021-11-26T22:30:00Z"},{"id":"3230323131313236323233303A323032313131323632333030","start":"2021-11-26T22:30:00Z","end":"2021-11-26T23:00:00Z"},{"id":"3230323131313236323330303A323032313131323632333330","start":"2021-11-26T23:00:00Z","end":"2021-11-26T23:30:00Z"},{"id":"3230323131313236323333303A323032313131323730303030","start":"2021-11-26T23:30:00Z","end":"2021-11-27T00:00:00Z"},{"id":"3230323131313237303030303A323032313131323730313030","start":"2021-11-27T00:00:00Z","end":"2021-11-27T01:00:00Z"},{"id":"3230323131313239313530303A323032313131323931353330","start":"2021-11-29T15:00:00Z","end":"2021-11-29T15:30:00Z"},{"id":"3230323131313239313533303A323032313131323931363030","start":"2021-11-29T15:30:00Z","end":"2021-11-29T16:00:00Z"},{"id":"3230323131313239313630303A323032313131323931363330","start":"2021-11-29T16:00:00Z","end":"2021-11-29T16:30:00Z"},{"id":"3230323131313239313633303A323032313131323931373030","start":"2021-11-29T16:30:00Z","end":"2021-11-29T17:00:00Z"},{"id":"3230323131313239313730303A323032313131323931373330","start":"2021-11-29T17:00:00Z","end":"2021-11-29T17:30:00Z"},{"id":"3230323131313239313733303A323032313131323931383030","start":"2021-11-29T17:30:00Z","end":"2021-11-29T18:00:00Z"},{"id":"3230323131313239313830303A323032313131323931383330","start":"2021-11-29T18:00:00Z","end":"2021-11-29T18:30:00Z"},{"id":"3230323131313239313833303A323032313131323931393030","start":"2021-11-29T18:30:00Z","end":"2021-11-29T19:00:00Z"},{"id":"3230323131313239313930303A323032313131323931393330","start":"2021-11-29T19:00:00Z","end":"2021-11-29T19:30:00Z"},{"id":"3230323131313239313933303A323032313131323932303030","start":"2021-11-29T19:30:00Z","end":"2021-11-29T20:00:00Z"},{"id":"3230323131313239323030303A323032313131323932303330","start":"2021-11-29T20:00:00Z","end":"2021-11-29T20:30:00Z"},{"id":"3230323131313239323033303A323032313131323932313030","start":"2021-11-29T20:30:00Z","end":"2021-11-29T21:00:00Z"},{"id":"3230323131313239323130303A323032313131323932313330","start":"2021-11-29T21:00:00Z","end":"2021-11-29T21:30:00Z"},{"id":"3230323131313239323133303A323032313131323932323030","start":"2021-11-29T21:30:00Z","end":"2021-11-29T22:00:00Z"},{"id":"3230323131313239323230303A323032313131323932323330","start":"2021-11-29T22:00:00Z","end":"2021-11-29T22:30:00Z"},{"id":"3230323131313239323233303A323032313131323932333030","start":"2021-11-29T22:30:00Z","end":"2021-11-29T23:00:00Z"},{"id":"3230323131313239323330303A323032313131323932333330","start":"2021-11-29T23:00:00Z","end":"2021-11-29T23:30:00Z"},{"id":"3230323131313239323333303A323032313131333030303030","start":"2021-11-29T23:30:00Z","end":"2021-11-30T00:00:00Z"},{"id":"3230323131313330303030303A323032313131333030313030","start":"2021-11-30T00:00:00Z","end":"2021-11-30T01:00:00Z"},{"id":"3230323131313330323230303A323032313131333032323330","start":"2021-11-30T22:00:00Z","end":"2021-11-30T22:30:00Z"},{"id":"3230323131313330323233303A323032313131333032333030","start":"2021-11-30T22:30:00Z","end":"2021-11-30T23:00:00Z"},{"id":"3230323131313330323330303A323032313132303130313030","start":"2021-11-30T23:00:00Z","end":"2021-12-01T01:00:00Z"},{"id":"3230323131323031313530303A323032313132303131353330","start":"2021-12-01T15:00:00Z","end":"2021-12-01T15:30:00Z"},{"id":"3230323131323031313533303A323032313132303131363030","start":"2021-12-01T15:30:00Z","end":"2021-12-01T16:00:00Z"},{"id":"3230323131323031313630303A323032313132303131363330","start":"2021-12-01T16:00:00Z","end":"2021-12-01T16:30:00Z"},{"id":"3230323131323031313633303A323032313132303131373030","start":"2021-12-01T16:30:00Z","end":"2021-12-01T17:00:00Z"},{"id":"3230323131323031313730303A323032313132303131373330","start":"2021-12-01T17:00:00Z","end":"2021-12-01T17:30:00Z"},{"id":"3230323131323031313733303A323032313132303131383030","start":"2021-12-01T17:30:00Z","end":"2021-12-01T18:00:00Z"},{"id":"3230323131323031313830303A323032313132303131383330","start":"2021-12-01T18:00:00Z","end":"2021-12-01T18:30:00Z"},{"id":"3230323131323031313833303A323032313132303131393030","start":"2021-12-01T18:30:00Z","end":"2021-12-01T19:00:00Z"},{"id":"3230323131323031313930303A323032313132303131393330","start":"2021-12-01T19:00:00Z","end":"2021-12-01T19:30:00Z"},{"id":"3230323131323031313933303A323032313132303132303030","start":"2021-12-01T19:30:00Z","end":"2021-12-01T20:00:00Z"},{"id":"3230323131323031323030303A323032313132303132303330","start":"2021-12-01T20:00:00Z","end":"2021-12-01T20:30:00Z"},{"id":"3230323131323031323033303A323032313132303132313030","start":"2021-12-01T20:30:00Z","end":"2021-12-01T21:00:00Z"},{"id":"3230323131323031323130303A323032313132303132313330","start":"2021-12-01T21:00:00Z","end":"2021-12-01T21:30:00Z"},{"id":"3230323131323031323133303A323032313132303132323030","start":"2021-12-01T21:30:00Z","end":"2021-12-01T22:00:00Z"},{"id":"3230323131323031323230303A323032313132303132323330","start":"2021-12-01T22:00:00Z","end":"2021-12-01T22:30:00Z"},{"id":"3230323131323031323233303A323032313132303132333030","start":"2021-12-01T22:30:00Z","end":"2021-12-01T23:00:00Z"},{"id":"3230323131323031323330303A323032313132303230313030","start":"2021-12-01T23:00:00Z","end":"2021-12-02T01:00:00Z"},{"id":"3230323131323032313530303A323032313132303231353330","start":"2021-12-02T15:00:00Z","end":"2021-12-02T15:30:00Z"},{"id":"3230323131323032313533303A323032313132303231363030","start":"2021-12-02T15:30:00Z","end":"2021-12-02T16:00:00Z"},{"id":"3230323131323032313630303A323032313132303231363330","start":"2021-12-02T16:00:00Z","end":"2021-12-02T16:30:00Z"},{"id":"3230323131323032313633303A323032313132303231373030","start":"2021-12-02T16:30:00Z","end":"2021-12-02T17:00:00Z"},{"id":"3230323131323032313730303A323032313132303231373330","start":"2021-12-02T17:00:00Z","end":"2021-12-02T17:30:00Z"},{"id":"3230323131323032313733303A323032313132303231383030","start":"2021-12-02T17:30:00Z","end":"2021-12-02T18:00:00Z"},{"id":"3230323131323032313830303A323032313132303231383330","start":"2021-12-02T18:00:00Z","end":"2021-12-02T18:30:00Z"},{"id":"3230323131323032313833303A323032313132303231393030","start":"2021-12-02T18:30:00Z","end":"2021-12-02T19:00:00Z"},{"id":"3230323131323032313930303A323032313132303231393330","start":"2021-12-02T19:00:00Z","end":"2021-12-02T19:30:00Z"},{"id":"3230323131323032313933303A323032313132303232303030","start":"2021-12-02T19:30:00Z","end":"2021-12-02T20:00:00Z"},{"id":"3230323131323032323030303A323032313132303232303330","start":"2021-12-02T20:00:00Z","end":"2021-12-02T20:30:00Z"},{"id":"3230323131323032323033303A323032313132303232313030","start":"2021-12-02T20:30:00Z","end":"2021-12-02T21:00:00Z"},{"id":"3230323131323032323130303A323032313132303232313330","start":"2021-12-02T21:00:00Z","end":"2021-12-02T21:30:00Z"},{"id":"3230323131323032323133303A323032313132303232323030","start":"2021-12-02T21:30:00Z","end":"2021-12-02T22:00:00Z"},{"id":"3230323131323032323230303A323032313132303232323330","start":"2021-12-02T22:00:00Z","end":"2021-12-02T22:30:00Z"},{"id":"3230323131323032323233303A323032313132303232333030","start":"2021-12-02T22:30:00Z","end":"2021-12-02T23:00:00Z"},{"id":"3230323131323032323330303A323032313132303232333330","start":"2021-12-02T23:00:00Z","end":"2021-12-02T23:30:00Z"},{"id":"3230323131323032323333303A323032313132303330303030","start":"2021-12-02T23:30:00Z","end":"2021-12-03T00:00:00Z"},{"id":"3230323131323033303030303A323032313132303330313030","start":"2021-12-03T00:00:00Z","end":"2021-12-03T01:00:00Z"},{"id":"3230323131323033313530303A323032313132303331353330","start":"2021-12-03T15:00:00Z","end":"2021-12-03T15:30:00Z"},{"id":"3230323131323033313533303A323032313132303331363030","start":"2021-12-03T15:30:00Z","end":"2021-12-03T16:00:00Z"},{"id":"3230323131323033313630303A323032313132303331363330","start":"2021-12-03T16:00:00Z","end":"2021-12-03T16:30:00Z"},{"id":"3230323131323033313633303A323032313132303331373030","start":"2021-12-03T16:30:00Z","end":"2021-12-03T17:00:00Z"},{"id":"3230323131323033313730303A323032313132303331373330","start":"2021-12-03T17:00:00Z","end":"2021-12-03T17:30:00Z"},{"id":"3230323131323033313733303A323032313132303331383030","start":"2021-12-03T17:30:00Z","end":"2021-12-03T18:00:00Z"},{"id":"3230323131323033313830303A323032313132303331383330","start":"2021-12-03T18:00:00Z","end":"2021-12-03T18:30:00Z"},{"id":"3230323131323033313833303A323032313132303331393030","start":"2021-12-03T18:30:00Z","end":"2021-12-03T19:00:00Z"},{"id":"3230323131323033313930303A323032313132303331393330","start":"2021-12-03T19:00:00Z","end":"2021-12-03T19:30:00Z"},{"id":"3230323131323033313933303A323032313132303332303030","start":"2021-12-03T19:30:00Z","end":"2021-12-03T20:00:00Z"},{"id":"3230323131323033323030303A323032313132303332303330","start":"2021-12-03T20:00:00Z","end":"2021-12-03T20:30:00Z"},{"id":"3230323131323033323033303A323032313132303332313030","start":"2021-12-03T20:30:00Z","end":"2021-12-03T21:00:00Z"},{"id":"3230323131323033323130303A323032313132303332313330","start":"2021-12-03T21:00:00Z","end":"2021-12-03T21:30:00Z"},{"id":"3230323131323033323133303A323032313132303332323030","start":"2021-12-03T21:30:00Z","end":"2021-12-03T22:00:00Z"},{"id":"3230323131323033323230303A323032313132303332323330","start":"2021-12-03T22:00:00Z","end":"2021-12-03T22:30:00Z"},{"id":"3230323131323033323233303A323032313132303332333030","start":"2021-12-03T22:30:00Z","end":"2021-12-03T23:00:00Z"},{"id":"3230323131323033323330303A323032313132303332333330","start":"2021-12-03T23:00:00Z","end":"2021-12-03T23:30:00Z"},{"id":"3230323131323033323333303A323032313132303430303030","start":"2021-12-03T23:30:00Z","end":"2021-12-04T00:00:00Z"},{"id":"3230323131323034303030303A323032313132303430313030","start":"2021-12-04T00:00:00Z","end":"2021-12-04T01:00:00Z"},{"id":"3230323131323036313530303A323032313132303631353330","start":"2021-12-06T15:00:00Z","end":"2021-12-06T15:30:00Z"},{"id":"3230323131323036313533303A323032313132303631363030","start":"2021-12-06T15:30:00Z","end":"2021-12-06T16:00:00Z"},{"id":"3230323131323036313630303A323032313132303631363330","start":"2021-12-06T16:00:00Z","end":"2021-12-06T16:30:00Z"},{"id":"3230323131323036313633303A323032313132303631373030","start":"2021-12-06T16:30:00Z","end":"2021-12-06T17:00:00Z"},{"id":"3230323131323036313730303A323032313132303631373330","start":"2021-12-06T17:00:00Z","end":"2021-12-06T17:30:00Z"},{"id":"3230323131323036313733303A323032313132303631383030","start":"2021-12-06T17:30:00Z","end":"2021-12-06T18:00:00Z"},{"id":"3230323131323036313830303A323032313132303631383330","start":"2021-12-06T18:00:00Z","end":"2021-12-06T18:30:00Z"},{"id":"3230323131323036313833303A323032313132303631393030","start":"2021-12-06T18:30:00Z","end":"2021-12-06T19:00:00Z"},{"id":"3230323131323036313930303A323032313132303631393330","start":"2021-12-06T19:00:00Z","end":"2021-12-06T19:30:00Z"},{"id":"3230323131323036313933303A323032313132303632303030","start":"2021-12-06T19:30:00Z","end":"2021-12-06T20:00:00Z"},{"id":"3230323131323036323030303A323032313132303632303330","start":"2021-12-06T20:00:00Z","end":"2021-12-06T20:30:00Z"},{"id":"3230323131323036323033303A323032313132303632313030","start":"2021-12-06T20:30:00Z","end":"2021-12-06T21:00:00Z"},{"id":"3230323131323036323130303A323032313132303632313330","start":"2021-12-06T21:00:00Z","end":"2021-12-06T21:30:00Z"},{"id":"3230323131323036323133303A323032313132303632323030","start":"2021-12-06T21:30:00Z","end":"2021-12-06T22:00:00Z"},{"id":"3230323131323036323230303A323032313132303632323330","start":"2021-12-06T22:00:00Z","end":"2021-12-06T22:30:00Z"},{"id":"3230323131323036323233303A323032313132303632333030","start":"2021-12-06T22:30:00Z","end":"2021-12-06T23:00:00Z"},{"id":"3230323131323036323330303A323032313132303632333330","start":"2021-12-06T23:00:00Z","end":"2021-12-06T23:30:00Z"},{"id":"3230323131323036323333303A323032313132303730303030","start":"2021-12-06T23:30:00Z","end":"2021-12-07T00:00:00Z"},{"id":"3230323131323037303030303A323032313132303730313030","start":"2021-12-07T00:00:00Z","end":"2021-12-07T01:00:00Z"},{"id":"3230323131323037323230303A323032313132303732323330","start":"2021-12-07T22:00:00Z","end":"2021-12-07T22:30:00Z"},{"id":"3230323131323037323233303A323032313132303732333030","start":"2021-12-07T22:30:00Z","end":"2021-12-07T23:00:00Z"},{"id":"3230323131323037323330303A323032313132303830313030","start":"2021-12-07T23:00:00Z","end":"2021-12-08T01:00:00Z"},{"id":"3230323131323038313530303A323032313132303831353330","start":"2021-12-08T15:00:00Z","end":"2021-12-08T15:30:00Z"},{"id":"3230323131323038313533303A323032313132303831363030","start":"2021-12-08T15:30:00Z","end":"2021-12-08T16:00:00Z"},{"id":"3230323131323038313630303A323032313132303831363330","start":"2021-12-08T16:00:00Z","end":"2021-12-08T16:30:00Z"},{"id":"3230323131323038313633303A323032313132303831373030","start":"2021-12-08T16:30:00Z","end":"2021-12-08T17:00:00Z"},{"id":"3230323131323038313730303A323032313132303831373330","start":"2021-12-08T17:00:00Z","end":"2021-12-08T17:30:00Z"},{"id":"3230323131323038313733303A323032313132303831383030","start":"2021-12-08T17:30:00Z","end":"2021-12-08T18:00:00Z"},{"id":"3230323131323038313830303A323032313132303831383330","start":"2021-12-08T18:00:00Z","end":"2021-12-08T18:30:00Z"},{"id":"3230323131323038313833303A323032313132303831393030","start":"2021-12-08T18:30:00Z","end":"2021-12-08T19:00:00Z"},{"id":"3230323131323038313930303A323032313132303831393330","start":"2021-12-08T19:00:00Z","end":"2021-12-08T19:30:00Z"},{"id":"3230323131323038313933303A323032313132303832303030","start":"2021-12-08T19:30:00Z","end":"2021-12-08T20:00:00Z"},{"id":"3230323131323038323030303A323032313132303832303330","start":"2021-12-08T20:00:00Z","end":"2021-12-08T20:30:00Z"},{"id":"3230323131323038323033303A323032313132303832313030","start":"2021-12-08T20:30:00Z","end":"2021-12-08T21:00:00Z"},{"id":"3230323131323038323130303A323032313132303832313330","start":"2021-12-08T21:00:00Z","end":"2021-12-08T21:30:00Z"},{"id":"3230323131323038323133303A323032313132303832323030","start":"2021-12-08T21:30:00Z","end":"2021-12-08T22:00:00Z"},{"id":"3230323131323038323230303A323032313132303832323330","start":"2021-12-08T22:00:00Z","end":"2021-12-08T22:30:00Z"},{"id":"3230323131323038323233303A323032313132303832333030","start":"2021-12-08T22:30:00Z","end":"2021-12-08T23:00:00Z"},{"id":"3230323131323038323330303A323032313132303930313030","start":"2021-12-08T23:00:00Z","end":"2021-12-09T01:00:00Z"},{"id":"3230323131323039313530303A323032313132303931353330","start":"2021-12-09T15:00:00Z","end":"2021-12-09T15:30:00Z"},{"id":"3230323131323039313533303A323032313132303931363030","start":"2021-12-09T15:30:00Z","end":"2021-12-09T16:00:00Z"},{"id":"3230323131323039313630303A323032313132303931363330","start":"2021-12-09T16:00:00Z","end":"2021-12-09T16:30:00Z"},{"id":"3230323131323039313633303A323032313132303931373030","start":"2021-12-09T16:30:00Z","end":"2021-12-09T17:00:00Z"},{"id":"3230323131323039313730303A323032313132303931373330","start":"2021-12-09T17:00:00Z","end":"2021-12-09T17:30:00Z"},{"id":"3230323131323039313733303A323032313132303931383030","start":"2021-12-09T17:30:00Z","end":"2021-12-09T18:00:00Z"},{"id":"3230323131323039313830303A323032313132303931383330","start":"2021-12-09T18:00:00Z","end":"2021-12-09T18:30:00Z"},{"id":"3230323131323039313833303A323032313132303931393030","start":"2021-12-09T18:30:00Z","end":"2021-12-09T19:00:00Z"},{"id":"3230323131323039313930303A323032313132303931393330","start":"2021-12-09T19:00:00Z","end":"2021-12-09T19:30:00Z"},{"id":"3230323131323039313933303A323032313132303932303030","start":"2021-12-09T19:30:00Z","end":"2021-12-09T20:00:00Z"},{"id":"3230323131323039323030303A323032313132303932303330","start":"2021-12-09T20:00:00Z","end":"2021-12-09T20:30:00Z"},{"id":"3230323131323039323033303A323032313132303932313030","start":"2021-12-09T20:30:00Z","end":"2021-12-09T21:00:00Z"},{"id":"3230323131323039323130303A323032313132303932313330","start":"2021-12-09T21:00:00Z","end":"2021-12-09T21:30:00Z"},{"id":"3230323131323039323133303A323032313132303932323030","start":"2021-12-09T21:30:00Z","end":"2021-12-09T22:00:00Z"},{"id":"3230323131323039323230303A323032313132303932323330","start":"2021-12-09T22:00:00Z","end":"2021-12-09T22:30:00Z"},{"id":"3230323131323039323233303A323032313132303932333030","start":"2021-12-09T22:30:00Z","end":"2021-12-09T23:00:00Z"},{"id":"3230323131323039323330303A323032313132303932333330","start":"2021-12-09T23:00:00Z","end":"2021-12-09T23:30:00Z"},{"id":"3230323131323039323333303A323032313132313030303030","start":"2021-12-09T23:30:00Z","end":"2021-12-10T00:00:00Z"},{"id":"3230323131323130303030303A323032313132313030313030","start":"2021-12-10T00:00:00Z","end":"2021-12-10T01:00:00Z"},{"id":"3230323131323130313530303A323032313132313031353330","start":"2021-12-10T15:00:00Z","end":"2021-12-10T15:30:00Z"},{"id":"3230323131323130313533303A323032313132313031363030","start":"2021-12-10T15:30:00Z","end":"2021-12-10T16:00:00Z"},{"id":"3230323131323130313630303A323032313132313031363330","start":"2021-12-10T16:00:00Z","end":"2021-12-10T16:30:00Z"},{"id":"3230323131323130313633303A323032313132313031373030","start":"2021-12-10T16:30:00Z","end":"2021-12-10T17:00:00Z"},{"id":"3230323131323130313730303A323032313132313031373330","start":"2021-12-10T17:00:00Z","end":"2021-12-10T17:30:00Z"},{"id":"3230323131323130313733303A323032313132313031383030","start":"2021-12-10T17:30:00Z","end":"2021-12-10T18:00:00Z"},{"id":"3230323131323130313830303A323032313132313031383330","start":"2021-12-10T18:00:00Z","end":"2021-12-10T18:30:00Z"},{"id":"3230323131323130313833303A323032313132313031393030","start":"2021-12-10T18:30:00Z","end":"2021-12-10T19:00:00Z"},{"id":"3230323131323130313930303A323032313132313031393330","start":"2021-12-10T19:00:00Z","end":"2021-12-10T19:30:00Z"},{"id":"3230323131323130313933303A323032313132313032303030","start":"2021-12-10T19:30:00Z","end":"2021-12-10T20:00:00Z"},{"id":"3230323131323130323030303A323032313132313032303330","start":"2021-12-10T20:00:00Z","end":"2021-12-10T20:30:00Z"},{"id":"3230323131323130323033303A323032313132313032313030","start":"2021-12-10T20:30:00Z","end":"2021-12-10T21:00:00Z"},{"id":"3230323131323130323130303A323032313132313032313330","start":"2021-12-10T21:00:00Z","end":"2021-12-10T21:30:00Z"},{"id":"3230323131323130323133303A323032313132313032323030","start":"2021-12-10T21:30:00Z","end":"2021-12-10T22:00:00Z"},{"id":"3230323131323130323230303A323032313132313032323330","start":"2021-12-10T22:00:00Z","end":"2021-12-10T22:30:00Z"},{"id":"3230323131323130323233303A323032313132313032333030","start":"2021-12-10T22:30:00Z","end":"2021-12-10T23:00:00Z"},{"id":"3230323131323130323330303A323032313132313032333330","start":"2021-12-10T23:00:00Z","end":"2021-12-10T23:30:00Z"},{"id":"3230323131323130323333303A323032313132313130303030","start":"2021-12-10T23:30:00Z","end":"2021-12-11T00:00:00Z"},{"id":"3230323131323131303030303A323032313132313130313030","start":"2021-12-11T00:00:00Z","end":"2021-12-11T01:00:00Z"},{"id":"3230323131323133313530303A323032313132313331353330","start":"2021-12-13T15:00:00Z","end":"2021-12-13T15:30:00Z"},{"id":"3230323131323133313533303A323032313132313331363030","start":"2021-12-13T15:30:00Z","end":"2021-12-13T16:00:00Z"},{"id":"3230323131323133313630303A323032313132313331363330","start":"2021-12-13T16:00:00Z","end":"2021-12-13T16:30:00Z"},{"id":"3230323131323133313633303A323032313132313331373030","start":"2021-12-13T16:30:00Z","end":"2021-12-13T17:00:00Z"},{"id":"3230323131323133313730303A323032313132313331373330","start":"2021-12-13T17:00:00Z","end":"2021-12-13T17:30:00Z"},{"id":"3230323131323133313733303A323032313132313331383030","start":"2021-12-13T17:30:00Z","end":"2021-12-13T18:00:00Z"},{"id":"3230323131323133313830303A323032313132313331383330","start":"2021-12-13T18:00:00Z","end":"2021-12-13T18:30:00Z"},{"id":"3230323131323133313833303A323032313132313331393030","start":"2021-12-13T18:30:00Z","end":"2021-12-13T19:00:00Z"},{"id":"3230323131323133313930303A323032313132313331393330","start":"2021-12-13T19:00:00Z","end":"2021-12-13T19:30:00Z"},{"id":"3230323131323133313933303A323032313132313332303030","start":"2021-12-13T19:30:00Z","end":"2021-12-13T20:00:00Z"},{"id":"3230323131323133323030303A323032313132313332303330","start":"2021-12-13T20:00:00Z","end":"2021-12-13T20:30:00Z"},{"id":"3230323131323133323033303A323032313132313332313030","start":"2021-12-13T20:30:00Z","end":"2021-12-13T21:00:00Z"},{"id":"3230323131323133323130303A323032313132313332313330","start":"2021-12-13T21:00:00Z","end":"2021-12-13T21:30:00Z"},{"id":"3230323131323133323133303A323032313132313332323030","start":"2021-12-13T21:30:00Z","end":"2021-12-13T22:00:00Z"},{"id":"3230323131323133323230303A323032313132313332323330","start":"2021-12-13T22:00:00Z","end":"2021-12-13T22:30:00Z"},{"id":"3230323131323133323233303A323032313132313332333030","start":"2021-12-13T22:30:00Z","end":"2021-12-13T23:00:00Z"},{"id":"3230323131323133323330303A323032313132313332333330","start":"2021-12-13T23:00:00Z","end":"2021-12-13T23:30:00Z"},{"id":"3230323131323133323333303A323032313132313430303030","start":"2021-12-13T23:30:00Z","end":"2021-12-14T00:00:00Z"},{"id":"3230323131323134303030303A323032313132313430313030","start":"2021-12-14T00:00:00Z","end":"2021-12-14T01:00:00Z"},{"id":"3230323131323134323230303A323032313132313432323330","start":"2021-12-14T22:00:00Z","end":"2021-12-14T22:30:00Z"},{"id":"3230323131323134323233303A323032313132313432333030","start":"2021-12-14T22:30:00Z","end":"2021-12-14T23:00:00Z"},{"id":"3230323131323134323330303A323032313132313530313030","start":"2021-12-14T23:00:00Z","end":"2021-12-15T01:00:00Z"},{"id":"3230323131323135313530303A323032313132313531353330","start":"2021-12-15T15:00:00Z","end":"2021-12-15T15:30:00Z"},{"id":"3230323131323135313533303A323032313132313531363030","start":"2021-12-15T15:30:00Z","end":"2021-12-15T16:00:00Z"},{"id":"3230323131323135313630303A323032313132313531363330","start":"2021-12-15T16:00:00Z","end":"2021-12-15T16:30:00Z"},{"id":"3230323131323135313633303A323032313132313531373030","start":"2021-12-15T16:30:00Z","end":"2021-12-15T17:00:00Z"},{"id":"3230323131323135313730303A323032313132313531373330","start":"2021-12-15T17:00:00Z","end":"2021-12-15T17:30:00Z"},{"id":"3230323131323135313733303A323032313132313531383030","start":"2021-12-15T17:30:00Z","end":"2021-12-15T18:00:00Z"},{"id":"3230323131323135313830303A323032313132313531383330","start":"2021-12-15T18:00:00Z","end":"2021-12-15T18:30:00Z"},{"id":"3230323131323135313833303A323032313132313531393030","start":"2021-12-15T18:30:00Z","end":"2021-12-15T19:00:00Z"},{"id":"3230323131323135313930303A323032313132313531393330","start":"2021-12-15T19:00:00Z","end":"2021-12-15T19:30:00Z"},{"id":"3230323131323135313933303A323032313132313532303030","start":"2021-12-15T19:30:00Z","end":"2021-12-15T20:00:00Z"},{"id":"3230323131323135323030303A323032313132313532303330","start":"2021-12-15T20:00:00Z","end":"2021-12-15T20:30:00Z"},{"id":"3230323131323135323033303A323032313132313532313030","start":"2021-12-15T20:30:00Z","end":"2021-12-15T21:00:00Z"},{"id":"3230323131323135323130303A323032313132313532313330","start":"2021-12-15T21:00:00Z","end":"2021-12-15T21:30:00Z"},{"id":"3230323131323135323133303A323032313132313532323030","start":"2021-12-15T21:30:00Z","end":"2021-12-15T22:00:00Z"},{"id":"3230323131323135323230303A323032313132313532323330","start":"2021-12-15T22:00:00Z","end":"2021-12-15T22:30:00Z"},{"id":"3230323131323135323233303A323032313132313532333030","start":"2021-12-15T22:30:00Z","end":"2021-12-15T23:00:00Z"},{"id":"3230323131323135323330303A323032313132313630313030","start":"2021-12-15T23:00:00Z","end":"2021-12-16T01:00:00Z"},{"id":"3230323131323136313530303A323032313132313631353330","start":"2021-12-16T15:00:00Z","end":"2021-12-16T15:30:00Z"},{"id":"3230323131323136313533303A323032313132313631363030","start":"2021-12-16T15:30:00Z","end":"2021-12-16T16:00:00Z"},{"id":"3230323131323136313630303A323032313132313631363330","start":"2021-12-16T16:00:00Z","end":"2021-12-16T16:30:00Z"},{"id":"3230323131323136313633303A323032313132313631373030","start":"2021-12-16T16:30:00Z","end":"2021-12-16T17:00:00Z"},{"id":"3230323131323136313730303A323032313132313631373330","start":"2021-12-16T17:00:00Z","end":"2021-12-16T17:30:00Z"},{"id":"3230323131323136313733303A323032313132313631383030","start":"2021-12-16T17:30:00Z","end":"2021-12-16T18:00:00Z"},{"id":"3230323131323136313830303A323032313132313631383330","start":"2021-12-16T18:00:00Z","end":"2021-12-16T18:30:00Z"},{"id":"3230323131323136313833303A323032313132313631393030","start":"2021-12-16T18:30:00Z","end":"2021-12-16T19:00:00Z"},{"id":"3230323131323136313930303A323032313132313631393330","start":"2021-12-16T19:00:00Z","end":"2021-12-16T19:30:00Z"},{"id":"3230323131323136313933303A323032313132313632303030","start":"2021-12-16T19:30:00Z","end":"2021-12-16T20:00:00Z"},{"id":"3230323131323136323030303A323032313132313632303330","start":"2021-12-16T20:00:00Z","end":"2021-12-16T20:30:00Z"},{"id":"3230323131323136323033303A323032313132313632313030","start":"2021-12-16T20:30:00Z","end":"2021-12-16T21:00:00Z"},{"id":"3230323131323136323130303A323032313132313632313330","start":"2021-12-16T21:00:00Z","end":"2021-12-16T21:30:00Z"},{"id":"3230323131323136323133303A323032313132313632323030","start":"2021-12-16T21:30:00Z","end":"2021-12-16T22:00:00Z"},{"id":"3230323131323136323230303A323032313132313632323330","start":"2021-12-16T22:00:00Z","end":"2021-12-16T22:30:00Z"},{"id":"3230323131323136323233303A323032313132313632333030","start":"2021-12-16T22:30:00Z","end":"2021-12-16T23:00:00Z"},{"id":"3230323131323136323330303A323032313132313632333330","start":"2021-12-16T23:00:00Z","end":"2021-12-16T23:30:00Z"},{"id":"3230323131323136323333303A323032313132313730303030","start":"2021-12-16T23:30:00Z","end":"2021-12-17T00:00:00Z"},{"id":"3230323131323137303030303A323032313132313730313030","start":"2021-12-17T00:00:00Z","end":"2021-12-17T01:00:00Z"},{"id":"3230323131323137313530303A323032313132313731353330","start":"2021-12-17T15:00:00Z","end":"2021-12-17T15:30:00Z"},{"id":"3230323131323137313533303A323032313132313731363030","start":"2021-12-17T15:30:00Z","end":"2021-12-17T16:00:00Z"},{"id":"3230323131323137313630303A323032313132313731363330","start":"2021-12-17T16:00:00Z","end":"2021-12-17T16:30:00Z"},{"id":"3230323131323137313633303A323032313132313731373030","start":"2021-12-17T16:30:00Z","end":"2021-12-17T17:00:00Z"},{"id":"3230323131323137313730303A323032313132313731373330","start":"2021-12-17T17:00:00Z","end":"2021-12-17T17:30:00Z"},{"id":"3230323131323137313733303A323032313132313731383030","start":"2021-12-17T17:30:00Z","end":"2021-12-17T18:00:00Z"},{"id":"3230323131323137313830303A323032313132313731383330","start":"2021-12-17T18:00:00Z","end":"2021-12-17T18:30:00Z"},{"id":"3230323131323137313833303A323032313132313731393030","start":"2021-12-17T18:30:00Z","end":"2021-12-17T19:00:00Z"},{"id":"3230323131323137313930303A323032313132313731393330","start":"2021-12-17T19:00:00Z","end":"2021-12-17T19:30:00Z"},{"id":"3230323131323137313933303A323032313132313732303030","start":"2021-12-17T19:30:00Z","end":"2021-12-17T20:00:00Z"},{"id":"3230323131323137323030303A323032313132313732303330","start":"2021-12-17T20:00:00Z","end":"2021-12-17T20:30:00Z"},{"id":"3230323131323137323033303A323032313132313732313030","start":"2021-12-17T20:30:00Z","end":"2021-12-17T21:00:00Z"},{"id":"3230323131323137323130303A323032313132313732313330","start":"2021-12-17T21:00:00Z","end":"2021-12-17T21:30:00Z"},{"id":"3230323131323137323133303A323032313132313732323030","start":"2021-12-17T21:30:00Z","end":"2021-12-17T22:00:00Z"},{"id":"3230323131323137323230303A323032313132313732323330","start":"2021-12-17T22:00:00Z","end":"2021-12-17T22:30:00Z"},{"id":"3230323131323137323233303A323032313132313732333030","start":"2021-12-17T22:30:00Z","end":"2021-12-17T23:00:00Z"},{"id":"3230323131323137323330303A323032313132313732333330","start":"2021-12-17T23:00:00Z","end":"2021-12-17T23:30:00Z"},{"id":"3230323131323137323333303A323032313132313830303030","start":"2021-12-17T23:30:00Z","end":"2021-12-18T00:00:00Z"},{"id":"3230323131323138303030303A323032313132313830313030","start":"2021-12-18T00:00:00Z","end":"2021-12-18T01:00:00Z"},{"id":"3230323131323230313530303A323032313132323031353330","start":"2021-12-20T15:00:00Z","end":"2021-12-20T15:30:00Z"},{"id":"3230323131323230313533303A323032313132323031363030","start":"2021-12-20T15:30:00Z","end":"2021-12-20T16:00:00Z"},{"id":"3230323131323230313630303A323032313132323031363330","start":"2021-12-20T16:00:00Z","end":"2021-12-20T16:30:00Z"},{"id":"3230323131323230313633303A323032313132323031373030","start":"2021-12-20T16:30:00Z","end":"2021-12-20T17:00:00Z"},{"id":"3230323131323230313730303A323032313132323031373330","start":"2021-12-20T17:00:00Z","end":"2021-12-20T17:30:00Z"},{"id":"3230323131323230313733303A323032313132323031383030","start":"2021-12-20T17:30:00Z","end":"2021-12-20T18:00:00Z"},{"id":"3230323131323230313830303A323032313132323031383330","start":"2021-12-20T18:00:00Z","end":"2021-12-20T18:30:00Z"},{"id":"3230323131323230313833303A323032313132323031393030","start":"2021-12-20T18:30:00Z","end":"2021-12-20T19:00:00Z"},{"id":"3230323131323230313930303A323032313132323031393330","start":"2021-12-20T19:00:00Z","end":"2021-12-20T19:30:00Z"},{"id":"3230323131323230313933303A323032313132323032303030","start":"2021-12-20T19:30:00Z","end":"2021-12-20T20:00:00Z"},{"id":"3230323131323230323030303A323032313132323032303330","start":"2021-12-20T20:00:00Z","end":"2021-12-20T20:30:00Z"},{"id":"3230323131323230323033303A323032313132323032313030","start":"2021-12-20T20:30:00Z","end":"2021-12-20T21:00:00Z"},{"id":"3230323131323230323130303A323032313132323032313330","start":"2021-12-20T21:00:00Z","end":"2021-12-20T21:30:00Z"},{"id":"3230323131323230323133303A323032313132323032323030","start":"2021-12-20T21:30:00Z","end":"2021-12-20T22:00:00Z"},{"id":"3230323131323230323230303A323032313132323032323330","start":"2021-12-20T22:00:00Z","end":"2021-12-20T22:30:00Z"},{"id":"3230323131323230323233303A323032313132323032333030","start":"2021-12-20T22:30:00Z","end":"2021-12-20T23:00:00Z"},{"id":"3230323131323230323330303A323032313132323032333330","start":"2021-12-20T23:00:00Z","end":"2021-12-20T23:30:00Z"},{"id":"3230323131323230323333303A323032313132323130303030","start":"2021-12-20T23:30:00Z","end":"2021-12-21T00:00:00Z"},{"id":"3230323131323231303030303A323032313132323130313030","start":"2021-12-21T00:00:00Z","end":"2021-12-21T01:00:00Z"},{"id":"3230323131323231323230303A323032313132323132323330","start":"2021-12-21T22:00:00Z","end":"2021-12-21T22:30:00Z"},{"id":"3230323131323231323233303A323032313132323132333030","start":"2021-12-21T22:30:00Z","end":"2021-12-21T23:00:00Z"},{"id":"3230323131323231323330303A323032313132323230313030","start":"2021-12-21T23:00:00Z","end":"2021-12-22T01:00:00Z"},{"id":"3230323131323232313530303A323032313132323231353330","start":"2021-12-22T15:00:00Z","end":"2021-12-22T15:30:00Z"},{"id":"3230323131323232313533303A323032313132323231363030","start":"2021-12-22T15:30:00Z","end":"2021-12-22T16:00:00Z"},{"id":"3230323131323232313630303A323032313132323231363330","start":"2021-12-22T16:00:00Z","end":"2021-12-22T16:30:00Z"},{"id":"3230323131323232313633303A323032313132323231373030","start":"2021-12-22T16:30:00Z","end":"2021-12-22T17:00:00Z"},{"id":"3230323131323232313730303A323032313132323231373330","start":"2021-12-22T17:00:00Z","end":"2021-12-22T17:30:00Z"},{"id":"3230323131323232313733303A323032313132323231383030","start":"2021-12-22T17:30:00Z","end":"2021-12-22T18:00:00Z"},{"id":"3230323131323232313830303A323032313132323231383330","start":"2021-12-22T18:00:00Z","end":"2021-12-22T18:30:00Z"},{"id":"3230323131323232313833303A323032313132323231393030","start":"2021-12-22T18:30:00Z","end":"2021-12-22T19:00:00Z"},{"id":"3230323131323232313930303A323032313132323231393330","start":"2021-12-22T19:00:00Z","end":"2021-12-22T19:30:00Z"},{"id":"3230323131323232313933303A323032313132323232303030","start":"2021-12-22T19:30:00Z","end":"2021-12-22T20:00:00Z"},{"id":"3230323131323232323030303A323032313132323232303330","start":"2021-12-22T20:00:00Z","end":"2021-12-22T20:30:00Z"},{"id":"3230323131323232323033303A323032313132323232313030","start":"2021-12-22T20:30:00Z","end":"2021-12-22T21:00:00Z"},{"id":"3230323131323232323130303A323032313132323232313330","start":"2021-12-22T21:00:00Z","end":"2021-12-22T21:30:00Z"},{"id":"3230323131323232323133303A323032313132323232323030","start":"2021-12-22T21:30:00Z","end":"2021-12-22T22:00:00Z"},{"id":"3230323131323232323230303A323032313132323232323330","start":"2021-12-22T22:00:00Z","end":"2021-12-22T22:30:00Z"},{"id":"3230323131323232323233303A323032313132323232333030","start":"2021-12-22T22:30:00Z","end":"2021-12-22T23:00:00Z"},{"id":"3230323131323232323330303A323032313132323330313030","start":"2021-12-22T23:00:00Z","end":"2021-12-23T01:00:00Z"},{"id":"3230323131323233313530303A323032313132323331353330","start":"2021-12-23T15:00:00Z","end":"2021-12-23T15:30:00Z"},{"id":"3230323131323233313533303A323032313132323331363030","start":"2021-12-23T15:30:00Z","end":"2021-12-23T16:00:00Z"},{"id":"3230323131323233313630303A323032313132323331363330","start":"2021-12-23T16:00:00Z","end":"2021-12-23T16:30:00Z"},{"id":"3230323131323233313633303A323032313132323331373030","start":"2021-12-23T16:30:00Z","end":"2021-12-23T17:00:00Z"},{"id":"3230323131323233313730303A323032313132323331373330","start":"2021-12-23T17:00:00Z","end":"2021-12-23T17:30:00Z"},{"id":"3230323131323233313733303A323032313132323331383030","start":"2021-12-23T17:30:00Z","end":"2021-12-23T18:00:00Z"},{"id":"3230323131323233313830303A323032313132323331383330","start":"2021-12-23T18:00:00Z","end":"2021-12-23T18:30:00Z"},{"id":"3230323131323233313833303A323032313132323331393030","start":"2021-12-23T18:30:00Z","end":"2021-12-23T19:00:00Z"},{"id":"3230323131323233313930303A323032313132323331393330","start":"2021-12-23T19:00:00Z","end":"2021-12-23T19:30:00Z"},{"id":"3230323131323233313933303A323032313132323332303030","start":"2021-12-23T19:30:00Z","end":"2021-12-23T20:00:00Z"},{"id":"3230323131323233323030303A323032313132323332303330","start":"2021-12-23T20:00:00Z","end":"2021-12-23T20:30:00Z"},{"id":"3230323131323233323033303A323032313132323332313030","start":"2021-12-23T20:30:00Z","end":"2021-12-23T21:00:00Z"},{"id":"3230323131323233323130303A323032313132323332313330","start":"2021-12-23T21:00:00Z","end":"2021-12-23T21:30:00Z"},{"id":"3230323131323233323133303A323032313132323332323030","start":"2021-12-23T21:30:00Z","end":"2021-12-23T22:00:00Z"},{"id":"3230323131323233323230303A323032313132323332323330","start":"2021-12-23T22:00:00Z","end":"2021-12-23T22:30:00Z"},{"id":"3230323131323233323233303A323032313132323332333030","start":"2021-12-23T22:30:00Z","end":"2021-12-23T23:00:00Z"},{"id":"3230323131323233323330303A323032313132323332333330","start":"2021-12-23T23:00:00Z","end":"2021-12-23T23:30:00Z"},{"id":"3230323131323233323333303A323032313132323430303030","start":"2021-12-23T23:30:00Z","end":"2021-12-24T00:00:00Z"},{"id":"3230323131323234303030303A323032313132323430313030","start":"2021-12-24T00:00:00Z","end":"2021-12-24T01:00:00Z"},{"id":"3230323131323234313530303A323032313132323431353330","start":"2021-12-24T15:00:00Z","end":"2021-12-24T15:30:00Z"},{"id":"3230323131323234313533303A323032313132323431363030","start":"2021-12-24T15:30:00Z","end":"2021-12-24T16:00:00Z"},{"id":"3230323131323234313630303A323032313132323431363330","start":"2021-12-24T16:00:00Z","end":"2021-12-24T16:30:00Z"},{"id":"3230323131323234313633303A323032313132323431373030","start":"2021-12-24T16:30:00Z","end":"2021-12-24T17:00:00Z"},{"id":"3230323131323234313730303A323032313132323431373330","start":"2021-12-24T17:00:00Z","end":"2021-12-24T17:30:00Z"},{"id":"3230323131323234313733303A323032313132323431383030","start":"2021-12-24T17:30:00Z","end":"2021-12-24T18:00:00Z"},{"id":"3230323131323234313830303A323032313132323431383330","start":"2021-12-24T18:00:00Z","end":"2021-12-24T18:30:00Z"},{"id":"3230323131323234313833303A323032313132323431393030","start":"2021-12-24T18:30:00Z","end":"2021-12-24T19:00:00Z"},{"id":"3230323131323234313930303A323032313132323431393330","start":"2021-12-24T19:00:00Z","end":"2021-12-24T19:30:00Z"},{"id":"3230323131323234313933303A323032313132323432303030","start":"2021-12-24T19:30:00Z","end":"2021-12-24T20:00:00Z"},{"id":"3230323131323234323030303A323032313132323432303330","start":"2021-12-24T20:00:00Z","end":"2021-12-24T20:30:00Z"},{"id":"3230323131323234323033303A323032313132323432313030","start":"2021-12-24T20:30:00Z","end":"2021-12-24T21:00:00Z"},{"id":"3230323131323234323130303A323032313132323432313330","start":"2021-12-24T21:00:00Z","end":"2021-12-24T21:30:00Z"},{"id":"3230323131323234323133303A323032313132323432323030","start":"2021-12-24T21:30:00Z","end":"2021-12-24T22:00:00Z"},{"id":"3230323131323234323230303A323032313132323432323330","start":"2021-12-24T22:00:00Z","end":"2021-12-24T22:30:00Z"},{"id":"3230323131323234323233303A323032313132323432333030","start":"2021-12-24T22:30:00Z","end":"2021-12-24T23:00:00Z"},{"id":"3230323131323234323330303A323032313132323432333330","start":"2021-12-24T23:00:00Z","end":"2021-12-24T23:30:00Z"},{"id":"3230323131323234323333303A323032313132323530303030","start":"2021-12-24T23:30:00Z","end":"2021-12-25T00:00:00Z"},{"id":"3230323131323235303030303A323032313132323530313030","start":"2021-12-25T00:00:00Z","end":"2021-12-25T01:00:00Z"},{"id":"3230323131323237313530303A323032313132323731353330","start":"2021-12-27T15:00:00Z","end":"2021-12-27T15:30:00Z"},{"id":"3230323131323237313533303A323032313132323731363030","start":"2021-12-27T15:30:00Z","end":"2021-12-27T16:00:00Z"},{"id":"3230323131323237313630303A323032313132323731363330","start":"2021-12-27T16:00:00Z","end":"2021-12-27T16:30:00Z"},{"id":"3230323131323237313633303A323032313132323731373030","start":"2021-12-27T16:30:00Z","end":"2021-12-27T17:00:00Z"},{"id":"3230323131323237313730303A323032313132323731373330","start":"2021-12-27T17:00:00Z","end":"2021-12-27T17:30:00Z"},{"id":"3230323131323237313733303A323032313132323731383030","start":"2021-12-27T17:30:00Z","end":"2021-12-27T18:00:00Z"},{"id":"3230323131323237313830303A323032313132323731383330","start":"2021-12-27T18:00:00Z","end":"2021-12-27T18:30:00Z"},{"id":"3230323131323237313833303A323032313132323731393030","start":"2021-12-27T18:30:00Z","end":"2021-12-27T19:00:00Z"},{"id":"3230323131323237313930303A323032313132323731393330","start":"2021-12-27T19:00:00Z","end":"2021-12-27T19:30:00Z"},{"id":"3230323131323237313933303A323032313132323732303030","start":"2021-12-27T19:30:00Z","end":"2021-12-27T20:00:00Z"},{"id":"3230323131323237323030303A323032313132323732303330","start":"2021-12-27T20:00:00Z","end":"2021-12-27T20:30:00Z"},{"id":"3230323131323237323033303A323032313132323732313030","start":"2021-12-27T20:30:00Z","end":"2021-12-27T21:00:00Z"},{"id":"3230323131323237323130303A323032313132323732313330","start":"2021-12-27T21:00:00Z","end":"2021-12-27T21:30:00Z"},{"id":"3230323131323237323133303A323032313132323732323030","start":"2021-12-27T21:30:00Z","end":"2021-12-27T22:00:00Z"},{"id":"3230323131323237323230303A323032313132323732323330","start":"2021-12-27T22:00:00Z","end":"2021-12-27T22:30:00Z"},{"id":"3230323131323237323233303A323032313132323732333030","start":"2021-12-27T22:30:00Z","end":"2021-12-27T23:00:00Z"},{"id":"3230323131323237323330303A323032313132323732333330","start":"2021-12-27T23:00:00Z","end":"2021-12-27T23:30:00Z"},{"id":"3230323131323237323333303A323032313132323830303030","start":"2021-12-27T23:30:00Z","end":"2021-12-28T00:00:00Z"},{"id":"3230323131323238303030303A323032313132323830313030","start":"2021-12-28T00:00:00Z","end":"2021-12-28T01:00:00Z"},{"id":"3230323131323238323230303A323032313132323832323330","start":"2021-12-28T22:00:00Z","end":"2021-12-28T22:30:00Z"},{"id":"3230323131323238323233303A323032313132323832333030","start":"2021-12-28T22:30:00Z","end":"2021-12-28T23:00:00Z"},{"id":"3230323131323238323330303A323032313132323930313030","start":"2021-12-28T23:00:00Z","end":"2021-12-29T01:00:00Z"},{"id":"3230323131323239313530303A323032313132323931353330","start":"2021-12-29T15:00:00Z","end":"2021-12-29T15:30:00Z"},{"id":"3230323131323239313533303A323032313132323931363030","start":"2021-12-29T15:30:00Z","end":"2021-12-29T16:00:00Z"},{"id":"3230323131323239313630303A323032313132323931363330","start":"2021-12-29T16:00:00Z","end":"2021-12-29T16:30:00Z"},{"id":"3230323131323239313633303A323032313132323931373030","start":"2021-12-29T16:30:00Z","end":"2021-12-29T17:00:00Z"},{"id":"3230323131323239313730303A323032313132323931373330","start":"2021-12-29T17:00:00Z","end":"2021-12-29T17:30:00Z"},{"id":"3230323131323239313733303A323032313132323931383030","start":"2021-12-29T17:30:00Z","end":"2021-12-29T18:00:00Z"},{"id":"3230323131323239313830303A323032313132323931383330","start":"2021-12-29T18:00:00Z","end":"2021-12-29T18:30:00Z"},{"id":"3230323131323239313833303A323032313132323931393030","start":"2021-12-29T18:30:00Z","end":"2021-12-29T19:00:00Z"},{"id":"3230323131323239313930303A323032313132323931393330","start":"2021-12-29T19:00:00Z","end":"2021-12-29T19:30:00Z"},{"id":"3230323131323239313933303A323032313132323932303030","start":"2021-12-29T19:30:00Z","end":"2021-12-29T20:00:00Z"},{"id":"3230323131323239323030303A323032313132323932303330","start":"2021-12-29T20:00:00Z","end":"2021-12-29T20:30:00Z"},{"id":"3230323131323239323033303A323032313132323932313030","start":"2021-12-29T20:30:00Z","end":"2021-12-29T21:00:00Z"},{"id":"3230323131323239323130303A323032313132323932313330","start":"2021-12-29T21:00:00Z","end":"2021-12-29T21:30:00Z"},{"id":"3230323131323239323133303A323032313132323932323030","start":"2021-12-29T21:30:00Z","end":"2021-12-29T22:00:00Z"},{"id":"3230323131323239323230303A323032313132323932323330","start":"2021-12-29T22:00:00Z","end":"2021-12-29T22:30:00Z"},{"id":"3230323131323239323233303A323032313132323932333030","start":"2021-12-29T22:30:00Z","end":"2021-12-29T23:00:00Z"},{"id":"3230323131323239323330303A323032313132333030313030","start":"2021-12-29T23:00:00Z","end":"2021-12-30T01:00:00Z"},{"id":"3230323131323330313530303A323032313132333031353330","start":"2021-12-30T15:00:00Z","end":"2021-12-30T15:30:00Z"},{"id":"3230323131323330313533303A323032313132333031363030","start":"2021-12-30T15:30:00Z","end":"2021-12-30T16:00:00Z"},{"id":"3230323131323330313630303A323032313132333031363330","start":"2021-12-30T16:00:00Z","end":"2021-12-30T16:30:00Z"},{"id":"3230323131323330313633303A323032313132333031373030","start":"2021-12-30T16:30:00Z","end":"2021-12-30T17:00:00Z"},{"id":"3230323131323330313730303A323032313132333031373330","start":"2021-12-30T17:00:00Z","end":"2021-12-30T17:30:00Z"},{"id":"3230323131323330313733303A323032313132333031383030","start":"2021-12-30T17:30:00Z","end":"2021-12-30T18:00:00Z"},{"id":"3230323131323330313830303A323032313132333031383330","start":"2021-12-30T18:00:00Z","end":"2021-12-30T18:30:00Z"},{"id":"3230323131323330313833303A323032313132333031393030","start":"2021-12-30T18:30:00Z","end":"2021-12-30T19:00:00Z"},{"id":"3230323131323330313930303A323032313132333031393330","start":"2021-12-30T19:00:00Z","end":"2021-12-30T19:30:00Z"},{"id":"3230323131323330313933303A323032313132333032303030","start":"2021-12-30T19:30:00Z","end":"2021-12-30T20:00:00Z"},{"id":"3230323131323330323030303A323032313132333032303330","start":"2021-12-30T20:00:00Z","end":"2021-12-30T20:30:00Z"},{"id":"3230323131323330323033303A323032313132333032313030","start":"2021-12-30T20:30:00Z","end":"2021-12-30T21:00:00Z"},{"id":"3230323131323330323130303A323032313132333032313330","start":"2021-12-30T21:00:00Z","end":"2021-12-30T21:30:00Z"},{"id":"3230323131323330323133303A323032313132333032323030","start":"2021-12-30T21:30:00Z","end":"2021-12-30T22:00:00Z"},{"id":"3230323131323330323230303A323032313132333032323330","start":"2021-12-30T22:00:00Z","end":"2021-12-30T22:30:00Z"},{"id":"3230323131323330323233303A323032313132333032333030","start":"2021-12-30T22:30:00Z","end":"2021-12-30T23:00:00Z"},{"id":"3230323131323330323330303A323032313132333032333330","start":"2021-12-30T23:00:00Z","end":"2021-12-30T23:30:00Z"}]}' + recorded_at: Mon, 11 Oct 2021 18:41:19 GMT +- request: + method: get + uri: https://veteran.apps.va.gov/vpg/v1/slots?end=2021-12-30T23:59:59Z&start=2021-10-26T00:00:00Z&clinicalService=service&location=983 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Vets.gov Agent + Referer: + - https://review-instance.va.gov + X-Vamf-Jwt: + - stubbed_token + X-Request-Id: + - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Date: + - Mon, 11 Oct 2021 18:41:19 GMT + Content-Type: + - application/json + Transfer-Encoding: + - chunked + Server: + - openresty + X-Vamf-Version: + - 1.10.0 + B3: + - 62cc41b5de2df75b-dc1d447244a4a01c-1 + Access-Control-Allow-Headers: + - x-vamf-jwt + X-Vamf-Build: + - 58ec2e2 + X-Vamf-Timestamp: + - '2021-08-18T13:44:12+0000' + Access-Control-Allow-Origin: + - "*" + Access-Control-Allow-Methods: + - GET,OPTIONS + Access-Control-Max-Age: + - '3600' + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '{"data":[{"id":"3230323131303236323130303A323032313130323632313330","start":"2021-10-26T21:00:00Z","end":"2021-10-26T21:30:00Z"},{"id":"3230323131303236323133303A323032313130323632323030","start":"2021-10-26T21:30:00Z","end":"2021-10-26T22:00:00Z"},{"id":"3230323131303236323230303A323032313130323730303030","start":"2021-10-26T22:00:00Z","end":"2021-10-27T00:00:00Z"},{"id":"3230323131303237313430303A323032313130323731343330","start":"2021-10-27T14:00:00Z","end":"2021-10-27T14:30:00Z"},{"id":"3230323131303237313433303A323032313130323731353030","start":"2021-10-27T14:30:00Z","end":"2021-10-27T15:00:00Z"},{"id":"3230323131303237313530303A323032313130323731353330","start":"2021-10-27T15:00:00Z","end":"2021-10-27T15:30:00Z"},{"id":"3230323131303237313533303A323032313130323731363030","start":"2021-10-27T15:30:00Z","end":"2021-10-27T16:00:00Z"},{"id":"3230323131303237313630303A323032313130323731363330","start":"2021-10-27T16:00:00Z","end":"2021-10-27T16:30:00Z"},{"id":"3230323131303237313633303A323032313130323731373030","start":"2021-10-27T16:30:00Z","end":"2021-10-27T17:00:00Z"},{"id":"3230323131303237313730303A323032313130323731373330","start":"2021-10-27T17:00:00Z","end":"2021-10-27T17:30:00Z"},{"id":"3230323131303237313733303A323032313130323731383030","start":"2021-10-27T17:30:00Z","end":"2021-10-27T18:00:00Z"},{"id":"3230323131303237313830303A323032313130323731383330","start":"2021-10-27T18:00:00Z","end":"2021-10-27T18:30:00Z"},{"id":"3230323131303237313833303A323032313130323731393030","start":"2021-10-27T18:30:00Z","end":"2021-10-27T19:00:00Z"},{"id":"3230323131303237313930303A323032313130323731393330","start":"2021-10-27T19:00:00Z","end":"2021-10-27T19:30:00Z"},{"id":"3230323131303237313933303A323032313130323732303030","start":"2021-10-27T19:30:00Z","end":"2021-10-27T20:00:00Z"},{"id":"3230323131303237323030303A323032313130323732303330","start":"2021-10-27T20:00:00Z","end":"2021-10-27T20:30:00Z"},{"id":"3230323131303237323033303A323032313130323732313030","start":"2021-10-27T20:30:00Z","end":"2021-10-27T21:00:00Z"},{"id":"3230323131303237323130303A323032313130323732313330","start":"2021-10-27T21:00:00Z","end":"2021-10-27T21:30:00Z"},{"id":"3230323131303237323133303A323032313130323732323030","start":"2021-10-27T21:30:00Z","end":"2021-10-27T22:00:00Z"},{"id":"3230323131303237323230303A323032313130323830303030","start":"2021-10-27T22:00:00Z","end":"2021-10-28T00:00:00Z"},{"id":"3230323131303238313430303A323032313130323831343330","start":"2021-10-28T14:00:00Z","end":"2021-10-28T14:30:00Z"},{"id":"3230323131303238313433303A323032313130323831353030","start":"2021-10-28T14:30:00Z","end":"2021-10-28T15:00:00Z"},{"id":"3230323131303238313530303A323032313130323831353330","start":"2021-10-28T15:00:00Z","end":"2021-10-28T15:30:00Z"},{"id":"3230323131303238313533303A323032313130323831363030","start":"2021-10-28T15:30:00Z","end":"2021-10-28T16:00:00Z"},{"id":"3230323131303238313630303A323032313130323831363330","start":"2021-10-28T16:00:00Z","end":"2021-10-28T16:30:00Z"},{"id":"3230323131303238313633303A323032313130323831373030","start":"2021-10-28T16:30:00Z","end":"2021-10-28T17:00:00Z"},{"id":"3230323131303238313730303A323032313130323831373330","start":"2021-10-28T17:00:00Z","end":"2021-10-28T17:30:00Z"},{"id":"3230323131303238313733303A323032313130323831383030","start":"2021-10-28T17:30:00Z","end":"2021-10-28T18:00:00Z"},{"id":"3230323131303238313830303A323032313130323831383330","start":"2021-10-28T18:00:00Z","end":"2021-10-28T18:30:00Z"},{"id":"3230323131303238313833303A323032313130323831393030","start":"2021-10-28T18:30:00Z","end":"2021-10-28T19:00:00Z"},{"id":"3230323131303238313930303A323032313130323831393330","start":"2021-10-28T19:00:00Z","end":"2021-10-28T19:30:00Z"},{"id":"3230323131303238313933303A323032313130323832303030","start":"2021-10-28T19:30:00Z","end":"2021-10-28T20:00:00Z"},{"id":"3230323131303238323030303A323032313130323832303330","start":"2021-10-28T20:00:00Z","end":"2021-10-28T20:30:00Z"},{"id":"3230323131303238323033303A323032313130323832313030","start":"2021-10-28T20:30:00Z","end":"2021-10-28T21:00:00Z"},{"id":"3230323131303238323130303A323032313130323832313330","start":"2021-10-28T21:00:00Z","end":"2021-10-28T21:30:00Z"},{"id":"3230323131303238323133303A323032313130323832323030","start":"2021-10-28T21:30:00Z","end":"2021-10-28T22:00:00Z"},{"id":"3230323131303238323230303A323032313130323832323330","start":"2021-10-28T22:00:00Z","end":"2021-10-28T22:30:00Z"},{"id":"3230323131303238323233303A323032313130323832333030","start":"2021-10-28T22:30:00Z","end":"2021-10-28T23:00:00Z"},{"id":"3230323131303238323330303A323032313130323930303030","start":"2021-10-28T23:00:00Z","end":"2021-10-29T00:00:00Z"},{"id":"3230323131303239313430303A323032313130323931343330","start":"2021-10-29T14:00:00Z","end":"2021-10-29T14:30:00Z"},{"id":"3230323131303239313433303A323032313130323931353030","start":"2021-10-29T14:30:00Z","end":"2021-10-29T15:00:00Z"},{"id":"3230323131303239313530303A323032313130323931353330","start":"2021-10-29T15:00:00Z","end":"2021-10-29T15:30:00Z"},{"id":"3230323131303239313533303A323032313130323931363030","start":"2021-10-29T15:30:00Z","end":"2021-10-29T16:00:00Z"},{"id":"3230323131303239313630303A323032313130323931363330","start":"2021-10-29T16:00:00Z","end":"2021-10-29T16:30:00Z"},{"id":"3230323131303239313633303A323032313130323931373030","start":"2021-10-29T16:30:00Z","end":"2021-10-29T17:00:00Z"},{"id":"3230323131303239313730303A323032313130323931373330","start":"2021-10-29T17:00:00Z","end":"2021-10-29T17:30:00Z"},{"id":"3230323131303239313733303A323032313130323931383030","start":"2021-10-29T17:30:00Z","end":"2021-10-29T18:00:00Z"},{"id":"3230323131303239313830303A323032313130323931383330","start":"2021-10-29T18:00:00Z","end":"2021-10-29T18:30:00Z"},{"id":"3230323131303239313833303A323032313130323931393030","start":"2021-10-29T18:30:00Z","end":"2021-10-29T19:00:00Z"},{"id":"3230323131303239313930303A323032313130323931393330","start":"2021-10-29T19:00:00Z","end":"2021-10-29T19:30:00Z"},{"id":"3230323131303239313933303A323032313130323932303030","start":"2021-10-29T19:30:00Z","end":"2021-10-29T20:00:00Z"},{"id":"3230323131303239323030303A323032313130323932303330","start":"2021-10-29T20:00:00Z","end":"2021-10-29T20:30:00Z"},{"id":"3230323131303239323033303A323032313130323932313030","start":"2021-10-29T20:30:00Z","end":"2021-10-29T21:00:00Z"},{"id":"3230323131303239323130303A323032313130323932313330","start":"2021-10-29T21:00:00Z","end":"2021-10-29T21:30:00Z"},{"id":"3230323131303239323133303A323032313130323932323030","start":"2021-10-29T21:30:00Z","end":"2021-10-29T22:00:00Z"},{"id":"3230323131303239323230303A323032313130323932323330","start":"2021-10-29T22:00:00Z","end":"2021-10-29T22:30:00Z"},{"id":"3230323131303239323233303A323032313130323932333030","start":"2021-10-29T22:30:00Z","end":"2021-10-29T23:00:00Z"},{"id":"3230323131303239323330303A323032313130333030303030","start":"2021-10-29T23:00:00Z","end":"2021-10-30T00:00:00Z"},{"id":"3230323131313031313430303A323032313131303131343330","start":"2021-11-01T14:00:00Z","end":"2021-11-01T14:30:00Z"},{"id":"3230323131313031313433303A323032313131303131353030","start":"2021-11-01T14:30:00Z","end":"2021-11-01T15:00:00Z"},{"id":"3230323131313031313530303A323032313131303131353330","start":"2021-11-01T15:00:00Z","end":"2021-11-01T15:30:00Z"},{"id":"3230323131313031313533303A323032313131303131363030","start":"2021-11-01T15:30:00Z","end":"2021-11-01T16:00:00Z"},{"id":"3230323131313031313630303A323032313131303131363330","start":"2021-11-01T16:00:00Z","end":"2021-11-01T16:30:00Z"},{"id":"3230323131313031313633303A323032313131303131373030","start":"2021-11-01T16:30:00Z","end":"2021-11-01T17:00:00Z"},{"id":"3230323131313031313730303A323032313131303131373330","start":"2021-11-01T17:00:00Z","end":"2021-11-01T17:30:00Z"},{"id":"3230323131313031313733303A323032313131303131383030","start":"2021-11-01T17:30:00Z","end":"2021-11-01T18:00:00Z"},{"id":"3230323131313031313830303A323032313131303131383330","start":"2021-11-01T18:00:00Z","end":"2021-11-01T18:30:00Z"},{"id":"3230323131313031313833303A323032313131303131393030","start":"2021-11-01T18:30:00Z","end":"2021-11-01T19:00:00Z"},{"id":"3230323131313031313930303A323032313131303131393330","start":"2021-11-01T19:00:00Z","end":"2021-11-01T19:30:00Z"},{"id":"3230323131313031313933303A323032313131303132303030","start":"2021-11-01T19:30:00Z","end":"2021-11-01T20:00:00Z"},{"id":"3230323131313031323030303A323032313131303132303330","start":"2021-11-01T20:00:00Z","end":"2021-11-01T20:30:00Z"},{"id":"3230323131313031323033303A323032313131303132313030","start":"2021-11-01T20:30:00Z","end":"2021-11-01T21:00:00Z"},{"id":"3230323131313031323130303A323032313131303132313330","start":"2021-11-01T21:00:00Z","end":"2021-11-01T21:30:00Z"},{"id":"3230323131313031323133303A323032313131303132323030","start":"2021-11-01T21:30:00Z","end":"2021-11-01T22:00:00Z"},{"id":"3230323131313031323230303A323032313131303132323330","start":"2021-11-01T22:00:00Z","end":"2021-11-01T22:30:00Z"},{"id":"3230323131313031323233303A323032313131303132333030","start":"2021-11-01T22:30:00Z","end":"2021-11-01T23:00:00Z"},{"id":"3230323131313031323330303A323032313131303230303030","start":"2021-11-01T23:00:00Z","end":"2021-11-02T00:00:00Z"},{"id":"3230323131313032323130303A323032313131303232313330","start":"2021-11-02T21:00:00Z","end":"2021-11-02T21:30:00Z"},{"id":"3230323131313032323133303A323032313131303232323030","start":"2021-11-02T21:30:00Z","end":"2021-11-02T22:00:00Z"},{"id":"3230323131313032323230303A323032313131303330303030","start":"2021-11-02T22:00:00Z","end":"2021-11-03T00:00:00Z"},{"id":"3230323131313033313430303A323032313131303331343330","start":"2021-11-03T14:00:00Z","end":"2021-11-03T14:30:00Z"},{"id":"3230323131313033313433303A323032313131303331353030","start":"2021-11-03T14:30:00Z","end":"2021-11-03T15:00:00Z"},{"id":"3230323131313033313530303A323032313131303331353330","start":"2021-11-03T15:00:00Z","end":"2021-11-03T15:30:00Z"},{"id":"3230323131313033313533303A323032313131303331363030","start":"2021-11-03T15:30:00Z","end":"2021-11-03T16:00:00Z"},{"id":"3230323131313033313630303A323032313131303331363330","start":"2021-11-03T16:00:00Z","end":"2021-11-03T16:30:00Z"},{"id":"3230323131313033313633303A323032313131303331373030","start":"2021-11-03T16:30:00Z","end":"2021-11-03T17:00:00Z"},{"id":"3230323131313033313730303A323032313131303331373330","start":"2021-11-03T17:00:00Z","end":"2021-11-03T17:30:00Z"},{"id":"3230323131313033313733303A323032313131303331383030","start":"2021-11-03T17:30:00Z","end":"2021-11-03T18:00:00Z"},{"id":"3230323131313033313830303A323032313131303331383330","start":"2021-11-03T18:00:00Z","end":"2021-11-03T18:30:00Z"},{"id":"3230323131313033313833303A323032313131303331393030","start":"2021-11-03T18:30:00Z","end":"2021-11-03T19:00:00Z"},{"id":"3230323131313033313930303A323032313131303331393330","start":"2021-11-03T19:00:00Z","end":"2021-11-03T19:30:00Z"},{"id":"3230323131313033313933303A323032313131303332303030","start":"2021-11-03T19:30:00Z","end":"2021-11-03T20:00:00Z"},{"id":"3230323131313033323030303A323032313131303332303330","start":"2021-11-03T20:00:00Z","end":"2021-11-03T20:30:00Z"},{"id":"3230323131313033323033303A323032313131303332313030","start":"2021-11-03T20:30:00Z","end":"2021-11-03T21:00:00Z"},{"id":"3230323131313033323130303A323032313131303332313330","start":"2021-11-03T21:00:00Z","end":"2021-11-03T21:30:00Z"},{"id":"3230323131313033323133303A323032313131303332323030","start":"2021-11-03T21:30:00Z","end":"2021-11-03T22:00:00Z"},{"id":"3230323131313033323230303A323032313131303430303030","start":"2021-11-03T22:00:00Z","end":"2021-11-04T00:00:00Z"},{"id":"3230323131313034313430303A323032313131303431343330","start":"2021-11-04T14:00:00Z","end":"2021-11-04T14:30:00Z"},{"id":"3230323131313034313433303A323032313131303431353030","start":"2021-11-04T14:30:00Z","end":"2021-11-04T15:00:00Z"},{"id":"3230323131313034313530303A323032313131303431353330","start":"2021-11-04T15:00:00Z","end":"2021-11-04T15:30:00Z"},{"id":"3230323131313034313533303A323032313131303431363030","start":"2021-11-04T15:30:00Z","end":"2021-11-04T16:00:00Z"},{"id":"3230323131313034313630303A323032313131303431363330","start":"2021-11-04T16:00:00Z","end":"2021-11-04T16:30:00Z"},{"id":"3230323131313034313633303A323032313131303431373030","start":"2021-11-04T16:30:00Z","end":"2021-11-04T17:00:00Z"},{"id":"3230323131313034313730303A323032313131303431373330","start":"2021-11-04T17:00:00Z","end":"2021-11-04T17:30:00Z"},{"id":"3230323131313034313733303A323032313131303431383030","start":"2021-11-04T17:30:00Z","end":"2021-11-04T18:00:00Z"},{"id":"3230323131313034313830303A323032313131303431383330","start":"2021-11-04T18:00:00Z","end":"2021-11-04T18:30:00Z"},{"id":"3230323131313034313833303A323032313131303431393030","start":"2021-11-04T18:30:00Z","end":"2021-11-04T19:00:00Z"},{"id":"3230323131313034313930303A323032313131303431393330","start":"2021-11-04T19:00:00Z","end":"2021-11-04T19:30:00Z"},{"id":"3230323131313034313933303A323032313131303432303030","start":"2021-11-04T19:30:00Z","end":"2021-11-04T20:00:00Z"},{"id":"3230323131313034323030303A323032313131303432303330","start":"2021-11-04T20:00:00Z","end":"2021-11-04T20:30:00Z"},{"id":"3230323131313034323033303A323032313131303432313030","start":"2021-11-04T20:30:00Z","end":"2021-11-04T21:00:00Z"},{"id":"3230323131313034323130303A323032313131303432313330","start":"2021-11-04T21:00:00Z","end":"2021-11-04T21:30:00Z"},{"id":"3230323131313034323133303A323032313131303432323030","start":"2021-11-04T21:30:00Z","end":"2021-11-04T22:00:00Z"},{"id":"3230323131313034323230303A323032313131303432323330","start":"2021-11-04T22:00:00Z","end":"2021-11-04T22:30:00Z"},{"id":"3230323131313034323233303A323032313131303432333030","start":"2021-11-04T22:30:00Z","end":"2021-11-04T23:00:00Z"},{"id":"3230323131313034323330303A323032313131303530303030","start":"2021-11-04T23:00:00Z","end":"2021-11-05T00:00:00Z"},{"id":"3230323131313035313430303A323032313131303531343330","start":"2021-11-05T14:00:00Z","end":"2021-11-05T14:30:00Z"},{"id":"3230323131313035313433303A323032313131303531353030","start":"2021-11-05T14:30:00Z","end":"2021-11-05T15:00:00Z"},{"id":"3230323131313035313530303A323032313131303531353330","start":"2021-11-05T15:00:00Z","end":"2021-11-05T15:30:00Z"},{"id":"3230323131313035313533303A323032313131303531363030","start":"2021-11-05T15:30:00Z","end":"2021-11-05T16:00:00Z"},{"id":"3230323131313035313630303A323032313131303531363330","start":"2021-11-05T16:00:00Z","end":"2021-11-05T16:30:00Z"},{"id":"3230323131313035313633303A323032313131303531373030","start":"2021-11-05T16:30:00Z","end":"2021-11-05T17:00:00Z"},{"id":"3230323131313035313730303A323032313131303531373330","start":"2021-11-05T17:00:00Z","end":"2021-11-05T17:30:00Z"},{"id":"3230323131313035313733303A323032313131303531383030","start":"2021-11-05T17:30:00Z","end":"2021-11-05T18:00:00Z"},{"id":"3230323131313035313830303A323032313131303531383330","start":"2021-11-05T18:00:00Z","end":"2021-11-05T18:30:00Z"},{"id":"3230323131313035313833303A323032313131303531393030","start":"2021-11-05T18:30:00Z","end":"2021-11-05T19:00:00Z"},{"id":"3230323131313035313930303A323032313131303531393330","start":"2021-11-05T19:00:00Z","end":"2021-11-05T19:30:00Z"},{"id":"3230323131313035313933303A323032313131303532303030","start":"2021-11-05T19:30:00Z","end":"2021-11-05T20:00:00Z"},{"id":"3230323131313035323030303A323032313131303532303330","start":"2021-11-05T20:00:00Z","end":"2021-11-05T20:30:00Z"},{"id":"3230323131313035323033303A323032313131303532313030","start":"2021-11-05T20:30:00Z","end":"2021-11-05T21:00:00Z"},{"id":"3230323131313035323130303A323032313131303532313330","start":"2021-11-05T21:00:00Z","end":"2021-11-05T21:30:00Z"},{"id":"3230323131313035323133303A323032313131303532323030","start":"2021-11-05T21:30:00Z","end":"2021-11-05T22:00:00Z"},{"id":"3230323131313035323230303A323032313131303532323330","start":"2021-11-05T22:00:00Z","end":"2021-11-05T22:30:00Z"},{"id":"3230323131313035323233303A323032313131303532333030","start":"2021-11-05T22:30:00Z","end":"2021-11-05T23:00:00Z"},{"id":"3230323131313035323330303A323032313131303630303030","start":"2021-11-05T23:00:00Z","end":"2021-11-06T00:00:00Z"},{"id":"3230323131313038313530303A323032313131303831353330","start":"2021-11-08T15:00:00Z","end":"2021-11-08T15:30:00Z"},{"id":"3230323131313038313533303A323032313131303831363030","start":"2021-11-08T15:30:00Z","end":"2021-11-08T16:00:00Z"},{"id":"3230323131313038313630303A323032313131303831363330","start":"2021-11-08T16:00:00Z","end":"2021-11-08T16:30:00Z"},{"id":"3230323131313038313633303A323032313131303831373030","start":"2021-11-08T16:30:00Z","end":"2021-11-08T17:00:00Z"},{"id":"3230323131313038313730303A323032313131303831373330","start":"2021-11-08T17:00:00Z","end":"2021-11-08T17:30:00Z"},{"id":"3230323131313038313733303A323032313131303831383030","start":"2021-11-08T17:30:00Z","end":"2021-11-08T18:00:00Z"},{"id":"3230323131313038313830303A323032313131303831383330","start":"2021-11-08T18:00:00Z","end":"2021-11-08T18:30:00Z"},{"id":"3230323131313038313833303A323032313131303831393030","start":"2021-11-08T18:30:00Z","end":"2021-11-08T19:00:00Z"},{"id":"3230323131313038313930303A323032313131303831393330","start":"2021-11-08T19:00:00Z","end":"2021-11-08T19:30:00Z"},{"id":"3230323131313038313933303A323032313131303832303030","start":"2021-11-08T19:30:00Z","end":"2021-11-08T20:00:00Z"},{"id":"3230323131313038323030303A323032313131303832303330","start":"2021-11-08T20:00:00Z","end":"2021-11-08T20:30:00Z"},{"id":"3230323131313038323033303A323032313131303832313030","start":"2021-11-08T20:30:00Z","end":"2021-11-08T21:00:00Z"},{"id":"3230323131313038323130303A323032313131303832313330","start":"2021-11-08T21:00:00Z","end":"2021-11-08T21:30:00Z"},{"id":"3230323131313038323133303A323032313131303832323030","start":"2021-11-08T21:30:00Z","end":"2021-11-08T22:00:00Z"},{"id":"3230323131313038323230303A323032313131303832323330","start":"2021-11-08T22:00:00Z","end":"2021-11-08T22:30:00Z"},{"id":"3230323131313038323233303A323032313131303832333030","start":"2021-11-08T22:30:00Z","end":"2021-11-08T23:00:00Z"},{"id":"3230323131313038323330303A323032313131303832333330","start":"2021-11-08T23:00:00Z","end":"2021-11-08T23:30:00Z"},{"id":"3230323131313038323333303A323032313131303930303030","start":"2021-11-08T23:30:00Z","end":"2021-11-09T00:00:00Z"},{"id":"3230323131313039303030303A323032313131303930313030","start":"2021-11-09T00:00:00Z","end":"2021-11-09T01:00:00Z"},{"id":"3230323131313039323230303A323032313131303932323330","start":"2021-11-09T22:00:00Z","end":"2021-11-09T22:30:00Z"},{"id":"3230323131313039323233303A323032313131303932333030","start":"2021-11-09T22:30:00Z","end":"2021-11-09T23:00:00Z"},{"id":"3230323131313039323330303A323032313131313030313030","start":"2021-11-09T23:00:00Z","end":"2021-11-10T01:00:00Z"},{"id":"3230323131313130313530303A323032313131313031353330","start":"2021-11-10T15:00:00Z","end":"2021-11-10T15:30:00Z"},{"id":"3230323131313130313533303A323032313131313031363030","start":"2021-11-10T15:30:00Z","end":"2021-11-10T16:00:00Z"},{"id":"3230323131313130313630303A323032313131313031363330","start":"2021-11-10T16:00:00Z","end":"2021-11-10T16:30:00Z"},{"id":"3230323131313130313633303A323032313131313031373030","start":"2021-11-10T16:30:00Z","end":"2021-11-10T17:00:00Z"},{"id":"3230323131313130313730303A323032313131313031373330","start":"2021-11-10T17:00:00Z","end":"2021-11-10T17:30:00Z"},{"id":"3230323131313130313733303A323032313131313031383030","start":"2021-11-10T17:30:00Z","end":"2021-11-10T18:00:00Z"},{"id":"3230323131313130313830303A323032313131313031383330","start":"2021-11-10T18:00:00Z","end":"2021-11-10T18:30:00Z"},{"id":"3230323131313130313833303A323032313131313031393030","start":"2021-11-10T18:30:00Z","end":"2021-11-10T19:00:00Z"},{"id":"3230323131313130313930303A323032313131313031393330","start":"2021-11-10T19:00:00Z","end":"2021-11-10T19:30:00Z"},{"id":"3230323131313130313933303A323032313131313032303030","start":"2021-11-10T19:30:00Z","end":"2021-11-10T20:00:00Z"},{"id":"3230323131313130323030303A323032313131313032303330","start":"2021-11-10T20:00:00Z","end":"2021-11-10T20:30:00Z"},{"id":"3230323131313130323033303A323032313131313032313030","start":"2021-11-10T20:30:00Z","end":"2021-11-10T21:00:00Z"},{"id":"3230323131313130323130303A323032313131313032313330","start":"2021-11-10T21:00:00Z","end":"2021-11-10T21:30:00Z"},{"id":"3230323131313130323133303A323032313131313032323030","start":"2021-11-10T21:30:00Z","end":"2021-11-10T22:00:00Z"},{"id":"3230323131313130323230303A323032313131313032323330","start":"2021-11-10T22:00:00Z","end":"2021-11-10T22:30:00Z"},{"id":"3230323131313130323233303A323032313131313032333030","start":"2021-11-10T22:30:00Z","end":"2021-11-10T23:00:00Z"},{"id":"3230323131313130323330303A323032313131313130313030","start":"2021-11-10T23:00:00Z","end":"2021-11-11T01:00:00Z"},{"id":"3230323131313131313530303A323032313131313131353330","start":"2021-11-11T15:00:00Z","end":"2021-11-11T15:30:00Z"},{"id":"3230323131313131313533303A323032313131313131363030","start":"2021-11-11T15:30:00Z","end":"2021-11-11T16:00:00Z"},{"id":"3230323131313131313630303A323032313131313131363330","start":"2021-11-11T16:00:00Z","end":"2021-11-11T16:30:00Z"},{"id":"3230323131313131313633303A323032313131313131373030","start":"2021-11-11T16:30:00Z","end":"2021-11-11T17:00:00Z"},{"id":"3230323131313131313730303A323032313131313131373330","start":"2021-11-11T17:00:00Z","end":"2021-11-11T17:30:00Z"},{"id":"3230323131313131313733303A323032313131313131383030","start":"2021-11-11T17:30:00Z","end":"2021-11-11T18:00:00Z"},{"id":"3230323131313131313830303A323032313131313131383330","start":"2021-11-11T18:00:00Z","end":"2021-11-11T18:30:00Z"},{"id":"3230323131313131313833303A323032313131313131393030","start":"2021-11-11T18:30:00Z","end":"2021-11-11T19:00:00Z"},{"id":"3230323131313131313930303A323032313131313131393330","start":"2021-11-11T19:00:00Z","end":"2021-11-11T19:30:00Z"},{"id":"3230323131313131313933303A323032313131313132303030","start":"2021-11-11T19:30:00Z","end":"2021-11-11T20:00:00Z"},{"id":"3230323131313131323030303A323032313131313132303330","start":"2021-11-11T20:00:00Z","end":"2021-11-11T20:30:00Z"},{"id":"3230323131313131323033303A323032313131313132313030","start":"2021-11-11T20:30:00Z","end":"2021-11-11T21:00:00Z"},{"id":"3230323131313131323130303A323032313131313132313330","start":"2021-11-11T21:00:00Z","end":"2021-11-11T21:30:00Z"},{"id":"3230323131313131323133303A323032313131313132323030","start":"2021-11-11T21:30:00Z","end":"2021-11-11T22:00:00Z"},{"id":"3230323131313131323230303A323032313131313132323330","start":"2021-11-11T22:00:00Z","end":"2021-11-11T22:30:00Z"},{"id":"3230323131313131323233303A323032313131313132333030","start":"2021-11-11T22:30:00Z","end":"2021-11-11T23:00:00Z"},{"id":"3230323131313131323330303A323032313131313132333330","start":"2021-11-11T23:00:00Z","end":"2021-11-11T23:30:00Z"},{"id":"3230323131313131323333303A323032313131313230303030","start":"2021-11-11T23:30:00Z","end":"2021-11-12T00:00:00Z"},{"id":"3230323131313132303030303A323032313131313230313030","start":"2021-11-12T00:00:00Z","end":"2021-11-12T01:00:00Z"},{"id":"3230323131313132313530303A323032313131313231353330","start":"2021-11-12T15:00:00Z","end":"2021-11-12T15:30:00Z"},{"id":"3230323131313132313533303A323032313131313231363030","start":"2021-11-12T15:30:00Z","end":"2021-11-12T16:00:00Z"},{"id":"3230323131313132313630303A323032313131313231363330","start":"2021-11-12T16:00:00Z","end":"2021-11-12T16:30:00Z"},{"id":"3230323131313132313633303A323032313131313231373030","start":"2021-11-12T16:30:00Z","end":"2021-11-12T17:00:00Z"},{"id":"3230323131313132313730303A323032313131313231373330","start":"2021-11-12T17:00:00Z","end":"2021-11-12T17:30:00Z"},{"id":"3230323131313132313733303A323032313131313231383030","start":"2021-11-12T17:30:00Z","end":"2021-11-12T18:00:00Z"},{"id":"3230323131313132313830303A323032313131313231383330","start":"2021-11-12T18:00:00Z","end":"2021-11-12T18:30:00Z"},{"id":"3230323131313132313833303A323032313131313231393030","start":"2021-11-12T18:30:00Z","end":"2021-11-12T19:00:00Z"},{"id":"3230323131313132313930303A323032313131313231393330","start":"2021-11-12T19:00:00Z","end":"2021-11-12T19:30:00Z"},{"id":"3230323131313132313933303A323032313131313232303030","start":"2021-11-12T19:30:00Z","end":"2021-11-12T20:00:00Z"},{"id":"3230323131313132323030303A323032313131313232303330","start":"2021-11-12T20:00:00Z","end":"2021-11-12T20:30:00Z"},{"id":"3230323131313132323033303A323032313131313232313030","start":"2021-11-12T20:30:00Z","end":"2021-11-12T21:00:00Z"},{"id":"3230323131313132323130303A323032313131313232313330","start":"2021-11-12T21:00:00Z","end":"2021-11-12T21:30:00Z"},{"id":"3230323131313132323133303A323032313131313232323030","start":"2021-11-12T21:30:00Z","end":"2021-11-12T22:00:00Z"},{"id":"3230323131313132323230303A323032313131313232323330","start":"2021-11-12T22:00:00Z","end":"2021-11-12T22:30:00Z"},{"id":"3230323131313132323233303A323032313131313232333030","start":"2021-11-12T22:30:00Z","end":"2021-11-12T23:00:00Z"},{"id":"3230323131313132323330303A323032313131313232333330","start":"2021-11-12T23:00:00Z","end":"2021-11-12T23:30:00Z"},{"id":"3230323131313132323333303A323032313131313330303030","start":"2021-11-12T23:30:00Z","end":"2021-11-13T00:00:00Z"},{"id":"3230323131313133303030303A323032313131313330313030","start":"2021-11-13T00:00:00Z","end":"2021-11-13T01:00:00Z"},{"id":"3230323131313135313530303A323032313131313531353330","start":"2021-11-15T15:00:00Z","end":"2021-11-15T15:30:00Z"},{"id":"3230323131313135313533303A323032313131313531363030","start":"2021-11-15T15:30:00Z","end":"2021-11-15T16:00:00Z"},{"id":"3230323131313135313630303A323032313131313531363330","start":"2021-11-15T16:00:00Z","end":"2021-11-15T16:30:00Z"},{"id":"3230323131313135313633303A323032313131313531373030","start":"2021-11-15T16:30:00Z","end":"2021-11-15T17:00:00Z"},{"id":"3230323131313135313730303A323032313131313531373330","start":"2021-11-15T17:00:00Z","end":"2021-11-15T17:30:00Z"},{"id":"3230323131313135313733303A323032313131313531383030","start":"2021-11-15T17:30:00Z","end":"2021-11-15T18:00:00Z"},{"id":"3230323131313135313830303A323032313131313531383330","start":"2021-11-15T18:00:00Z","end":"2021-11-15T18:30:00Z"},{"id":"3230323131313135313833303A323032313131313531393030","start":"2021-11-15T18:30:00Z","end":"2021-11-15T19:00:00Z"},{"id":"3230323131313135313930303A323032313131313531393330","start":"2021-11-15T19:00:00Z","end":"2021-11-15T19:30:00Z"},{"id":"3230323131313135313933303A323032313131313532303030","start":"2021-11-15T19:30:00Z","end":"2021-11-15T20:00:00Z"},{"id":"3230323131313135323030303A323032313131313532303330","start":"2021-11-15T20:00:00Z","end":"2021-11-15T20:30:00Z"},{"id":"3230323131313135323033303A323032313131313532313030","start":"2021-11-15T20:30:00Z","end":"2021-11-15T21:00:00Z"},{"id":"3230323131313135323130303A323032313131313532313330","start":"2021-11-15T21:00:00Z","end":"2021-11-15T21:30:00Z"},{"id":"3230323131313135323133303A323032313131313532323030","start":"2021-11-15T21:30:00Z","end":"2021-11-15T22:00:00Z"},{"id":"3230323131313135323230303A323032313131313532323330","start":"2021-11-15T22:00:00Z","end":"2021-11-15T22:30:00Z"},{"id":"3230323131313135323233303A323032313131313532333030","start":"2021-11-15T22:30:00Z","end":"2021-11-15T23:00:00Z"},{"id":"3230323131313135323330303A323032313131313532333330","start":"2021-11-15T23:00:00Z","end":"2021-11-15T23:30:00Z"},{"id":"3230323131313135323333303A323032313131313630303030","start":"2021-11-15T23:30:00Z","end":"2021-11-16T00:00:00Z"},{"id":"3230323131313136303030303A323032313131313630313030","start":"2021-11-16T00:00:00Z","end":"2021-11-16T01:00:00Z"},{"id":"3230323131313136323230303A323032313131313632323330","start":"2021-11-16T22:00:00Z","end":"2021-11-16T22:30:00Z"},{"id":"3230323131313136323233303A323032313131313632333030","start":"2021-11-16T22:30:00Z","end":"2021-11-16T23:00:00Z"},{"id":"3230323131313136323330303A323032313131313730313030","start":"2021-11-16T23:00:00Z","end":"2021-11-17T01:00:00Z"},{"id":"3230323131313137313530303A323032313131313731353330","start":"2021-11-17T15:00:00Z","end":"2021-11-17T15:30:00Z"},{"id":"3230323131313137313533303A323032313131313731363030","start":"2021-11-17T15:30:00Z","end":"2021-11-17T16:00:00Z"},{"id":"3230323131313137313630303A323032313131313731363330","start":"2021-11-17T16:00:00Z","end":"2021-11-17T16:30:00Z"},{"id":"3230323131313137313633303A323032313131313731373030","start":"2021-11-17T16:30:00Z","end":"2021-11-17T17:00:00Z"},{"id":"3230323131313137313730303A323032313131313731373330","start":"2021-11-17T17:00:00Z","end":"2021-11-17T17:30:00Z"},{"id":"3230323131313137313733303A323032313131313731383030","start":"2021-11-17T17:30:00Z","end":"2021-11-17T18:00:00Z"},{"id":"3230323131313137313830303A323032313131313731383330","start":"2021-11-17T18:00:00Z","end":"2021-11-17T18:30:00Z"},{"id":"3230323131313137313833303A323032313131313731393030","start":"2021-11-17T18:30:00Z","end":"2021-11-17T19:00:00Z"},{"id":"3230323131313137313930303A323032313131313731393330","start":"2021-11-17T19:00:00Z","end":"2021-11-17T19:30:00Z"},{"id":"3230323131313137313933303A323032313131313732303030","start":"2021-11-17T19:30:00Z","end":"2021-11-17T20:00:00Z"},{"id":"3230323131313137323030303A323032313131313732303330","start":"2021-11-17T20:00:00Z","end":"2021-11-17T20:30:00Z"},{"id":"3230323131313137323033303A323032313131313732313030","start":"2021-11-17T20:30:00Z","end":"2021-11-17T21:00:00Z"},{"id":"3230323131313137323130303A323032313131313732313330","start":"2021-11-17T21:00:00Z","end":"2021-11-17T21:30:00Z"},{"id":"3230323131313137323133303A323032313131313732323030","start":"2021-11-17T21:30:00Z","end":"2021-11-17T22:00:00Z"},{"id":"3230323131313137323230303A323032313131313732323330","start":"2021-11-17T22:00:00Z","end":"2021-11-17T22:30:00Z"},{"id":"3230323131313137323233303A323032313131313732333030","start":"2021-11-17T22:30:00Z","end":"2021-11-17T23:00:00Z"},{"id":"3230323131313137323330303A323032313131313830313030","start":"2021-11-17T23:00:00Z","end":"2021-11-18T01:00:00Z"},{"id":"3230323131313138313530303A323032313131313831353330","start":"2021-11-18T15:00:00Z","end":"2021-11-18T15:30:00Z"},{"id":"3230323131313138313533303A323032313131313831363030","start":"2021-11-18T15:30:00Z","end":"2021-11-18T16:00:00Z"},{"id":"3230323131313138313630303A323032313131313831363330","start":"2021-11-18T16:00:00Z","end":"2021-11-18T16:30:00Z"},{"id":"3230323131313138313633303A323032313131313831373030","start":"2021-11-18T16:30:00Z","end":"2021-11-18T17:00:00Z"},{"id":"3230323131313138313730303A323032313131313831373330","start":"2021-11-18T17:00:00Z","end":"2021-11-18T17:30:00Z"},{"id":"3230323131313138313733303A323032313131313831383030","start":"2021-11-18T17:30:00Z","end":"2021-11-18T18:00:00Z"},{"id":"3230323131313138313830303A323032313131313831383330","start":"2021-11-18T18:00:00Z","end":"2021-11-18T18:30:00Z"},{"id":"3230323131313138313833303A323032313131313831393030","start":"2021-11-18T18:30:00Z","end":"2021-11-18T19:00:00Z"},{"id":"3230323131313138313930303A323032313131313831393330","start":"2021-11-18T19:00:00Z","end":"2021-11-18T19:30:00Z"},{"id":"3230323131313138313933303A323032313131313832303030","start":"2021-11-18T19:30:00Z","end":"2021-11-18T20:00:00Z"},{"id":"3230323131313138323030303A323032313131313832303330","start":"2021-11-18T20:00:00Z","end":"2021-11-18T20:30:00Z"},{"id":"3230323131313138323033303A323032313131313832313030","start":"2021-11-18T20:30:00Z","end":"2021-11-18T21:00:00Z"},{"id":"3230323131313138323130303A323032313131313832313330","start":"2021-11-18T21:00:00Z","end":"2021-11-18T21:30:00Z"},{"id":"3230323131313138323133303A323032313131313832323030","start":"2021-11-18T21:30:00Z","end":"2021-11-18T22:00:00Z"},{"id":"3230323131313138323230303A323032313131313832323330","start":"2021-11-18T22:00:00Z","end":"2021-11-18T22:30:00Z"},{"id":"3230323131313138323233303A323032313131313832333030","start":"2021-11-18T22:30:00Z","end":"2021-11-18T23:00:00Z"},{"id":"3230323131313138323330303A323032313131313832333330","start":"2021-11-18T23:00:00Z","end":"2021-11-18T23:30:00Z"},{"id":"3230323131313138323333303A323032313131313930303030","start":"2021-11-18T23:30:00Z","end":"2021-11-19T00:00:00Z"},{"id":"3230323131313139303030303A323032313131313930313030","start":"2021-11-19T00:00:00Z","end":"2021-11-19T01:00:00Z"},{"id":"3230323131313139313530303A323032313131313931353330","start":"2021-11-19T15:00:00Z","end":"2021-11-19T15:30:00Z"},{"id":"3230323131313139313533303A323032313131313931363030","start":"2021-11-19T15:30:00Z","end":"2021-11-19T16:00:00Z"},{"id":"3230323131313139313630303A323032313131313931363330","start":"2021-11-19T16:00:00Z","end":"2021-11-19T16:30:00Z"},{"id":"3230323131313139313633303A323032313131313931373030","start":"2021-11-19T16:30:00Z","end":"2021-11-19T17:00:00Z"},{"id":"3230323131313139313730303A323032313131313931373330","start":"2021-11-19T17:00:00Z","end":"2021-11-19T17:30:00Z"},{"id":"3230323131313139313733303A323032313131313931383030","start":"2021-11-19T17:30:00Z","end":"2021-11-19T18:00:00Z"},{"id":"3230323131313139313830303A323032313131313931383330","start":"2021-11-19T18:00:00Z","end":"2021-11-19T18:30:00Z"},{"id":"3230323131313139313833303A323032313131313931393030","start":"2021-11-19T18:30:00Z","end":"2021-11-19T19:00:00Z"},{"id":"3230323131313139313930303A323032313131313931393330","start":"2021-11-19T19:00:00Z","end":"2021-11-19T19:30:00Z"},{"id":"3230323131313139313933303A323032313131313932303030","start":"2021-11-19T19:30:00Z","end":"2021-11-19T20:00:00Z"},{"id":"3230323131313139323030303A323032313131313932303330","start":"2021-11-19T20:00:00Z","end":"2021-11-19T20:30:00Z"},{"id":"3230323131313139323033303A323032313131313932313030","start":"2021-11-19T20:30:00Z","end":"2021-11-19T21:00:00Z"},{"id":"3230323131313139323130303A323032313131313932313330","start":"2021-11-19T21:00:00Z","end":"2021-11-19T21:30:00Z"},{"id":"3230323131313139323133303A323032313131313932323030","start":"2021-11-19T21:30:00Z","end":"2021-11-19T22:00:00Z"},{"id":"3230323131313139323230303A323032313131313932323330","start":"2021-11-19T22:00:00Z","end":"2021-11-19T22:30:00Z"},{"id":"3230323131313139323233303A323032313131313932333030","start":"2021-11-19T22:30:00Z","end":"2021-11-19T23:00:00Z"},{"id":"3230323131313139323330303A323032313131313932333330","start":"2021-11-19T23:00:00Z","end":"2021-11-19T23:30:00Z"},{"id":"3230323131313139323333303A323032313131323030303030","start":"2021-11-19T23:30:00Z","end":"2021-11-20T00:00:00Z"},{"id":"3230323131313230303030303A323032313131323030313030","start":"2021-11-20T00:00:00Z","end":"2021-11-20T01:00:00Z"},{"id":"3230323131313232313530303A323032313131323231353330","start":"2021-11-22T15:00:00Z","end":"2021-11-22T15:30:00Z"},{"id":"3230323131313232313533303A323032313131323231363030","start":"2021-11-22T15:30:00Z","end":"2021-11-22T16:00:00Z"},{"id":"3230323131313232313630303A323032313131323231363330","start":"2021-11-22T16:00:00Z","end":"2021-11-22T16:30:00Z"},{"id":"3230323131313232313633303A323032313131323231373030","start":"2021-11-22T16:30:00Z","end":"2021-11-22T17:00:00Z"},{"id":"3230323131313232313730303A323032313131323231373330","start":"2021-11-22T17:00:00Z","end":"2021-11-22T17:30:00Z"},{"id":"3230323131313232313733303A323032313131323231383030","start":"2021-11-22T17:30:00Z","end":"2021-11-22T18:00:00Z"},{"id":"3230323131313232313830303A323032313131323231383330","start":"2021-11-22T18:00:00Z","end":"2021-11-22T18:30:00Z"},{"id":"3230323131313232313833303A323032313131323231393030","start":"2021-11-22T18:30:00Z","end":"2021-11-22T19:00:00Z"},{"id":"3230323131313232313930303A323032313131323231393330","start":"2021-11-22T19:00:00Z","end":"2021-11-22T19:30:00Z"},{"id":"3230323131313232313933303A323032313131323232303030","start":"2021-11-22T19:30:00Z","end":"2021-11-22T20:00:00Z"},{"id":"3230323131313232323030303A323032313131323232303330","start":"2021-11-22T20:00:00Z","end":"2021-11-22T20:30:00Z"},{"id":"3230323131313232323033303A323032313131323232313030","start":"2021-11-22T20:30:00Z","end":"2021-11-22T21:00:00Z"},{"id":"3230323131313232323130303A323032313131323232313330","start":"2021-11-22T21:00:00Z","end":"2021-11-22T21:30:00Z"},{"id":"3230323131313232323133303A323032313131323232323030","start":"2021-11-22T21:30:00Z","end":"2021-11-22T22:00:00Z"},{"id":"3230323131313232323230303A323032313131323232323330","start":"2021-11-22T22:00:00Z","end":"2021-11-22T22:30:00Z"},{"id":"3230323131313232323233303A323032313131323232333030","start":"2021-11-22T22:30:00Z","end":"2021-11-22T23:00:00Z"},{"id":"3230323131313232323330303A323032313131323232333330","start":"2021-11-22T23:00:00Z","end":"2021-11-22T23:30:00Z"},{"id":"3230323131313232323333303A323032313131323330303030","start":"2021-11-22T23:30:00Z","end":"2021-11-23T00:00:00Z"},{"id":"3230323131313233303030303A323032313131323330313030","start":"2021-11-23T00:00:00Z","end":"2021-11-23T01:00:00Z"},{"id":"3230323131313233323230303A323032313131323332323330","start":"2021-11-23T22:00:00Z","end":"2021-11-23T22:30:00Z"},{"id":"3230323131313233323233303A323032313131323332333030","start":"2021-11-23T22:30:00Z","end":"2021-11-23T23:00:00Z"},{"id":"3230323131313233323330303A323032313131323430313030","start":"2021-11-23T23:00:00Z","end":"2021-11-24T01:00:00Z"},{"id":"3230323131313234313530303A323032313131323431353330","start":"2021-11-24T15:00:00Z","end":"2021-11-24T15:30:00Z"},{"id":"3230323131313234313533303A323032313131323431363030","start":"2021-11-24T15:30:00Z","end":"2021-11-24T16:00:00Z"},{"id":"3230323131313234313630303A323032313131323431363330","start":"2021-11-24T16:00:00Z","end":"2021-11-24T16:30:00Z"},{"id":"3230323131313234313633303A323032313131323431373030","start":"2021-11-24T16:30:00Z","end":"2021-11-24T17:00:00Z"},{"id":"3230323131313234313730303A323032313131323431373330","start":"2021-11-24T17:00:00Z","end":"2021-11-24T17:30:00Z"},{"id":"3230323131313234313733303A323032313131323431383030","start":"2021-11-24T17:30:00Z","end":"2021-11-24T18:00:00Z"},{"id":"3230323131313234313830303A323032313131323431383330","start":"2021-11-24T18:00:00Z","end":"2021-11-24T18:30:00Z"},{"id":"3230323131313234313833303A323032313131323431393030","start":"2021-11-24T18:30:00Z","end":"2021-11-24T19:00:00Z"},{"id":"3230323131313234313930303A323032313131323431393330","start":"2021-11-24T19:00:00Z","end":"2021-11-24T19:30:00Z"},{"id":"3230323131313234313933303A323032313131323432303030","start":"2021-11-24T19:30:00Z","end":"2021-11-24T20:00:00Z"},{"id":"3230323131313234323030303A323032313131323432303330","start":"2021-11-24T20:00:00Z","end":"2021-11-24T20:30:00Z"},{"id":"3230323131313234323033303A323032313131323432313030","start":"2021-11-24T20:30:00Z","end":"2021-11-24T21:00:00Z"},{"id":"3230323131313234323130303A323032313131323432313330","start":"2021-11-24T21:00:00Z","end":"2021-11-24T21:30:00Z"},{"id":"3230323131313234323133303A323032313131323432323030","start":"2021-11-24T21:30:00Z","end":"2021-11-24T22:00:00Z"},{"id":"3230323131313234323230303A323032313131323432323330","start":"2021-11-24T22:00:00Z","end":"2021-11-24T22:30:00Z"},{"id":"3230323131313234323233303A323032313131323432333030","start":"2021-11-24T22:30:00Z","end":"2021-11-24T23:00:00Z"},{"id":"3230323131313234323330303A323032313131323530313030","start":"2021-11-24T23:00:00Z","end":"2021-11-25T01:00:00Z"},{"id":"3230323131313235313530303A323032313131323531353330","start":"2021-11-25T15:00:00Z","end":"2021-11-25T15:30:00Z"},{"id":"3230323131313235313533303A323032313131323531363030","start":"2021-11-25T15:30:00Z","end":"2021-11-25T16:00:00Z"},{"id":"3230323131313235313630303A323032313131323531363330","start":"2021-11-25T16:00:00Z","end":"2021-11-25T16:30:00Z"},{"id":"3230323131313235313633303A323032313131323531373030","start":"2021-11-25T16:30:00Z","end":"2021-11-25T17:00:00Z"},{"id":"3230323131313235313730303A323032313131323531373330","start":"2021-11-25T17:00:00Z","end":"2021-11-25T17:30:00Z"},{"id":"3230323131313235313733303A323032313131323531383030","start":"2021-11-25T17:30:00Z","end":"2021-11-25T18:00:00Z"},{"id":"3230323131313235313830303A323032313131323531383330","start":"2021-11-25T18:00:00Z","end":"2021-11-25T18:30:00Z"},{"id":"3230323131313235313833303A323032313131323531393030","start":"2021-11-25T18:30:00Z","end":"2021-11-25T19:00:00Z"},{"id":"3230323131313235313930303A323032313131323531393330","start":"2021-11-25T19:00:00Z","end":"2021-11-25T19:30:00Z"},{"id":"3230323131313235313933303A323032313131323532303030","start":"2021-11-25T19:30:00Z","end":"2021-11-25T20:00:00Z"},{"id":"3230323131313235323030303A323032313131323532303330","start":"2021-11-25T20:00:00Z","end":"2021-11-25T20:30:00Z"},{"id":"3230323131313235323033303A323032313131323532313030","start":"2021-11-25T20:30:00Z","end":"2021-11-25T21:00:00Z"},{"id":"3230323131313235323130303A323032313131323532313330","start":"2021-11-25T21:00:00Z","end":"2021-11-25T21:30:00Z"},{"id":"3230323131313235323133303A323032313131323532323030","start":"2021-11-25T21:30:00Z","end":"2021-11-25T22:00:00Z"},{"id":"3230323131313235323230303A323032313131323532323330","start":"2021-11-25T22:00:00Z","end":"2021-11-25T22:30:00Z"},{"id":"3230323131313235323233303A323032313131323532333030","start":"2021-11-25T22:30:00Z","end":"2021-11-25T23:00:00Z"},{"id":"3230323131313235323330303A323032313131323532333330","start":"2021-11-25T23:00:00Z","end":"2021-11-25T23:30:00Z"},{"id":"3230323131313235323333303A323032313131323630303030","start":"2021-11-25T23:30:00Z","end":"2021-11-26T00:00:00Z"},{"id":"3230323131313236303030303A323032313131323630313030","start":"2021-11-26T00:00:00Z","end":"2021-11-26T01:00:00Z"},{"id":"3230323131313236313530303A323032313131323631353330","start":"2021-11-26T15:00:00Z","end":"2021-11-26T15:30:00Z"},{"id":"3230323131313236313533303A323032313131323631363030","start":"2021-11-26T15:30:00Z","end":"2021-11-26T16:00:00Z"},{"id":"3230323131313236313630303A323032313131323631363330","start":"2021-11-26T16:00:00Z","end":"2021-11-26T16:30:00Z"},{"id":"3230323131313236313633303A323032313131323631373030","start":"2021-11-26T16:30:00Z","end":"2021-11-26T17:00:00Z"},{"id":"3230323131313236313730303A323032313131323631373330","start":"2021-11-26T17:00:00Z","end":"2021-11-26T17:30:00Z"},{"id":"3230323131313236313733303A323032313131323631383030","start":"2021-11-26T17:30:00Z","end":"2021-11-26T18:00:00Z"},{"id":"3230323131313236313830303A323032313131323631383330","start":"2021-11-26T18:00:00Z","end":"2021-11-26T18:30:00Z"},{"id":"3230323131313236313833303A323032313131323631393030","start":"2021-11-26T18:30:00Z","end":"2021-11-26T19:00:00Z"},{"id":"3230323131313236313930303A323032313131323631393330","start":"2021-11-26T19:00:00Z","end":"2021-11-26T19:30:00Z"},{"id":"3230323131313236313933303A323032313131323632303030","start":"2021-11-26T19:30:00Z","end":"2021-11-26T20:00:00Z"},{"id":"3230323131313236323030303A323032313131323632303330","start":"2021-11-26T20:00:00Z","end":"2021-11-26T20:30:00Z"},{"id":"3230323131313236323033303A323032313131323632313030","start":"2021-11-26T20:30:00Z","end":"2021-11-26T21:00:00Z"},{"id":"3230323131313236323130303A323032313131323632313330","start":"2021-11-26T21:00:00Z","end":"2021-11-26T21:30:00Z"},{"id":"3230323131313236323133303A323032313131323632323030","start":"2021-11-26T21:30:00Z","end":"2021-11-26T22:00:00Z"},{"id":"3230323131313236323230303A323032313131323632323330","start":"2021-11-26T22:00:00Z","end":"2021-11-26T22:30:00Z"},{"id":"3230323131313236323233303A323032313131323632333030","start":"2021-11-26T22:30:00Z","end":"2021-11-26T23:00:00Z"},{"id":"3230323131313236323330303A323032313131323632333330","start":"2021-11-26T23:00:00Z","end":"2021-11-26T23:30:00Z"},{"id":"3230323131313236323333303A323032313131323730303030","start":"2021-11-26T23:30:00Z","end":"2021-11-27T00:00:00Z"},{"id":"3230323131313237303030303A323032313131323730313030","start":"2021-11-27T00:00:00Z","end":"2021-11-27T01:00:00Z"},{"id":"3230323131313239313530303A323032313131323931353330","start":"2021-11-29T15:00:00Z","end":"2021-11-29T15:30:00Z"},{"id":"3230323131313239313533303A323032313131323931363030","start":"2021-11-29T15:30:00Z","end":"2021-11-29T16:00:00Z"},{"id":"3230323131313239313630303A323032313131323931363330","start":"2021-11-29T16:00:00Z","end":"2021-11-29T16:30:00Z"},{"id":"3230323131313239313633303A323032313131323931373030","start":"2021-11-29T16:30:00Z","end":"2021-11-29T17:00:00Z"},{"id":"3230323131313239313730303A323032313131323931373330","start":"2021-11-29T17:00:00Z","end":"2021-11-29T17:30:00Z"},{"id":"3230323131313239313733303A323032313131323931383030","start":"2021-11-29T17:30:00Z","end":"2021-11-29T18:00:00Z"},{"id":"3230323131313239313830303A323032313131323931383330","start":"2021-11-29T18:00:00Z","end":"2021-11-29T18:30:00Z"},{"id":"3230323131313239313833303A323032313131323931393030","start":"2021-11-29T18:30:00Z","end":"2021-11-29T19:00:00Z"},{"id":"3230323131313239313930303A323032313131323931393330","start":"2021-11-29T19:00:00Z","end":"2021-11-29T19:30:00Z"},{"id":"3230323131313239313933303A323032313131323932303030","start":"2021-11-29T19:30:00Z","end":"2021-11-29T20:00:00Z"},{"id":"3230323131313239323030303A323032313131323932303330","start":"2021-11-29T20:00:00Z","end":"2021-11-29T20:30:00Z"},{"id":"3230323131313239323033303A323032313131323932313030","start":"2021-11-29T20:30:00Z","end":"2021-11-29T21:00:00Z"},{"id":"3230323131313239323130303A323032313131323932313330","start":"2021-11-29T21:00:00Z","end":"2021-11-29T21:30:00Z"},{"id":"3230323131313239323133303A323032313131323932323030","start":"2021-11-29T21:30:00Z","end":"2021-11-29T22:00:00Z"},{"id":"3230323131313239323230303A323032313131323932323330","start":"2021-11-29T22:00:00Z","end":"2021-11-29T22:30:00Z"},{"id":"3230323131313239323233303A323032313131323932333030","start":"2021-11-29T22:30:00Z","end":"2021-11-29T23:00:00Z"},{"id":"3230323131313239323330303A323032313131323932333330","start":"2021-11-29T23:00:00Z","end":"2021-11-29T23:30:00Z"},{"id":"3230323131313239323333303A323032313131333030303030","start":"2021-11-29T23:30:00Z","end":"2021-11-30T00:00:00Z"},{"id":"3230323131313330303030303A323032313131333030313030","start":"2021-11-30T00:00:00Z","end":"2021-11-30T01:00:00Z"},{"id":"3230323131313330323230303A323032313131333032323330","start":"2021-11-30T22:00:00Z","end":"2021-11-30T22:30:00Z"},{"id":"3230323131313330323233303A323032313131333032333030","start":"2021-11-30T22:30:00Z","end":"2021-11-30T23:00:00Z"},{"id":"3230323131313330323330303A323032313132303130313030","start":"2021-11-30T23:00:00Z","end":"2021-12-01T01:00:00Z"},{"id":"3230323131323031313530303A323032313132303131353330","start":"2021-12-01T15:00:00Z","end":"2021-12-01T15:30:00Z"},{"id":"3230323131323031313533303A323032313132303131363030","start":"2021-12-01T15:30:00Z","end":"2021-12-01T16:00:00Z"},{"id":"3230323131323031313630303A323032313132303131363330","start":"2021-12-01T16:00:00Z","end":"2021-12-01T16:30:00Z"},{"id":"3230323131323031313633303A323032313132303131373030","start":"2021-12-01T16:30:00Z","end":"2021-12-01T17:00:00Z"},{"id":"3230323131323031313730303A323032313132303131373330","start":"2021-12-01T17:00:00Z","end":"2021-12-01T17:30:00Z"},{"id":"3230323131323031313733303A323032313132303131383030","start":"2021-12-01T17:30:00Z","end":"2021-12-01T18:00:00Z"},{"id":"3230323131323031313830303A323032313132303131383330","start":"2021-12-01T18:00:00Z","end":"2021-12-01T18:30:00Z"},{"id":"3230323131323031313833303A323032313132303131393030","start":"2021-12-01T18:30:00Z","end":"2021-12-01T19:00:00Z"},{"id":"3230323131323031313930303A323032313132303131393330","start":"2021-12-01T19:00:00Z","end":"2021-12-01T19:30:00Z"},{"id":"3230323131323031313933303A323032313132303132303030","start":"2021-12-01T19:30:00Z","end":"2021-12-01T20:00:00Z"},{"id":"3230323131323031323030303A323032313132303132303330","start":"2021-12-01T20:00:00Z","end":"2021-12-01T20:30:00Z"},{"id":"3230323131323031323033303A323032313132303132313030","start":"2021-12-01T20:30:00Z","end":"2021-12-01T21:00:00Z"},{"id":"3230323131323031323130303A323032313132303132313330","start":"2021-12-01T21:00:00Z","end":"2021-12-01T21:30:00Z"},{"id":"3230323131323031323133303A323032313132303132323030","start":"2021-12-01T21:30:00Z","end":"2021-12-01T22:00:00Z"},{"id":"3230323131323031323230303A323032313132303132323330","start":"2021-12-01T22:00:00Z","end":"2021-12-01T22:30:00Z"},{"id":"3230323131323031323233303A323032313132303132333030","start":"2021-12-01T22:30:00Z","end":"2021-12-01T23:00:00Z"},{"id":"3230323131323031323330303A323032313132303230313030","start":"2021-12-01T23:00:00Z","end":"2021-12-02T01:00:00Z"},{"id":"3230323131323032313530303A323032313132303231353330","start":"2021-12-02T15:00:00Z","end":"2021-12-02T15:30:00Z"},{"id":"3230323131323032313533303A323032313132303231363030","start":"2021-12-02T15:30:00Z","end":"2021-12-02T16:00:00Z"},{"id":"3230323131323032313630303A323032313132303231363330","start":"2021-12-02T16:00:00Z","end":"2021-12-02T16:30:00Z"},{"id":"3230323131323032313633303A323032313132303231373030","start":"2021-12-02T16:30:00Z","end":"2021-12-02T17:00:00Z"},{"id":"3230323131323032313730303A323032313132303231373330","start":"2021-12-02T17:00:00Z","end":"2021-12-02T17:30:00Z"},{"id":"3230323131323032313733303A323032313132303231383030","start":"2021-12-02T17:30:00Z","end":"2021-12-02T18:00:00Z"},{"id":"3230323131323032313830303A323032313132303231383330","start":"2021-12-02T18:00:00Z","end":"2021-12-02T18:30:00Z"},{"id":"3230323131323032313833303A323032313132303231393030","start":"2021-12-02T18:30:00Z","end":"2021-12-02T19:00:00Z"},{"id":"3230323131323032313930303A323032313132303231393330","start":"2021-12-02T19:00:00Z","end":"2021-12-02T19:30:00Z"},{"id":"3230323131323032313933303A323032313132303232303030","start":"2021-12-02T19:30:00Z","end":"2021-12-02T20:00:00Z"},{"id":"3230323131323032323030303A323032313132303232303330","start":"2021-12-02T20:00:00Z","end":"2021-12-02T20:30:00Z"},{"id":"3230323131323032323033303A323032313132303232313030","start":"2021-12-02T20:30:00Z","end":"2021-12-02T21:00:00Z"},{"id":"3230323131323032323130303A323032313132303232313330","start":"2021-12-02T21:00:00Z","end":"2021-12-02T21:30:00Z"},{"id":"3230323131323032323133303A323032313132303232323030","start":"2021-12-02T21:30:00Z","end":"2021-12-02T22:00:00Z"},{"id":"3230323131323032323230303A323032313132303232323330","start":"2021-12-02T22:00:00Z","end":"2021-12-02T22:30:00Z"},{"id":"3230323131323032323233303A323032313132303232333030","start":"2021-12-02T22:30:00Z","end":"2021-12-02T23:00:00Z"},{"id":"3230323131323032323330303A323032313132303232333330","start":"2021-12-02T23:00:00Z","end":"2021-12-02T23:30:00Z"},{"id":"3230323131323032323333303A323032313132303330303030","start":"2021-12-02T23:30:00Z","end":"2021-12-03T00:00:00Z"},{"id":"3230323131323033303030303A323032313132303330313030","start":"2021-12-03T00:00:00Z","end":"2021-12-03T01:00:00Z"},{"id":"3230323131323033313530303A323032313132303331353330","start":"2021-12-03T15:00:00Z","end":"2021-12-03T15:30:00Z"},{"id":"3230323131323033313533303A323032313132303331363030","start":"2021-12-03T15:30:00Z","end":"2021-12-03T16:00:00Z"},{"id":"3230323131323033313630303A323032313132303331363330","start":"2021-12-03T16:00:00Z","end":"2021-12-03T16:30:00Z"},{"id":"3230323131323033313633303A323032313132303331373030","start":"2021-12-03T16:30:00Z","end":"2021-12-03T17:00:00Z"},{"id":"3230323131323033313730303A323032313132303331373330","start":"2021-12-03T17:00:00Z","end":"2021-12-03T17:30:00Z"},{"id":"3230323131323033313733303A323032313132303331383030","start":"2021-12-03T17:30:00Z","end":"2021-12-03T18:00:00Z"},{"id":"3230323131323033313830303A323032313132303331383330","start":"2021-12-03T18:00:00Z","end":"2021-12-03T18:30:00Z"},{"id":"3230323131323033313833303A323032313132303331393030","start":"2021-12-03T18:30:00Z","end":"2021-12-03T19:00:00Z"},{"id":"3230323131323033313930303A323032313132303331393330","start":"2021-12-03T19:00:00Z","end":"2021-12-03T19:30:00Z"},{"id":"3230323131323033313933303A323032313132303332303030","start":"2021-12-03T19:30:00Z","end":"2021-12-03T20:00:00Z"},{"id":"3230323131323033323030303A323032313132303332303330","start":"2021-12-03T20:00:00Z","end":"2021-12-03T20:30:00Z"},{"id":"3230323131323033323033303A323032313132303332313030","start":"2021-12-03T20:30:00Z","end":"2021-12-03T21:00:00Z"},{"id":"3230323131323033323130303A323032313132303332313330","start":"2021-12-03T21:00:00Z","end":"2021-12-03T21:30:00Z"},{"id":"3230323131323033323133303A323032313132303332323030","start":"2021-12-03T21:30:00Z","end":"2021-12-03T22:00:00Z"},{"id":"3230323131323033323230303A323032313132303332323330","start":"2021-12-03T22:00:00Z","end":"2021-12-03T22:30:00Z"},{"id":"3230323131323033323233303A323032313132303332333030","start":"2021-12-03T22:30:00Z","end":"2021-12-03T23:00:00Z"},{"id":"3230323131323033323330303A323032313132303332333330","start":"2021-12-03T23:00:00Z","end":"2021-12-03T23:30:00Z"},{"id":"3230323131323033323333303A323032313132303430303030","start":"2021-12-03T23:30:00Z","end":"2021-12-04T00:00:00Z"},{"id":"3230323131323034303030303A323032313132303430313030","start":"2021-12-04T00:00:00Z","end":"2021-12-04T01:00:00Z"},{"id":"3230323131323036313530303A323032313132303631353330","start":"2021-12-06T15:00:00Z","end":"2021-12-06T15:30:00Z"},{"id":"3230323131323036313533303A323032313132303631363030","start":"2021-12-06T15:30:00Z","end":"2021-12-06T16:00:00Z"},{"id":"3230323131323036313630303A323032313132303631363330","start":"2021-12-06T16:00:00Z","end":"2021-12-06T16:30:00Z"},{"id":"3230323131323036313633303A323032313132303631373030","start":"2021-12-06T16:30:00Z","end":"2021-12-06T17:00:00Z"},{"id":"3230323131323036313730303A323032313132303631373330","start":"2021-12-06T17:00:00Z","end":"2021-12-06T17:30:00Z"},{"id":"3230323131323036313733303A323032313132303631383030","start":"2021-12-06T17:30:00Z","end":"2021-12-06T18:00:00Z"},{"id":"3230323131323036313830303A323032313132303631383330","start":"2021-12-06T18:00:00Z","end":"2021-12-06T18:30:00Z"},{"id":"3230323131323036313833303A323032313132303631393030","start":"2021-12-06T18:30:00Z","end":"2021-12-06T19:00:00Z"},{"id":"3230323131323036313930303A323032313132303631393330","start":"2021-12-06T19:00:00Z","end":"2021-12-06T19:30:00Z"},{"id":"3230323131323036313933303A323032313132303632303030","start":"2021-12-06T19:30:00Z","end":"2021-12-06T20:00:00Z"},{"id":"3230323131323036323030303A323032313132303632303330","start":"2021-12-06T20:00:00Z","end":"2021-12-06T20:30:00Z"},{"id":"3230323131323036323033303A323032313132303632313030","start":"2021-12-06T20:30:00Z","end":"2021-12-06T21:00:00Z"},{"id":"3230323131323036323130303A323032313132303632313330","start":"2021-12-06T21:00:00Z","end":"2021-12-06T21:30:00Z"},{"id":"3230323131323036323133303A323032313132303632323030","start":"2021-12-06T21:30:00Z","end":"2021-12-06T22:00:00Z"},{"id":"3230323131323036323230303A323032313132303632323330","start":"2021-12-06T22:00:00Z","end":"2021-12-06T22:30:00Z"},{"id":"3230323131323036323233303A323032313132303632333030","start":"2021-12-06T22:30:00Z","end":"2021-12-06T23:00:00Z"},{"id":"3230323131323036323330303A323032313132303632333330","start":"2021-12-06T23:00:00Z","end":"2021-12-06T23:30:00Z"},{"id":"3230323131323036323333303A323032313132303730303030","start":"2021-12-06T23:30:00Z","end":"2021-12-07T00:00:00Z"},{"id":"3230323131323037303030303A323032313132303730313030","start":"2021-12-07T00:00:00Z","end":"2021-12-07T01:00:00Z"},{"id":"3230323131323037323230303A323032313132303732323330","start":"2021-12-07T22:00:00Z","end":"2021-12-07T22:30:00Z"},{"id":"3230323131323037323233303A323032313132303732333030","start":"2021-12-07T22:30:00Z","end":"2021-12-07T23:00:00Z"},{"id":"3230323131323037323330303A323032313132303830313030","start":"2021-12-07T23:00:00Z","end":"2021-12-08T01:00:00Z"},{"id":"3230323131323038313530303A323032313132303831353330","start":"2021-12-08T15:00:00Z","end":"2021-12-08T15:30:00Z"},{"id":"3230323131323038313533303A323032313132303831363030","start":"2021-12-08T15:30:00Z","end":"2021-12-08T16:00:00Z"},{"id":"3230323131323038313630303A323032313132303831363330","start":"2021-12-08T16:00:00Z","end":"2021-12-08T16:30:00Z"},{"id":"3230323131323038313633303A323032313132303831373030","start":"2021-12-08T16:30:00Z","end":"2021-12-08T17:00:00Z"},{"id":"3230323131323038313730303A323032313132303831373330","start":"2021-12-08T17:00:00Z","end":"2021-12-08T17:30:00Z"},{"id":"3230323131323038313733303A323032313132303831383030","start":"2021-12-08T17:30:00Z","end":"2021-12-08T18:00:00Z"},{"id":"3230323131323038313830303A323032313132303831383330","start":"2021-12-08T18:00:00Z","end":"2021-12-08T18:30:00Z"},{"id":"3230323131323038313833303A323032313132303831393030","start":"2021-12-08T18:30:00Z","end":"2021-12-08T19:00:00Z"},{"id":"3230323131323038313930303A323032313132303831393330","start":"2021-12-08T19:00:00Z","end":"2021-12-08T19:30:00Z"},{"id":"3230323131323038313933303A323032313132303832303030","start":"2021-12-08T19:30:00Z","end":"2021-12-08T20:00:00Z"},{"id":"3230323131323038323030303A323032313132303832303330","start":"2021-12-08T20:00:00Z","end":"2021-12-08T20:30:00Z"},{"id":"3230323131323038323033303A323032313132303832313030","start":"2021-12-08T20:30:00Z","end":"2021-12-08T21:00:00Z"},{"id":"3230323131323038323130303A323032313132303832313330","start":"2021-12-08T21:00:00Z","end":"2021-12-08T21:30:00Z"},{"id":"3230323131323038323133303A323032313132303832323030","start":"2021-12-08T21:30:00Z","end":"2021-12-08T22:00:00Z"},{"id":"3230323131323038323230303A323032313132303832323330","start":"2021-12-08T22:00:00Z","end":"2021-12-08T22:30:00Z"},{"id":"3230323131323038323233303A323032313132303832333030","start":"2021-12-08T22:30:00Z","end":"2021-12-08T23:00:00Z"},{"id":"3230323131323038323330303A323032313132303930313030","start":"2021-12-08T23:00:00Z","end":"2021-12-09T01:00:00Z"},{"id":"3230323131323039313530303A323032313132303931353330","start":"2021-12-09T15:00:00Z","end":"2021-12-09T15:30:00Z"},{"id":"3230323131323039313533303A323032313132303931363030","start":"2021-12-09T15:30:00Z","end":"2021-12-09T16:00:00Z"},{"id":"3230323131323039313630303A323032313132303931363330","start":"2021-12-09T16:00:00Z","end":"2021-12-09T16:30:00Z"},{"id":"3230323131323039313633303A323032313132303931373030","start":"2021-12-09T16:30:00Z","end":"2021-12-09T17:00:00Z"},{"id":"3230323131323039313730303A323032313132303931373330","start":"2021-12-09T17:00:00Z","end":"2021-12-09T17:30:00Z"},{"id":"3230323131323039313733303A323032313132303931383030","start":"2021-12-09T17:30:00Z","end":"2021-12-09T18:00:00Z"},{"id":"3230323131323039313830303A323032313132303931383330","start":"2021-12-09T18:00:00Z","end":"2021-12-09T18:30:00Z"},{"id":"3230323131323039313833303A323032313132303931393030","start":"2021-12-09T18:30:00Z","end":"2021-12-09T19:00:00Z"},{"id":"3230323131323039313930303A323032313132303931393330","start":"2021-12-09T19:00:00Z","end":"2021-12-09T19:30:00Z"},{"id":"3230323131323039313933303A323032313132303932303030","start":"2021-12-09T19:30:00Z","end":"2021-12-09T20:00:00Z"},{"id":"3230323131323039323030303A323032313132303932303330","start":"2021-12-09T20:00:00Z","end":"2021-12-09T20:30:00Z"},{"id":"3230323131323039323033303A323032313132303932313030","start":"2021-12-09T20:30:00Z","end":"2021-12-09T21:00:00Z"},{"id":"3230323131323039323130303A323032313132303932313330","start":"2021-12-09T21:00:00Z","end":"2021-12-09T21:30:00Z"},{"id":"3230323131323039323133303A323032313132303932323030","start":"2021-12-09T21:30:00Z","end":"2021-12-09T22:00:00Z"},{"id":"3230323131323039323230303A323032313132303932323330","start":"2021-12-09T22:00:00Z","end":"2021-12-09T22:30:00Z"},{"id":"3230323131323039323233303A323032313132303932333030","start":"2021-12-09T22:30:00Z","end":"2021-12-09T23:00:00Z"},{"id":"3230323131323039323330303A323032313132303932333330","start":"2021-12-09T23:00:00Z","end":"2021-12-09T23:30:00Z"},{"id":"3230323131323039323333303A323032313132313030303030","start":"2021-12-09T23:30:00Z","end":"2021-12-10T00:00:00Z"},{"id":"3230323131323130303030303A323032313132313030313030","start":"2021-12-10T00:00:00Z","end":"2021-12-10T01:00:00Z"},{"id":"3230323131323130313530303A323032313132313031353330","start":"2021-12-10T15:00:00Z","end":"2021-12-10T15:30:00Z"},{"id":"3230323131323130313533303A323032313132313031363030","start":"2021-12-10T15:30:00Z","end":"2021-12-10T16:00:00Z"},{"id":"3230323131323130313630303A323032313132313031363330","start":"2021-12-10T16:00:00Z","end":"2021-12-10T16:30:00Z"},{"id":"3230323131323130313633303A323032313132313031373030","start":"2021-12-10T16:30:00Z","end":"2021-12-10T17:00:00Z"},{"id":"3230323131323130313730303A323032313132313031373330","start":"2021-12-10T17:00:00Z","end":"2021-12-10T17:30:00Z"},{"id":"3230323131323130313733303A323032313132313031383030","start":"2021-12-10T17:30:00Z","end":"2021-12-10T18:00:00Z"},{"id":"3230323131323130313830303A323032313132313031383330","start":"2021-12-10T18:00:00Z","end":"2021-12-10T18:30:00Z"},{"id":"3230323131323130313833303A323032313132313031393030","start":"2021-12-10T18:30:00Z","end":"2021-12-10T19:00:00Z"},{"id":"3230323131323130313930303A323032313132313031393330","start":"2021-12-10T19:00:00Z","end":"2021-12-10T19:30:00Z"},{"id":"3230323131323130313933303A323032313132313032303030","start":"2021-12-10T19:30:00Z","end":"2021-12-10T20:00:00Z"},{"id":"3230323131323130323030303A323032313132313032303330","start":"2021-12-10T20:00:00Z","end":"2021-12-10T20:30:00Z"},{"id":"3230323131323130323033303A323032313132313032313030","start":"2021-12-10T20:30:00Z","end":"2021-12-10T21:00:00Z"},{"id":"3230323131323130323130303A323032313132313032313330","start":"2021-12-10T21:00:00Z","end":"2021-12-10T21:30:00Z"},{"id":"3230323131323130323133303A323032313132313032323030","start":"2021-12-10T21:30:00Z","end":"2021-12-10T22:00:00Z"},{"id":"3230323131323130323230303A323032313132313032323330","start":"2021-12-10T22:00:00Z","end":"2021-12-10T22:30:00Z"},{"id":"3230323131323130323233303A323032313132313032333030","start":"2021-12-10T22:30:00Z","end":"2021-12-10T23:00:00Z"},{"id":"3230323131323130323330303A323032313132313032333330","start":"2021-12-10T23:00:00Z","end":"2021-12-10T23:30:00Z"},{"id":"3230323131323130323333303A323032313132313130303030","start":"2021-12-10T23:30:00Z","end":"2021-12-11T00:00:00Z"},{"id":"3230323131323131303030303A323032313132313130313030","start":"2021-12-11T00:00:00Z","end":"2021-12-11T01:00:00Z"},{"id":"3230323131323133313530303A323032313132313331353330","start":"2021-12-13T15:00:00Z","end":"2021-12-13T15:30:00Z"},{"id":"3230323131323133313533303A323032313132313331363030","start":"2021-12-13T15:30:00Z","end":"2021-12-13T16:00:00Z"},{"id":"3230323131323133313630303A323032313132313331363330","start":"2021-12-13T16:00:00Z","end":"2021-12-13T16:30:00Z"},{"id":"3230323131323133313633303A323032313132313331373030","start":"2021-12-13T16:30:00Z","end":"2021-12-13T17:00:00Z"},{"id":"3230323131323133313730303A323032313132313331373330","start":"2021-12-13T17:00:00Z","end":"2021-12-13T17:30:00Z"},{"id":"3230323131323133313733303A323032313132313331383030","start":"2021-12-13T17:30:00Z","end":"2021-12-13T18:00:00Z"},{"id":"3230323131323133313830303A323032313132313331383330","start":"2021-12-13T18:00:00Z","end":"2021-12-13T18:30:00Z"},{"id":"3230323131323133313833303A323032313132313331393030","start":"2021-12-13T18:30:00Z","end":"2021-12-13T19:00:00Z"},{"id":"3230323131323133313930303A323032313132313331393330","start":"2021-12-13T19:00:00Z","end":"2021-12-13T19:30:00Z"},{"id":"3230323131323133313933303A323032313132313332303030","start":"2021-12-13T19:30:00Z","end":"2021-12-13T20:00:00Z"},{"id":"3230323131323133323030303A323032313132313332303330","start":"2021-12-13T20:00:00Z","end":"2021-12-13T20:30:00Z"},{"id":"3230323131323133323033303A323032313132313332313030","start":"2021-12-13T20:30:00Z","end":"2021-12-13T21:00:00Z"},{"id":"3230323131323133323130303A323032313132313332313330","start":"2021-12-13T21:00:00Z","end":"2021-12-13T21:30:00Z"},{"id":"3230323131323133323133303A323032313132313332323030","start":"2021-12-13T21:30:00Z","end":"2021-12-13T22:00:00Z"},{"id":"3230323131323133323230303A323032313132313332323330","start":"2021-12-13T22:00:00Z","end":"2021-12-13T22:30:00Z"},{"id":"3230323131323133323233303A323032313132313332333030","start":"2021-12-13T22:30:00Z","end":"2021-12-13T23:00:00Z"},{"id":"3230323131323133323330303A323032313132313332333330","start":"2021-12-13T23:00:00Z","end":"2021-12-13T23:30:00Z"},{"id":"3230323131323133323333303A323032313132313430303030","start":"2021-12-13T23:30:00Z","end":"2021-12-14T00:00:00Z"},{"id":"3230323131323134303030303A323032313132313430313030","start":"2021-12-14T00:00:00Z","end":"2021-12-14T01:00:00Z"},{"id":"3230323131323134323230303A323032313132313432323330","start":"2021-12-14T22:00:00Z","end":"2021-12-14T22:30:00Z"},{"id":"3230323131323134323233303A323032313132313432333030","start":"2021-12-14T22:30:00Z","end":"2021-12-14T23:00:00Z"},{"id":"3230323131323134323330303A323032313132313530313030","start":"2021-12-14T23:00:00Z","end":"2021-12-15T01:00:00Z"},{"id":"3230323131323135313530303A323032313132313531353330","start":"2021-12-15T15:00:00Z","end":"2021-12-15T15:30:00Z"},{"id":"3230323131323135313533303A323032313132313531363030","start":"2021-12-15T15:30:00Z","end":"2021-12-15T16:00:00Z"},{"id":"3230323131323135313630303A323032313132313531363330","start":"2021-12-15T16:00:00Z","end":"2021-12-15T16:30:00Z"},{"id":"3230323131323135313633303A323032313132313531373030","start":"2021-12-15T16:30:00Z","end":"2021-12-15T17:00:00Z"},{"id":"3230323131323135313730303A323032313132313531373330","start":"2021-12-15T17:00:00Z","end":"2021-12-15T17:30:00Z"},{"id":"3230323131323135313733303A323032313132313531383030","start":"2021-12-15T17:30:00Z","end":"2021-12-15T18:00:00Z"},{"id":"3230323131323135313830303A323032313132313531383330","start":"2021-12-15T18:00:00Z","end":"2021-12-15T18:30:00Z"},{"id":"3230323131323135313833303A323032313132313531393030","start":"2021-12-15T18:30:00Z","end":"2021-12-15T19:00:00Z"},{"id":"3230323131323135313930303A323032313132313531393330","start":"2021-12-15T19:00:00Z","end":"2021-12-15T19:30:00Z"},{"id":"3230323131323135313933303A323032313132313532303030","start":"2021-12-15T19:30:00Z","end":"2021-12-15T20:00:00Z"},{"id":"3230323131323135323030303A323032313132313532303330","start":"2021-12-15T20:00:00Z","end":"2021-12-15T20:30:00Z"},{"id":"3230323131323135323033303A323032313132313532313030","start":"2021-12-15T20:30:00Z","end":"2021-12-15T21:00:00Z"},{"id":"3230323131323135323130303A323032313132313532313330","start":"2021-12-15T21:00:00Z","end":"2021-12-15T21:30:00Z"},{"id":"3230323131323135323133303A323032313132313532323030","start":"2021-12-15T21:30:00Z","end":"2021-12-15T22:00:00Z"},{"id":"3230323131323135323230303A323032313132313532323330","start":"2021-12-15T22:00:00Z","end":"2021-12-15T22:30:00Z"},{"id":"3230323131323135323233303A323032313132313532333030","start":"2021-12-15T22:30:00Z","end":"2021-12-15T23:00:00Z"},{"id":"3230323131323135323330303A323032313132313630313030","start":"2021-12-15T23:00:00Z","end":"2021-12-16T01:00:00Z"},{"id":"3230323131323136313530303A323032313132313631353330","start":"2021-12-16T15:00:00Z","end":"2021-12-16T15:30:00Z"},{"id":"3230323131323136313533303A323032313132313631363030","start":"2021-12-16T15:30:00Z","end":"2021-12-16T16:00:00Z"},{"id":"3230323131323136313630303A323032313132313631363330","start":"2021-12-16T16:00:00Z","end":"2021-12-16T16:30:00Z"},{"id":"3230323131323136313633303A323032313132313631373030","start":"2021-12-16T16:30:00Z","end":"2021-12-16T17:00:00Z"},{"id":"3230323131323136313730303A323032313132313631373330","start":"2021-12-16T17:00:00Z","end":"2021-12-16T17:30:00Z"},{"id":"3230323131323136313733303A323032313132313631383030","start":"2021-12-16T17:30:00Z","end":"2021-12-16T18:00:00Z"},{"id":"3230323131323136313830303A323032313132313631383330","start":"2021-12-16T18:00:00Z","end":"2021-12-16T18:30:00Z"},{"id":"3230323131323136313833303A323032313132313631393030","start":"2021-12-16T18:30:00Z","end":"2021-12-16T19:00:00Z"},{"id":"3230323131323136313930303A323032313132313631393330","start":"2021-12-16T19:00:00Z","end":"2021-12-16T19:30:00Z"},{"id":"3230323131323136313933303A323032313132313632303030","start":"2021-12-16T19:30:00Z","end":"2021-12-16T20:00:00Z"},{"id":"3230323131323136323030303A323032313132313632303330","start":"2021-12-16T20:00:00Z","end":"2021-12-16T20:30:00Z"},{"id":"3230323131323136323033303A323032313132313632313030","start":"2021-12-16T20:30:00Z","end":"2021-12-16T21:00:00Z"},{"id":"3230323131323136323130303A323032313132313632313330","start":"2021-12-16T21:00:00Z","end":"2021-12-16T21:30:00Z"},{"id":"3230323131323136323133303A323032313132313632323030","start":"2021-12-16T21:30:00Z","end":"2021-12-16T22:00:00Z"},{"id":"3230323131323136323230303A323032313132313632323330","start":"2021-12-16T22:00:00Z","end":"2021-12-16T22:30:00Z"},{"id":"3230323131323136323233303A323032313132313632333030","start":"2021-12-16T22:30:00Z","end":"2021-12-16T23:00:00Z"},{"id":"3230323131323136323330303A323032313132313632333330","start":"2021-12-16T23:00:00Z","end":"2021-12-16T23:30:00Z"},{"id":"3230323131323136323333303A323032313132313730303030","start":"2021-12-16T23:30:00Z","end":"2021-12-17T00:00:00Z"},{"id":"3230323131323137303030303A323032313132313730313030","start":"2021-12-17T00:00:00Z","end":"2021-12-17T01:00:00Z"},{"id":"3230323131323137313530303A323032313132313731353330","start":"2021-12-17T15:00:00Z","end":"2021-12-17T15:30:00Z"},{"id":"3230323131323137313533303A323032313132313731363030","start":"2021-12-17T15:30:00Z","end":"2021-12-17T16:00:00Z"},{"id":"3230323131323137313630303A323032313132313731363330","start":"2021-12-17T16:00:00Z","end":"2021-12-17T16:30:00Z"},{"id":"3230323131323137313633303A323032313132313731373030","start":"2021-12-17T16:30:00Z","end":"2021-12-17T17:00:00Z"},{"id":"3230323131323137313730303A323032313132313731373330","start":"2021-12-17T17:00:00Z","end":"2021-12-17T17:30:00Z"},{"id":"3230323131323137313733303A323032313132313731383030","start":"2021-12-17T17:30:00Z","end":"2021-12-17T18:00:00Z"},{"id":"3230323131323137313830303A323032313132313731383330","start":"2021-12-17T18:00:00Z","end":"2021-12-17T18:30:00Z"},{"id":"3230323131323137313833303A323032313132313731393030","start":"2021-12-17T18:30:00Z","end":"2021-12-17T19:00:00Z"},{"id":"3230323131323137313930303A323032313132313731393330","start":"2021-12-17T19:00:00Z","end":"2021-12-17T19:30:00Z"},{"id":"3230323131323137313933303A323032313132313732303030","start":"2021-12-17T19:30:00Z","end":"2021-12-17T20:00:00Z"},{"id":"3230323131323137323030303A323032313132313732303330","start":"2021-12-17T20:00:00Z","end":"2021-12-17T20:30:00Z"},{"id":"3230323131323137323033303A323032313132313732313030","start":"2021-12-17T20:30:00Z","end":"2021-12-17T21:00:00Z"},{"id":"3230323131323137323130303A323032313132313732313330","start":"2021-12-17T21:00:00Z","end":"2021-12-17T21:30:00Z"},{"id":"3230323131323137323133303A323032313132313732323030","start":"2021-12-17T21:30:00Z","end":"2021-12-17T22:00:00Z"},{"id":"3230323131323137323230303A323032313132313732323330","start":"2021-12-17T22:00:00Z","end":"2021-12-17T22:30:00Z"},{"id":"3230323131323137323233303A323032313132313732333030","start":"2021-12-17T22:30:00Z","end":"2021-12-17T23:00:00Z"},{"id":"3230323131323137323330303A323032313132313732333330","start":"2021-12-17T23:00:00Z","end":"2021-12-17T23:30:00Z"},{"id":"3230323131323137323333303A323032313132313830303030","start":"2021-12-17T23:30:00Z","end":"2021-12-18T00:00:00Z"},{"id":"3230323131323138303030303A323032313132313830313030","start":"2021-12-18T00:00:00Z","end":"2021-12-18T01:00:00Z"},{"id":"3230323131323230313530303A323032313132323031353330","start":"2021-12-20T15:00:00Z","end":"2021-12-20T15:30:00Z"},{"id":"3230323131323230313533303A323032313132323031363030","start":"2021-12-20T15:30:00Z","end":"2021-12-20T16:00:00Z"},{"id":"3230323131323230313630303A323032313132323031363330","start":"2021-12-20T16:00:00Z","end":"2021-12-20T16:30:00Z"},{"id":"3230323131323230313633303A323032313132323031373030","start":"2021-12-20T16:30:00Z","end":"2021-12-20T17:00:00Z"},{"id":"3230323131323230313730303A323032313132323031373330","start":"2021-12-20T17:00:00Z","end":"2021-12-20T17:30:00Z"},{"id":"3230323131323230313733303A323032313132323031383030","start":"2021-12-20T17:30:00Z","end":"2021-12-20T18:00:00Z"},{"id":"3230323131323230313830303A323032313132323031383330","start":"2021-12-20T18:00:00Z","end":"2021-12-20T18:30:00Z"},{"id":"3230323131323230313833303A323032313132323031393030","start":"2021-12-20T18:30:00Z","end":"2021-12-20T19:00:00Z"},{"id":"3230323131323230313930303A323032313132323031393330","start":"2021-12-20T19:00:00Z","end":"2021-12-20T19:30:00Z"},{"id":"3230323131323230313933303A323032313132323032303030","start":"2021-12-20T19:30:00Z","end":"2021-12-20T20:00:00Z"},{"id":"3230323131323230323030303A323032313132323032303330","start":"2021-12-20T20:00:00Z","end":"2021-12-20T20:30:00Z"},{"id":"3230323131323230323033303A323032313132323032313030","start":"2021-12-20T20:30:00Z","end":"2021-12-20T21:00:00Z"},{"id":"3230323131323230323130303A323032313132323032313330","start":"2021-12-20T21:00:00Z","end":"2021-12-20T21:30:00Z"},{"id":"3230323131323230323133303A323032313132323032323030","start":"2021-12-20T21:30:00Z","end":"2021-12-20T22:00:00Z"},{"id":"3230323131323230323230303A323032313132323032323330","start":"2021-12-20T22:00:00Z","end":"2021-12-20T22:30:00Z"},{"id":"3230323131323230323233303A323032313132323032333030","start":"2021-12-20T22:30:00Z","end":"2021-12-20T23:00:00Z"},{"id":"3230323131323230323330303A323032313132323032333330","start":"2021-12-20T23:00:00Z","end":"2021-12-20T23:30:00Z"},{"id":"3230323131323230323333303A323032313132323130303030","start":"2021-12-20T23:30:00Z","end":"2021-12-21T00:00:00Z"},{"id":"3230323131323231303030303A323032313132323130313030","start":"2021-12-21T00:00:00Z","end":"2021-12-21T01:00:00Z"},{"id":"3230323131323231323230303A323032313132323132323330","start":"2021-12-21T22:00:00Z","end":"2021-12-21T22:30:00Z"},{"id":"3230323131323231323233303A323032313132323132333030","start":"2021-12-21T22:30:00Z","end":"2021-12-21T23:00:00Z"},{"id":"3230323131323231323330303A323032313132323230313030","start":"2021-12-21T23:00:00Z","end":"2021-12-22T01:00:00Z"},{"id":"3230323131323232313530303A323032313132323231353330","start":"2021-12-22T15:00:00Z","end":"2021-12-22T15:30:00Z"},{"id":"3230323131323232313533303A323032313132323231363030","start":"2021-12-22T15:30:00Z","end":"2021-12-22T16:00:00Z"},{"id":"3230323131323232313630303A323032313132323231363330","start":"2021-12-22T16:00:00Z","end":"2021-12-22T16:30:00Z"},{"id":"3230323131323232313633303A323032313132323231373030","start":"2021-12-22T16:30:00Z","end":"2021-12-22T17:00:00Z"},{"id":"3230323131323232313730303A323032313132323231373330","start":"2021-12-22T17:00:00Z","end":"2021-12-22T17:30:00Z"},{"id":"3230323131323232313733303A323032313132323231383030","start":"2021-12-22T17:30:00Z","end":"2021-12-22T18:00:00Z"},{"id":"3230323131323232313830303A323032313132323231383330","start":"2021-12-22T18:00:00Z","end":"2021-12-22T18:30:00Z"},{"id":"3230323131323232313833303A323032313132323231393030","start":"2021-12-22T18:30:00Z","end":"2021-12-22T19:00:00Z"},{"id":"3230323131323232313930303A323032313132323231393330","start":"2021-12-22T19:00:00Z","end":"2021-12-22T19:30:00Z"},{"id":"3230323131323232313933303A323032313132323232303030","start":"2021-12-22T19:30:00Z","end":"2021-12-22T20:00:00Z"},{"id":"3230323131323232323030303A323032313132323232303330","start":"2021-12-22T20:00:00Z","end":"2021-12-22T20:30:00Z"},{"id":"3230323131323232323033303A323032313132323232313030","start":"2021-12-22T20:30:00Z","end":"2021-12-22T21:00:00Z"},{"id":"3230323131323232323130303A323032313132323232313330","start":"2021-12-22T21:00:00Z","end":"2021-12-22T21:30:00Z"},{"id":"3230323131323232323133303A323032313132323232323030","start":"2021-12-22T21:30:00Z","end":"2021-12-22T22:00:00Z"},{"id":"3230323131323232323230303A323032313132323232323330","start":"2021-12-22T22:00:00Z","end":"2021-12-22T22:30:00Z"},{"id":"3230323131323232323233303A323032313132323232333030","start":"2021-12-22T22:30:00Z","end":"2021-12-22T23:00:00Z"},{"id":"3230323131323232323330303A323032313132323330313030","start":"2021-12-22T23:00:00Z","end":"2021-12-23T01:00:00Z"},{"id":"3230323131323233313530303A323032313132323331353330","start":"2021-12-23T15:00:00Z","end":"2021-12-23T15:30:00Z"},{"id":"3230323131323233313533303A323032313132323331363030","start":"2021-12-23T15:30:00Z","end":"2021-12-23T16:00:00Z"},{"id":"3230323131323233313630303A323032313132323331363330","start":"2021-12-23T16:00:00Z","end":"2021-12-23T16:30:00Z"},{"id":"3230323131323233313633303A323032313132323331373030","start":"2021-12-23T16:30:00Z","end":"2021-12-23T17:00:00Z"},{"id":"3230323131323233313730303A323032313132323331373330","start":"2021-12-23T17:00:00Z","end":"2021-12-23T17:30:00Z"},{"id":"3230323131323233313733303A323032313132323331383030","start":"2021-12-23T17:30:00Z","end":"2021-12-23T18:00:00Z"},{"id":"3230323131323233313830303A323032313132323331383330","start":"2021-12-23T18:00:00Z","end":"2021-12-23T18:30:00Z"},{"id":"3230323131323233313833303A323032313132323331393030","start":"2021-12-23T18:30:00Z","end":"2021-12-23T19:00:00Z"},{"id":"3230323131323233313930303A323032313132323331393330","start":"2021-12-23T19:00:00Z","end":"2021-12-23T19:30:00Z"},{"id":"3230323131323233313933303A323032313132323332303030","start":"2021-12-23T19:30:00Z","end":"2021-12-23T20:00:00Z"},{"id":"3230323131323233323030303A323032313132323332303330","start":"2021-12-23T20:00:00Z","end":"2021-12-23T20:30:00Z"},{"id":"3230323131323233323033303A323032313132323332313030","start":"2021-12-23T20:30:00Z","end":"2021-12-23T21:00:00Z"},{"id":"3230323131323233323130303A323032313132323332313330","start":"2021-12-23T21:00:00Z","end":"2021-12-23T21:30:00Z"},{"id":"3230323131323233323133303A323032313132323332323030","start":"2021-12-23T21:30:00Z","end":"2021-12-23T22:00:00Z"},{"id":"3230323131323233323230303A323032313132323332323330","start":"2021-12-23T22:00:00Z","end":"2021-12-23T22:30:00Z"},{"id":"3230323131323233323233303A323032313132323332333030","start":"2021-12-23T22:30:00Z","end":"2021-12-23T23:00:00Z"},{"id":"3230323131323233323330303A323032313132323332333330","start":"2021-12-23T23:00:00Z","end":"2021-12-23T23:30:00Z"},{"id":"3230323131323233323333303A323032313132323430303030","start":"2021-12-23T23:30:00Z","end":"2021-12-24T00:00:00Z"},{"id":"3230323131323234303030303A323032313132323430313030","start":"2021-12-24T00:00:00Z","end":"2021-12-24T01:00:00Z"},{"id":"3230323131323234313530303A323032313132323431353330","start":"2021-12-24T15:00:00Z","end":"2021-12-24T15:30:00Z"},{"id":"3230323131323234313533303A323032313132323431363030","start":"2021-12-24T15:30:00Z","end":"2021-12-24T16:00:00Z"},{"id":"3230323131323234313630303A323032313132323431363330","start":"2021-12-24T16:00:00Z","end":"2021-12-24T16:30:00Z"},{"id":"3230323131323234313633303A323032313132323431373030","start":"2021-12-24T16:30:00Z","end":"2021-12-24T17:00:00Z"},{"id":"3230323131323234313730303A323032313132323431373330","start":"2021-12-24T17:00:00Z","end":"2021-12-24T17:30:00Z"},{"id":"3230323131323234313733303A323032313132323431383030","start":"2021-12-24T17:30:00Z","end":"2021-12-24T18:00:00Z"},{"id":"3230323131323234313830303A323032313132323431383330","start":"2021-12-24T18:00:00Z","end":"2021-12-24T18:30:00Z"},{"id":"3230323131323234313833303A323032313132323431393030","start":"2021-12-24T18:30:00Z","end":"2021-12-24T19:00:00Z"},{"id":"3230323131323234313930303A323032313132323431393330","start":"2021-12-24T19:00:00Z","end":"2021-12-24T19:30:00Z"},{"id":"3230323131323234313933303A323032313132323432303030","start":"2021-12-24T19:30:00Z","end":"2021-12-24T20:00:00Z"},{"id":"3230323131323234323030303A323032313132323432303330","start":"2021-12-24T20:00:00Z","end":"2021-12-24T20:30:00Z"},{"id":"3230323131323234323033303A323032313132323432313030","start":"2021-12-24T20:30:00Z","end":"2021-12-24T21:00:00Z"},{"id":"3230323131323234323130303A323032313132323432313330","start":"2021-12-24T21:00:00Z","end":"2021-12-24T21:30:00Z"},{"id":"3230323131323234323133303A323032313132323432323030","start":"2021-12-24T21:30:00Z","end":"2021-12-24T22:00:00Z"},{"id":"3230323131323234323230303A323032313132323432323330","start":"2021-12-24T22:00:00Z","end":"2021-12-24T22:30:00Z"},{"id":"3230323131323234323233303A323032313132323432333030","start":"2021-12-24T22:30:00Z","end":"2021-12-24T23:00:00Z"},{"id":"3230323131323234323330303A323032313132323432333330","start":"2021-12-24T23:00:00Z","end":"2021-12-24T23:30:00Z"},{"id":"3230323131323234323333303A323032313132323530303030","start":"2021-12-24T23:30:00Z","end":"2021-12-25T00:00:00Z"},{"id":"3230323131323235303030303A323032313132323530313030","start":"2021-12-25T00:00:00Z","end":"2021-12-25T01:00:00Z"},{"id":"3230323131323237313530303A323032313132323731353330","start":"2021-12-27T15:00:00Z","end":"2021-12-27T15:30:00Z"},{"id":"3230323131323237313533303A323032313132323731363030","start":"2021-12-27T15:30:00Z","end":"2021-12-27T16:00:00Z"},{"id":"3230323131323237313630303A323032313132323731363330","start":"2021-12-27T16:00:00Z","end":"2021-12-27T16:30:00Z"},{"id":"3230323131323237313633303A323032313132323731373030","start":"2021-12-27T16:30:00Z","end":"2021-12-27T17:00:00Z"},{"id":"3230323131323237313730303A323032313132323731373330","start":"2021-12-27T17:00:00Z","end":"2021-12-27T17:30:00Z"},{"id":"3230323131323237313733303A323032313132323731383030","start":"2021-12-27T17:30:00Z","end":"2021-12-27T18:00:00Z"},{"id":"3230323131323237313830303A323032313132323731383330","start":"2021-12-27T18:00:00Z","end":"2021-12-27T18:30:00Z"},{"id":"3230323131323237313833303A323032313132323731393030","start":"2021-12-27T18:30:00Z","end":"2021-12-27T19:00:00Z"},{"id":"3230323131323237313930303A323032313132323731393330","start":"2021-12-27T19:00:00Z","end":"2021-12-27T19:30:00Z"},{"id":"3230323131323237313933303A323032313132323732303030","start":"2021-12-27T19:30:00Z","end":"2021-12-27T20:00:00Z"},{"id":"3230323131323237323030303A323032313132323732303330","start":"2021-12-27T20:00:00Z","end":"2021-12-27T20:30:00Z"},{"id":"3230323131323237323033303A323032313132323732313030","start":"2021-12-27T20:30:00Z","end":"2021-12-27T21:00:00Z"},{"id":"3230323131323237323130303A323032313132323732313330","start":"2021-12-27T21:00:00Z","end":"2021-12-27T21:30:00Z"},{"id":"3230323131323237323133303A323032313132323732323030","start":"2021-12-27T21:30:00Z","end":"2021-12-27T22:00:00Z"},{"id":"3230323131323237323230303A323032313132323732323330","start":"2021-12-27T22:00:00Z","end":"2021-12-27T22:30:00Z"},{"id":"3230323131323237323233303A323032313132323732333030","start":"2021-12-27T22:30:00Z","end":"2021-12-27T23:00:00Z"},{"id":"3230323131323237323330303A323032313132323732333330","start":"2021-12-27T23:00:00Z","end":"2021-12-27T23:30:00Z"},{"id":"3230323131323237323333303A323032313132323830303030","start":"2021-12-27T23:30:00Z","end":"2021-12-28T00:00:00Z"},{"id":"3230323131323238303030303A323032313132323830313030","start":"2021-12-28T00:00:00Z","end":"2021-12-28T01:00:00Z"},{"id":"3230323131323238323230303A323032313132323832323330","start":"2021-12-28T22:00:00Z","end":"2021-12-28T22:30:00Z"},{"id":"3230323131323238323233303A323032313132323832333030","start":"2021-12-28T22:30:00Z","end":"2021-12-28T23:00:00Z"},{"id":"3230323131323238323330303A323032313132323930313030","start":"2021-12-28T23:00:00Z","end":"2021-12-29T01:00:00Z"},{"id":"3230323131323239313530303A323032313132323931353330","start":"2021-12-29T15:00:00Z","end":"2021-12-29T15:30:00Z"},{"id":"3230323131323239313533303A323032313132323931363030","start":"2021-12-29T15:30:00Z","end":"2021-12-29T16:00:00Z"},{"id":"3230323131323239313630303A323032313132323931363330","start":"2021-12-29T16:00:00Z","end":"2021-12-29T16:30:00Z"},{"id":"3230323131323239313633303A323032313132323931373030","start":"2021-12-29T16:30:00Z","end":"2021-12-29T17:00:00Z"},{"id":"3230323131323239313730303A323032313132323931373330","start":"2021-12-29T17:00:00Z","end":"2021-12-29T17:30:00Z"},{"id":"3230323131323239313733303A323032313132323931383030","start":"2021-12-29T17:30:00Z","end":"2021-12-29T18:00:00Z"},{"id":"3230323131323239313830303A323032313132323931383330","start":"2021-12-29T18:00:00Z","end":"2021-12-29T18:30:00Z"},{"id":"3230323131323239313833303A323032313132323931393030","start":"2021-12-29T18:30:00Z","end":"2021-12-29T19:00:00Z"},{"id":"3230323131323239313930303A323032313132323931393330","start":"2021-12-29T19:00:00Z","end":"2021-12-29T19:30:00Z"},{"id":"3230323131323239313933303A323032313132323932303030","start":"2021-12-29T19:30:00Z","end":"2021-12-29T20:00:00Z"},{"id":"3230323131323239323030303A323032313132323932303330","start":"2021-12-29T20:00:00Z","end":"2021-12-29T20:30:00Z"},{"id":"3230323131323239323033303A323032313132323932313030","start":"2021-12-29T20:30:00Z","end":"2021-12-29T21:00:00Z"},{"id":"3230323131323239323130303A323032313132323932313330","start":"2021-12-29T21:00:00Z","end":"2021-12-29T21:30:00Z"},{"id":"3230323131323239323133303A323032313132323932323030","start":"2021-12-29T21:30:00Z","end":"2021-12-29T22:00:00Z"},{"id":"3230323131323239323230303A323032313132323932323330","start":"2021-12-29T22:00:00Z","end":"2021-12-29T22:30:00Z"},{"id":"3230323131323239323233303A323032313132323932333030","start":"2021-12-29T22:30:00Z","end":"2021-12-29T23:00:00Z"},{"id":"3230323131323239323330303A323032313132333030313030","start":"2021-12-29T23:00:00Z","end":"2021-12-30T01:00:00Z"},{"id":"3230323131323330313530303A323032313132333031353330","start":"2021-12-30T15:00:00Z","end":"2021-12-30T15:30:00Z"},{"id":"3230323131323330313533303A323032313132333031363030","start":"2021-12-30T15:30:00Z","end":"2021-12-30T16:00:00Z"},{"id":"3230323131323330313630303A323032313132333031363330","start":"2021-12-30T16:00:00Z","end":"2021-12-30T16:30:00Z"},{"id":"3230323131323330313633303A323032313132333031373030","start":"2021-12-30T16:30:00Z","end":"2021-12-30T17:00:00Z"},{"id":"3230323131323330313730303A323032313132333031373330","start":"2021-12-30T17:00:00Z","end":"2021-12-30T17:30:00Z"},{"id":"3230323131323330313733303A323032313132333031383030","start":"2021-12-30T17:30:00Z","end":"2021-12-30T18:00:00Z"},{"id":"3230323131323330313830303A323032313132333031383330","start":"2021-12-30T18:00:00Z","end":"2021-12-30T18:30:00Z"},{"id":"3230323131323330313833303A323032313132333031393030","start":"2021-12-30T18:30:00Z","end":"2021-12-30T19:00:00Z"},{"id":"3230323131323330313930303A323032313132333031393330","start":"2021-12-30T19:00:00Z","end":"2021-12-30T19:30:00Z"},{"id":"3230323131323330313933303A323032313132333032303030","start":"2021-12-30T19:30:00Z","end":"2021-12-30T20:00:00Z"},{"id":"3230323131323330323030303A323032313132333032303330","start":"2021-12-30T20:00:00Z","end":"2021-12-30T20:30:00Z"},{"id":"3230323131323330323033303A323032313132333032313030","start":"2021-12-30T20:30:00Z","end":"2021-12-30T21:00:00Z"},{"id":"3230323131323330323130303A323032313132333032313330","start":"2021-12-30T21:00:00Z","end":"2021-12-30T21:30:00Z"},{"id":"3230323131323330323133303A323032313132333032323030","start":"2021-12-30T21:30:00Z","end":"2021-12-30T22:00:00Z"},{"id":"3230323131323330323230303A323032313132333032323330","start":"2021-12-30T22:00:00Z","end":"2021-12-30T22:30:00Z"},{"id":"3230323131323330323233303A323032313132333032333030","start":"2021-12-30T22:30:00Z","end":"2021-12-30T23:00:00Z"},{"id":"3230323131323330323330303A323032313132333032333330","start":"2021-12-30T23:00:00Z","end":"2021-12-30T23:30:00Z"}]}' + recorded_at: Mon, 11 Oct 2021 18:41:19 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_500.yml b/spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_500.yml new file mode 100644 index 00000000000..1820445b6b8 --- /dev/null +++ b/spec/support/vcr_cassettes/vaos/v2/systems/get_available_slots_vpg_500.yml @@ -0,0 +1,60 @@ +--- +http_interactions: + - request: + method: get + uri: https://veteran.apps.va.gov/vpg/v1/slots?clinic=1081&end=2021-12-31T23:59:59Z&location=983&start=2021-10-01T00:00:00Z + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Vets.gov Agent + Referer: + - https://review-instance.va.gov + X-Vamf-Jwt: + - stubbed_token + X-Request-Id: + - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 500 + message: Internal Server Error + headers: + Date: + - Mon, 11 Oct 2021 18:52:33 GMT + Content-Type: + - application/json + Transfer-Encoding: + - chunked + Server: + - openresty + X-Vamf-Version: + - 1.10.0 + B3: + - cb9c50235cfad84d-5c00879195fa36e7-1 + Access-Control-Allow-Headers: + - x-vamf-jwt + X-Vamf-Build: + - 58ec2e2 + X-Vamf-Timestamp: + - '2021-08-18T13:44:12+0000' + Access-Control-Allow-Origin: + - "*" + Access-Control-Allow-Methods: + - GET,OPTIONS + Access-Control-Max-Age: + - '3600' + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: '{"id":"c195c4c2-f5b7-4ea3-8358-f6ad8b129c23","code":500,"errorCode":7007,"traceId":"cb9c50235cfad84d","message":"failed + to fetch slots","meta":{"upstreamErrorSource":"mobile-appointment-service","upstreamErrorId":"54291a36-2d69-4777-9612-94ae7be21378"}}' + recorded_at: Mon, 11 Oct 2021 18:52:33 GMT +recorded_with: VCR 6.0.0 From e115c408eba703347e996360b9ed82f350cccd95 Mon Sep 17 00:00:00 2001 From: Devin McCurdy Date: Mon, 25 Mar 2024 12:52:49 -0400 Subject: [PATCH 2/3] Test updates --- modules/mobile/spec/request/clinics_request_spec.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/mobile/spec/request/clinics_request_spec.rb b/modules/mobile/spec/request/clinics_request_spec.rb index 46730152f5e..24a208f651a 100644 --- a/modules/mobile/spec/request/clinics_request_spec.rb +++ b/modules/mobile/spec/request/clinics_request_spec.rb @@ -110,6 +110,8 @@ before do Timecop.freeze(Time.zone.parse(current_time)) + Flipper.disable(:va_online_scheduling_use_vpg) + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) end after do @@ -221,6 +223,8 @@ before do Timecop.freeze(Time.zone.parse(current_time)) + Flipper.disable(:va_online_scheduling_use_vpg) + Flipper.disable(:va_online_scheduling_enable_OH_slots_search) end after do From e8c057da248e89e2856248fc4c96850fb4770dcf Mon Sep 17 00:00:00 2001 From: Devin McCurdy Date: Mon, 25 Mar 2024 13:52:34 -0400 Subject: [PATCH 3/3] Conditional update --- .../mobile/v0/clinics_controller.rb | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb b/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb index e53e0571ab6..db6dad43eb6 100644 --- a/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb +++ b/modules/mobile/app/controllers/mobile/v0/clinics_controller.rb @@ -24,16 +24,7 @@ def slots end def facility_slots - if !params[:clinic_id] && !params[:clinical_service] - render status: :bad_request, json: { - errors: [ - { - status: 400, - detail: 'clinic_id or clinical_service is required.' - } - ] - } - else + if params[:clinic_id] || params[:clinical_service] start_date = params[:start_date] || now.iso8601 end_date = params[:end_date] || two_months_from_now.iso8601 @@ -44,6 +35,15 @@ def facility_slots end_dt: end_date) render json: Mobile::V0::ClinicSlotsSerializer.new(response) + else + render status: :bad_request, json: { + errors: [ + { + status: 400, + detail: 'clinic_id or clinical_service is required.' + } + ] + } end end