From 5f2cd03fac42fd10add7f2e5206bcfecd018ca65 Mon Sep 17 00:00:00 2001 From: "Campbell, Allison M" Date: Tue, 21 Apr 2026 13:28:32 -0700 Subject: [PATCH 1/3] RA Toolkit end-to-end pipeline: data toolkit enhancements and e2e scenario configs Add hydro_balancing_type parameter to control hydro balancing granularity, aggregate all projects to BA level for RA studies, fix pandas 2.x dtype compatibility, and provide complete e2e scenario configuration files (temporal definitions, iterations, user-defined configs) so the full pipeline from PUDL download through reliability metrics is reproducible via gridpath_run_data_toolkit. Co-Authored-By: Claude Opus 4.6 --- data_toolkit/manual_adjustments.py | 10 +- ...a860_to_project_availability_input_csvs.py | 22 +- ...o_project_specified_capacity_input_csvs.py | 36 +- ...eia860_to_project_fixed_cost_input_csvs.py | 39 +- .../eia860_to_project_load_zone_input_csvs.py | 18 +- .../eia860_to_project_opchar_input_csvs.py | 26 +- .../create_hydro_iteration_input_csvs.py | 18 +- .../eia860_to_project_portfolio_input_csvs.py | 28 +- .../project/project_data_filters_common.py | 1 + .../ra_toolkit_e2e_settings_sample.csv | 125 + .../pudl/pudl_to_gridpath_raw_data.py | 22 +- .../user_defined_unit_availability_params.csv | 2264 ++++ .../user_defined_weather_derates.csv | 1 + .../files_to_import.csv | 21 + .../fuels/user_defined_eiaaeo_region_key.csv | 7 + .../user_defined_generic_fuel_intensities.csv | 4 + .../geographies/user_defined_baa_key.csv | 36 + .../load/user_defined_load_zone_units.csv | 41 + .../hydro/user_defined_bt_horizons.csv | 432 + .../hydro/user_defined_hydro_years.csv | 241 + .../project/user_defined_eia_gridpath_key.csv | 83 + .../project/user_defined_heat_rate_curve.csv | 10 + .../user_defined_var_project_units.csv | 95 + .../raw_data_ra_toolkit_e2e/scenarios.csv | 153 + .../base_csvs/ra_toolkit_full/description.txt | 0 .../ra_toolkit_full/horizon_params.csv | 378 + .../ra_toolkit_full/horizon_timepoints.csv | 378 + .../ra_toolkit_full/period_params.csv | 2 + .../base_csvs/ra_toolkit_full/structure.csv | 8761 +++++++++++++ .../ra_toolkit_full/superperiods.csv | 1 + .../ra_toolkit_monte_carlo/description.txt | 0 .../ra_toolkit_monte_carlo/horizon_params.csv | 366 + .../horizon_timepoints.csv | 366 + .../ra_toolkit_monte_carlo/period_params.csv | 2 + .../ra_toolkit_monte_carlo/structure.csv | 8761 +++++++++++++ .../ra_toolkit_monte_carlo/superperiods.csv | 1 + .../base_csvs/ra_toolkit_sync/description.txt | 0 .../ra_toolkit_sync/horizon_params.csv | 366 + .../ra_toolkit_sync/horizon_timepoints.csv | 366 + .../ra_toolkit_sync/period_params.csv | 2 + .../base_csvs/ra_toolkit_sync/structure.csv | 8761 +++++++++++++ .../ra_toolkit_sync/superperiods.csv | 1 + .../iterations/iterations_monte_carlo_all.csv | 4 + .../iterations/iterations_sync_all.csv | 6 + .../iterations/iterations_sync_full.csv | 30 + .../temporal/temporal_scenarios.csv | 4 + .../user_defined_data_availability.csv | 64 + .../user_defined_monte_carlo_timeseries.csv | 5 + .../user_defined_monte_carlo_weather_bins.csv | 10950 ++++++++++++++++ docs/ra_toolkit_e2e_changes.md | 122 + docs/ra_toolkit_e2e_guide.md | 410 + 51 files changed, 43703 insertions(+), 137 deletions(-) create mode 100644 data_toolkit/ra_toolkit_e2e_settings_sample.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_unit_availability_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_weather_derates.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/files_to_import.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_eiaaeo_region_key.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_generic_fuel_intensities.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/geographies/user_defined_baa_key.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/load/user_defined_load_zone_units.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_bt_horizons.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_hydro_years.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_eia_gridpath_key.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_heat_rate_curve.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/var_profiles/user_defined_var_project_units.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/scenarios.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/description.txt create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_timepoints.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/period_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/structure.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/superperiods.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/description.txt create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_timepoints.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/period_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/structure.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/superperiods.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/description.txt create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_timepoints.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/period_params.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/structure.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/superperiods.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_monte_carlo_all.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_all.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_full.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/temporal_scenarios.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_data_availability.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_timeseries.csv create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_weather_bins.csv create mode 100644 docs/ra_toolkit_e2e_changes.md create mode 100644 docs/ra_toolkit_e2e_guide.md diff --git a/data_toolkit/manual_adjustments.py b/data_toolkit/manual_adjustments.py index 5dfd60a29e..25c8a38a5a 100644 --- a/data_toolkit/manual_adjustments.py +++ b/data_toolkit/manual_adjustments.py @@ -24,6 +24,7 @@ from data_toolkit.project.project_data_filters_common import ( get_eia860_sql_filter_string, DISAGG_PROJECT_NAME_STR, + AGG_PROJECT_NAME_STR, ) # Storage durations @@ -128,7 +129,7 @@ def make_copy_files( def add_battery_durations( conn, - disagg_project_name_str, + agg_project_name_str, study_year, eia860_sql_filter_string, csv_location, @@ -147,16 +148,17 @@ def add_battery_durations( for tech in tech_dur_dict.keys(): sql = f""" - SELECT {disagg_project_name_str} AS project, + SELECT {agg_project_name_str} AS project, {study_year} as period FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} AND raw_data_eia860_generators.prime_mover_code = '{tech}' + GROUP BY project ; """ relevant_projects_df = pd.read_sql(sql, conn) @@ -218,7 +220,7 @@ def main(args=None): add_battery_durations( conn=conn, - disagg_project_name_str=DISAGG_PROJECT_NAME_STR, + agg_project_name_str=AGG_PROJECT_NAME_STR, study_year=parsed_args.study_year, eia860_sql_filter_string=get_eia860_sql_filter_string( study_year=parsed_args.study_year, region=parsed_args.region diff --git a/data_toolkit/project/availability/eia860_to_project_availability_input_csvs.py b/data_toolkit/project/availability/eia860_to_project_availability_input_csvs.py index 1eded51b4a..62dfd80a7a 100644 --- a/data_toolkit/project/availability/eia860_to_project_availability_input_csvs.py +++ b/data_toolkit/project/availability/eia860_to_project_availability_input_csvs.py @@ -106,7 +106,7 @@ def get_project_availability( subscenario_name, ): sql = f""" - SELECT {disagg_project_name_str} AS project, + SELECT {agg_project_name_str} AS project, 'exogenous' AS availability_type, NULL AS exogenous_availability_independent_scenario_id, NULL AS exogenous_availability_weather_scenario_id, @@ -115,28 +115,12 @@ def get_project_availability( NULL AS endogenous_availability_scenario_id FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} - AND NOT {var_gen_filter_str} - AND NOT {hydro_filter_str} - UNION - -- Aggregated units include wind, offshore wind, solar, and hydro - SELECT {agg_project_name_str} AS project, - 'exogenous' AS availability_type, - NULL AS exogenous_availability_independent_scenario_id, - NULL AS exogenous_availability_weather_scenario_id, - NULL AS exogenous_availability_independent_bt_hrz_scenario_id, - NULL AS exogenous_availability_weather_bt_hrz_scenario_id, - NULL AS endogenous_availability_scenario_id - FROM raw_data_eia860_generators - JOIN user_defined_eia_gridpath_key - USING (prime_mover_code) - WHERE 1 = 1 - AND {eia860_sql_filter_string} - AND ({var_gen_filter_str} OR {hydro_filter_str}) + GROUP BY project """ df = pd.read_sql(sql, conn) diff --git a/data_toolkit/project/capacity_specified/eia860_to_project_specified_capacity_input_csvs.py b/data_toolkit/project/capacity_specified/eia860_to_project_specified_capacity_input_csvs.py index 558a0d8257..b1d7c5ef55 100644 --- a/data_toolkit/project/capacity_specified/eia860_to_project_specified_capacity_input_csvs.py +++ b/data_toolkit/project/capacity_specified/eia860_to_project_specified_capacity_input_csvs.py @@ -109,51 +109,29 @@ def get_project_capacity( subscenario_name, ): sql = f""" - SELECT {disagg_project_name_str} AS project, + SELECT {agg_project_name_str} AS project, {study_year} as period, - capacity_mw AS specified_capacity_mw, + SUM(capacity_mw) AS specified_capacity_mw, NULL AS specified_energy_mwh, NULL AS shaping_capacity_mw, NULL AS hyb_gen_specified_capacity_mw, NULL AS hyb_stor_specified_capacity_mw, - CASE - WHEN raw_data_eia860_generators.prime_mover_code NOT IN ('BA', + SUM(CASE + WHEN raw_data_eia860_generators.prime_mover_code NOT IN ('BA', 'ES', 'FW', 'PS') THEN NULL ELSE energy_storage_capacity_mwh - END - AS specified_stor_capacity_mwh, + END) AS specified_stor_capacity_mwh, NULL AS fuel_production_capacity_fuelunitperhour, NULL AS fuel_release_capacity_fuelunitperhour, NULL AS fuel_storage_capacity_fuelunit FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} - AND NOT {var_gen_filter_str} - AND NOT {hydro_filter_str} - UNION - -- Aggregated units include wind, offshore wind, solar, and hydro - SELECT {agg_project_name_str} AS project, - {study_year} as period, - SUM(capacity_mw) AS specified_capacity_mw, - NULL AS specified_energy_mwh, - NULL AS shaping_capacity_mw, - NULL AS hyb_gen_specified_capacity_mw, - NULL AS hyb_stor_specified_capacity_mw, - SUM(energy_storage_capacity_mwh) AS specified_stor_capacity_mwh, - NULL AS fuel_production_capacity_fuelunitperhour, - NULL AS fuel_release_capacity_fuelunitperhour, - NULL AS fuel_storage_capacity_fuelunit - FROM raw_data_eia860_generators - JOIN user_defined_eia_gridpath_key - USING (prime_mover_code) - WHERE 1 = 1 - AND {eia860_sql_filter_string} - AND ({var_gen_filter_str} OR {hydro_filter_str}) - GROUP BY project + GROUP BY project ; """ diff --git a/data_toolkit/project/fixed_cost/eia860_to_project_fixed_cost_input_csvs.py b/data_toolkit/project/fixed_cost/eia860_to_project_fixed_cost_input_csvs.py index ec3db2ce92..855a3a2781 100644 --- a/data_toolkit/project/fixed_cost/eia860_to_project_fixed_cost_input_csvs.py +++ b/data_toolkit/project/fixed_cost/eia860_to_project_fixed_cost_input_csvs.py @@ -107,54 +107,29 @@ def get_project_fixed_cost( subscenario_name, ): sql = f""" - SELECT {disagg_project_name_str} AS project, + SELECT {agg_project_name_str} AS project, {study_year} as period, 0 AS fixed_cost_per_mw_yr, 0 AS fixed_cost_per_energy_mwh_yr, 0 AS fixed_cost_per_shaping_mw_yr, NULL AS hyb_gen_fixed_cost_per_mw_yr, NULL AS hyb_stor_fixed_cost_per_mw_yr, - CASE WHEN raw_data_eia860_generators.prime_mover_code NOT IN ('BA', - 'ES', 'FW', 'PS') - THEN NULL - ELSE 0 + CASE WHEN gridpath_operational_type = 'stor' + THEN 0 + ELSE NULL END AS fixed_cost_per_stor_mwh_yr, NULL AS fuel_production_capacity_fixed_cost_per_fuelunitperhour_yr, NULL AS fuel_release_capacity_fixed_cost_per_fuelunitperhour_yr, NULL AS fuel_storage_capacity_fixed_cost_per_fuelunit_yr FROM raw_data_eia860_generators - JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + JOIN user_defined_eia_gridpath_key ON + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} - AND NOT {var_gen_filter_str} - AND NOT {hydro_filter_str} - UNION - -- Aggregated units include wind, offshore wind, solar, and hydro - SELECT {agg_project_name_str} AS project, - {study_year} as period, - 0 AS specified_fixed_cost_mw, - 0 AS fixed_cost_per_energy_mwh_yr, - 0 AS fixed_cost_per_shaping_mw_yr, - NULL AS hyb_gen_specified_fixed_cost_mw, - NULL AS hyb_stor_specified_fixed_cost_mw, - CASE - WHEN energy_storage_capacity_mwh IS NULL THEN NULL - ELSE 0 - END - AS fixed_cost_per_stor_mwh_yr, - NULL AS fuel_production_fixed_cost_fuelunitperhour, - NULL AS fuel_release_fixed_cost_fuelunitperhour, - NULL AS fuel_storage_fixed_cost_fuelunit - FROM raw_data_eia860_generators - JOIN user_defined_eia_gridpath_key - USING (prime_mover_code) - WHERE 1 = 1 - AND {eia860_sql_filter_string} - AND ({var_gen_filter_str} OR {hydro_filter_str}) + GROUP BY project ; """ diff --git a/data_toolkit/project/load_zones/eia860_to_project_load_zone_input_csvs.py b/data_toolkit/project/load_zones/eia860_to_project_load_zone_input_csvs.py index 5f34b93791..990a530c67 100644 --- a/data_toolkit/project/load_zones/eia860_to_project_load_zone_input_csvs.py +++ b/data_toolkit/project/load_zones/eia860_to_project_load_zone_input_csvs.py @@ -106,26 +106,16 @@ def get_project_load_zones( subscenario_name, ): sql = f""" - SELECT {disagg_project_name_str} AS project, balancing_authority_code_eia AS load_zone + SELECT {agg_project_name_str} AS project, + balancing_authority_code_eia AS load_zone FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} - AND NOT {var_gen_filter_str} - AND NOT {hydro_filter_str} - -- Aggregated units include wind, offshore wind, solar, and hydro - UNION - SELECT {agg_project_name_str} AS project, - balancing_authority_code_eia AS load_zone - FROM raw_data_eia860_generators - JOIN user_defined_eia_gridpath_key - USING (prime_mover_code) - WHERE 1 = 1 - AND {eia860_sql_filter_string} - AND ({var_gen_filter_str} OR {hydro_filter_str}) + GROUP BY project ; """ diff --git a/data_toolkit/project/opchar/eia860_to_project_opchar_input_csvs.py b/data_toolkit/project/opchar/eia860_to_project_opchar_input_csvs.py index 7410d53e42..8c9a83c959 100644 --- a/data_toolkit/project/opchar/eia860_to_project_opchar_input_csvs.py +++ b/data_toolkit/project/opchar/eia860_to_project_opchar_input_csvs.py @@ -107,6 +107,14 @@ def parse_arguments(args): ) parser.add_argument("-hy_id", "--hydro_operational_chars_scenario_id", default=1) + parser.add_argument( + "-hydro_bt", + "--hydro_balancing_type", + default=None, + help="Override balancing_type_project for hydro projects. " + "If not specified, uses gridpath_balancing_type from the key table.", + ) + parser.add_argument("-q", "--quiet", default=False, action="store_true") parsed_arguments = parser.parse_known_args(args=args)[0] @@ -131,6 +139,7 @@ def get_project_opchar( hr_id, var_id, hy_id, + hydro_balancing_type=None, ): # Wind, offshore wind, and PV are aggregated, so treated separately since # they are aggregated, so here we make a UNION between tables filtering @@ -160,33 +169,39 @@ def get_project_opchar( variable_generator_profile_scenario_id=f"{var_id}", ) + hydro_bt_expr = ( + f"'{hydro_balancing_type}'" + if hydro_balancing_type + else "gridpath_balancing_type" + ) hydro_opchars_str = make_opchar_sql_str( technology="gridpath_technology", operational_type="gridpath_operational_type", - balancing_type_project="gridpath_balancing_type", + balancing_type_project=hydro_bt_expr, variable_om_cost_per_mwh="default_variable_om_cost_per_mwh", hydro_operational_chars_scenario_id=f"{hy_id}", ) sql = f""" - SELECT {disagg_project_name_str} AS project, + SELECT {agg_project_name_str} AS project, {non_var_opchars_str} FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} AND NOT {var_gen_filter_str} AND NOT {hydro_filter_str} + GROUP BY project -- Variable gen UNION SELECT {agg_project_name_str} AS project, {var_opchars_str} FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 @@ -199,7 +214,7 @@ def get_project_opchar( {hydro_opchars_str} FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 @@ -455,6 +470,7 @@ def main(args=None): hr_id=parsed_args.heat_rate_curves_scenario_id, var_id=parsed_args.variable_generator_profile_scenario_id, hy_id=parsed_args.hydro_operational_chars_scenario_id, + hydro_balancing_type=parsed_args.hydro_balancing_type, ) conn.close() diff --git a/data_toolkit/project/opchar/hydro/create_hydro_iteration_input_csvs.py b/data_toolkit/project/opchar/hydro/create_hydro_iteration_input_csvs.py index 202045dbf0..e5b1a92374 100644 --- a/data_toolkit/project/opchar/hydro/create_hydro_iteration_input_csvs.py +++ b/data_toolkit/project/opchar/hydro/create_hydro_iteration_input_csvs.py @@ -118,6 +118,15 @@ def parse_arguments(args): help="Overwrite existing files.", ) + parser.add_argument( + "-hydro_bt", + "--hydro_balancing_type", + default=None, + help="Filter to a specific balancing type (e.g., 'day', 'week', 'month'). " + "If not specified, all balancing types from " + "user_defined_balancing_type_horizons are included.", + ) + parser.add_argument( "-parallel", "--n_parallel_projects", @@ -140,6 +149,7 @@ def calculate_from_project_year_month_data( hydro_operational_chars_scenario_name, output_directory, overwrite, + hydro_balancing_type=None, ): """ Create hydro project CSVs for a temporal subscenario and a balancing @@ -153,10 +163,13 @@ def calculate_from_project_year_month_data( """).fetchall()] bt_horizons = [bt_h for bt_h in c.execute(""" - SELECT DISTINCT balancing_type, horizon + SELECT DISTINCT balancing_type, horizon FROM user_defined_balancing_type_horizons; """).fetchall()] + if hydro_balancing_type is not None: + bt_horizons = [bt_h for bt_h in bt_horizons if bt_h[0] == hydro_balancing_type] + if overwrite: filename = get_filename( output_directory, @@ -266,6 +279,7 @@ def calculate_from_project_year_month_data_pool(pool_datum): output_directory, overwrite, stage_id, + hydro_balancing_type, ) = pool_datum calculate_from_project_year_month_data( @@ -276,6 +290,7 @@ def calculate_from_project_year_month_data_pool(pool_datum): output_directory=output_directory, overwrite=overwrite, stage_id=stage_id, + hydro_balancing_type=hydro_balancing_type, ) @@ -341,6 +356,7 @@ def main(args=None): parsed_args.output_directory, parsed_args.overwrite, parsed_args.stage_id, + parsed_args.hydro_balancing_type, ] for prj in projects ] diff --git a/data_toolkit/project/portfolios/eia860_to_project_portfolio_input_csvs.py b/data_toolkit/project/portfolios/eia860_to_project_portfolio_input_csvs.py index 955d2a433d..6f29aca024 100644 --- a/data_toolkit/project/portfolios/eia860_to_project_portfolio_input_csvs.py +++ b/data_toolkit/project/portfolios/eia860_to_project_portfolio_input_csvs.py @@ -118,39 +118,21 @@ def get_project_portfolio_for_region( subscenario_name, ): """ - Unit level except for wind (onshore and offshore) and solar PV, which are - aggregated to the BA-level. + All projects aggregated to the technology-BA level. """ - # For disaggregated unit-level projects, use plant_id_eia__generator_id - # as the project name - # For BA-aggregated projects, use prime_mover_BA sql = f""" - -- Disaggregated units - SELECT {disagg_project_name_str} AS project, - NULL as specified, + SELECT {agg_project_name_str} AS project, + NULL as specified, NULL as new_build, gridpath_capacity_type AS capacity_type FROM raw_data_eia860_generators JOIN user_defined_eia_gridpath_key ON - raw_data_eia860_generators.prime_mover_code = + raw_data_eia860_generators.prime_mover_code = user_defined_eia_gridpath_key.prime_mover_code AND energy_source_code_1 = energy_source_code WHERE 1 = 1 AND {eia860_sql_filter_string} - AND NOT {var_gen_filter_str} - AND NOT {hydro_filter_str} - UNION - -- Aggregated units include wind, offshore wind, solar, and hydro - SELECT {agg_project_name_str} AS project, - NULL as specified, - NULL as new_build, - gridpath_capacity_type AS capacity_type - FROM raw_data_eia860_generators - JOIN user_defined_eia_gridpath_key - USING (prime_mover_code) - WHERE 1 = 1 - AND {eia860_sql_filter_string} - AND ({var_gen_filter_str} OR {hydro_filter_str}) + GROUP BY project ; """ diff --git a/data_toolkit/project/project_data_filters_common.py b/data_toolkit/project/project_data_filters_common.py index 91184ece2d..7929763e04 100644 --- a/data_toolkit/project/project_data_filters_common.py +++ b/data_toolkit/project/project_data_filters_common.py @@ -45,3 +45,4 @@ def get_eia860_sql_filter_string(study_year, region): "plant_id_eia || '__' || REPLACE(REPLACE(generator_id, ' ', '_'), '-', '_')" ) AGG_PROJECT_NAME_STR = "DISTINCT agg_project || '_' || balancing_authority_code_eia" +AGG_FILTER_STR = "agg_project IS NOT NULL" diff --git a/data_toolkit/ra_toolkit_e2e_settings_sample.csv b/data_toolkit/ra_toolkit_e2e_settings_sample.csv new file mode 100644 index 0000000000..cd0ec11982 --- /dev/null +++ b/data_toolkit/ra_toolkit_e2e_settings_sample.csv @@ -0,0 +1,125 @@ +script,setting,value,script_true_false_arg,reverse_default_behavior +create_database,database,./ra_toolkit_e2e.db,, +create_database,db_schema,../data_toolkit/raw_data_db_schema.sql,, +create_database,omit_data,,1,1 +load_raw_data,database,./ra_toolkit_e2e.db,, +load_raw_data,csv_location,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/,, +eia930_load_zone_input_csvs,database,./ra_toolkit_e2e.db,, +eia930_load_zone_input_csvs,lz_output_directory,./db/csvs_ra_toolkit_e2e/system_load/load_zones,, +eia930_load_zone_input_csvs,allow_overgeneration,0,, +eia930_load_zone_input_csvs,overgeneration_penalty_per_mw,0,, +eia930_load_zone_input_csvs,allow_unserved_energy,1,, +eia930_load_zone_input_csvs,unserved_energy_penalty_per_mwh,20000,, +eia930_load_zone_input_csvs,max_unserved_load_penalty_per_mw,0,, +eia930_load_zone_input_csvs,export_penalty_cost_per_mwh,0,, +eia930_load_zone_input_csvs,unserved_energy_stats_threshold_mw,0,, +eia930_load_zone_input_csvs,lb_output_directory,./db/csvs_ra_toolkit_e2e/system_load/load_balance,, +eiaaeo_to_fuel_chars_input_csvs,database,./ra_toolkit_e2e.db,, +eiaaeo_to_fuel_chars_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/fuels/fuel_chars,, +eiaaeo_to_fuel_chars_input_csvs,fuel_scenario_id,1,, +eiaaeo_to_fuel_chars_input_csvs,fuel_scenario_name,generic,, +eiaaeo_to_fuel_chars_input_csvs,model_case,aeo2022,, +eiaaeo_to_fuel_chars_input_csvs,report_year,2023,, +eiaaeo_fuel_price_input_csvs,database,./ra_toolkit_e2e.db,, +eiaaeo_fuel_price_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/fuels/fuel_prices,, +eiaaeo_fuel_price_input_csvs,fuel_price_scenario_id,1,, +eiaaeo_fuel_price_input_csvs,model_case,aeo2022,, +eiaaeo_fuel_price_input_csvs,report_year,2023,, +eia860_to_project_portfolio_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_portfolio_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/portfolios,, +eia860_to_project_portfolio_input_csvs,project_portfolio_scenario_id,23,, +eia860_to_project_portfolio_input_csvs,project_portfolio_scenario_name,ra_toolkit_e2e,, +eia860_to_project_load_zone_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_load_zone_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/load_zones,, +eia860_to_project_load_zone_input_csvs,project_load_zone_scenario_id,1,, +eia860_to_project_load_zone_input_csvs,project_load_zone_scenario_name,ra_toolkit_e2e,, +eia860_to_project_specified_capacity_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_specified_capacity_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/capacity/specified_capacity,, +eia860_to_project_specified_capacity_input_csvs,project_specified_capacity_scenario_id,5,, +eia860_to_project_specified_capacity_input_csvs,project_specified_capacity_scenario_name,ra_toolkit_e2e,, +eia860_to_project_fixed_cost_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_fixed_cost_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/fixed_cost,, +eia860_to_project_fixed_cost_input_csvs,project_fixed_cost_scenario_id,1,, +eia860_to_project_fixed_cost_input_csvs,project_fixed_cost_scenario_name,base,, +eia860_to_project_availability_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_availability_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/availability,, +eia860_to_project_availability_input_csvs,project_availability_scenario_id,1,, +eia860_to_project_availability_input_csvs,project_availability_scenario_name,no_derates,, +eia860_to_project_opchar_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_opchar_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/opchar,, +eia860_to_project_opchar_input_csvs,project_operational_chars_scenario_id,1,, +eia860_to_project_opchar_input_csvs,project_operational_chars_scenario_name,ra_toolkit_e2e,, +eia860_to_project_opchar_input_csvs,hydro_balancing_type,month,, +eia860_to_project_fuel_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_fuel_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/opchar/fuels,, +eia860_to_project_fuel_input_csvs,project_fuel_scenario_id,1,, +eia860_to_project_fuel_input_csvs,project_fuel_scenario_name,base,, +eia860_to_project_heat_rate_input_csvs,database,./ra_toolkit_e2e.db,, +eia860_to_project_heat_rate_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/opchar/heat_rates,, +eia860_to_project_heat_rate_input_csvs,project_operational_chars_scenario_id,1,, +eia860_to_project_heat_rate_input_csvs,project_operational_chars_scenario_name,generic,, +eia930_to_transmission_portfolio_input_csvs,database,./ra_toolkit_e2e.db,, +eia930_to_transmission_portfolio_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/transmission/portfolios,, +eia930_to_transmission_portfolio_input_csvs,transmission_portfolio_scenario_id,1,, +eia930_to_transmission_portfolio_input_csvs,transmission_portfolio_scenario_name,eia930,, +eia930_to_transmission_load_zone_input_csvs,database,./ra_toolkit_e2e.db,, +eia930_to_transmission_load_zone_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/transmission/load_zones,, +eia930_to_transmission_load_zone_input_csvs,transmission_load_zone_scenario_id,1,, +eia930_to_transmission_load_zone_input_csvs,transmission_load_zone_scenario_name,ra_toolkit_e2e,, +eia930_to_transmission_specified_capacity_input_csvs,database,./ra_toolkit_e2e.db,, +eia930_to_transmission_specified_capacity_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/transmission/capacity_specified,, +eia930_to_transmission_specified_capacity_input_csvs,transmission_specified_capacity_scenario_id,1,, +eia930_to_transmission_specified_capacity_input_csvs,transmission_specified_capacity_scenario_name,ra_toolkit_e2e,, +eia930_to_transmission_availability_input_csvs,database,./ra_toolkit_e2e.db,, +eia930_to_transmission_availability_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/transmission/availability,, +eia930_to_transmission_availability_input_csvs,transmission_availability_scenario_id,1,, +eia930_to_transmission_availability_input_csvs,transmission_availability_scenario_name,no_derates,, +eia930_to_transmission_opchar_input_csvs,database,./ra_toolkit_e2e.db,, +eia930_to_transmission_opchar_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/transmission/opchar,, +eia930_to_transmission_opchar_input_csvs,transmission_operational_chars_scenario_id,1,, +eia930_to_transmission_opchar_input_csvs,transmission_operational_chars_scenario_name,base,, +create_monte_carlo_weather_draws,database,./ra_toolkit_e2e.db,, +create_monte_carlo_weather_draws,weather_draws_seed,0,, +create_monte_carlo_weather_draws,n_iterations,2,, +create_monte_carlo_weather_draws,study_year,2026,, +create_monte_carlo_weather_draws,timeseries_iteration_draw_initial_seed,0,, +create_sync_load_input_csvs,database,./ra_toolkit_e2e.db,, +create_sync_load_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/system_load/system_load,, +create_sync_load_input_csvs,load_scenario_id,6,, +create_sync_load_input_csvs,load_scenario_name,ra_toolkit,, +create_sync_load_input_csvs,load_components_scenario_id,3,, +create_sync_load_input_csvs,load_components_scenario_name,ra_toolkit,, +create_sync_load_input_csvs,load_levels_scenario_id,6,, +create_sync_load_input_csvs,load_levels_scenario_name,ra_toolkit,, +create_sync_load_input_csvs,load_scenario_overwrite,,1,1 +create_sync_load_input_csvs,load_components_overwrite,,1,1 +create_sync_load_input_csvs,load_levels_overwrite,,1,1 +create_sync_var_gen_input_csvs,database,./ra_toolkit_e2e.db,, +create_sync_var_gen_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/opchar/variable_generator_profiles,, +create_sync_var_gen_input_csvs,variable_generator_profile_scenario_id,3,, +create_sync_var_gen_input_csvs,variable_generator_profile_scenario_name,ra_toolkit,, +create_sync_var_gen_input_csvs,overwrite,,1,1 +create_sync_var_gen_input_csvs,n_parallel_projects,4,, +create_sync_gen_weather_derate_input_csvs,database,./ra_toolkit_e2e.db,, +create_sync_gen_weather_derate_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/availability/exogenous_weather,, +create_sync_gen_weather_derate_input_csvs,exogenous_availability_weather_scenario_id,1,, +create_sync_gen_weather_derate_input_csvs,exogenous_availability_weather_scenario_name,ra_toolkit,, +create_sync_gen_weather_derate_input_csvs,overwrite,,1,1 +create_sync_gen_weather_derate_input_csvs,n_parallel_projects,4,, +create_hydro_iteration_input_csvs,database,./ra_toolkit_e2e.db,, +create_hydro_iteration_input_csvs,stage_id,1,, +create_hydro_iteration_input_csvs,hydro_operational_chars_scenario_id,5,, +create_hydro_iteration_input_csvs,hydro_operational_chars_scenario_name,ra_toolkit,, +create_hydro_iteration_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/opchar/hydro_operational_chars,, +create_hydro_iteration_input_csvs,overwrite,,1,1 +create_hydro_iteration_input_csvs,hydro_balancing_type,month,, +create_hydro_iteration_input_csvs,n_parallel_projects,4,, +create_availability_iteration_input_csvs,database,./ra_toolkit_e2e.db,, +create_availability_iteration_input_csvs,n_iterations,4,, +create_availability_iteration_input_csvs,project_availability_scenario_id,1,, +create_availability_iteration_input_csvs,project_availability_scenario_name,ra_toolkit,, +create_availability_iteration_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/project/availability/exogenous_independent,, +create_availability_iteration_input_csvs,overwrite,,1,1 +create_availability_iteration_input_csvs,n_parallel_projects,4,, +create_temporal_scenarios,database,./ra_toolkit_e2e.db,, +create_temporal_scenarios,csv_path,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/temporal_scenarios.csv,, diff --git a/data_toolkit/raw_data/pudl/pudl_to_gridpath_raw_data.py b/data_toolkit/raw_data/pudl/pudl_to_gridpath_raw_data.py index 40d070c7fa..c6fd42136b 100644 --- a/data_toolkit/raw_data/pudl/pudl_to_gridpath_raw_data.py +++ b/data_toolkit/raw_data/pudl/pudl_to_gridpath_raw_data.py @@ -214,11 +214,12 @@ def convert_ra_toolkit_profiles_to_csv(raw_data_directory, pudl_download_directo df["day_of_month_hs"] = pd.DatetimeIndex(df["datetime_pst_hs"]).day df["hour_of_day_hs"] = pd.DatetimeIndex(df["datetime_pst_hs"]).hour - # Populate initial values based on HE - df["year"] = df["year_he"] - df["month"] = df["month_he"] - df["day_of_month"] = df["day_of_month_he"] - df["hour_of_day"] = df["hour_of_day_he"] + # Populate initial values based on HE; use int64 to avoid + # LossySetitemError on pandas 2.x when overwriting with HS values + df["year"] = df["year_he"].astype("int64") + df["month"] = df["month_he"].astype("int64") + df["day_of_month"] = df["day_of_month_he"].astype("int64") + df["hour_of_day"] = df["hour_of_day_he"].astype("int64") # Go from HE timestamps to 1-24 timepoint indexing df.loc[ @@ -275,11 +276,12 @@ def convert_eia930_hourly_interchange_to_csv( df["day_of_month_hs"] = pd.DatetimeIndex(df["datetime_pst_hs"]).day df["hour_of_day_hs"] = pd.DatetimeIndex(df["datetime_pst_hs"]).hour - # Populate initial values based on HE - df["year"] = df["year_he"] - df["month"] = df["month_he"] - df["day_of_month"] = df["day_of_month_he"] - df["hour_of_day"] = df["hour_of_day_he"] + # Populate initial values based on HE; use int64 to avoid + # LossySetitemError on pandas 2.x when overwriting with HS values + df["year"] = df["year_he"].astype("int64") + df["month"] = df["month_he"].astype("int64") + df["day_of_month"] = df["day_of_month_he"].astype("int64") + df["hour_of_day"] = df["hour_of_day_he"].astype("int64") # Go from HE timestamps to 1-24 timepoint indexing df.loc[ diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_unit_availability_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_unit_availability_params.csv new file mode 100644 index 0000000000..e4fcf34269 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_unit_availability_params.csv @@ -0,0 +1,2264 @@ +unit,project,unit_weight,n_units,unit_fo_model,unit_for,unit_mttr,timeseries_name,hybrid_stor +9__1,9__1,1,1,MC_sequential,0.023,50,thermal, +99__1,99__1,1,1,MC_sequential,0.023,50,thermal, +99__2,99__2,1,1,MC_sequential,0.023,50,thermal, +113__1,113__1,1,1,MC_sequential,0.065,60,thermal, +113__3,113__3,1,1,MC_sequential,0.065,60,thermal, +114__1,114__1,1,1,MC_sequential,0.04,40,thermal, +116__GT1,116__GT1,1,1,MC_sequential,0.023,50,thermal, +116__GT2,116__GT2,1,1,MC_sequential,0.023,50,thermal, +116__GT3,116__GT3,1,1,MC_sequential,0.023,50,thermal, +116__GT4,116__GT4,1,1,MC_sequential,0.023,50,thermal, +116__GT5,116__GT5,1,1,MC_sequential,0.023,50,thermal, +116__GT6,116__GT6,1,1,MC_sequential,0.023,50,thermal, +116__GT7,116__GT7,1,1,MC_sequential,0.023,50,thermal, +117__1B,117__1B,1,1,MC_sequential,0.038,24,thermal, +117__2B,117__2B,1,1,MC_sequential,0.038,24,thermal, +117__3B,117__3B,1,1,MC_sequential,0.038,24,thermal, +117__C4_1,117__C4_1,1,1,MC_sequential,0.038,24,thermal, +117__C4_2,117__C4_2,1,1,MC_sequential,0.038,24,thermal, +117__C5_1,117__C5_1,1,1,MC_sequential,0.038,24,thermal, +117__C5_2,117__C5_2,1,1,MC_sequential,0.038,24,thermal, +117__C5_3,117__C5_3,1,1,MC_sequential,0.038,24,thermal, +117__GT1,117__GT1,1,1,MC_sequential,0.023,50,thermal, +117__GT2,117__GT2,1,1,MC_sequential,0.023,50,thermal, +118__GE1,118__GE1,1,1,MC_sequential,0.023,50,thermal, +118__GT1,118__GT1,1,1,MC_sequential,0.023,50,thermal, +118__GT2,118__GT2,1,1,MC_sequential,0.023,50,thermal, +120__GT1,120__GT1,1,1,MC_sequential,0.023,50,thermal, +120__GT2,120__GT2,1,1,MC_sequential,0.023,50,thermal, +120__GT21,120__GT21,1,1,MC_sequential,0.04,40,thermal, +120__GT3,120__GT3,1,1,MC_sequential,0.023,50,thermal, +120__GT4,120__GT4,1,1,MC_sequential,0.04,40,thermal, +120__GT5,120__GT5,1,1,MC_sequential,0.023,50,thermal, +120__GT6,120__GT6,1,1,MC_sequential,0.023,50,thermal, +120__ST1,120__ST1,1,1,MC_sequential,0.045,30,thermal, +124__GT2,124__GT2,1,1,MC_sequential,0.023,50,thermal, +126__4,126__4,1,1,MC_sequential,0.045,30,thermal, +126__GT1,126__GT1,1,1,MC_sequential,0.023,50,thermal, +126__GT2,126__GT2,1,1,MC_sequential,0.023,50,thermal, +126__RIC1,126__RIC1,1,1,MC_sequential,0.04,24,thermal, +126__RIC10,126__RIC10,1,1,MC_sequential,0.04,24,thermal, +126__RIC2,126__RIC2,1,1,MC_sequential,0.04,24,thermal, +126__RIC3,126__RIC3,1,1,MC_sequential,0.04,24,thermal, +126__RIC4,126__RIC4,1,1,MC_sequential,0.04,24,thermal, +126__RIC5,126__RIC5,1,1,MC_sequential,0.04,24,thermal, +126__RIC6,126__RIC6,1,1,MC_sequential,0.04,24,thermal, +126__RIC7,126__RIC7,1,1,MC_sequential,0.04,24,thermal, +126__RIC8,126__RIC8,1,1,MC_sequential,0.04,24,thermal, +126__RIC9,126__RIC9,1,1,MC_sequential,0.04,24,thermal, +126__ST3,126__ST3,1,1,MC_sequential,0.045,30,thermal, +141__AF1,141__AF1,1,1,MC_sequential,0.045,30,thermal, +141__AF2,141__AF2,1,1,MC_sequential,0.045,30,thermal, +141__AF3,141__AF3,1,1,MC_sequential,0.04,40,thermal, +141__AF4,141__AF4,1,1,MC_sequential,0.023,50,thermal, +141__AF5,141__AF5,1,1,MC_sequential,0.023,50,thermal, +141__AF6,141__AF6,1,1,MC_sequential,0.023,50,thermal, +141__AF7,141__AF7,1,1,MC_sequential,0.023,50,thermal, +141__AF8,141__AF8,1,1,MC_sequential,0.023,50,thermal, +141__AFSB1,141__AFSB1,1,1,Derate,0.02,36,thermal, +145__HM4,145__HM4,1,1,Derate,0.015,30,thermal, +147__KY4,147__KY4,1,1,MC_sequential,0.023,50,thermal, +147__KY5,147__KY5,1,1,MC_sequential,0.023,50,thermal, +147__KY6,147__KY6,1,1,MC_sequential,0.023,50,thermal, +147__KY7,147__KY7,1,1,MC_sequential,0.038,24,thermal, +147__KY7A,147__KY7A,1,1,MC_sequential,0.038,24,thermal, +148__MF2,148__MF2,1,1,Derate,0.015,30,thermal, +151__1,151__1,1,1,MC_sequential,0.04,40,thermal, +151__2,151__2,1,1,MC_sequential,0.023,50,thermal, +160__ST2,160__ST2,1,1,MC_sequential,0.045,30,thermal, +160__ST3,160__ST3,1,1,MC_sequential,0.065,60,thermal, +246__IC1,246__IC1,1,1,MC_sequential,0.04,24,thermal, +246__IC10,246__IC10,1,1,MC_sequential,0.04,24,thermal, +246__IC2,246__IC2,1,1,MC_sequential,0.04,24,thermal, +246__IC3,246__IC3,1,1,MC_sequential,0.04,24,thermal, +246__IC4,246__IC4,1,1,MC_sequential,0.04,24,thermal, +246__IC5,246__IC5,1,1,MC_sequential,0.04,24,thermal, +246__IC6,246__IC6,1,1,MC_sequential,0.04,24,thermal, +246__IC7,246__IC7,1,1,MC_sequential,0.04,24,thermal, +246__IC8,246__IC8,1,1,MC_sequential,0.04,24,thermal, +246__IC9,246__IC9,1,1,MC_sequential,0.04,24,thermal, +260__BAT1,260__BAT1,1,1,Derate,0.02,36,thermal, +260__BAT2,260__BAT2,1,1,Derate,0.02,36,thermal, +260__BAT3,260__BAT3,1,1,Derate,0.02,36,thermal, +260__CT1A,260__CT1A,1,1,MC_sequential,0.038,24,thermal, +260__CT1B,260__CT1B,1,1,MC_sequential,0.038,24,thermal, +260__CT2A,260__CT2A,1,1,MC_sequential,0.038,24,thermal, +260__CT2B,260__CT2B,1,1,MC_sequential,0.038,24,thermal, +260__ST1,260__ST1,1,1,MC_sequential,0.038,24,thermal, +260__ST2,260__ST2,1,1,MC_sequential,0.038,24,thermal, +286__U11,286__U11,1,1,MC_sequential,0.035,30,thermal, +286__U12,286__U12,1,1,MC_sequential,0.035,30,thermal, +286__U13,286__U13,1,1,MC_sequential,0.035,30,thermal, +286__U14,286__U14,1,1,MC_sequential,0.035,30,thermal, +286__U16,286__U16,1,1,MC_sequential,0.035,30,thermal, +286__U17,286__U17,1,1,MC_sequential,0.035,30,thermal, +286__U18,286__U18,1,1,MC_sequential,0.035,30,thermal, +286__U20,286__U20,1,1,MC_sequential,0.035,30,thermal, +286__U5,286__U5,1,1,MC_sequential,0.035,30,thermal, +286__U6,286__U6,1,1,MC_sequential,0.035,30,thermal, +286__U7,286__U7,1,1,MC_sequential,0.035,30,thermal, +286__U8,286__U8,1,1,MC_sequential,0.035,30,thermal, +299__1,299__1,1,1,MC_sequential,0.035,30,thermal, +299__2,299__2,1,1,MC_sequential,0.035,30,thermal, +315__3,315__3,1,1,MC_sequential,0.045,30,thermal, +315__4,315__4,1,1,MC_sequential,0.045,30,thermal, +315__5,315__5,1,1,MC_sequential,0.045,30,thermal, +335__2,335__2,1,1,MC_sequential,0.045,30,thermal, +341__CT1,341__CT1,1,1,MC_sequential,0.023,50,thermal, +341__CT2,341__CT2,1,1,MC_sequential,0.023,50,thermal, +341__CT3,341__CT3,1,1,MC_sequential,0.023,50,thermal, +341__CT4,341__CT4,1,1,MC_sequential,0.023,50,thermal, +350__1,350__1,1,1,MC_sequential,0.045,30,thermal, +350__2,350__2,1,1,MC_sequential,0.045,30,thermal, +358__MV3A,358__MV3A,1,1,MC_sequential,0.038,24,thermal, +358__MV3B,358__MV3B,1,1,MC_sequential,0.038,24,thermal, +358__MV3C,358__MV3C,1,1,MC_sequential,0.038,24,thermal, +358__MV4A,358__MV4A,1,1,MC_sequential,0.038,24,thermal, +358__MV4B,358__MV4B,1,1,MC_sequential,0.038,24,thermal, +358__MV4C,358__MV4C,1,1,MC_sequential,0.038,24,thermal, +371__2,371__2,1,1,MC_sequential,0.025,150,thermal, +377__9,377__9,1,1,MC_sequential,0.023,50,thermal, +389__2,389__2,1,1,MC_sequential,0.038,24,thermal, +389__2A,389__2A,1,1,MC_sequential,0.038,24,thermal, +389__30,389__30,1,1,MC_sequential,0.038,24,thermal, +389__31,389__31,1,1,MC_sequential,0.038,24,thermal, +389__32,389__32,1,1,MC_sequential,0.038,24,thermal, +389__4,389__4,1,1,MC_sequential,0.045,30,thermal, +389__BESS,389__BESS,1,1,Derate,0.02,36,thermal, +392__2,392__2,1,1,Derate,0.015,30,thermal, +392__3,392__3,1,1,Derate,0.015,30,thermal, +392__4,392__4,1,1,Derate,0.015,30,thermal, +392__6,392__6,1,1,Derate,0.015,30,thermal, +399__10A,399__10A,1,1,MC_sequential,0.038,24,thermal, +399__10B,399__10B,1,1,MC_sequential,0.038,24,thermal, +399__5,399__5,1,1,MC_sequential,0.038,24,thermal, +399__GT10,399__GT10,1,1,MC_sequential,0.023,50,thermal, +399__GT11,399__GT11,1,1,MC_sequential,0.023,50,thermal, +399__GT12,399__GT12,1,1,MC_sequential,0.023,50,thermal, +399__GT13,399__GT13,1,1,MC_sequential,0.023,50,thermal, +399__GT14,399__GT14,1,1,MC_sequential,0.023,50,thermal, +400__1,400__1,1,1,MC_sequential,0.045,30,thermal, +400__10,400__10,1,1,MC_sequential,0.038,24,thermal, +400__11,400__11,1,1,MC_sequential,0.023,50,thermal, +400__12,400__12,1,1,MC_sequential,0.023,50,thermal, +400__13,400__13,1,1,MC_sequential,0.023,50,thermal, +400__14,400__14,1,1,MC_sequential,0.023,50,thermal, +400__15,400__15,1,1,MC_sequential,0.023,50,thermal, +400__16,400__16,1,1,MC_sequential,0.023,50,thermal, +400__2,400__2,1,1,MC_sequential,0.045,30,thermal, +400__8,400__8,1,1,MC_sequential,0.038,24,thermal, +400__9,400__9,1,1,MC_sequential,0.038,24,thermal, +404__1,404__1,1,1,MC_sequential,0.045,30,thermal, +404__2,404__2,1,1,MC_sequential,0.045,30,thermal, +404__4,404__4,1,1,MC_sequential,0.038,24,thermal, +404__5,404__5,1,1,MC_sequential,0.038,24,thermal, +404__6,404__6,1,1,MC_sequential,0.023,50,thermal, +404__7,404__7,1,1,MC_sequential,0.023,50,thermal, +408__5,408__5,1,1,MC_sequential,0.023,50,thermal, +408__6,408__6,1,1,MC_sequential,0.038,24,thermal, +408__7,408__7,1,1,MC_sequential,0.038,24,thermal, +408__8,408__8,1,1,MC_sequential,0.038,24,thermal, +422__GT1,422__GT1,1,1,MC_sequential,0.023,50,thermal, +422__GT2,422__GT2,1,1,MC_sequential,0.023,50,thermal, +422__GT3,422__GT3,1,1,MC_sequential,0.023,50,thermal, +422__GT4,422__GT4,1,1,MC_sequential,0.023,50,thermal, +422__GT5,422__GT5,1,1,MC_sequential,0.038,24,thermal, +422__ST1,422__ST1,1,1,MC_sequential,0.038,24,thermal, +437__2,437__2,1,1,Derate,0.015,30,thermal, +437__4,437__4,1,1,Derate,0.015,30,thermal, +437__6,437__6,1,1,Derate,0.015,30,thermal, +438__2,438__2,1,1,Derate,0.015,30,thermal, +438__3,438__3,1,1,Derate,0.015,30,thermal, +438__4,438__4,1,1,Derate,0.015,30,thermal, +446__1,446__1,1,1,Derate,0.015,30,thermal, +446__2,446__2,1,1,Derate,0.015,30,thermal, +446__3,446__3,1,1,Derate,0.015,30,thermal, +446__4,446__4,1,1,Derate,0.015,30,thermal, +446__5,446__5,1,1,Derate,0.015,30,thermal, +446__6,446__6,1,1,Derate,0.015,30,thermal, +448__1,448__1,1,1,Derate,0.015,30,thermal, +448__2,448__2,1,1,Derate,0.015,30,thermal, +448__3,448__3,1,1,Derate,0.015,30,thermal, +448__4,448__4,1,1,Derate,0.015,30,thermal, +448__5,448__5,1,1,Derate,0.015,30,thermal, +448__6,448__6,1,1,Derate,0.015,30,thermal, +448__7,448__7,1,1,Derate,0.015,30,thermal, +448__8,448__8,1,1,Derate,0.015,30,thermal, +460__IC1,460__IC1,1,1,MC_sequential,0.04,40,thermal, +460__IC3,460__IC3,1,1,MC_sequential,0.04,40,thermal, +460__IC4,460__IC4,1,1,MC_sequential,0.04,40,thermal, +460__IC5,460__IC5,1,1,MC_sequential,0.04,40,thermal, +464__CT1,464__CT1,1,1,MC_sequential,0.023,50,thermal, +464__CT2,464__CT2,1,1,MC_sequential,0.023,50,thermal, +467__A,467__A,1,1,Derate,0.015,30,thermal, +467__B,467__B,1,1,Derate,0.015,30,thermal, +469__4,469__4,1,1,MC_sequential,0.045,30,thermal, +469__5,469__5,1,1,MC_sequential,0.038,24,thermal, +469__6,469__6,1,1,MC_sequential,0.038,24,thermal, +469__7,469__7,1,1,MC_sequential,0.038,24,thermal, +470__2,470__2,1,1,MC_sequential,0.065,60,thermal, +470__3,470__3,1,1,MC_sequential,0.065,60,thermal, +471__1,471__1,1,1,MC_sequential,0.023,50,thermal, +477__6,477__6,1,1,MC_sequential,0.023,50,thermal, +492__A1,492__A1,1,1,MC_sequential,0.023,50,thermal, +492__A2,492__A2,1,1,MC_sequential,0.023,50,thermal, +492__A3,492__A3,1,1,MC_sequential,0.023,50,thermal, +492__A4,492__A4,1,1,MC_sequential,0.023,50,thermal, +492__A5,492__A5,1,1,MC_sequential,0.023,50,thermal, +492__A6,492__A6,1,1,MC_sequential,0.023,50,thermal, +493__1,493__1,1,1,MC_sequential,0.045,30,thermal, +493__2,493__2,1,1,MC_sequential,0.045,30,thermal, +493__3,493__3,1,1,MC_sequential,0.045,30,thermal, +507__1,507__1,1,1,MC_sequential,0.04,40,thermal, +507__2,507__2,1,1,MC_sequential,0.04,40,thermal, +507__4,507__4,1,1,MC_sequential,0.04,40,thermal, +507__5,507__5,1,1,MC_sequential,0.04,40,thermal, +507__6,507__6,1,1,MC_sequential,0.04,40,thermal, +510__1,510__1,1,1,MC_sequential,0.035,30,thermal, +511__5,511__5,1,1,MC_sequential,0.04,40,thermal, +511__6,511__6,1,1,MC_sequential,0.04,40,thermal, +511__7,511__7,1,1,MC_sequential,0.04,40,thermal, +518__3,518__3,1,1,Derate,0.015,30,thermal, +525__1,525__1,1,1,MC_sequential,0.065,60,thermal, +525__2,525__2,1,1,MC_sequential,0.065,60,thermal, +535__1,535__1,1,1,MC_sequential,0.023,50,thermal, +550__1,550__1,1,1,MC_sequential,0.05,40,thermal, +550__2,550__2,1,1,MC_sequential,0.023,50,thermal, +2322__10,2322__10,1,1,MC_sequential,0.038,24,thermal, +2322__11,2322__11,1,1,MC_sequential,0.023,50,thermal, +2322__12,2322__12,1,1,MC_sequential,0.023,50,thermal, +2322__13,2322__13,1,1,MC_sequential,0.023,50,thermal, +2322__14,2322__14,1,1,MC_sequential,0.023,50,thermal, +2322__15,2322__15,1,1,MC_sequential,0.023,50,thermal, +2322__16,2322__16,1,1,MC_sequential,0.023,50,thermal, +2322__17,2322__17,1,1,MC_sequential,0.023,50,thermal, +2322__18,2322__18,1,1,MC_sequential,0.023,50,thermal, +2322__19,2322__19,1,1,MC_sequential,0.023,50,thermal, +2322__20,2322__20,1,1,MC_sequential,0.023,50,thermal, +2322__21,2322__21,1,1,MC_sequential,0.023,50,thermal, +2322__22,2322__22,1,1,MC_sequential,0.023,50,thermal, +2322__9,2322__9,1,1,MC_sequential,0.038,24,thermal, +2322__GT4,2322__GT4,1,1,MC_sequential,0.023,50,thermal, +2322__GT5,2322__GT5,1,1,MC_sequential,0.038,24,thermal, +2322__GT6,2322__GT6,1,1,MC_sequential,0.038,24,thermal, +2322__GT7,2322__GT7,1,1,MC_sequential,0.038,24,thermal, +2322__GT8,2322__GT8,1,1,MC_sequential,0.038,24,thermal, +2324__RGES1,2324__RGES1,1,1,Derate,0.02,36,thermal, +2330__1,2330__1,1,1,MC_sequential,0.045,30,thermal, +2330__2,2330__2,1,1,MC_sequential,0.045,30,thermal, +2336__10,2336__10,1,1,MC_sequential,0.038,24,thermal, +2336__3,2336__3,1,1,MC_sequential,0.045,30,thermal, +2336__4,2336__4,1,1,MC_sequential,0.038,24,thermal, +2336__5,2336__5,1,1,MC_sequential,0.038,24,thermal, +2336__8,2336__8,1,1,MC_sequential,0.038,24,thermal, +2336__9,2336__9,1,1,MC_sequential,0.038,24,thermal, +2336__GT3,2336__GT3,1,1,MC_sequential,0.023,50,thermal, +2336__GT4,2336__GT4,1,1,MC_sequential,0.023,50,thermal, +2442__4,2442__4,1,1,MC_sequential,0.065,60,thermal, +2442__5,2442__5,1,1,MC_sequential,0.065,60,thermal, +2444__6,2444__6,1,1,MC_sequential,0.045,30,thermal, +2444__7,2444__7,1,1,MC_sequential,0.045,30,thermal, +2444__8,2444__8,1,1,MC_sequential,0.045,30,thermal, +2444__9,2444__9,1,1,MC_sequential,0.023,50,thermal, +2450__1,2450__1,1,1,MC_sequential,0.045,30,thermal, +2450__2,2450__2,1,1,MC_sequential,0.045,30,thermal, +2450__3,2450__3,1,1,MC_sequential,0.045,30,thermal, +3325__1,3325__1,1,1,MC_sequential,0.04,40,thermal, +3325__2,3325__2,1,1,MC_sequential,0.04,40,thermal, +3325__3,3325__3,1,1,MC_sequential,0.04,40,thermal, +3325__4,3325__4,1,1,MC_sequential,0.04,40,thermal, +3325__5,3325__5,1,1,MC_sequential,0.04,40,thermal, +3325__GT1,3325__GT1,1,1,MC_sequential,0.023,50,thermal, +3325__GT2,3325__GT2,1,1,MC_sequential,0.023,50,thermal, +3325__GT3,3325__GT3,1,1,MC_sequential,0.023,50,thermal, +3325__GT4,3325__GT4,1,1,MC_sequential,0.023,50,thermal, +3456__1,3456__1,1,1,MC_sequential,0.045,30,thermal, +3456__2,3456__2,1,1,MC_sequential,0.045,30,thermal, +3456__3,3456__3,1,1,MC_sequential,0.045,30,thermal, +3456__4,3456__4,1,1,MC_sequential,0.038,24,thermal, +3456__5CA1,3456__5CA1,1,1,MC_sequential,0.038,24,thermal, +3456__5CT1,3456__5CT1,1,1,MC_sequential,0.038,24,thermal, +3456__5CT2,3456__5CT2,1,1,MC_sequential,0.038,24,thermal, +3456__6,3456__6,1,1,MC_sequential,0.023,50,thermal, +3456__CT1,3456__CT1,1,1,MC_sequential,0.038,24,thermal, +3456__CT2,3456__CT2,1,1,MC_sequential,0.038,24,thermal, +3648__1,3648__1,1,1,MC_sequential,0.045,30,thermal, +3648__2,3648__2,1,1,MC_sequential,0.045,30,thermal, +3648__3,3648__3,1,1,MC_sequential,0.045,30,thermal, +3648__4,3648__4,1,1,MC_sequential,0.023,50,thermal, +3648__5,3648__5,1,1,MC_sequential,0.023,50,thermal, +3648__6,3648__6,1,1,MC_sequential,0.023,50,thermal, +3665__1A,3665__1A,1,1,MC_sequential,0.023,50,thermal, +3665__2A,3665__2A,1,1,MC_sequential,0.023,50,thermal, +3665__3A,3665__3A,1,1,MC_sequential,0.023,50,thermal, +3845__2,3845__2,1,1,MC_sequential,0.065,60,thermal, +4158__1,4158__1,1,1,MC_sequential,0.065,60,thermal, +4158__2,4158__2,1,1,MC_sequential,0.065,60,thermal, +4158__3,4158__3,1,1,MC_sequential,0.065,60,thermal, +4158__4,4158__4,1,1,MC_sequential,0.065,60,thermal, +4162__1,4162__1,1,1,MC_sequential,0.065,60,thermal, +4162__2,4162__2,1,1,MC_sequential,0.065,60,thermal, +4162__3,4162__3,1,1,MC_sequential,0.045,30,thermal, +4251__1,4251__1,1,1,MC_sequential,0.023,50,thermal, +4251__2,4251__2,1,1,MC_sequential,0.023,50,thermal, +4251__3,4251__3,1,1,MC_sequential,0.023,50,thermal, +4256__1,4256__1,1,1,MC_sequential,0.023,50,thermal, +4256__2,4256__2,1,1,MC_sequential,0.023,50,thermal, +6008__1,6008__1,1,1,MC_sequential,0.025,150,thermal, +6008__2,6008__2,1,1,MC_sequential,0.025,150,thermal, +6008__3,6008__3,1,1,MC_sequential,0.025,150,thermal, +6021__1,6021__1,1,1,MC_sequential,0.065,60,thermal, +6021__2,6021__2,1,1,MC_sequential,0.065,60,thermal, +6021__3,6021__3,1,1,MC_sequential,0.065,60,thermal, +6060__1,6060__1,1,1,MC_sequential,0.023,50,thermal, +6060__2,6060__2,1,1,MC_sequential,0.023,50,thermal, +6060__3,6060__3,1,1,MC_sequential,0.023,50,thermal, +6060__4,6060__4,1,1,MC_sequential,0.023,50,thermal, +6076__3,6076__3,1,1,MC_sequential,0.065,60,thermal, +6076__4,6076__4,1,1,MC_sequential,0.065,60,thermal, +6088__1,6088__1,1,1,MC_sequential,0.023,50,thermal, +6088__2,6088__2,1,1,MC_sequential,0.023,50,thermal, +6088__3,6088__3,1,1,MC_sequential,0.023,50,thermal, +6088__4,6088__4,1,1,MC_sequential,0.023,50,thermal, +6099__1,6099__1,1,1,MC_sequential,0.025,150,thermal, +6099__2,6099__2,1,1,MC_sequential,0.025,150,thermal, +6100__1,6100__1,1,1,Derate,0.015,30,thermal, +6100__2,6100__2,1,1,Derate,0.015,30,thermal, +6100__3,6100__3,1,1,Derate,0.015,30,thermal, +6101__1,6101__1,1,1,MC_sequential,0.065,60,thermal, +6112__1,6112__1,1,1,MC_sequential,0.038,24,thermal, +6112__2,6112__2,1,1,MC_sequential,0.038,24,thermal, +6112__3,6112__3,1,1,MC_sequential,0.038,24,thermal, +6112__4,6112__4,1,1,MC_sequential,0.038,24,thermal, +6112__5,6112__5,1,1,MC_sequential,0.023,50,thermal, +6112__6,6112__6,1,1,MC_sequential,0.023,50,thermal, +6120__2,6120__2,1,1,MC_sequential,0.023,50,thermal, +6120__3,6120__3,1,1,MC_sequential,0.023,50,thermal, +6163__PG10,6163__PG10,1,1,Derate,0.015,30,thermal, +6163__PG11,6163__PG11,1,1,Derate,0.015,30,thermal, +6163__PG12,6163__PG12,1,1,Derate,0.015,30,thermal, +6163__PG7,6163__PG7,1,1,Derate,0.015,30,thermal, +6163__PG8,6163__PG8,1,1,Derate,0.015,30,thermal, +6163__PG9,6163__PG9,1,1,Derate,0.015,30,thermal, +6165__1,6165__1,1,1,MC_sequential,0.065,60,thermal, +6165__2,6165__2,1,1,MC_sequential,0.065,60,thermal, +6165__3,6165__3,1,1,MC_sequential,0.065,60,thermal, +6177__CO1,6177__CO1,1,1,MC_sequential,0.065,60,thermal, +6177__CO2,6177__CO2,1,1,MC_sequential,0.065,60,thermal, +6204__1,6204__1,1,1,MC_sequential,0.065,60,thermal, +6204__2,6204__2,1,1,MC_sequential,0.065,60,thermal, +6204__3,6204__3,1,1,MC_sequential,0.065,60,thermal, +6208__1,6208__1,1,1,Derate,0.015,30,thermal, +6208__2,6208__2,1,1,Derate,0.015,30,thermal, +6210__1,6210__1,1,1,MC_sequential,0.023,50,thermal, +6211__GEN1,6211__GEN1,1,1,MC_sequential,0.04,40,thermal, +6211__GEN3,6211__GEN3,1,1,MC_sequential,0.04,40,thermal, +6248__1,6248__1,1,1,MC_sequential,0.065,60,thermal, +6481__1,6481__1,1,1,MC_sequential,0.065,60,thermal, +6481__2,6481__2,1,1,MC_sequential,0.065,60,thermal, +6515__GT4,6515__GT4,1,1,MC_sequential,0.023,50,thermal, +6516__IC1A,6516__IC1A,1,1,MC_sequential,0.04,40,thermal, +6516__IC2,6516__IC2,1,1,MC_sequential,0.04,40,thermal, +6516__IC3,6516__IC3,1,1,MC_sequential,0.04,40,thermal, +6516__IC4,6516__IC4,1,1,MC_sequential,0.04,40,thermal, +6516__IC5,6516__IC5,1,1,MC_sequential,0.04,40,thermal, +6518__KB1,6518__KB1,1,1,MC_sequential,0.04,40,thermal, +6518__KB2,6518__KB2,1,1,MC_sequential,0.04,40,thermal, +6518__KB3,6518__KB3,1,1,MC_sequential,0.04,40,thermal, +6518__KB4,6518__KB4,1,1,MC_sequential,0.04,40,thermal, +6518__KB5,6518__KB5,1,1,MC_sequential,0.04,40,thermal, +6518__KB6,6518__KB6,1,1,MC_sequential,0.04,40,thermal, +6704__10,6704__10,1,1,MC_sequential,0.04,40,thermal, +6704__12,6704__12,1,1,MC_sequential,0.04,40,thermal, +6704__14,6704__14,1,1,MC_sequential,0.04,40,thermal, +6704__15,6704__15,1,1,MC_sequential,0.04,40,thermal, +6704__7,6704__7,1,1,MC_sequential,0.04,40,thermal, +6704__8,6704__8,1,1,MC_sequential,0.04,40,thermal, +6704__MT01,6704__MT01,1,1,MC_sequential,0.023,50,thermal, +6704__MT02,6704__MT02,1,1,MC_sequential,0.023,50,thermal, +6704__MT03,6704__MT03,1,1,MC_sequential,0.023,50,thermal, +6704__MT04,6704__MT04,1,1,MC_sequential,0.023,50,thermal, +6704__MT05,6704__MT05,1,1,MC_sequential,0.023,50,thermal, +6704__MT07,6704__MT07,1,1,MC_sequential,0.023,50,thermal, +6704__MT08,6704__MT08,1,1,MC_sequential,0.023,50,thermal, +6704__MT09,6704__MT09,1,1,MC_sequential,0.023,50,thermal, +6704__MT10,6704__MT10,1,1,MC_sequential,0.023,50,thermal, +6704__MT11,6704__MT11,1,1,MC_sequential,0.023,50,thermal, +6704__MT14,6704__MT14,1,1,MC_sequential,0.023,50,thermal, +6704__MT15,6704__MT15,1,1,MC_sequential,0.023,50,thermal, +6704__MT18,6704__MT18,1,1,MC_sequential,0.023,50,thermal, +6704__MT19,6704__MT19,1,1,MC_sequential,0.023,50,thermal, +6704__MT20,6704__MT20,1,1,MC_sequential,0.023,50,thermal, +6704__MT21,6704__MT21,1,1,MC_sequential,0.023,50,thermal, +6704__MT23,6704__MT23,1,1,MC_sequential,0.023,50,thermal, +6704__MT24,6704__MT24,1,1,MC_sequential,0.023,50,thermal, +6704__MT25,6704__MT25,1,1,MC_sequential,0.023,50,thermal, +6704__NASB1,6704__NASB1,1,1,Derate,0.02,36,thermal, +6761__1,6761__1,1,1,MC_sequential,0.065,60,thermal, +6761__A,6761__A,1,1,MC_sequential,0.023,50,thermal, +6761__B,6761__B,1,1,MC_sequential,0.023,50,thermal, +6761__C,6761__C,1,1,MC_sequential,0.023,50,thermal, +6761__D,6761__D,1,1,MC_sequential,0.023,50,thermal, +6761__F,6761__F,1,1,MC_sequential,0.023,50,thermal, +7028__K1,7028__K1,1,1,MC_sequential,0.04,24,thermal, +7028__K2,7028__K2,1,1,MC_sequential,0.04,24,thermal, +7028__K6CAT,7028__K6CAT,1,1,MC_sequential,0.04,24,thermal, +7028__K7CAT,7028__K7CAT,1,1,MC_sequential,0.04,24,thermal, +7082__5,7082__5,1,1,MC_sequential,0.038,24,thermal, +7082__6,7082__6,1,1,MC_sequential,0.038,24,thermal, +7082__7,7082__7,1,1,MC_sequential,0.038,24,thermal, +7082__GT1,7082__GT1,1,1,MC_sequential,0.023,50,thermal, +7082__GT4,7082__GT4,1,1,MC_sequential,0.023,50,thermal, +7111__1,7111__1,1,1,MC_sequential,0.04,24,thermal, +7111__11,7111__11,1,1,MC_sequential,0.04,24,thermal, +7111__12,7111__12,1,1,MC_sequential,0.04,24,thermal, +7111__13,7111__13,1,1,MC_sequential,0.04,24,thermal, +7111__14,7111__14,1,1,MC_sequential,0.04,24,thermal, +7111__15,7111__15,1,1,MC_sequential,0.04,24,thermal, +7111__2,7111__2,1,1,MC_sequential,0.04,24,thermal, +7111__4,7111__4,1,1,MC_sequential,0.04,24,thermal, +7111__NA10,7111__NA10,1,1,MC_sequential,0.04,24,thermal, +7111__NA9,7111__NA9,1,1,MC_sequential,0.04,24,thermal, +7164__PG3,7164__PG3,1,1,Derate,0.015,30,thermal, +7164__PG6,7164__PG6,1,1,Derate,0.015,30,thermal, +7164__PG7,7164__PG7,1,1,Derate,0.015,30,thermal, +7164__PS1,7164__PS1,1,1,Derate,0.015,30,thermal, +7231__1,7231__1,1,1,MC_sequential,0.023,50,thermal, +7231__2,7231__2,1,1,MC_sequential,0.023,50,thermal, +7232__1,7232__1,1,1,MC_sequential,0.023,50,thermal, +7232__2,7232__2,1,1,MC_sequential,0.023,50,thermal, +7266__2,7266__2,1,1,MC_sequential,0.038,24,thermal, +7266__3,7266__3,1,1,MC_sequential,0.038,24,thermal, +7266__3A,7266__3A,1,1,MC_sequential,0.04,24,thermal, +7266__3B,7266__3B,1,1,MC_sequential,0.04,24,thermal, +7266__3C,7266__3C,1,1,MC_sequential,0.04,24,thermal, +7266__3D,7266__3D,1,1,MC_sequential,0.04,24,thermal, +7266__3E,7266__3E,1,1,MC_sequential,0.04,24,thermal, +7266__3F,7266__3F,1,1,MC_sequential,0.04,24,thermal, +7266__NA1,7266__NA1,1,1,MC_sequential,0.023,50,thermal, +7307__1,7307__1,1,1,MC_sequential,0.023,50,thermal, +7307__2,7307__2,1,1,MC_sequential,0.023,50,thermal, +7307__3,7307__3,1,1,MC_sequential,0.023,50,thermal, +7307__4,7307__4,1,1,MC_sequential,0.038,24,thermal, +7307__5,7307__5,1,1,MC_sequential,0.038,24,thermal, +7307__6,7307__6,1,1,MC_sequential,0.038,24,thermal, +7315__1,7315__1,1,1,MC_sequential,0.023,50,thermal, +7315__2,7315__2,1,1,MC_sequential,0.023,50,thermal, +7315__3,7315__3,1,1,MC_sequential,0.023,50,thermal, +7315__4,7315__4,1,1,MC_sequential,0.023,50,thermal, +7350__1,7350__1,1,1,MC_sequential,0.038,24,thermal, +7350__2,7350__2,1,1,MC_sequential,0.038,24,thermal, +7368__1,7368__1,1,1,MC_sequential,0.035,30,thermal, +7368__2,7368__2,1,1,MC_sequential,0.035,30,thermal, +7369__4,7369__4,1,1,MC_sequential,0.035,30,thermal, +7408__86_1,7408__86_1,1,1,MC_sequential,0.04,24,thermal, +7408__86_2,7408__86_2,1,1,MC_sequential,0.04,24,thermal, +7408__86_3,7408__86_3,1,1,MC_sequential,0.04,24,thermal, +7408__86_4,7408__86_4,1,1,MC_sequential,0.04,24,thermal, +7413__1,7413__1,1,1,MC_sequential,0.045,36,thermal, +7413__2,7413__2,1,1,MC_sequential,0.045,36,thermal, +7413__3,7413__3,1,1,MC_sequential,0.045,36,thermal, +7413__4,7413__4,1,1,MC_sequential,0.045,36,thermal, +7449__NA1,7449__NA1,1,1,MC_sequential,0.023,50,thermal, +7450__1,7450__1,1,1,MC_sequential,0.023,50,thermal, +7450__2,7450__2,1,1,MC_sequential,0.023,50,thermal, +7456__1,7456__1,1,1,MC_sequential,0.023,50,thermal, +7456__2,7456__2,1,1,MC_sequential,0.023,50,thermal, +7504__2,7504__2,1,1,MC_sequential,0.065,60,thermal, +7504__GT1,7504__GT1,1,1,MC_sequential,0.023,50,thermal, +7527__1,7527__1,1,1,MC_sequential,0.023,50,thermal, +7527__2,7527__2,1,1,MC_sequential,0.038,24,thermal, +7527__CCCT,7527__CCCT,1,1,MC_sequential,0.038,24,thermal, +7551__CCST,7551__CCST,1,1,MC_sequential,0.038,24,thermal, +7551__CT1A,7551__CT1A,1,1,MC_sequential,0.038,24,thermal, +7551__CT1B,7551__CT1B,1,1,MC_sequential,0.038,24,thermal, +7551__CT1C,7551__CT1C,1,1,MC_sequential,0.023,50,thermal, +7552__CCCT,7552__CCCT,1,1,MC_sequential,0.038,24,thermal, +7552__CCST,7552__CCST,1,1,MC_sequential,0.038,24,thermal, +7605__1,7605__1,1,1,MC_sequential,0.038,24,thermal, +7725__1,7725__1,1,1,MC_sequential,0.045,36,thermal, +7725__2,7725__2,1,1,MC_sequential,0.045,36,thermal, +7725__3,7725__3,1,1,MC_sequential,0.045,36,thermal, +7725__4,7725__4,1,1,MC_sequential,0.045,36,thermal, +7725__5,7725__5,1,1,MC_sequential,0.045,36,thermal, +7767__1,7767__1,1,1,MC_sequential,0.04,40,thermal, +7767__2,7767__2,1,1,MC_sequential,0.04,40,thermal, +7767__3,7767__3,1,1,MC_sequential,0.04,40,thermal, +7767__4,7767__4,1,1,MC_sequential,0.04,40,thermal, +7767__5,7767__5,1,1,MC_sequential,0.04,40,thermal, +7767__6,7767__6,1,1,MC_sequential,0.04,40,thermal, +7790__1,7790__1,1,1,MC_sequential,0.065,60,thermal, +7824__1,7824__1,1,1,MC_sequential,0.023,50,thermal, +7824__2,7824__2,1,1,MC_sequential,0.04,40,thermal, +7870__CTG1,7870__CTG1,1,1,MC_sequential,0.038,24,thermal, +7870__CTG2,7870__CTG2,1,1,MC_sequential,0.038,24,thermal, +7870__CTG3,7870__CTG3,1,1,MC_sequential,0.038,24,thermal, +7870__STG,7870__STG,1,1,MC_sequential,0.038,24,thermal, +7931__1,7931__1,1,1,MC_sequential,0.038,24,thermal, +7931__2,7931__2,1,1,MC_sequential,0.038,24,thermal, +7953__1,7953__1,1,1,MC_sequential,0.023,50,thermal, +7953__2,7953__2,1,1,MC_sequential,0.023,50,thermal, +7953__3,7953__3,1,1,MC_sequential,0.023,50,thermal, +7967__GT1,7967__GT1,1,1,MC_sequential,0.023,50,thermal, +7967__GT2,7967__GT2,1,1,MC_sequential,0.023,50,thermal, +7975__1,7975__1,1,1,MC_sequential,0.023,50,thermal, +7975__2,7975__2,1,1,MC_sequential,0.023,50,thermal, +7975__3,7975__3,1,1,MC_sequential,0.023,50,thermal, +7975__4,7975__4,1,1,MC_sequential,0.023,50,thermal, +7987__L1,7987__L1,1,1,MC_sequential,0.023,50,thermal, +7995__IC1,7995__IC1,1,1,MC_sequential,0.04,40,thermal, +7995__IC2,7995__IC2,1,1,MC_sequential,0.04,40,thermal, +7995__IC3,7995__IC3,1,1,MC_sequential,0.04,40,thermal, +7995__IC4,7995__IC4,1,1,MC_sequential,0.04,40,thermal, +7999__CT1,7999__CT1,1,1,MC_sequential,0.038,24,thermal, +7999__CT2,7999__CT2,1,1,MC_sequential,0.038,24,thermal, +7999__ST1,7999__ST1,1,1,MC_sequential,0.038,24,thermal, +8010__1,8010__1,1,1,MC_sequential,0.023,50,thermal, +8010__2,8010__2,1,1,MC_sequential,0.023,50,thermal, +8010__3,8010__3,1,1,MC_sequential,0.023,50,thermal, +8022__1,8022__1,1,1,MC_sequential,0.04,24,thermal, +8022__2,8022__2,1,1,MC_sequential,0.04,24,thermal, +8022__3,8022__3,1,1,MC_sequential,0.04,24,thermal, +8022__4,8022__4,1,1,MC_sequential,0.04,24,thermal, +8022__5,8022__5,1,1,MC_sequential,0.04,24,thermal, +8022__6,8022__6,1,1,MC_sequential,0.04,24,thermal, +8026__1,8026__1,1,1,MC_sequential,0.023,50,thermal, +8026__2,8026__2,1,1,MC_sequential,0.023,50,thermal, +8026__3,8026__3,1,1,MC_sequential,0.023,50,thermal, +8028__1,8028__1,1,1,MC_sequential,0.023,50,thermal, +8028__2,8028__2,1,1,MC_sequential,0.023,50,thermal, +8030__1,8030__1,1,1,MC_sequential,0.023,50,thermal, +8030__2,8030__2,1,1,MC_sequential,0.023,50,thermal, +8030__3,8030__3,1,1,MC_sequential,0.023,50,thermal, +8066__1,8066__1,1,1,MC_sequential,0.065,60,thermal, +8066__2,8066__2,1,1,MC_sequential,0.065,60,thermal, +8066__3,8066__3,1,1,MC_sequential,0.065,60,thermal, +8066__4,8066__4,1,1,MC_sequential,0.065,60,thermal, +8067__1,8067__1,1,1,MC_sequential,0.023,50,thermal, +8067__2,8067__2,1,1,MC_sequential,0.023,50,thermal, +8068__ST1,8068__ST1,1,1,MC_sequential,0.038,24,thermal, +8068__ST2,8068__ST2,1,1,MC_sequential,0.038,24,thermal, +8068__ST3,8068__ST3,1,1,MC_sequential,0.038,24,thermal, +8068__ST4,8068__ST4,1,1,MC_sequential,0.038,24,thermal, +8068__ST5A,8068__ST5A,1,1,MC_sequential,0.038,24,thermal, +8068__ST5B,8068__ST5B,1,1,MC_sequential,0.038,24,thermal, +8068__ST5S,8068__ST5S,1,1,MC_sequential,0.038,24,thermal, +8068__ST6A,8068__ST6A,1,1,MC_sequential,0.038,24,thermal, +8068__ST6S,8068__ST6S,1,1,MC_sequential,0.038,24,thermal, +8069__1,8069__1,1,1,MC_sequential,0.065,60,thermal, +8069__2,8069__2,1,1,MC_sequential,0.065,60,thermal, +8073__1,8073__1,1,1,MC_sequential,0.038,24,thermal, +8073__2,8073__2,1,1,MC_sequential,0.038,24,thermal, +8073__3,8073__3,1,1,MC_sequential,0.038,24,thermal, +8073__4,8073__4,1,1,MC_sequential,0.038,24,thermal, +8073__5,8073__5,1,1,MC_sequential,0.038,24,thermal, +8073__6,8073__6,1,1,MC_sequential,0.038,24,thermal, +8073__7,8073__7,1,1,MC_sequential,0.038,24,thermal, +8073__8,8073__8,1,1,MC_sequential,0.023,50,thermal, +8076__1,8076__1,1,1,MC_sequential,0.023,50,thermal, +8219__1,8219__1,1,1,MC_sequential,0.065,60,thermal, +8219__GT1,8219__GT1,1,1,MC_sequential,0.023,50,thermal, +8219__GT2,8219__GT2,1,1,MC_sequential,0.023,50,thermal, +8223__1,8223__1,1,1,MC_sequential,0.065,60,thermal, +8223__2,8223__2,1,1,MC_sequential,0.065,60,thermal, +8223__3,8223__3,1,1,MC_sequential,0.065,60,thermal, +8223__4,8223__4,1,1,MC_sequential,0.065,60,thermal, +8224__1,8224__1,1,1,MC_sequential,0.065,60,thermal, +8224__2,8224__2,1,1,MC_sequential,0.065,60,thermal, +10003__GEN1,10003__GEN1,1,1,MC_sequential,0.045,30,thermal, +10003__GEN2,10003__GEN2,1,1,MC_sequential,0.045,30,thermal, +10003__GEN3,10003__GEN3,1,1,MC_sequential,0.045,30,thermal, +10018__GEN2,10018__GEN2,1,1,MC_sequential,0.035,30,thermal, +10018__OEC2,10018__OEC2,1,1,MC_sequential,0.035,30,thermal, +10026__EG10,10026__EG10,1,1,MC_sequential,0.045,36,thermal, +10026__EG20,10026__EG20,1,1,MC_sequential,0.045,36,thermal, +10026__EG30,10026__EG30,1,1,MC_sequential,0.045,36,thermal, +10026__EG40,10026__EG40,1,1,MC_sequential,0.045,36,thermal, +10034__GEN1,10034__GEN1,1,1,MC_sequential,0.038,24,thermal, +10034__GEN2,10034__GEN2,1,1,MC_sequential,0.038,24,thermal, +10042__KDHT1,10042__KDHT1,1,1,MC_sequential,0.023,50,thermal, +10091__G2,10091__G2,1,1,MC_sequential,0.045,36,thermal, +10091__G3,10091__G3,1,1,MC_sequential,0.045,36,thermal, +10091__GEN1,10091__GEN1,1,1,MC_sequential,0.045,36,thermal, +10091__GEN4,10091__GEN4,1,1,MC_sequential,0.045,36,thermal, +10115__GEN3,10115__GEN3,1,1,MC_sequential,0.023,50,thermal, +10144__GEN4,10144__GEN4,1,1,MC_sequential,0.05,40,thermal, +10156__BESS1,10156__BESS1,1,1,Derate,0.02,36,thermal, +10156__GEN3,10156__GEN3,1,1,MC_sequential,0.023,50,thermal, +10156__GEN4,10156__GEN4,1,1,MC_sequential,0.023,50,thermal, +10169__GEN1,10169__GEN1,1,1,MC_sequential,0.038,24,thermal, +10169__GEN2,10169__GEN2,1,1,MC_sequential,0.038,24,thermal, +10175__1711,10175__1711,1,1,MC_sequential,0.023,50,thermal, +10180__5,10180__5,1,1,MC_sequential,0.045,36,thermal, +10180__6,10180__6,1,1,MC_sequential,0.045,36,thermal, +10206__GEN1,10206__GEN1,1,1,MC_sequential,0.023,50,thermal, +10206__GEN2,10206__GEN2,1,1,MC_sequential,0.023,50,thermal, +10213__GEN1,10213__GEN1,1,1,MC_sequential,0.038,24,thermal, +10213__GEN2,10213__GEN2,1,1,MC_sequential,0.038,24,thermal, +10213__GEN5,10213__GEN5,1,1,MC_sequential,0.038,24,thermal, +10213__GEN6,10213__GEN6,1,1,MC_sequential,0.038,24,thermal, +10213__GEN7,10213__GEN7,1,1,MC_sequential,0.038,24,thermal, +10213__GEN8,10213__GEN8,1,1,MC_sequential,0.038,24,thermal, +10215__1138,10215__1138,1,1,MC_sequential,0.04,24,thermal, +10215__1258,10215__1258,1,1,MC_sequential,0.04,24,thermal, +10215__1260,10215__1260,1,1,MC_sequential,0.04,24,thermal, +10287__GEN1,10287__GEN1,1,1,MC_sequential,0.035,30,thermal, +10287__GEN2,10287__GEN2,1,1,MC_sequential,0.035,30,thermal, +10294__GTG,10294__GTG,1,1,MC_sequential,0.038,24,thermal, +10294__STG,10294__STG,1,1,MC_sequential,0.038,24,thermal, +10300__GEN1,10300__GEN1,1,1,MC_sequential,0.05,40,thermal, +10339__GEN1,10339__GEN1,1,1,MC_sequential,0.04,24,thermal, +10339__GEN2,10339__GEN2,1,1,MC_sequential,0.045,36,thermal, +10339__GEN3,10339__GEN3,1,1,MC_sequential,0.045,36,thermal, +10339__GEN4,10339__GEN4,1,1,MC_sequential,0.04,24,thermal, +10342__TG1,10342__TG1,1,1,MC_sequential,0.038,24,thermal, +10342__TG2,10342__TG2,1,1,MC_sequential,0.038,24,thermal, +10342__TG3,10342__TG3,1,1,MC_sequential,0.038,24,thermal, +10349__GEN1,10349__GEN1,1,1,MC_sequential,0.023,50,thermal, +10350__CTGA,10350__CTGA,1,1,MC_sequential,0.023,50,thermal, +10350__CTGB,10350__CTGB,1,1,MC_sequential,0.023,50,thermal, +10387__1A,10387__1A,1,1,MC_sequential,0.045,36,thermal, +10387__2A,10387__2A,1,1,MC_sequential,0.045,36,thermal, +10387__3,10387__3,1,1,MC_sequential,0.045,36,thermal, +10405__GEN1,10405__GEN1,1,1,MC_sequential,0.038,24,thermal, +10405__GEN2,10405__GEN2,1,1,MC_sequential,0.038,24,thermal, +10427__GEN2,10427__GEN2,1,1,MC_sequential,0.023,50,thermal, +10427__GEN3,10427__GEN3,1,1,MC_sequential,0.023,50,thermal, +10446__GEN1,10446__GEN1,1,1,MC_sequential,0.035,24,thermal, +10472__GEN1,10472__GEN1,1,1,MC_sequential,0.045,36,thermal, +10479__T101,10479__T101,1,1,MC_sequential,0.035,30,thermal, +10479__T102,10479__T102,1,1,MC_sequential,0.035,30,thermal, +10479__T103,10479__T103,1,1,MC_sequential,0.035,30,thermal, +10480__GEN1,10480__GEN1,1,1,MC_sequential,0.035,30,thermal, +10480__GEN2,10480__GEN2,1,1,MC_sequential,0.035,30,thermal, +10481__1,10481__1,1,1,MC_sequential,0.035,30,thermal, +10481__2,10481__2,1,1,MC_sequential,0.035,30,thermal, +10481__3,10481__3,1,1,MC_sequential,0.035,30,thermal, +10496__GTAG,10496__GTAG,1,1,MC_sequential,0.023,50,thermal, +10496__GTBG,10496__GTBG,1,1,MC_sequential,0.023,50,thermal, +10496__GTCG,10496__GTCG,1,1,MC_sequential,0.023,50,thermal, +10496__GTDG,10496__GTDG,1,1,MC_sequential,0.023,50,thermal, +10504__2500,10504__2500,1,1,MC_sequential,0.045,30,thermal, +10504__4000,10504__4000,1,1,MC_sequential,0.045,30,thermal, +10548__GEN1,10548__GEN1,1,1,MC_sequential,0.023,50,thermal, +10623__GEN1,10623__GEN1,1,1,MC_sequential,0.038,24,thermal, +10623__GEN2,10623__GEN2,1,1,MC_sequential,0.038,24,thermal, +10631__GEN1,10631__GEN1,1,1,MC_sequential,0.035,30,thermal, +10632__GEN1,10632__GEN1,1,1,MC_sequential,0.035,30,thermal, +10634__GEN1,10634__GEN1,1,1,MC_sequential,0.035,30,thermal, +10649__GEN1,10649__GEN1,1,1,MC_sequential,0.023,50,thermal, +10650__GEN1,10650__GEN1,1,1,MC_sequential,0.023,50,thermal, +10652__GEN1,10652__GEN1,1,1,MC_sequential,0.05,40,thermal, +10661__GEN5,10661__GEN5,1,1,MC_sequential,0.05,40,thermal, +10682__GT1,10682__GT1,1,1,MC_sequential,0.038,24,thermal, +10682__GT2,10682__GT2,1,1,MC_sequential,0.023,50,thermal, +10682__GT3,10682__GT3,1,1,MC_sequential,0.038,24,thermal, +10682__GT4,10682__GT4,1,1,MC_sequential,0.038,24,thermal, +10682__GT5,10682__GT5,1,1,MC_sequential,0.038,24,thermal, +10682__ST1,10682__ST1,1,1,MC_sequential,0.038,24,thermal, +10682__ST2,10682__ST2,1,1,MC_sequential,0.038,24,thermal, +10682__ST4,10682__ST4,1,1,MC_sequential,0.038,24,thermal, +10684__TG8,10684__TG8,1,1,MC_sequential,0.065,60,thermal, +10684__TG9,10684__TG9,1,1,MC_sequential,0.065,60,thermal, +10720__287,10720__287,1,1,MC_sequential,0.04,24,thermal, +10720__333,10720__333,1,1,MC_sequential,0.04,24,thermal, +10748__U1C06,10748__U1C06,1,1,MC_sequential,0.045,36,thermal, +10748__U2J18,10748__U2J18,1,1,MC_sequential,0.045,36,thermal, +10748__U3J17,10748__U3J17,1,1,MC_sequential,0.045,36,thermal, +10748__U4J16,10748__U4J16,1,1,MC_sequential,0.045,36,thermal, +10759__GEN1,10759__GEN1,1,1,MC_sequential,0.035,30,thermal, +10761__GEN1,10761__GEN1,1,1,MC_sequential,0.038,24,thermal, +10761__GEN2,10761__GEN2,1,1,MC_sequential,0.038,24,thermal, +10761__GEN3,10761__GEN3,1,1,MC_sequential,0.038,24,thermal, +10761__GEN4,10761__GEN4,1,1,MC_sequential,0.038,24,thermal, +10761__GEN5,10761__GEN5,1,1,MC_sequential,0.038,24,thermal, +10761__GEN6,10761__GEN6,1,1,MC_sequential,0.038,24,thermal, +10761__GEN7,10761__GEN7,1,1,MC_sequential,0.038,24,thermal, +10761__GEN8,10761__GEN8,1,1,MC_sequential,0.038,24,thermal, +10763__GBU,10763__GBU,1,1,MC_sequential,0.035,30,thermal, +10763__OE301,10763__OE301,1,1,MC_sequential,0.035,30,thermal, +10767__GEN1,10767__GEN1,1,1,MC_sequential,0.05,40,thermal, +10772__GEN1,10772__GEN1,1,1,MC_sequential,0.05,40,thermal, +10776__GTG,10776__GTG,1,1,MC_sequential,0.023,50,thermal, +10777__GEN1,10777__GEN1,1,1,MC_sequential,0.05,40,thermal, +10784__GEN1,10784__GEN1,1,1,MC_sequential,0.065,60,thermal, +10836__GEN1,10836__GEN1,1,1,MC_sequential,0.05,40,thermal, +10869__GE,10869__GE,1,1,MC_sequential,0.05,40,thermal, +10869__GE_2,10869__GE_2,1,1,MC_sequential,0.05,40,thermal, +10873__GEN1,10873__GEN1,1,1,MC_sequential,0.035,30,thermal, +10873__GEN2,10873__GEN2,1,1,MC_sequential,0.035,30,thermal, +10873__GEN3,10873__GEN3,1,1,MC_sequential,0.035,30,thermal, +10874__GEN4,10874__GEN4,1,1,MC_sequential,0.035,30,thermal, +10874__GEN5,10874__GEN5,1,1,MC_sequential,0.035,30,thermal, +10874__GEN6,10874__GEN6,1,1,MC_sequential,0.035,30,thermal, +10875__GEN7,10875__GEN7,1,1,MC_sequential,0.035,30,thermal, +10875__GEN8,10875__GEN8,1,1,MC_sequential,0.035,30,thermal, +10875__GEN9,10875__GEN9,1,1,MC_sequential,0.035,30,thermal, +10878__EE11,10878__EE11,1,1,MC_sequential,0.035,30,thermal, +10879__GEN1,10879__GEN1,1,1,MC_sequential,0.035,30,thermal, +10879__GEN2,10879__GEN2,1,1,MC_sequential,0.035,30,thermal, +10879__GEN3,10879__GEN3,1,1,MC_sequential,0.035,30,thermal, +10884__CTC1,10884__CTC1,1,1,MC_sequential,0.023,50,thermal, +10884__CTC2,10884__CTC2,1,1,MC_sequential,0.023,50,thermal, +50003__GEN1,50003__GEN1,1,1,MC_sequential,0.023,50,thermal, +50049__GEN1,50049__GEN1,1,1,MC_sequential,0.05,40,thermal, +50049__GEN2,50049__GEN2,1,1,MC_sequential,0.05,40,thermal, +50061__GEN2,50061__GEN2,1,1,MC_sequential,0.038,24,thermal, +50061__GEN3,50061__GEN3,1,1,MC_sequential,0.038,24,thermal, +50061__GEN4,50061__GEN4,1,1,MC_sequential,0.038,24,thermal, +50064__18027,50064__18027,1,1,Derate,0.02,36,thermal, +50064__3,50064__3,1,1,MC_sequential,0.023,50,thermal, +50066__UNT1,50066__UNT1,1,1,MC_sequential,0.035,30,thermal, +50066__UNT2,50066__UNT2,1,1,MC_sequential,0.035,30,thermal, +50099__GEN1,50099__GEN1,1,1,MC_sequential,0.05,40,thermal, +50110__GEN1,50110__GEN1,1,1,MC_sequential,0.05,40,thermal, +50112__GEN3,50112__GEN3,1,1,MC_sequential,0.05,40,thermal, +50115__GEN1,50115__GEN1,1,1,MC_sequential,0.023,50,thermal, +50119__GENA,50119__GENA,1,1,MC_sequential,0.023,50,thermal, +50119__GENB,50119__GENB,1,1,MC_sequential,0.023,50,thermal, +50119__GENC,50119__GENC,1,1,MC_sequential,0.023,50,thermal, +50134__GTAG,50134__GTAG,1,1,MC_sequential,0.023,50,thermal, +50134__GTBG,50134__GTBG,1,1,MC_sequential,0.023,50,thermal, +50134__GTCG,50134__GTCG,1,1,MC_sequential,0.023,50,thermal, +50134__GTDG,50134__GTDG,1,1,MC_sequential,0.023,50,thermal, +50170__GEN1,50170__GEN1,1,1,MC_sequential,0.023,50,thermal, +50187__TG1,50187__TG1,1,1,MC_sequential,0.05,40,thermal, +50187__TG2,50187__TG2,1,1,MC_sequential,0.05,40,thermal, +50187__TG4,50187__TG4,1,1,MC_sequential,0.05,40,thermal, +50187__TG5,50187__TG5,1,1,MC_sequential,0.05,40,thermal, +50191__TG4,50191__TG4,1,1,MC_sequential,0.05,40,thermal, +50200__GEN1,50200__GEN1,1,1,MC_sequential,0.023,50,thermal, +50200__GEN2,50200__GEN2,1,1,MC_sequential,0.023,50,thermal, +50205__7101,50205__7101,1,1,MC_sequential,0.03,24,thermal, +50210__GEN1,50210__GEN1,1,1,MC_sequential,0.035,30,thermal, +50210__GEN2,50210__GEN2,1,1,MC_sequential,0.035,30,thermal, +50216__GN91,50216__GN91,1,1,MC_sequential,0.038,24,thermal, +50216__GN92,50216__GN92,1,1,MC_sequential,0.038,24,thermal, +50216__GN93,50216__GN93,1,1,MC_sequential,0.038,24,thermal, +50216__GN94,50216__GN94,1,1,MC_sequential,0.038,24,thermal, +50216__GN95,50216__GN95,1,1,MC_sequential,0.038,24,thermal, +50216__GN96,50216__GN96,1,1,MC_sequential,0.038,24,thermal, +50224__7610,50224__7610,1,1,MC_sequential,0.045,36,thermal, +50224__7710,50224__7710,1,1,MC_sequential,0.045,36,thermal, +50224__7810,50224__7810,1,1,MC_sequential,0.045,36,thermal, +50234__2074,50234__2074,1,1,MC_sequential,0.04,24,thermal, +50234__2075,50234__2075,1,1,MC_sequential,0.04,24,thermal, +50234__2076,50234__2076,1,1,MC_sequential,0.04,24,thermal, +50241__9541,50241__9541,1,1,MC_sequential,0.04,24,thermal, +50241__9542,50241__9542,1,1,MC_sequential,0.04,24,thermal, +50274__GEN1,50274__GEN1,1,1,MC_sequential,0.03,24,thermal, +50293__GEN1,50293__GEN1,1,1,MC_sequential,0.05,40,thermal, +50299__GEN1,50299__GEN1,1,1,MC_sequential,0.023,50,thermal, +50300__BESS1,50300__BESS1,1,1,Derate,0.02,36,thermal, +50300__BESS2,50300__BESS2,1,1,Derate,0.02,36,thermal, +50329__4,50329__4,1,1,MC_sequential,0.045,36,thermal, +50329__5,50329__5,1,1,MC_sequential,0.045,36,thermal, +50396__GEN1,50396__GEN1,1,1,MC_sequential,0.05,40,thermal, +50396__GEN2,50396__GEN2,1,1,MC_sequential,0.05,40,thermal, +50396__GEN3,50396__GEN3,1,1,MC_sequential,0.05,40,thermal, +50396__GEN4,50396__GEN4,1,1,MC_sequential,0.05,40,thermal, +50396__GEN5,50396__GEN5,1,1,MC_sequential,0.05,40,thermal, +50464__GEN1,50464__GEN1,1,1,MC_sequential,0.023,50,thermal, +50464__GEN2,50464__GEN2,1,1,MC_sequential,0.023,50,thermal, +50492__1,50492__1,1,1,MC_sequential,0.045,36,thermal, +50492__2,50492__2,1,1,MC_sequential,0.045,36,thermal, +50493__DC1,50493__DC1,1,1,MC_sequential,0.023,50,thermal, +50493__DC2,50493__DC2,1,1,MC_sequential,0.023,50,thermal, +50494__KF1,50494__KF1,1,1,MC_sequential,0.023,50,thermal, +50494__KF2,50494__KF2,1,1,MC_sequential,0.023,50,thermal, +50495__HS1,50495__HS1,1,1,MC_sequential,0.023,50,thermal, +50495__HS2,50495__HS2,1,1,MC_sequential,0.023,50,thermal, +50530__GEN1,50530__GEN1,1,1,MC_sequential,0.023,50,thermal, +50530__GEN2,50530__GEN2,1,1,MC_sequential,0.023,50,thermal, +50530__GEN3,50530__GEN3,1,1,MC_sequential,0.04,36,thermal, +50537__GEN1,50537__GEN1,1,1,MC_sequential,0.023,50,thermal, +50541__GEN1,50541__GEN1,1,1,MC_sequential,0.038,24,thermal, +50541__ST1,50541__ST1,1,1,MC_sequential,0.038,24,thermal, +50541__ST2,50541__ST2,1,1,MC_sequential,0.038,24,thermal, +50544__GEN6,50544__GEN6,1,1,MC_sequential,0.05,40,thermal, +50560__GEN1,50560__GEN1,1,1,MC_sequential,0.05,40,thermal, +50571__GEN1,50571__GEN1,1,1,MC_sequential,0.045,36,thermal, +50571__GEN2,50571__GEN2,1,1,MC_sequential,0.045,36,thermal, +50610__1,50610__1,1,1,MC_sequential,0.023,50,thermal, +50612__GEN1,50612__GEN1,1,1,MC_sequential,0.023,50,thermal, +50622__GEN1,50622__GEN1,1,1,MC_sequential,0.023,50,thermal, +50622__GEN2,50622__GEN2,1,1,MC_sequential,0.023,50,thermal, +50624__EXP1,50624__EXP1,1,1,MC_sequential,0.03,24,thermal, +50624__GTG1,50624__GTG1,1,1,MC_sequential,0.023,50,thermal, +50624__STG1,50624__STG1,1,1,MC_sequential,0.03,24,thermal, +50630__GEN1,50630__GEN1,1,1,MC_sequential,0.05,40,thermal, +50632__GEN1,50632__GEN1,1,1,MC_sequential,0.05,40,thermal, +50637__GEN3,50637__GEN3,1,1,MC_sequential,0.05,40,thermal, +50637__GEN4,50637__GEN4,1,1,MC_sequential,0.05,40,thermal, +50654__OEC51,50654__OEC51,1,1,MC_sequential,0.035,30,thermal, +50654__OEC52,50654__OEC52,1,1,MC_sequential,0.035,30,thermal, +50674__GEN1A,50674__GEN1A,1,1,MC_sequential,0.04,24,thermal, +50696__GEN1,50696__GEN1,1,1,MC_sequential,0.045,36,thermal, +50696__GEN2,50696__GEN2,1,1,MC_sequential,0.045,36,thermal, +50696__GEN3,50696__GEN3,1,1,MC_sequential,0.045,36,thermal, +50707__LMA,50707__LMA,1,1,MC_sequential,0.038,24,thermal, +50707__LMB,50707__LMB,1,1,MC_sequential,0.038,24,thermal, +50707__LMC,50707__LMC,1,1,MC_sequential,0.038,24,thermal, +50707__LMD,50707__LMD,1,1,MC_sequential,0.038,24,thermal, +50707__LME,50707__LME,1,1,MC_sequential,0.038,24,thermal, +50707__STA,50707__STA,1,1,MC_sequential,0.038,24,thermal, +50707__STB,50707__STB,1,1,MC_sequential,0.038,24,thermal, +50748__GEN1,50748__GEN1,1,1,MC_sequential,0.038,24,thermal, +50748__GEN2,50748__GEN2,1,1,MC_sequential,0.038,24,thermal, +50750__GEN1,50750__GEN1,1,1,MC_sequential,0.023,50,thermal, +50750__GEN2,50750__GEN2,1,1,MC_sequential,0.023,50,thermal, +50751__GTG1,50751__GTG1,1,1,MC_sequential,0.023,50,thermal, +50752__GEN1,50752__GEN1,1,1,MC_sequential,0.023,50,thermal, +50752__GEN2,50752__GEN2,1,1,MC_sequential,0.023,50,thermal, +50752__GEN3,50752__GEN3,1,1,MC_sequential,0.023,50,thermal, +50765__1_1,50765__1_1,1,1,MC_sequential,0.035,30,thermal, +50765__1_2,50765__1_2,1,1,MC_sequential,0.035,30,thermal, +50765__2_1,50765__2_1,1,1,MC_sequential,0.035,30,thermal, +50765__2_2,50765__2_2,1,1,MC_sequential,0.035,30,thermal, +50766__ITLU1,50766__ITLU1,1,1,MC_sequential,0.035,30,thermal, +50766__ITLU2,50766__ITLU2,1,1,MC_sequential,0.035,30,thermal, +50766__OE31,50766__OE31,1,1,MC_sequential,0.035,30,thermal, +50766__OE32,50766__OE32,1,1,MC_sequential,0.035,30,thermal, +50831__GEN1,50831__GEN1,1,1,MC_sequential,0.045,36,thermal, +50831__GEN2,50831__GEN2,1,1,MC_sequential,0.045,36,thermal, +50831__GEN3,50831__GEN3,1,1,MC_sequential,0.045,36,thermal, +50849__GEN1,50849__GEN1,1,1,MC_sequential,0.038,24,thermal, +50849__GEN2,50849__GEN2,1,1,MC_sequential,0.038,24,thermal, +50850__GEN1,50850__GEN1,1,1,MC_sequential,0.038,24,thermal, +50850__GEN2,50850__GEN2,1,1,MC_sequential,0.038,24,thermal, +50851__GEN1,50851__GEN1,1,1,MC_sequential,0.038,24,thermal, +50851__GEN2,50851__GEN2,1,1,MC_sequential,0.038,24,thermal, +50865__K100,50865__K100,1,1,MC_sequential,0.023,50,thermal, +50881__GEN1,50881__GEN1,1,1,MC_sequential,0.05,40,thermal, +50881__GEN2,50881__GEN2,1,1,MC_sequential,0.05,40,thermal, +50881__GEN3,50881__GEN3,1,1,MC_sequential,0.05,40,thermal, +50886__GEN1,50886__GEN1,1,1,MC_sequential,0.05,40,thermal, +50906__3,50906__3,1,1,MC_sequential,0.023,50,thermal, +50906__4,50906__4,1,1,MC_sequential,0.03,24,thermal, +50906__5,50906__5,1,1,MC_sequential,0.023,50,thermal, +50931__GEN1,50931__GEN1,1,1,MC_sequential,0.065,60,thermal, +50951__GEN1,50951__GEN1,1,1,MC_sequential,0.065,60,thermal, +50963__4TG,50963__4TG,1,1,MC_sequential,0.023,50,thermal, +50964__IND,50964__IND,1,1,MC_sequential,0.035,30,thermal, +50964__SYN,50964__SYN,1,1,MC_sequential,0.035,30,thermal, +50985__3163,50985__3163,1,1,MC_sequential,0.04,24,thermal, +50985__3164,50985__3164,1,1,MC_sequential,0.04,24,thermal, +50985__3165,50985__3165,1,1,MC_sequential,0.04,24,thermal, +52015__GEN1,52015__GEN1,1,1,MC_sequential,0.035,30,thermal, +52015__GEN2,52015__GEN2,1,1,MC_sequential,0.035,30,thermal, +52063__GEN1,52063__GEN1,1,1,MC_sequential,0.03,24,thermal, +52064__GEN1,52064__GEN1,1,1,MC_sequential,0.03,24,thermal, +52073__GEN1,52073__GEN1,1,1,MC_sequential,0.038,24,thermal, +52073__GEN2,52073__GEN2,1,1,MC_sequential,0.038,24,thermal, +52073__GEN3,52073__GEN3,1,1,MC_sequential,0.038,24,thermal, +52076__UNIT1,52076__UNIT1,1,1,MC_sequential,0.023,50,thermal, +52076__UNIT2,52076__UNIT2,1,1,MC_sequential,0.023,50,thermal, +52077__GEN5,52077__GEN5,1,1,MC_sequential,0.023,50,thermal, +52077__GEN6,52077__GEN6,1,1,MC_sequential,0.023,50,thermal, +52081__TG1,52081__TG1,1,1,MC_sequential,0.023,50,thermal, +52081__TG2,52081__TG2,1,1,MC_sequential,0.023,50,thermal, +52082__TG1,52082__TG1,1,1,MC_sequential,0.023,50,thermal, +52082__TG2,52082__TG2,1,1,MC_sequential,0.023,50,thermal, +52085__TG1,52085__TG1,1,1,MC_sequential,0.023,50,thermal, +52085__TG2,52085__TG2,1,1,MC_sequential,0.023,50,thermal, +52085__TG3,52085__TG3,1,1,MC_sequential,0.023,50,thermal, +52085__TG4,52085__TG4,1,1,MC_sequential,0.023,50,thermal, +52086__TG1,52086__TG1,1,1,MC_sequential,0.023,50,thermal, +52086__TG2,52086__TG2,1,1,MC_sequential,0.023,50,thermal, +52086__TG3,52086__TG3,1,1,MC_sequential,0.023,50,thermal, +52086__TG4,52086__TG4,1,1,MC_sequential,0.023,50,thermal, +52096__GEN1,52096__GEN1,1,1,MC_sequential,0.023,50,thermal, +52096__GEN2,52096__GEN2,1,1,MC_sequential,0.023,50,thermal, +52099__GEN1,52099__GEN1,1,1,MC_sequential,0.045,36,thermal, +52099__GEN2,52099__GEN2,1,1,MC_sequential,0.045,36,thermal, +52099__GEN3,52099__GEN3,1,1,MC_sequential,0.045,36,thermal, +52099__GEN4,52099__GEN4,1,1,MC_sequential,0.045,36,thermal, +52099__GEN5,52099__GEN5,1,1,MC_sequential,0.045,36,thermal, +52099__GEN6,52099__GEN6,1,1,MC_sequential,0.04,36,thermal, +52104__GEN1,52104__GEN1,1,1,MC_sequential,0.023,50,thermal, +52104__GEN2,52104__GEN2,1,1,MC_sequential,0.023,50,thermal, +52104__GEN3,52104__GEN3,1,1,MC_sequential,0.023,50,thermal, +52104__GEN4,52104__GEN4,1,1,MC_sequential,0.023,50,thermal, +52107__101A,52107__101A,1,1,MC_sequential,0.023,50,thermal, +52107__101B,52107__101B,1,1,MC_sequential,0.023,50,thermal, +52109__GEN1,52109__GEN1,1,1,MC_sequential,0.038,24,thermal, +52109__GEN2,52109__GEN2,1,1,MC_sequential,0.038,24,thermal, +52109__GEN5,52109__GEN5,1,1,MC_sequential,0.038,24,thermal, +52109__GEN6,52109__GEN6,1,1,MC_sequential,0.03,24,thermal, +52127__GEN2,52127__GEN2,1,1,MC_sequential,0.04,36,thermal, +52147__GEN1,52147__GEN1,1,1,MC_sequential,0.023,50,thermal, +52147__GEN2,52147__GEN2,1,1,MC_sequential,0.023,50,thermal, +52158__GEN1,52158__GEN1,1,1,MC_sequential,0.035,30,thermal, +52158__GEN2,52158__GEN2,1,1,MC_sequential,0.035,30,thermal, +52169__A,52169__A,1,1,MC_sequential,0.023,50,thermal, +52169__B,52169__B,1,1,MC_sequential,0.023,50,thermal, +52169__C,52169__C,1,1,MC_sequential,0.023,50,thermal, +52186__GEN1,52186__GEN1,1,1,MC_sequential,0.023,50,thermal, +54015__GEN2,54015__GEN2,1,1,MC_sequential,0.045,36,thermal, +54111__GE13,54111__GE13,1,1,MC_sequential,0.035,30,thermal, +54111__GEN14,54111__GEN14,1,1,MC_sequential,0.035,30,thermal, +54111__OEC1,54111__OEC1,1,1,MC_sequential,0.035,30,thermal, +54111__OEC2,54111__OEC2,1,1,MC_sequential,0.035,30,thermal, +54238__STG,54238__STG,1,1,MC_sequential,0.05,40,thermal, +54268__GTG1,54268__GTG1,1,1,MC_sequential,0.023,50,thermal, +54268__GTG2,54268__GTG2,1,1,MC_sequential,0.023,50,thermal, +54268__GTG3,54268__GTG3,1,1,MC_sequential,0.023,50,thermal, +54271__CTG1,54271__CTG1,1,1,MC_sequential,0.038,24,thermal, +54271__CTG2,54271__CTG2,1,1,MC_sequential,0.038,24,thermal, +54271__STG,54271__STG,1,1,MC_sequential,0.038,24,thermal, +54296__BATT,54296__BATT,1,1,Derate,0.02,36,thermal, +54296__EG_1H,54296__EG_1H,1,1,MC_sequential,0.04,24,thermal, +54296__EG_2H,54296__EG_2H,1,1,MC_sequential,0.04,24,thermal, +54296__EG3,54296__EG3,1,1,MC_sequential,0.04,24,thermal, +54318__TG1,54318__TG1,1,1,MC_sequential,0.065,60,thermal, +54318__TG2,54318__TG2,1,1,MC_sequential,0.065,60,thermal, +54327__TOY7,54327__TOY7,1,1,MC_sequential,0.045,36,thermal, +54349__GTA,54349__GTA,1,1,MC_sequential,0.038,24,thermal, +54349__GTB,54349__GTB,1,1,MC_sequential,0.038,24,thermal, +54349__GTC,54349__GTC,1,1,MC_sequential,0.038,24,thermal, +54349__STM,54349__STM,1,1,MC_sequential,0.038,24,thermal, +54350__GTA,54350__GTA,1,1,MC_sequential,0.038,24,thermal, +54350__GTB,54350__GTB,1,1,MC_sequential,0.038,24,thermal, +54350__GTC,54350__GTC,1,1,MC_sequential,0.038,24,thermal, +54350__STM,54350__STM,1,1,MC_sequential,0.038,24,thermal, +54372__GT1,54372__GT1,1,1,MC_sequential,0.038,24,thermal, +54372__GT2,54372__GT2,1,1,MC_sequential,0.038,24,thermal, +54372__ST1,54372__ST1,1,1,MC_sequential,0.038,24,thermal, +54374__NO2,54374__NO2,1,1,MC_sequential,0.04,36,thermal, +54374__NO7,54374__NO7,1,1,MC_sequential,0.04,24,thermal, +54410__CTG,54410__CTG,1,1,MC_sequential,0.023,50,thermal, +54447__TI,54447__TI,1,1,MC_sequential,0.023,50,thermal, +54449__T1,54449__T1,1,1,MC_sequential,0.023,50,thermal, +54449__T2,54449__T2,1,1,MC_sequential,0.023,50,thermal, +54451__G2,54451__G2,1,1,MC_sequential,0.023,50,thermal, +54472__GEN1,54472__GEN1,1,1,MC_sequential,0.03,24,thermal, +54476__GEN1,54476__GEN1,1,1,MC_sequential,0.038,24,thermal, +54476__GEN2,54476__GEN2,1,1,MC_sequential,0.038,24,thermal, +54517__GEN3,54517__GEN3,1,1,MC_sequential,0.05,40,thermal, +54537__CT1A,54537__CT1A,1,1,MC_sequential,0.038,24,thermal, +54537__CT1B,54537__CT1B,1,1,MC_sequential,0.038,24,thermal, +54537__ST1,54537__ST1,1,1,MC_sequential,0.038,24,thermal, +54562__6,54562__6,1,1,MC_sequential,0.05,40,thermal, +54562__7,54562__7,1,1,MC_sequential,0.05,40,thermal, +54567__1,54567__1,1,1,MC_sequential,0.045,36,thermal, +54567__2,54567__2,1,1,MC_sequential,0.045,36,thermal, +54567__3,54567__3,1,1,MC_sequential,0.045,36,thermal, +54567__4,54567__4,1,1,MC_sequential,0.045,36,thermal, +54567__5,54567__5,1,1,MC_sequential,0.045,36,thermal, +54626__TG01,54626__TG01,1,1,MC_sequential,0.05,40,thermal, +54628__3001,54628__3001,1,1,MC_sequential,0.023,50,thermal, +54628__3002,54628__3002,1,1,MC_sequential,0.023,50,thermal, +54628__3003,54628__3003,1,1,MC_sequential,0.023,50,thermal, +54630__T_1,54630__T_1,1,1,MC_sequential,0.023,50,thermal, +54630__T_2,54630__T_2,1,1,MC_sequential,0.023,50,thermal, +54665__T201,54665__T201,1,1,MC_sequential,0.035,30,thermal, +54665__T202,54665__T202,1,1,MC_sequential,0.035,30,thermal, +54666__T301,54666__T301,1,1,MC_sequential,0.035,30,thermal, +54666__T302,54666__T302,1,1,MC_sequential,0.035,30,thermal, +54689__3,54689__3,1,1,MC_sequential,0.035,30,thermal, +54689__4,54689__4,1,1,MC_sequential,0.035,30,thermal, +54689__OEC1,54689__OEC1,1,1,MC_sequential,0.035,30,thermal, +54689__OEC11,54689__OEC11,1,1,MC_sequential,0.035,30,thermal, +54689__OEC2,54689__OEC2,1,1,MC_sequential,0.035,30,thermal, +54690__2250,54690__2250,1,1,MC_sequential,0.045,30,thermal, +54690__6500,54690__6500,1,1,MC_sequential,0.045,30,thermal, +54694__GEN1,54694__GEN1,1,1,MC_sequential,0.038,24,thermal, +54694__GEN2,54694__GEN2,1,1,MC_sequential,0.038,24,thermal, +54724__OEC21,54724__OEC21,1,1,MC_sequential,0.035,30,thermal, +54724__OEC22,54724__OEC22,1,1,MC_sequential,0.035,30,thermal, +54749__CTG,54749__CTG,1,1,MC_sequential,0.038,24,thermal, +54749__STG,54749__STG,1,1,MC_sequential,0.038,24,thermal, +54761__GEN1,54761__GEN1,1,1,MC_sequential,0.038,24,thermal, +54761__GEN2,54761__GEN2,1,1,MC_sequential,0.038,24,thermal, +54761__GEN3,54761__GEN3,1,1,MC_sequential,0.038,24,thermal, +54761__GEN4,54761__GEN4,1,1,MC_sequential,0.038,24,thermal, +54768__GEN1,54768__GEN1,1,1,MC_sequential,0.023,50,thermal, +54800__9911,54800__9911,1,1,MC_sequential,0.023,50,thermal, +54800__9929,54800__9929,1,1,MC_sequential,0.023,50,thermal, +54809__TG3,54809__TG3,1,1,MC_sequential,0.045,30,thermal, +54912__GTG1,54912__GTG1,1,1,MC_sequential,0.038,24,thermal, +54912__GTG2,54912__GTG2,1,1,MC_sequential,0.038,24,thermal, +54912__STG1,54912__STG1,1,1,MC_sequential,0.04,36,thermal, +54951__EG1,54951__EG1,1,1,MC_sequential,0.045,36,thermal, +54951__EG2,54951__EG2,1,1,MC_sequential,0.045,36,thermal, +54951__EG3,54951__EG3,1,1,MC_sequential,0.045,36,thermal, +54975__1,54975__1,1,1,MC_sequential,0.023,50,thermal, +54996__4100,54996__4100,1,1,MC_sequential,0.035,30,thermal, +55039__GT1,55039__GT1,1,1,MC_sequential,0.023,50,thermal, +55077__ED01,55077__ED01,1,1,MC_sequential,0.038,24,thermal, +55077__ED02,55077__ED02,1,1,MC_sequential,0.038,24,thermal, +55077__ED03,55077__ED03,1,1,MC_sequential,0.038,24,thermal, +55084__GE1,55084__GE1,1,1,MC_sequential,0.038,24,thermal, +55094__UNT1,55094__UNT1,1,1,MC_sequential,0.045,36,thermal, +55094__UNT2,55094__UNT2,1,1,MC_sequential,0.045,36,thermal, +55094__UNT3,55094__UNT3,1,1,MC_sequential,0.045,36,thermal, +55094__UNT4,55094__UNT4,1,1,MC_sequential,0.045,36,thermal, +55103__CT1,55103__CT1,1,1,MC_sequential,0.038,24,thermal, +55103__CT2,55103__CT2,1,1,MC_sequential,0.038,24,thermal, +55103__ST1,55103__ST1,1,1,MC_sequential,0.038,24,thermal, +55112__CT01,55112__CT01,1,1,MC_sequential,0.038,24,thermal, +55112__CT02,55112__CT02,1,1,MC_sequential,0.038,24,thermal, +55112__ST01,55112__ST01,1,1,MC_sequential,0.038,24,thermal, +55124__CTG1,55124__CTG1,1,1,MC_sequential,0.038,24,thermal, +55124__CTG2,55124__CTG2,1,1,MC_sequential,0.038,24,thermal, +55124__STG,55124__STG,1,1,MC_sequential,0.038,24,thermal, +55127__UN1,55127__UN1,1,1,MC_sequential,0.023,50,thermal, +55127__UN2,55127__UN2,1,1,MC_sequential,0.023,50,thermal, +55129__CTG2,55129__CTG2,1,1,MC_sequential,0.038,24,thermal, +55129__CTG4,55129__CTG4,1,1,MC_sequential,0.023,50,thermal, +55129__CTG5,55129__CTG5,1,1,MC_sequential,0.023,50,thermal, +55151__GEN1,55151__GEN1,1,1,MC_sequential,0.038,24,thermal, +55151__GEN2,55151__GEN2,1,1,MC_sequential,0.038,24,thermal, +55151__GEN3,55151__GEN3,1,1,MC_sequential,0.038,24,thermal, +55151__GEN4,55151__GEN4,1,1,MC_sequential,0.038,24,thermal, +55161__UNT1,55161__UNT1,1,1,MC_sequential,0.045,36,thermal, +55177__A,55177__A,1,1,MC_sequential,0.038,24,thermal, +55177__B,55177__B,1,1,MC_sequential,0.038,24,thermal, +55177__ST1,55177__ST1,1,1,MC_sequential,0.038,24,thermal, +55179__CTG1,55179__CTG1,1,1,MC_sequential,0.038,24,thermal, +55179__STG1,55179__STG1,1,1,MC_sequential,0.038,24,thermal, +55182__STG,55182__STG,1,1,MC_sequential,0.038,24,thermal, +55182__X718,55182__X718,1,1,MC_sequential,0.038,24,thermal, +55182__X719,55182__X719,1,1,MC_sequential,0.038,24,thermal, +55184__UN_B,55184__UN_B,1,1,MC_sequential,0.023,50,thermal, +55200__UN5,55200__UN5,1,1,MC_sequential,0.038,24,thermal, +55200__UN6,55200__UN6,1,1,MC_sequential,0.038,24,thermal, +55200__UN7,55200__UN7,1,1,MC_sequential,0.038,24,thermal, +55207__UN7,55207__UN7,1,1,MC_sequential,0.023,50,thermal, +55207__UN8,55207__UN8,1,1,MC_sequential,0.023,50,thermal, +55210__1,55210__1,1,1,MC_sequential,0.038,24,thermal, +55210__2,55210__2,1,1,MC_sequential,0.038,24,thermal, +55217__CTG1,55217__CTG1,1,1,MC_sequential,0.038,24,thermal, +55217__CTG2,55217__CTG2,1,1,MC_sequential,0.038,24,thermal, +55217__STG3,55217__STG3,1,1,MC_sequential,0.038,24,thermal, +55278__STG_1,55278__STG_1,1,1,MC_sequential,0.03,24,thermal, +55278__STG_2,55278__STG_2,1,1,MC_sequential,0.03,24,thermal, +55282__CTG1,55282__CTG1,1,1,MC_sequential,0.038,24,thermal, +55282__CTG2,55282__CTG2,1,1,MC_sequential,0.038,24,thermal, +55282__STG1,55282__STG1,1,1,MC_sequential,0.038,24,thermal, +55283__1,55283__1,1,1,MC_sequential,0.038,24,thermal, +55283__2,55283__2,1,1,MC_sequential,0.038,24,thermal, +55283__3,55283__3,1,1,MC_sequential,0.038,24,thermal, +55295__CT1,55295__CT1,1,1,MC_sequential,0.038,24,thermal, +55295__CT2,55295__CT2,1,1,MC_sequential,0.038,24,thermal, +55295__ST1,55295__ST1,1,1,MC_sequential,0.038,24,thermal, +55306__CTG7,55306__CTG7,1,1,MC_sequential,0.038,24,thermal, +55306__CTG8,55306__CTG8,1,1,MC_sequential,0.038,24,thermal, +55306__ST12,55306__ST12,1,1,MC_sequential,0.038,24,thermal, +55322__CTG1,55322__CTG1,1,1,MC_sequential,0.038,24,thermal, +55322__CTG2,55322__CTG2,1,1,MC_sequential,0.038,24,thermal, +55322__CTG3,55322__CTG3,1,1,MC_sequential,0.038,24,thermal, +55322__CTG4,55322__CTG4,1,1,MC_sequential,0.038,24,thermal, +55322__ST1,55322__ST1,1,1,MC_sequential,0.038,24,thermal, +55322__ST2,55322__ST2,1,1,MC_sequential,0.038,24,thermal, +55328__CTG1,55328__CTG1,1,1,MC_sequential,0.038,24,thermal, +55328__CTG2,55328__CTG2,1,1,MC_sequential,0.038,24,thermal, +55328__STG1,55328__STG1,1,1,MC_sequential,0.038,24,thermal, +55333__CTG1,55333__CTG1,1,1,MC_sequential,0.038,24,thermal, +55333__CTG2,55333__CTG2,1,1,MC_sequential,0.038,24,thermal, +55333__CTG3,55333__CTG3,1,1,MC_sequential,0.038,24,thermal, +55333__STG1,55333__STG1,1,1,MC_sequential,0.038,24,thermal, +55343__CTG1,55343__CTG1,1,1,MC_sequential,0.038,24,thermal, +55343__CTG2,55343__CTG2,1,1,MC_sequential,0.038,24,thermal, +55343__STG1,55343__STG1,1,1,MC_sequential,0.038,24,thermal, +55345__1_01,55345__1_01,1,1,MC_sequential,0.038,24,thermal, +55345__1_02,55345__1_02,1,1,MC_sequential,0.038,24,thermal, +55345__1_03,55345__1_03,1,1,MC_sequential,0.038,24,thermal, +55372__CTG1,55372__CTG1,1,1,MC_sequential,0.038,24,thermal, +55372__CTG2,55372__CTG2,1,1,MC_sequential,0.038,24,thermal, +55372__CTG3,55372__CTG3,1,1,MC_sequential,0.038,24,thermal, +55372__STG1,55372__STG1,1,1,MC_sequential,0.038,24,thermal, +55372__STG2,55372__STG2,1,1,MC_sequential,0.038,24,thermal, +55372__STG3,55372__STG3,1,1,MC_sequential,0.038,24,thermal, +55393__CTG1,55393__CTG1,1,1,MC_sequential,0.038,24,thermal, +55393__CTG2,55393__CTG2,1,1,MC_sequential,0.038,24,thermal, +55393__STG1,55393__STG1,1,1,MC_sequential,0.038,24,thermal, +55400__CTG1,55400__CTG1,1,1,MC_sequential,0.038,24,thermal, +55400__CTG2,55400__CTG2,1,1,MC_sequential,0.038,24,thermal, +55400__STG,55400__STG,1,1,MC_sequential,0.038,24,thermal, +55453__S1,55453__S1,1,1,MC_sequential,0.023,50,thermal, +55453__S2,55453__S2,1,1,MC_sequential,0.023,50,thermal, +55453__S3,55453__S3,1,1,MC_sequential,0.023,50,thermal, +55453__S4,55453__S4,1,1,MC_sequential,0.023,50,thermal, +55453__S5,55453__S5,1,1,MC_sequential,0.023,50,thermal, +55453__S6,55453__S6,1,1,MC_sequential,0.023,50,thermal, +55455__CT1A,55455__CT1A,1,1,MC_sequential,0.038,24,thermal, +55455__CT1B,55455__CT1B,1,1,MC_sequential,0.038,24,thermal, +55455__CT2A,55455__CT2A,1,1,MC_sequential,0.038,24,thermal, +55455__CT2B,55455__CT2B,1,1,MC_sequential,0.038,24,thermal, +55455__ST1,55455__ST1,1,1,MC_sequential,0.038,24,thermal, +55455__ST2,55455__ST2,1,1,MC_sequential,0.038,24,thermal, +55477__GT2,55477__GT2,1,1,MC_sequential,0.023,50,thermal, +55478__1,55478__1,1,1,MC_sequential,0.023,50,thermal, +55479__1,55479__1,1,1,MC_sequential,0.065,60,thermal, +55481__GT3,55481__GT3,1,1,MC_sequential,0.038,24,thermal, +55481__GT4,55481__GT4,1,1,MC_sequential,0.038,24,thermal, +55481__ST2,55481__ST2,1,1,MC_sequential,0.038,24,thermal, +55482__G1,55482__G1,1,1,MC_sequential,0.038,24,thermal, +55482__G2,55482__G2,1,1,MC_sequential,0.038,24,thermal, +55499__CPP1,55499__CPP1,1,1,MC_sequential,0.023,50,thermal, +55504__L1,55504__L1,1,1,MC_sequential,0.023,50,thermal, +55504__L2,55504__L2,1,1,MC_sequential,0.023,50,thermal, +55505__BR1,55505__BR1,1,1,MC_sequential,0.023,50,thermal, +55505__BR2,55505__BR2,1,1,MC_sequential,0.023,50,thermal, +55508__CPP2,55508__CPP2,1,1,MC_sequential,0.023,50,thermal, +55510__CPP4,55510__CPP4,1,1,MC_sequential,0.023,50,thermal, +55512__CPP6,55512__CPP6,1,1,MC_sequential,0.023,50,thermal, +55513__CPP7,55513__CPP7,1,1,MC_sequential,0.023,50,thermal, +55514__CTG1,55514__CTG1,1,1,MC_sequential,0.038,24,thermal, +55514__CTG2,55514__CTG2,1,1,MC_sequential,0.038,24,thermal, +55514__STG1,55514__STG1,1,1,MC_sequential,0.038,24,thermal, +55518__CTG1,55518__CTG1,1,1,MC_sequential,0.038,24,thermal, +55518__CTG2,55518__CTG2,1,1,MC_sequential,0.038,24,thermal, +55518__CTG3,55518__CTG3,1,1,MC_sequential,0.038,24,thermal, +55518__STG1,55518__STG1,1,1,MC_sequential,0.038,24,thermal, +55522__CT1,55522__CT1,1,1,MC_sequential,0.023,50,thermal, +55522__CT10,55522__CT10,1,1,MC_sequential,0.023,50,thermal, +55522__CT2,55522__CT2,1,1,MC_sequential,0.023,50,thermal, +55522__CT3,55522__CT3,1,1,MC_sequential,0.023,50,thermal, +55522__CT4,55522__CT4,1,1,MC_sequential,0.023,50,thermal, +55522__CT5,55522__CT5,1,1,MC_sequential,0.023,50,thermal, +55522__CT6,55522__CT6,1,1,MC_sequential,0.023,50,thermal, +55522__CT7,55522__CT7,1,1,MC_sequential,0.023,50,thermal, +55522__CT8,55522__CT8,1,1,MC_sequential,0.023,50,thermal, +55522__CT9,55522__CT9,1,1,MC_sequential,0.023,50,thermal, +55538__CTG1,55538__CTG1,1,1,MC_sequential,0.023,50,thermal, +55540__GEN1,55540__GEN1,1,1,MC_sequential,0.023,50,thermal, +55541__CTG1,55541__CTG1,1,1,MC_sequential,0.023,50,thermal, +55541__CTG2,55541__CTG2,1,1,MC_sequential,0.023,50,thermal, +55541__CTG3,55541__CTG3,1,1,MC_sequential,0.023,50,thermal, +55542__CTG1,55542__CTG1,1,1,MC_sequential,0.023,50,thermal, +55542__CTG2,55542__CTG2,1,1,MC_sequential,0.023,50,thermal, +55544__GT1,55544__GT1,1,1,MC_sequential,0.023,50,thermal, +55544__GT2,55544__GT2,1,1,MC_sequential,0.023,50,thermal, +55544__GT3,55544__GT3,1,1,MC_sequential,0.023,50,thermal, +55544__GT4,55544__GT4,1,1,MC_sequential,0.023,50,thermal, +55557__T101,55557__T101,1,1,MC_sequential,0.03,24,thermal, +55622__U1,55622__U1,1,1,MC_sequential,0.023,50,thermal, +55622__U2,55622__U2,1,1,MC_sequential,0.023,50,thermal, +55622__U3,55622__U3,1,1,MC_sequential,0.023,50,thermal, +55622__U4,55622__U4,1,1,MC_sequential,0.023,50,thermal, +55622__U5,55622__U5,1,1,MC_sequential,0.023,50,thermal, +55625__CT1,55625__CT1,1,1,MC_sequential,0.023,50,thermal, +55626__CT1,55626__CT1,1,1,MC_sequential,0.023,50,thermal, +55627__CT1,55627__CT1,1,1,MC_sequential,0.023,50,thermal, +55645__CT01,55645__CT01,1,1,MC_sequential,0.023,50,thermal, +55645__CT02,55645__CT02,1,1,MC_sequential,0.023,50,thermal, +55650__GE10,55650__GE10,1,1,MC_sequential,0.04,24,thermal, +55650__GE11,55650__GE11,1,1,MC_sequential,0.04,24,thermal, +55650__GE12,55650__GE12,1,1,MC_sequential,0.04,24,thermal, +55650__GE13,55650__GE13,1,1,MC_sequential,0.04,24,thermal, +55650__GE14,55650__GE14,1,1,MC_sequential,0.04,24,thermal, +55650__GE15,55650__GE15,1,1,MC_sequential,0.04,24,thermal, +55650__GE16,55650__GE16,1,1,MC_sequential,0.04,24,thermal, +55650__GE17,55650__GE17,1,1,MC_sequential,0.04,24,thermal, +55650__GE18,55650__GE18,1,1,MC_sequential,0.04,24,thermal, +55650__GE19,55650__GE19,1,1,MC_sequential,0.04,24,thermal, +55650__GE20,55650__GE20,1,1,MC_sequential,0.04,24,thermal, +55650__GEN1,55650__GEN1,1,1,MC_sequential,0.04,24,thermal, +55650__GEN2,55650__GEN2,1,1,MC_sequential,0.04,24,thermal, +55650__GEN3,55650__GEN3,1,1,MC_sequential,0.04,24,thermal, +55650__GEN4,55650__GEN4,1,1,MC_sequential,0.04,24,thermal, +55650__GEN5,55650__GEN5,1,1,MC_sequential,0.04,24,thermal, +55650__GEN6,55650__GEN6,1,1,MC_sequential,0.04,24,thermal, +55650__GEN7,55650__GEN7,1,1,MC_sequential,0.04,24,thermal, +55650__GEN8,55650__GEN8,1,1,MC_sequential,0.04,24,thermal, +55650__GEN9,55650__GEN9,1,1,MC_sequential,0.04,24,thermal, +55656__CT01,55656__CT01,1,1,MC_sequential,0.038,24,thermal, +55656__CT02,55656__CT02,1,1,MC_sequential,0.038,24,thermal, +55656__CT04,55656__CT04,1,1,MC_sequential,0.038,24,thermal, +55656__ST03,55656__ST03,1,1,MC_sequential,0.038,24,thermal, +55656__ST05,55656__ST05,1,1,MC_sequential,0.038,24,thermal, +55662__CA,55662__CA,1,1,MC_sequential,0.038,24,thermal, +55662__CT1,55662__CT1,1,1,MC_sequential,0.038,24,thermal, +55662__CT2,55662__CT2,1,1,MC_sequential,0.038,24,thermal, +55687__A01,55687__A01,1,1,MC_sequential,0.038,24,thermal, +55687__A02,55687__A02,1,1,MC_sequential,0.038,24,thermal, +55687__ST1,55687__ST1,1,1,MC_sequential,0.038,24,thermal, +55698__HEP1,55698__HEP1,1,1,MC_sequential,0.023,50,thermal, +55698__HEP2,55698__HEP2,1,1,MC_sequential,0.023,50,thermal, +55700__1STG,55700__1STG,1,1,MC_sequential,0.038,24,thermal, +55700__CTG1,55700__CTG1,1,1,MC_sequential,0.038,24,thermal, +55733__1,55733__1,1,1,MC_sequential,0.023,50,thermal, +55748__CAG5,55748__CAG5,1,1,MC_sequential,0.038,24,thermal, +55748__CTG1,55748__CTG1,1,1,MC_sequential,0.038,24,thermal, +55748__CTG2,55748__CTG2,1,1,MC_sequential,0.038,24,thermal, +55748__CTG3,55748__CTG3,1,1,MC_sequential,0.038,24,thermal, +55748__CTG4,55748__CTG4,1,1,MC_sequential,0.038,24,thermal, +55749__UNT1,55749__UNT1,1,1,MC_sequential,0.065,60,thermal, +55752__P_11,55752__P_11,1,1,MC_sequential,0.045,36,thermal, +55752__P_12,55752__P_12,1,1,MC_sequential,0.045,36,thermal, +55752__P_13,55752__P_13,1,1,MC_sequential,0.045,36,thermal, +55752__P_14,55752__P_14,1,1,MC_sequential,0.045,36,thermal, +55753__P_21,55753__P_21,1,1,MC_sequential,0.045,36,thermal, +55753__P_22,55753__P_22,1,1,MC_sequential,0.045,36,thermal, +55753__P_23,55753__P_23,1,1,MC_sequential,0.045,36,thermal, +55753__P_24,55753__P_24,1,1,MC_sequential,0.045,36,thermal, +55766__361A,55766__361A,1,1,MC_sequential,0.045,36,thermal, +55766__361B,55766__361B,1,1,MC_sequential,0.045,36,thermal, +55766__361C,55766__361C,1,1,MC_sequential,0.045,36,thermal, +55802__CTG1,55802__CTG1,1,1,MC_sequential,0.023,50,thermal, +55807__HPP1,55807__HPP1,1,1,MC_sequential,0.023,50,thermal, +55807__HPP2,55807__HPP2,1,1,MC_sequential,0.023,50,thermal, +55810__S3,55810__S3,1,1,MC_sequential,0.023,50,thermal, +55810__S4,55810__S4,1,1,MC_sequential,0.023,50,thermal, +55810__S5,55810__S5,1,1,MC_sequential,0.023,50,thermal, +55811__CTG1,55811__CTG1,1,1,MC_sequential,0.023,50,thermal, +55813__CTG1,55813__CTG1,1,1,MC_sequential,0.023,50,thermal, +55818__FICT,55818__FICT,1,1,MC_sequential,0.038,24,thermal, +55818__FIST,55818__FIST,1,1,MC_sequential,0.038,24,thermal, +55835__CTG1,55835__CTG1,1,1,MC_sequential,0.038,24,thermal, +55835__CTG2,55835__CTG2,1,1,MC_sequential,0.038,24,thermal, +55835__STG1,55835__STG1,1,1,MC_sequential,0.038,24,thermal, +55841__CT1,55841__CT1,1,1,MC_sequential,0.038,24,thermal, +55841__CT2,55841__CT2,1,1,MC_sequential,0.038,24,thermal, +55841__ST1,55841__ST1,1,1,MC_sequential,0.038,24,thermal, +55847__CTG1,55847__CTG1,1,1,MC_sequential,0.023,50,thermal, +55851__GT_1,55851__GT_1,1,1,MC_sequential,0.023,50,thermal, +55855__CTG1,55855__CTG1,1,1,MC_sequential,0.023,50,thermal, +55866__1,55866__1,1,1,MC_sequential,0.04,24,thermal, +55866__2,55866__2,1,1,MC_sequential,0.04,24,thermal, +55866__3,55866__3,1,1,MC_sequential,0.04,24,thermal, +55866__4,55866__4,1,1,MC_sequential,0.04,24,thermal, +55866__5,55866__5,1,1,MC_sequential,0.04,24,thermal, +55866__6,55866__6,1,1,MC_sequential,0.04,24,thermal, +55866__7,55866__7,1,1,MC_sequential,0.04,24,thermal, +55866__8,55866__8,1,1,MC_sequential,0.04,24,thermal, +55866__9,55866__9,1,1,MC_sequential,0.04,24,thermal, +55874__8,55874__8,1,1,MC_sequential,0.023,50,thermal, +55880__P_31,55880__P_31,1,1,MC_sequential,0.045,36,thermal, +55880__P_32,55880__P_32,1,1,MC_sequential,0.045,36,thermal, +55882__GEN1,55882__GEN1,1,1,MC_sequential,0.05,40,thermal, +55933__TCC1,55933__TCC1,1,1,MC_sequential,0.038,24,thermal, +55933__TPP1,55933__TPP1,1,1,MC_sequential,0.038,24,thermal, +55933__TPP2,55933__TPP2,1,1,MC_sequential,0.038,24,thermal, +55934__C1,55934__C1,1,1,MC_sequential,0.023,50,thermal, +55934__C2,55934__C2,1,1,MC_sequential,0.023,50,thermal, +55934__C3,55934__C3,1,1,MC_sequential,0.023,50,thermal, +55934__C4,55934__C4,1,1,MC_sequential,0.023,50,thermal, +55935__D1,55935__D1,1,1,MC_sequential,0.023,50,thermal, +55935__D2,55935__D2,1,1,MC_sequential,0.023,50,thermal, +55935__D3,55935__D3,1,1,MC_sequential,0.023,50,thermal, +55935__D4,55935__D4,1,1,MC_sequential,0.023,50,thermal, +55951__AMP1,55951__AMP1,1,1,MC_sequential,0.023,50,thermal, +55963__CTG1,55963__CTG1,1,1,MC_sequential,0.023,50,thermal, +55970__1,55970__1,1,1,MC_sequential,0.038,24,thermal, +55970__2,55970__2,1,1,MC_sequential,0.038,24,thermal, +55970__3,55970__3,1,1,MC_sequential,0.038,24,thermal, +55977__CTG1,55977__CTG1,1,1,MC_sequential,0.038,24,thermal, +55977__STG1,55977__STG1,1,1,MC_sequential,0.038,24,thermal, +55983__TG51,55983__TG51,1,1,MC_sequential,0.035,30,thermal, +55984__TG21,55984__TG21,1,1,MC_sequential,0.035,30,thermal, +55985__CTG1,55985__CTG1,1,1,MC_sequential,0.038,24,thermal, +55985__CTG2,55985__CTG2,1,1,MC_sequential,0.038,24,thermal, +55985__STG,55985__STG,1,1,MC_sequential,0.038,24,thermal, +55991__OEC,55991__OEC,1,1,MC_sequential,0.035,30,thermal, +55991__OEC1,55991__OEC1,1,1,MC_sequential,0.035,30,thermal, +56026__CTG1,56026__CTG1,1,1,MC_sequential,0.038,24,thermal, +56026__CTG2,56026__CTG2,1,1,MC_sequential,0.038,24,thermal, +56026__STG,56026__STG,1,1,MC_sequential,0.038,24,thermal, +56036__GEN1,56036__GEN1,1,1,MC_sequential,0.045,36,thermal, +56036__GEN2,56036__GEN2,1,1,MC_sequential,0.045,36,thermal, +56036__GEN3,56036__GEN3,1,1,MC_sequential,0.045,36,thermal, +56039__G1,56039__G1,1,1,MC_sequential,0.023,50,thermal, +56039__G2,56039__G2,1,1,MC_sequential,0.023,50,thermal, +56041__M1,56041__M1,1,1,MC_sequential,0.038,24,thermal, +56041__M2,56041__M2,1,1,MC_sequential,0.038,24,thermal, +56041__M3,56041__M3,1,1,MC_sequential,0.038,24,thermal, +56046__1,56046__1,1,1,MC_sequential,0.038,24,thermal, +56046__2,56046__2,1,1,MC_sequential,0.038,24,thermal, +56051__GEN1,56051__GEN1,1,1,MC_sequential,0.023,50,thermal, +56078__1,56078__1,1,1,MC_sequential,0.038,24,thermal, +56078__2,56078__2,1,1,MC_sequential,0.038,24,thermal, +56078__3,56078__3,1,1,MC_sequential,0.038,24,thermal, +56080__EG4,56080__EG4,1,1,MC_sequential,0.04,24,thermal, +56080__EG5,56080__EG5,1,1,MC_sequential,0.04,24,thermal, +56080__EG6,56080__EG6,1,1,MC_sequential,0.04,24,thermal, +56080__EG7,56080__EG7,1,1,MC_sequential,0.04,24,thermal, +56090__D182,56090__D182,1,1,MC_sequential,0.023,50,thermal, +56090__D189,56090__D189,1,1,MC_sequential,0.023,50,thermal, +56090__D190,56090__D190,1,1,MC_sequential,0.023,50,thermal, +56102__CT1A,56102__CT1A,1,1,MC_sequential,0.038,24,thermal, +56102__CT1B,56102__CT1B,1,1,MC_sequential,0.038,24,thermal, +56102__ST1,56102__ST1,1,1,MC_sequential,0.038,24,thermal, +56134__101,56134__101,1,1,MC_sequential,0.045,36,thermal, +56134__401,56134__401,1,1,MC_sequential,0.045,36,thermal, +56135__1,56135__1,1,1,MC_sequential,0.023,50,thermal, +56135__2,56135__2,1,1,MC_sequential,0.023,50,thermal, +56143__1,56143__1,1,1,MC_sequential,0.023,50,thermal, +56143__2,56143__2,1,1,MC_sequential,0.023,50,thermal, +56143__3,56143__3,1,1,MC_sequential,0.023,50,thermal, +56143__4,56143__4,1,1,MC_sequential,0.023,50,thermal, +56144__1,56144__1,1,1,MC_sequential,0.023,50,thermal, +56144__2,56144__2,1,1,MC_sequential,0.023,50,thermal, +56144__3,56144__3,1,1,MC_sequential,0.023,50,thermal, +56144__4,56144__4,1,1,MC_sequential,0.023,50,thermal, +56163__SM58,56163__SM58,1,1,MC_sequential,0.03,24,thermal, +56177__GT1,56177__GT1,1,1,MC_sequential,0.038,24,thermal, +56177__ST1,56177__ST1,1,1,MC_sequential,0.038,24,thermal, +56184__IC1,56184__IC1,1,1,MC_sequential,0.04,24,thermal, +56184__IC10,56184__IC10,1,1,MC_sequential,0.04,24,thermal, +56184__IC11,56184__IC11,1,1,MC_sequential,0.04,24,thermal, +56184__IC12,56184__IC12,1,1,MC_sequential,0.04,24,thermal, +56184__IC13,56184__IC13,1,1,MC_sequential,0.04,24,thermal, +56184__IC14,56184__IC14,1,1,MC_sequential,0.04,24,thermal, +56184__IC15,56184__IC15,1,1,MC_sequential,0.04,24,thermal, +56184__IC16,56184__IC16,1,1,MC_sequential,0.04,24,thermal, +56184__IC2,56184__IC2,1,1,MC_sequential,0.04,24,thermal, +56184__IC3,56184__IC3,1,1,MC_sequential,0.04,24,thermal, +56184__IC4,56184__IC4,1,1,MC_sequential,0.04,24,thermal, +56184__IC5,56184__IC5,1,1,MC_sequential,0.04,24,thermal, +56184__IC6,56184__IC6,1,1,MC_sequential,0.04,24,thermal, +56184__IC7,56184__IC7,1,1,MC_sequential,0.04,24,thermal, +56184__IC8,56184__IC8,1,1,MC_sequential,0.04,24,thermal, +56184__IC9,56184__IC9,1,1,MC_sequential,0.04,24,thermal, +56185__IC1,56185__IC1,1,1,MC_sequential,0.04,24,thermal, +56185__IC10,56185__IC10,1,1,MC_sequential,0.04,24,thermal, +56185__IC11,56185__IC11,1,1,MC_sequential,0.04,24,thermal, +56185__IC12,56185__IC12,1,1,MC_sequential,0.04,24,thermal, +56185__IC13,56185__IC13,1,1,MC_sequential,0.04,24,thermal, +56185__IC14,56185__IC14,1,1,MC_sequential,0.04,24,thermal, +56185__IC15,56185__IC15,1,1,MC_sequential,0.04,24,thermal, +56185__IC16,56185__IC16,1,1,MC_sequential,0.04,24,thermal, +56185__IC2,56185__IC2,1,1,MC_sequential,0.04,24,thermal, +56185__IC3,56185__IC3,1,1,MC_sequential,0.04,24,thermal, +56185__IC4,56185__IC4,1,1,MC_sequential,0.04,24,thermal, +56185__IC5,56185__IC5,1,1,MC_sequential,0.04,24,thermal, +56185__IC6,56185__IC6,1,1,MC_sequential,0.04,24,thermal, +56185__IC7,56185__IC7,1,1,MC_sequential,0.04,24,thermal, +56185__IC8,56185__IC8,1,1,MC_sequential,0.04,24,thermal, +56185__IC9,56185__IC9,1,1,MC_sequential,0.04,24,thermal, +56192__1,56192__1,1,1,MC_sequential,0.05,40,thermal, +56224__1,56224__1,1,1,MC_sequential,0.065,60,thermal, +56227__1,56227__1,1,1,MC_sequential,0.038,24,thermal, +56227__2,56227__2,1,1,MC_sequential,0.038,24,thermal, +56229__CT1,56229__CT1,1,1,MC_sequential,0.038,24,thermal, +56232__1,56232__1,1,1,MC_sequential,0.023,50,thermal, +56232__2,56232__2,1,1,MC_sequential,0.023,50,thermal, +56237__CT01,56237__CT01,1,1,MC_sequential,0.038,24,thermal, +56237__CT02,56237__CT02,1,1,MC_sequential,0.038,24,thermal, +56237__CT21,56237__CT21,1,1,MC_sequential,0.038,24,thermal, +56237__CT22,56237__CT22,1,1,MC_sequential,0.038,24,thermal, +56237__ST01,56237__ST01,1,1,MC_sequential,0.038,24,thermal, +56237__ST2,56237__ST2,1,1,MC_sequential,0.038,24,thermal, +56239__GT_1,56239__GT_1,1,1,MC_sequential,0.023,50,thermal, +56239__GT_2,56239__GT_2,1,1,MC_sequential,0.023,50,thermal, +56253__MC1,56253__MC1,1,1,MC_sequential,0.023,50,thermal, +56253__MC2,56253__MC2,1,1,MC_sequential,0.023,50,thermal, +56298__1,56298__1,1,1,MC_sequential,0.038,24,thermal, +56298__2,56298__2,1,1,MC_sequential,0.038,24,thermal, +56298__3,56298__3,1,1,MC_sequential,0.038,24,thermal, +56312__021A,56312__021A,1,1,MC_sequential,0.023,50,thermal, +56312__021B,56312__021B,1,1,MC_sequential,0.023,50,thermal, +56312__021C,56312__021C,1,1,MC_sequential,0.023,50,thermal, +56317__1,56317__1,1,1,MC_sequential,0.035,30,thermal, +56319__1,56319__1,1,1,MC_sequential,0.065,60,thermal, +56321__1,56321__1,1,1,MC_sequential,0.035,30,thermal, +56321__OEC2,56321__OEC2,1,1,MC_sequential,0.035,30,thermal, +56346__ICE1,56346__ICE1,1,1,MC_sequential,0.04,24,thermal, +56346__ICE2,56346__ICE2,1,1,MC_sequential,0.04,24,thermal, +56346__ICE3,56346__ICE3,1,1,MC_sequential,0.04,24,thermal, +56346__ICE4,56346__ICE4,1,1,MC_sequential,0.04,24,thermal, +56346__ICE5,56346__ICE5,1,1,MC_sequential,0.04,24,thermal, +56346__ICE6,56346__ICE6,1,1,MC_sequential,0.04,24,thermal, +56346__ICE7,56346__ICE7,1,1,MC_sequential,0.04,24,thermal, +56356__CT1,56356__CT1,1,1,MC_sequential,0.038,24,thermal, +56356__ST1,56356__ST1,1,1,MC_sequential,0.038,24,thermal, +56405__ONE,56405__ONE,1,1,MC_sequential,0.035,24,thermal, +56406__GEN1,56406__GEN1,1,1,MC_sequential,0.05,40,thermal, +56428__Unit1,56428__Unit1,1,1,MC_sequential,0.045,36,thermal, +56428__Unit2,56428__Unit2,1,1,MC_sequential,0.045,36,thermal, +56428__Unit3,56428__Unit3,1,1,MC_sequential,0.045,36,thermal, +56445__GEN1,56445__GEN1,1,1,MC_sequential,0.023,50,thermal, +56445__GEN2,56445__GEN2,1,1,MC_sequential,0.023,50,thermal, +56461__DC1,56461__DC1,1,1,MC_sequential,0.045,36,thermal, +56461__DC2,56461__DC2,1,1,MC_sequential,0.045,36,thermal, +56467__CTG1,56467__CTG1,1,1,MC_sequential,0.038,24,thermal, +56467__CTG2,56467__CTG2,1,1,MC_sequential,0.038,24,thermal, +56467__STG1,56467__STG1,1,1,MC_sequential,0.038,24,thermal, +56469__1,56469__1,1,1,MC_sequential,0.05,40,thermal, +56471__1,56471__1,1,1,MC_sequential,0.023,50,thermal, +56472__1,56472__1,1,1,MC_sequential,0.023,50,thermal, +56472__BA1,56472__BA1,1,1,Derate,0.02,36,thermal, +56473__1,56473__1,1,1,MC_sequential,0.023,50,thermal, +56474__1,56474__1,1,1,MC_sequential,0.023,50,thermal, +56475__1,56475__1,1,1,MC_sequential,0.023,50,thermal, +56475__BA1,56475__BA1,1,1,Derate,0.02,36,thermal, +56476__A,56476__A,1,1,MC_sequential,0.038,24,thermal, +56476__B,56476__B,1,1,MC_sequential,0.038,24,thermal, +56476__C,56476__C,1,1,MC_sequential,0.038,24,thermal, +56482__1,56482__1,1,1,MC_sequential,0.023,50,thermal, +56482__2,56482__2,1,1,MC_sequential,0.023,50,thermal, +56500__A101,56500__A101,1,1,MC_sequential,0.04,24,thermal, +56500__B102,56500__B102,1,1,MC_sequential,0.04,24,thermal, +56500__B202,56500__B202,1,1,MC_sequential,0.04,24,thermal, +56500__C102,56500__C102,1,1,MC_sequential,0.04,24,thermal, +56500__C202,56500__C202,1,1,MC_sequential,0.04,24,thermal, +56500__D101,56500__D101,1,1,MC_sequential,0.04,24,thermal, +56500__E102,56500__E102,1,1,MC_sequential,0.04,24,thermal, +56500__E202,56500__E202,1,1,MC_sequential,0.04,24,thermal, +56500__F102,56500__F102,1,1,MC_sequential,0.04,24,thermal, +56500__F202,56500__F202,1,1,MC_sequential,0.04,24,thermal, +56500__G102,56500__G102,1,1,MC_sequential,0.04,24,thermal, +56500__G202,56500__G202,1,1,MC_sequential,0.04,24,thermal, +56500__H102,56500__H102,1,1,MC_sequential,0.04,24,thermal, +56500__H202,56500__H202,1,1,MC_sequential,0.04,24,thermal, +56509__1,56509__1,1,1,MC_sequential,0.023,50,thermal, +56509__2,56509__2,1,1,MC_sequential,0.023,50,thermal, +56516__2G01,56516__2G01,1,1,MC_sequential,0.04,24,thermal, +56516__2G02,56516__2G02,1,1,MC_sequential,0.04,24,thermal, +56516__2G03,56516__2G03,1,1,MC_sequential,0.04,24,thermal, +56516__2G04,56516__2G04,1,1,MC_sequential,0.04,24,thermal, +56516__2G05,56516__2G05,1,1,MC_sequential,0.04,24,thermal, +56516__2G06,56516__2G06,1,1,MC_sequential,0.04,24,thermal, +56516__2G07,56516__2G07,1,1,MC_sequential,0.04,24,thermal, +56516__2G08,56516__2G08,1,1,MC_sequential,0.04,24,thermal, +56516__2G09,56516__2G09,1,1,MC_sequential,0.04,24,thermal, +56516__2G10,56516__2G10,1,1,MC_sequential,0.04,24,thermal, +56516__2G11,56516__2G11,1,1,MC_sequential,0.04,24,thermal, +56516__2G12,56516__2G12,1,1,MC_sequential,0.04,24,thermal, +56516__2G13,56516__2G13,1,1,MC_sequential,0.04,24,thermal, +56516__2G14,56516__2G14,1,1,MC_sequential,0.04,24,thermal, +56530__GEN1,56530__GEN1,1,1,MC_sequential,0.045,36,thermal, +56530__GEN2,56530__GEN2,1,1,MC_sequential,0.045,36,thermal, +56530__GEN3,56530__GEN3,1,1,MC_sequential,0.045,36,thermal, +56530__GEN4,56530__GEN4,1,1,MC_sequential,0.045,36,thermal, +56532__A,56532__A,1,1,MC_sequential,0.038,24,thermal, +56532__B,56532__B,1,1,MC_sequential,0.038,24,thermal, +56532__C,56532__C,1,1,MC_sequential,0.038,24,thermal, +56540__GEN1,56540__GEN1,1,1,MC_sequential,0.035,30,thermal, +56541__GEN1,56541__GEN1,1,1,MC_sequential,0.035,30,thermal, +56541__GEN2,56541__GEN2,1,1,MC_sequential,0.035,30,thermal, +56554__Unit1,56554__Unit1,1,1,MC_sequential,0.045,36,thermal, +56554__Unit2,56554__Unit2,1,1,MC_sequential,0.045,36,thermal, +56554__Unit3,56554__Unit3,1,1,MC_sequential,0.045,36,thermal, +56569__1,56569__1,1,1,MC_sequential,0.023,50,thermal, +56569__2,56569__2,1,1,MC_sequential,0.023,50,thermal, +56596__5,56596__5,1,1,MC_sequential,0.065,60,thermal, +56609__1,56609__1,1,1,MC_sequential,0.065,60,thermal, +56616__G3,56616__G3,1,1,MC_sequential,0.05,40,thermal, +56639__1,56639__1,1,1,MC_sequential,0.023,50,thermal, +56639__2,56639__2,1,1,MC_sequential,0.023,50,thermal, +56781__1,56781__1,1,1,MC_sequential,0.05,40,thermal, +56803__1,56803__1,1,1,MC_sequential,0.023,50,thermal, +56803__2,56803__2,1,1,MC_sequential,0.023,50,thermal, +56803__3,56803__3,1,1,MC_sequential,0.023,50,thermal, +56803__4,56803__4,1,1,MC_sequential,0.023,50,thermal, +56812__GEN_1,56812__GEN_1,1,1,MC_sequential,0.035,24,thermal, +56812__GEN2,56812__GEN2,1,1,MC_sequential,0.035,24,thermal, +56832__GE1,56832__GE1,1,1,MC_sequential,0.035,30,thermal, +56832__GE2,56832__GE2,1,1,MC_sequential,0.035,30,thermal, +56832__GE3,56832__GE3,1,1,MC_sequential,0.035,30,thermal, +56832__GE4,56832__GE4,1,1,MC_sequential,0.035,30,thermal, +56832__GE5,56832__GE5,1,1,MC_sequential,0.035,30,thermal, +56853__1,56853__1,1,1,MC_sequential,0.045,36,thermal, +56853__2,56853__2,1,1,MC_sequential,0.045,36,thermal, +56853__3,56853__3,1,1,MC_sequential,0.045,36,thermal, +56895__1,56895__1,1,1,MC_sequential,0.045,36,thermal, +56895__2,56895__2,1,1,MC_sequential,0.045,36,thermal, +56895__3,56895__3,1,1,MC_sequential,0.045,36,thermal, +56895__4,56895__4,1,1,MC_sequential,0.045,36,thermal, +56895__5,56895__5,1,1,MC_sequential,0.045,36,thermal, +56895__6,56895__6,1,1,MC_sequential,0.045,36,thermal, +56897__1,56897__1,1,1,MC_sequential,0.045,36,thermal, +56897__2,56897__2,1,1,MC_sequential,0.045,36,thermal, +56898__1,56898__1,1,1,MC_sequential,0.045,36,thermal, +56898__2,56898__2,1,1,MC_sequential,0.045,36,thermal, +56908__1,56908__1,1,1,MC_sequential,0.023,50,thermal, +56908__2,56908__2,1,1,MC_sequential,0.023,50,thermal, +56908__3,56908__3,1,1,MC_sequential,0.023,50,thermal, +56914__CTG1,56914__CTG1,1,1,MC_sequential,0.023,50,thermal, +56914__CTG2,56914__CTG2,1,1,MC_sequential,0.023,50,thermal, +56948__10,56948__10,1,1,MC_sequential,0.023,50,thermal, +56948__11,56948__11,1,1,MC_sequential,0.023,50,thermal, +56948__12,56948__12,1,1,MC_sequential,0.023,50,thermal, +56948__2,56948__2,1,1,MC_sequential,0.023,50,thermal, +56948__3,56948__3,1,1,MC_sequential,0.023,50,thermal, +56948__4,56948__4,1,1,MC_sequential,0.023,50,thermal, +56948__5,56948__5,1,1,MC_sequential,0.023,50,thermal, +56948__6,56948__6,1,1,MC_sequential,0.023,50,thermal, +56948__7,56948__7,1,1,MC_sequential,0.023,50,thermal, +56948__8,56948__8,1,1,MC_sequential,0.023,50,thermal, +56948__9,56948__9,1,1,MC_sequential,0.023,50,thermal, +56982__BM1,56982__BM1,1,1,MC_sequential,0.035,30,thermal, +56982__BM2,56982__BM2,1,1,MC_sequential,0.035,30,thermal, +56982__BM3,56982__BM3,1,1,MC_sequential,0.035,30,thermal, +56998__4,56998__4,1,1,MC_sequential,0.038,24,thermal, +56998__43,56998__43,1,1,MC_sequential,0.038,24,thermal, +56998__5,56998__5,1,1,MC_sequential,0.038,24,thermal, +56998__53,56998__53,1,1,MC_sequential,0.038,24,thermal, +56998__6,56998__6,1,1,MC_sequential,0.038,24,thermal, +56998__7,56998__7,1,1,MC_sequential,0.038,24,thermal, +56998__CT08,56998__CT08,1,1,MC_sequential,0.023,50,thermal, +56998__GT1,56998__GT1,1,1,MC_sequential,0.023,50,thermal, +56998__GT2,56998__GT2,1,1,MC_sequential,0.023,50,thermal, +57001__GEN1,57001__GEN1,1,1,MC_sequential,0.023,50,thermal, +57015__GEN1,57015__GEN1,1,1,MC_sequential,0.045,36,thermal, +57015__GEN10,57015__GEN10,1,1,MC_sequential,0.045,36,thermal, +57015__GEN11,57015__GEN11,1,1,MC_sequential,0.045,36,thermal, +57015__GEN12,57015__GEN12,1,1,MC_sequential,0.045,36,thermal, +57015__GEN2,57015__GEN2,1,1,MC_sequential,0.045,36,thermal, +57015__GEN3,57015__GEN3,1,1,MC_sequential,0.045,36,thermal, +57015__GEN4,57015__GEN4,1,1,MC_sequential,0.045,36,thermal, +57015__GEN5,57015__GEN5,1,1,MC_sequential,0.045,36,thermal, +57015__GEN6,57015__GEN6,1,1,MC_sequential,0.045,36,thermal, +57015__GEN7,57015__GEN7,1,1,MC_sequential,0.045,36,thermal, +57015__GEN8,57015__GEN8,1,1,MC_sequential,0.045,36,thermal, +57015__GEN9,57015__GEN9,1,1,MC_sequential,0.045,36,thermal, +57019__GEN1,57019__GEN1,1,1,MC_sequential,0.045,36,thermal, +57019__GEN2,57019__GEN2,1,1,MC_sequential,0.045,36,thermal, +57019__GEN3,57019__GEN3,1,1,MC_sequential,0.045,36,thermal, +57019__GEN4,57019__GEN4,1,1,MC_sequential,0.045,36,thermal, +57019__GEN5,57019__GEN5,1,1,MC_sequential,0.045,36,thermal, +57019__GEN6,57019__GEN6,1,1,MC_sequential,0.045,36,thermal, +57027__CPP1,57027__CPP1,1,1,MC_sequential,0.023,50,thermal, +57027__CPP2,57027__CPP2,1,1,MC_sequential,0.023,50,thermal, +57027__CPP3,57027__CPP3,1,1,MC_sequential,0.023,50,thermal, +57027__CPP4,57027__CPP4,1,1,MC_sequential,0.023,50,thermal, +57028__GTG,57028__GTG,1,1,MC_sequential,0.038,24,thermal, +57028__STG,57028__STG,1,1,MC_sequential,0.038,24,thermal, +57073__ST1,57073__ST1,1,1,MC_sequential,0.035,24,thermal, +57074__ST1,57074__ST1,1,1,MC_sequential,0.035,24,thermal, +57075__ST1,57075__ST1,1,1,MC_sequential,0.035,24,thermal, +57100__EN01,57100__EN01,1,1,MC_sequential,0.045,36,thermal, +57101__1,57101__1,1,1,MC_sequential,0.045,36,thermal, +57102__EN01,57102__EN01,1,1,MC_sequential,0.045,36,thermal, +57102__EN02,57102__EN02,1,1,MC_sequential,0.045,36,thermal, +57122__CTG1,57122__CTG1,1,1,MC_sequential,0.038,24,thermal, +57122__STG1,57122__STG1,1,1,MC_sequential,0.038,24,thermal, +57133__359,57133__359,1,1,MC_sequential,0.045,36,thermal, +57133__361,57133__361,1,1,MC_sequential,0.045,36,thermal, +57134__1,57134__1,1,1,MC_sequential,0.03,24,thermal, +57163__GEN1,57163__GEN1,1,1,MC_sequential,0.045,36,thermal, +57163__GEN3,57163__GEN3,1,1,MC_sequential,0.045,36,thermal, +57166__GEN1,57166__GEN1,1,1,MC_sequential,0.045,36,thermal, +57166__GEN2,57166__GEN2,1,1,MC_sequential,0.045,36,thermal, +57213__101,57213__101,1,1,MC_sequential,0.035,30,thermal, +57213__201,57213__201,1,1,MC_sequential,0.035,30,thermal, +57267__1,57267__1,1,1,MC_sequential,0.023,50,thermal, +57267__2,57267__2,1,1,MC_sequential,0.023,50,thermal, +57267__3,57267__3,1,1,MC_sequential,0.023,50,thermal, +57267__4,57267__4,1,1,MC_sequential,0.023,50,thermal, +57275__TSE_1,57275__TSE_1,1,1,MC_sequential,0.035,24,thermal, +57298__1,57298__1,1,1,MC_sequential,0.045,36,thermal, +57298__10,57298__10,1,1,MC_sequential,0.045,36,thermal, +57298__11,57298__11,1,1,MC_sequential,0.045,36,thermal, +57298__12,57298__12,1,1,MC_sequential,0.045,36,thermal, +57298__13,57298__13,1,1,MC_sequential,0.045,36,thermal, +57298__14,57298__14,1,1,MC_sequential,0.045,36,thermal, +57298__15,57298__15,1,1,MC_sequential,0.045,36,thermal, +57298__16,57298__16,1,1,MC_sequential,0.045,36,thermal, +57298__17,57298__17,1,1,MC_sequential,0.045,36,thermal, +57298__18,57298__18,1,1,MC_sequential,0.045,36,thermal, +57298__2,57298__2,1,1,MC_sequential,0.045,36,thermal, +57298__3,57298__3,1,1,MC_sequential,0.045,36,thermal, +57298__4,57298__4,1,1,MC_sequential,0.045,36,thermal, +57298__5,57298__5,1,1,MC_sequential,0.045,36,thermal, +57298__6,57298__6,1,1,MC_sequential,0.045,36,thermal, +57298__7,57298__7,1,1,MC_sequential,0.045,36,thermal, +57298__8,57298__8,1,1,MC_sequential,0.045,36,thermal, +57298__9,57298__9,1,1,MC_sequential,0.045,36,thermal, +57331__MSP1,57331__MSP1,1,1,MC_sequential,0.035,24,thermal, +57331__MSP2,57331__MSP2,1,1,MC_sequential,0.035,24,thermal, +57343__1,57343__1,1,1,MC_sequential,0.045,36,thermal, +57343__2,57343__2,1,1,MC_sequential,0.045,36,thermal, +57345__1,57345__1,1,1,MC_sequential,0.045,36,thermal, +57345__2,57345__2,1,1,MC_sequential,0.045,36,thermal, +57348__UNITA,57348__UNITA,1,1,MC_sequential,0.023,50,thermal, +57348__UNITB,57348__UNITB,1,1,MC_sequential,0.023,50,thermal, +57353__2,57353__2,1,1,MC_sequential,0.035,30,thermal, +57376__OEC_1,57376__OEC_1,1,1,MC_sequential,0.035,30,thermal, +57376__OEC_2,57376__OEC_2,1,1,MC_sequential,0.035,30,thermal, +57393__GEN1,57393__GEN1,1,1,MC_sequential,0.045,36,thermal, +57393__GEN2,57393__GEN2,1,1,MC_sequential,0.045,36,thermal, +57394__GEN01,57394__GEN01,1,1,MC_sequential,0.035,24,thermal, +57394__GEN02,57394__GEN02,1,1,MC_sequential,0.035,24,thermal, +57403__GEN1,57403__GEN1,1,1,MC_sequential,0.045,36,thermal, +57403__GEN2,57403__GEN2,1,1,MC_sequential,0.045,36,thermal, +57446__1,57446__1,1,1,MC_sequential,0.035,30,thermal, +57446__2,57446__2,1,1,MC_sequential,0.035,30,thermal, +57446__3,57446__3,1,1,MC_sequential,0.035,30,thermal, +57446__OE23R,57446__OE23R,1,1,MC_sequential,0.035,30,thermal, +57446__OEC21,57446__OEC21,1,1,MC_sequential,0.035,30,thermal, +57446__OEC22,57446__OEC22,1,1,MC_sequential,0.035,30,thermal, +57451__G9200,57451__G9200,1,1,MC_sequential,0.035,30,thermal, +57451__G9250,57451__G9250,1,1,MC_sequential,0.035,30,thermal, +57456__SE_U1,57456__SE_U1,1,1,MC_sequential,0.035,30,thermal, +57457__1,57457__1,1,1,MC_sequential,0.05,40,thermal, +57460__CL00,57460__CL00,1,1,MC_sequential,0.03,24,thermal, +57460__CL01,57460__CL01,1,1,MC_sequential,0.03,24,thermal, +57460__CL02,57460__CL02,1,1,MC_sequential,0.03,24,thermal, +57460__CL03,57460__CL03,1,1,MC_sequential,0.03,24,thermal, +57460__CL04,57460__CL04,1,1,MC_sequential,0.03,24,thermal, +57460__CL05,57460__CL05,1,1,MC_sequential,0.03,24,thermal, +57460__CL06,57460__CL06,1,1,MC_sequential,0.03,24,thermal, +57460__CL07,57460__CL07,1,1,MC_sequential,0.03,24,thermal, +57460__CL08,57460__CL08,1,1,MC_sequential,0.03,24,thermal, +57460__CL09,57460__CL09,1,1,MC_sequential,0.03,24,thermal, +57460__CL10,57460__CL10,1,1,MC_sequential,0.03,24,thermal, +57475__HRP1,57475__HRP1,1,1,MC_sequential,0.035,30,thermal, +57482__CTG1,57482__CTG1,1,1,MC_sequential,0.023,50,thermal, +57482__CTG2,57482__CTG2,1,1,MC_sequential,0.023,50,thermal, +57482__CTG3,57482__CTG3,1,1,MC_sequential,0.023,50,thermal, +57482__CTG4,57482__CTG4,1,1,MC_sequential,0.023,50,thermal, +57482__CTG5,57482__CTG5,1,1,MC_sequential,0.023,50,thermal, +57482__CTG6,57482__CTG6,1,1,MC_sequential,0.023,50,thermal, +57482__CTG7,57482__CTG7,1,1,MC_sequential,0.023,50,thermal, +57482__CTG8,57482__CTG8,1,1,MC_sequential,0.023,50,thermal, +57483__CTG1,57483__CTG1,1,1,MC_sequential,0.023,50,thermal, +57483__CTG2,57483__CTG2,1,1,MC_sequential,0.023,50,thermal, +57483__CTG3,57483__CTG3,1,1,MC_sequential,0.023,50,thermal, +57483__CTG4,57483__CTG4,1,1,MC_sequential,0.023,50,thermal, +57515__GT1,57515__GT1,1,1,MC_sequential,0.023,50,thermal, +57515__GT2,57515__GT2,1,1,MC_sequential,0.023,50,thermal, +57515__GT3,57515__GT3,1,1,MC_sequential,0.023,50,thermal, +57515__GT4,57515__GT4,1,1,MC_sequential,0.023,50,thermal, +57515__GT5,57515__GT5,1,1,MC_sequential,0.023,50,thermal, +57555__CTG1,57555__CTG1,1,1,MC_sequential,0.023,50,thermal, +57555__CTG2,57555__CTG2,1,1,MC_sequential,0.023,50,thermal, +57555__CTG3,57555__CTG3,1,1,MC_sequential,0.023,50,thermal, +57557__S_14,57557__S_14,1,1,MC_sequential,0.04,24,thermal, +57557__S_15,57557__S_15,1,1,MC_sequential,0.04,24,thermal, +57561__CC17M,57561__CC17M,1,1,Derate,0.02,36,thermal, +57562__PA17M,57562__PA17M,1,1,Derate,0.02,36,thermal, +57563__H116M,57563__H116M,1,1,Derate,0.02,36,thermal, +57564__CTG,57564__CTG,1,1,MC_sequential,0.038,24,thermal, +57564__STG2,57564__STG2,1,1,MC_sequential,0.038,24,thermal, +57573__S188,57573__S188,1,1,MC_sequential,0.023,50,thermal, +57584__BS1,57584__BS1,1,1,Derate,0.02,36,thermal, +57584__NT2,57584__NT2,1,1,MC_sequential,0.038,24,thermal, +57584__ST1,57584__ST1,1,1,MC_sequential,0.038,24,thermal, +57584__STG,57584__STG,1,1,MC_sequential,0.038,24,thermal, +57585__1,57585__1,1,1,MC_sequential,0.023,50,thermal, +57653__CTG,57653__CTG,1,1,MC_sequential,0.038,24,thermal, +57684__HR1,57684__HR1,1,1,MC_sequential,0.03,24,thermal, +57696__1,57696__1,1,1,MC_sequential,0.045,36,thermal, +57702__1,57702__1,1,1,MC_sequential,0.023,50,thermal, +57703__01A,57703__01A,1,1,MC_sequential,0.038,24,thermal, +57703__01B,57703__01B,1,1,MC_sequential,0.038,24,thermal, +57703__01C,57703__01C,1,1,MC_sequential,0.038,24,thermal, +57703__02A,57703__02A,1,1,MC_sequential,0.023,50,thermal, +57715__GEN1,57715__GEN1,1,1,MC_sequential,0.04,24,thermal, +57715__GEN2,57715__GEN2,1,1,MC_sequential,0.04,24,thermal, +57771__1,57771__1,1,1,MC_sequential,0.045,36,thermal, +57809__FRK00,57809__FRK00,1,1,MC_sequential,0.03,24,thermal, +57811__ADB00,57811__ADB00,1,1,MC_sequential,0.03,24,thermal, +57811__ADB01,57811__ADB01,1,1,MC_sequential,0.03,24,thermal, +57861__UNT1,57861__UNT1,1,1,MC_sequential,0.045,36,thermal, +57861__UNT2,57861__UNT2,1,1,MC_sequential,0.045,36,thermal, +57876__UNT1,57876__UNT1,1,1,MC_sequential,0.045,36,thermal, +57899__4,57899__4,1,1,MC_sequential,0.04,24,thermal, +57899__5,57899__5,1,1,MC_sequential,0.04,24,thermal, +57899__6,57899__6,1,1,MC_sequential,0.04,24,thermal, +57899__7,57899__7,1,1,MC_sequential,0.04,24,thermal, +57899__8,57899__8,1,1,MC_sequential,0.04,24,thermal, +57901__5,57901__5,1,1,MC_sequential,0.038,24,thermal, +57901__6,57901__6,1,1,MC_sequential,0.038,24,thermal, +57901__7,57901__7,1,1,MC_sequential,0.038,24,thermal, +57901__8,57901__8,1,1,MC_sequential,0.038,24,thermal, +57902__G_123,57902__G_123,1,1,MC_sequential,0.045,36,thermal, +57902__G_162,57902__G_162,1,1,MC_sequential,0.045,36,thermal, +57911__1,57911__1,1,1,MC_sequential,0.045,36,thermal, +57915__1,57915__1,1,1,MC_sequential,0.065,60,thermal, +57915__3,57915__3,1,1,MC_sequential,0.065,60,thermal, +57915__4,57915__4,1,1,MC_sequential,0.065,60,thermal, +57915__5,57915__5,1,1,MC_sequential,0.065,60,thermal, +57916__1,57916__1,1,1,MC_sequential,0.045,30,thermal, +57969__GEN1,57969__GEN1,1,1,MC_sequential,0.05,40,thermal, +57971__COGEN,57971__COGEN,1,1,MC_sequential,0.045,36,thermal, +57977__ENG1,57977__ENG1,1,1,MC_sequential,0.04,24,thermal, +57977__ENG2,57977__ENG2,1,1,MC_sequential,0.04,24,thermal, +57978__CT1,57978__CT1,1,1,MC_sequential,0.038,24,thermal, +57978__ST1,57978__ST1,1,1,MC_sequential,0.038,24,thermal, +57988__GEN_5,57988__GEN_5,1,1,MC_sequential,0.045,36,thermal, +57988__GEN_6,57988__GEN_6,1,1,MC_sequential,0.045,36,thermal, +57988__GEN1,57988__GEN1,1,1,MC_sequential,0.045,36,thermal, +57988__GEN2,57988__GEN2,1,1,MC_sequential,0.045,36,thermal, +57988__GEN3,57988__GEN3,1,1,MC_sequential,0.045,36,thermal, +57988__GEN4,57988__GEN4,1,1,MC_sequential,0.045,36,thermal, +57997__FH38M,57997__FH38M,1,1,Derate,0.02,36,thermal, +58007__G1,58007__G1,1,1,MC_sequential,0.045,36,thermal, +58007__G2,58007__G2,1,1,MC_sequential,0.045,36,thermal, +58007__G3,58007__G3,1,1,MC_sequential,0.045,36,thermal, +58007__G4,58007__G4,1,1,MC_sequential,0.045,36,thermal, +58007__G5,58007__G5,1,1,MC_sequential,0.045,36,thermal, +58022__NHS1,58022__NHS1,1,1,MC_sequential,0.035,30,thermal, +58022__NHS2,58022__NHS2,1,1,MC_sequential,0.035,30,thermal, +58022__NHS3,58022__NHS3,1,1,MC_sequential,0.035,30,thermal, +58081__ATB_2,58081__ATB_2,1,1,MC_sequential,0.045,30,thermal, +58100__5900,58100__5900,1,1,MC_sequential,0.023,50,thermal, +58109__TG2,58109__TG2,1,1,MC_sequential,0.05,40,thermal, +58122__GEN1,58122__GEN1,1,1,MC_sequential,0.023,50,thermal, +58128__KRSO1,58128__KRSO1,1,1,MC_sequential,0.03,24,thermal, +58128__KRSO2,58128__KRSO2,1,1,MC_sequential,0.03,24,thermal, +58128__KRSO3,58128__KRSO3,1,1,MC_sequential,0.03,24,thermal, +58128__KRSO4,58128__KRSO4,1,1,MC_sequential,0.03,24,thermal, +58128__KRSO5,58128__KRSO5,1,1,MC_sequential,0.03,24,thermal, +58132__KSRO1,58132__KSRO1,1,1,MC_sequential,0.03,24,thermal, +58132__KSRO2,58132__KSRO2,1,1,MC_sequential,0.03,24,thermal, +58132__KSRO3,58132__KSRO3,1,1,MC_sequential,0.03,24,thermal, +58132__KSRO4,58132__KSRO4,1,1,MC_sequential,0.03,24,thermal, +58132__KSRO5,58132__KSRO5,1,1,MC_sequential,0.03,24,thermal, +58139__TURBI,58139__TURBI,1,1,MC_sequential,0.023,50,thermal, +58168__TURB1,58168__TURB1,1,1,MC_sequential,0.023,50,thermal, +58168__TURB2,58168__TURB2,1,1,MC_sequential,0.023,50,thermal, +58168__TURB3,58168__TURB3,1,1,MC_sequential,0.023,50,thermal, +58169__1,58169__1,1,1,MC_sequential,0.023,50,thermal, +58191__GT1,58191__GT1,1,1,MC_sequential,0.023,50,thermal, +58191__GT3,58191__GT3,1,1,MC_sequential,0.023,50,thermal, +58198__GTG1,58198__GTG1,1,1,MC_sequential,0.038,24,thermal, +58198__GTG2,58198__GTG2,1,1,MC_sequential,0.038,24,thermal, +58198__STG1,58198__STG1,1,1,MC_sequential,0.038,24,thermal, +58199__G1,58199__G1,1,1,MC_sequential,0.038,24,thermal, +58199__G2,58199__G2,1,1,MC_sequential,0.023,50,thermal, +58223__1,58223__1,1,1,MC_sequential,0.04,24,thermal, +58223__2,58223__2,1,1,MC_sequential,0.04,24,thermal, +58223__3,58223__3,1,1,MC_sequential,0.04,24,thermal, +58251__TG3,58251__TG3,1,1,MC_sequential,0.03,24,thermal, +58251__TG4,58251__TG4,1,1,MC_sequential,0.03,24,thermal, +58253__GEN2,58253__GEN2,1,1,MC_sequential,0.03,24,thermal, +58253__GEN3,58253__GEN3,1,1,MC_sequential,0.03,24,thermal, +58253__GEN4,58253__GEN4,1,1,MC_sequential,0.03,24,thermal, +58258__GEN1,58258__GEN1,1,1,MC_sequential,0.023,50,thermal, +58258__GEN2,58258__GEN2,1,1,MC_sequential,0.023,50,thermal, +58266__1,58266__1,1,1,MC_sequential,0.04,24,thermal, +58266__10,58266__10,1,1,MC_sequential,0.04,24,thermal, +58266__11,58266__11,1,1,MC_sequential,0.04,24,thermal, +58266__12,58266__12,1,1,MC_sequential,0.04,24,thermal, +58266__2,58266__2,1,1,MC_sequential,0.04,24,thermal, +58266__3,58266__3,1,1,MC_sequential,0.04,24,thermal, +58266__4,58266__4,1,1,MC_sequential,0.04,24,thermal, +58266__5,58266__5,1,1,MC_sequential,0.04,24,thermal, +58266__6,58266__6,1,1,MC_sequential,0.04,24,thermal, +58266__7,58266__7,1,1,MC_sequential,0.04,24,thermal, +58266__8,58266__8,1,1,MC_sequential,0.04,24,thermal, +58266__9,58266__9,1,1,MC_sequential,0.04,24,thermal, +58284__1,58284__1,1,1,MC_sequential,0.023,50,thermal, +58296__ROL6,58296__ROL6,1,1,MC_sequential,0.03,24,thermal, +58297__ROL4,58297__ROL4,1,1,MC_sequential,0.03,24,thermal, +58298__ROL3,58298__ROL3,1,1,MC_sequential,0.03,24,thermal, +58299__XLX01,58299__XLX01,1,1,MC_sequential,0.03,24,thermal, +58300__HON,58300__HON,1,1,MC_sequential,0.03,24,thermal, +58301__JPR,58301__JPR,1,1,MC_sequential,0.03,24,thermal, +58302__LFT,58302__LFT,1,1,MC_sequential,0.03,24,thermal, +58303__TLR,58303__TLR,1,1,MC_sequential,0.03,24,thermal, +58319__1,58319__1,1,1,MC_sequential,0.035,30,thermal, +58319__3,58319__3,1,1,MC_sequential,0.035,30,thermal, +58319__5,58319__5,1,1,MC_sequential,0.035,30,thermal, +58320__362,58320__362,1,1,MC_sequential,0.045,36,thermal, +58352__G_11A,58352__G_11A,1,1,MC_sequential,0.05,40,thermal, +58379__W3998,58379__W3998,1,1,MC_sequential,0.045,36,thermal, +58382__GEN1,58382__GEN1,1,1,MC_sequential,0.04,24,thermal, +58382__GEN2,58382__GEN2,1,1,MC_sequential,0.04,24,thermal, +58382__GEN3,58382__GEN3,1,1,MC_sequential,0.04,24,thermal, +58383__H214M,58383__H214M,1,1,Derate,0.02,36,thermal, +58397__ENG1,58397__ENG1,1,1,MC_sequential,0.045,36,thermal, +58429__1,58429__1,1,1,MC_sequential,0.045,36,thermal, +58429__2,58429__2,1,1,MC_sequential,0.045,36,thermal, +58429__3,58429__3,1,1,MC_sequential,0.045,36,thermal, +58429__4,58429__4,1,1,MC_sequential,0.045,36,thermal, +58429__5,58429__5,1,1,MC_sequential,0.045,36,thermal, +58432__COG1,58432__COG1,1,1,MC_sequential,0.04,24,thermal, +58432__COG2,58432__COG2,1,1,MC_sequential,0.04,24,thermal, +58432__COG3,58432__COG3,1,1,MC_sequential,0.04,24,thermal, +58435__ENG1,58435__ENG1,1,1,MC_sequential,0.045,36,thermal, +58435__ENG2,58435__ENG2,1,1,MC_sequential,0.045,36,thermal, +58436__ENG1,58436__ENG1,1,1,MC_sequential,0.045,36,thermal, +58436__ENG2,58436__ENG2,1,1,MC_sequential,0.045,36,thermal, +58437__ENG1,58437__ENG1,1,1,MC_sequential,0.045,36,thermal, +58437__ENG2,58437__ENG2,1,1,MC_sequential,0.045,36,thermal, +58462__MCST1,58462__MCST1,1,1,Derate,0.02,36,thermal, +58503__GEN1,58503__GEN1,1,1,MC_sequential,0.038,24,thermal, +58503__GEN2,58503__GEN2,1,1,MC_sequential,0.038,24,thermal, +58523__STL2,58523__STL2,1,1,MC_sequential,0.05,40,thermal, +58525__COGEN,58525__COGEN,1,1,MC_sequential,0.045,36,thermal, +58533__1,58533__1,1,1,MC_sequential,0.035,30,thermal, +58557__GT1,58557__GT1,1,1,MC_sequential,0.038,24,thermal, +58557__GT2,58557__GT2,1,1,MC_sequential,0.038,24,thermal, +58557__ST1,58557__ST1,1,1,MC_sequential,0.038,24,thermal, +58562__GT_1,58562__GT_1,1,1,MC_sequential,0.023,50,thermal, +58562__GT_2,58562__GT_2,1,1,MC_sequential,0.023,50,thermal, +58562__GT_3,58562__GT_3,1,1,MC_sequential,0.023,50,thermal, +58562__GT_4,58562__GT_4,1,1,MC_sequential,0.023,50,thermal, +58570__1_G1A,58570__1_G1A,1,1,MC_sequential,0.035,30,thermal, +58570__2_GIA,58570__2_GIA,1,1,MC_sequential,0.035,30,thermal, +58574__1,58574__1,1,1,MC_sequential,0.05,40,thermal, +58585__BESS,58585__BESS,1,1,Derate,0.02,36,thermal, +58585__COGN,58585__COGN,1,1,MC_sequential,0.023,50,thermal, +58591__GEN1,58591__GEN1,1,1,MC_sequential,0.045,36,thermal, +58597__CGN1,58597__CGN1,1,1,MC_sequential,0.023,50,thermal, +58607__1,58607__1,1,1,MC_sequential,0.04,24,thermal, +58607__2,58607__2,1,1,MC_sequential,0.04,24,thermal, +58607__3,58607__3,1,1,MC_sequential,0.04,24,thermal, +58619__1,58619__1,1,1,MC_sequential,0.04,24,thermal, +58619__2,58619__2,1,1,MC_sequential,0.04,24,thermal, +58625__SRFC2,58625__SRFC2,1,1,MC_sequential,0.03,24,thermal, +58629__GEN_5,58629__GEN_5,1,1,MC_sequential,0.035,30,thermal, +58629__PB01,58629__PB01,1,1,MC_sequential,0.035,30,thermal, +58629__PB02,58629__PB02,1,1,MC_sequential,0.035,30,thermal, +58629__PB03,58629__PB03,1,1,MC_sequential,0.035,30,thermal, +58629__PB04,58629__PB04,1,1,MC_sequential,0.035,30,thermal, +58687__GEN1,58687__GEN1,1,1,MC_sequential,0.045,36,thermal, +58687__GEN2,58687__GEN2,1,1,MC_sequential,0.045,36,thermal, +58687__GEN3,58687__GEN3,1,1,MC_sequential,0.045,36,thermal, +58688__A,58688__A,1,1,MC_sequential,0.045,36,thermal, +58688__B,58688__B,1,1,MC_sequential,0.045,36,thermal, +58688__C,58688__C,1,1,MC_sequential,0.045,36,thermal, +58699__GEN_1,58699__GEN_1,1,1,MC_sequential,0.045,36,thermal, +58699__GEN_2,58699__GEN_2,1,1,MC_sequential,0.045,36,thermal, +58899__GEN_2,58899__GEN_2,1,1,Derate,0.02,36,thermal, +58914__CG1,58914__CG1,1,1,MC_sequential,0.023,50,thermal, +58914__CG100,58914__CG100,1,1,MC_sequential,0.023,50,thermal, +58914__CG200,58914__CG200,1,1,MC_sequential,0.023,50,thermal, +58960__S200,58960__S200,1,1,MC_sequential,0.045,36,thermal, +58960__S201,58960__S201,1,1,MC_sequential,0.045,36,thermal, +58960__S202,58960__S202,1,1,MC_sequential,0.045,36,thermal, +58960__S203,58960__S203,1,1,MC_sequential,0.045,36,thermal, +58978__CVAP,58978__CVAP,1,1,MC_sequential,0.045,36,thermal, +59002__CEC_6,59002__CEC_6,1,1,MC_sequential,0.023,50,thermal, +59002__CEC_7,59002__CEC_7,1,1,MC_sequential,0.023,50,thermal, +59002__CEC_8,59002__CEC_8,1,1,MC_sequential,0.023,50,thermal, +59002__CEC_9,59002__CEC_9,1,1,MC_sequential,0.023,50,thermal, +59002__CEC10,59002__CEC10,1,1,MC_sequential,0.023,50,thermal, +59020__GB36M,59020__GB36M,1,1,Derate,0.02,36,thermal, +59143__FR_1,59143__FR_1,1,1,MC_sequential,0.045,36,thermal, +59150__BESS1,59150__BESS1,1,1,Derate,0.02,36,thermal, +59233__CT2,59233__CT2,1,1,MC_sequential,0.038,24,thermal, +59261__VZ300,59261__VZ300,1,1,MC_sequential,0.03,24,thermal, +59279__LFT01,59279__LFT01,1,1,MC_sequential,0.03,24,thermal, +59280__KLG00,59280__KLG00,1,1,MC_sequential,0.03,24,thermal, +59299__RED1,59299__RED1,1,1,MC_sequential,0.045,36,thermal, +59299__RED2,59299__RED2,1,1,MC_sequential,0.045,36,thermal, +59338__CTG1,59338__CTG1,1,1,MC_sequential,0.038,24,thermal, +59338__CTG2,59338__CTG2,1,1,MC_sequential,0.038,24,thermal, +59338__ST9,59338__ST9,1,1,MC_sequential,0.038,24,thermal, +59395__MM26,59395__MM26,1,1,MC_sequential,0.03,24,thermal, +59395__MM27,59395__MM27,1,1,MC_sequential,0.045,36,thermal, +59444__DS10M,59444__DS10M,1,1,Derate,0.02,36,thermal, +59456__P_TG4,59456__P_TG4,1,1,MC_sequential,0.023,50,thermal, +59458__W_TG1,59458__W_TG1,1,1,MC_sequential,0.023,50,thermal, +59461__GEN01,59461__GEN01,1,1,MC_sequential,0.045,36,thermal, +59461__GEN02,59461__GEN02,1,1,MC_sequential,0.045,36,thermal, +59461__GEN03,59461__GEN03,1,1,MC_sequential,0.045,36,thermal, +59461__GEN04,59461__GEN04,1,1,MC_sequential,0.045,36,thermal, +59461__GEN05,59461__GEN05,1,1,MC_sequential,0.045,36,thermal, +59461__GEN06,59461__GEN06,1,1,MC_sequential,0.045,36,thermal, +59461__GEN07,59461__GEN07,1,1,MC_sequential,0.045,36,thermal, +59496__ST601,59496__ST601,1,1,MC_sequential,0.023,50,thermal, +59529__GEN_2,59529__GEN_2,1,1,MC_sequential,0.045,36,thermal, +59529__GEN1,59529__GEN1,1,1,MC_sequential,0.045,36,thermal, +59557__AC2FC,59557__AC2FC,1,1,MC_sequential,0.045,36,thermal, +59658__GEN1,59658__GEN1,1,1,MC_sequential,0.05,40,thermal, +59660__3,59660__3,1,1,MC_sequential,0.04,24,thermal, +59660__4,59660__4,1,1,MC_sequential,0.04,24,thermal, +59660__9,59660__9,1,1,MC_sequential,0.04,24,thermal, +59784__CTG5,59784__CTG5,1,1,MC_sequential,0.038,24,thermal, +59784__CTG6,59784__CTG6,1,1,MC_sequential,0.038,24,thermal, +59784__ST11,59784__ST11,1,1,MC_sequential,0.038,24,thermal, +59800__AMZ00,59800__AMZ00,1,1,MC_sequential,0.03,24,thermal, +59802__MXM00,59802__MXM00,1,1,MC_sequential,0.03,24,thermal, +59803__PXR00,59803__PXR00,1,1,MC_sequential,0.03,24,thermal, +59804__SBK00,59804__SBK00,1,1,MC_sequential,0.03,24,thermal, +59805__YAH00,59805__YAH00,1,1,MC_sequential,0.03,24,thermal, +59877__MB20,59877__MB20,1,1,MC_sequential,0.045,36,thermal, +59939__BESS1,59939__BESS1,1,1,Derate,0.02,36,thermal, +59939__BESS2,59939__BESS2,1,1,Derate,0.02,36,thermal, +59952__1,59952__1,1,1,MC_sequential,0.045,36,thermal, +59952__2,59952__2,1,1,MC_sequential,0.045,36,thermal, +59952__3,59952__3,1,1,MC_sequential,0.045,36,thermal, +59952__4,59952__4,1,1,MC_sequential,0.045,36,thermal, +59952__5,59952__5,1,1,MC_sequential,0.045,36,thermal, +60092__BLST2,60092__BLST2,1,1,Derate,0.02,36,thermal, +60093__BES1,60093__BES1,1,1,Derate,0.02,36,thermal, +60094__BLST3,60094__BLST3,1,1,Derate,0.02,36,thermal, +60095__BLST4,60095__BLST4,1,1,Derate,0.02,36,thermal, +60130__1,60130__1,1,1,MC_sequential,0.04,24,thermal, +60130__2,60130__2,1,1,MC_sequential,0.04,24,thermal, +60130__4,60130__4,1,1,MC_sequential,0.04,24,thermal, +60130__5,60130__5,1,1,MC_sequential,0.04,24,thermal, +60130__6,60130__6,1,1,MC_sequential,0.04,24,thermal, +60220__ZWED1,60220__ZWED1,1,1,MC_sequential,0.045,36,thermal, +60220__ZWED2,60220__ZWED2,1,1,MC_sequential,0.045,36,thermal, +60223__EQXOO,60223__EQXOO,1,1,MC_sequential,0.03,24,thermal, +60224__NTL00,60224__NTL00,1,1,MC_sequential,0.03,24,thermal, +60231__BA1,60231__BA1,1,1,Derate,0.02,36,thermal, +60233__BESS1,60233__BESS1,1,1,Derate,0.02,36,thermal, +60233__BESS2,60233__BESS2,1,1,Derate,0.02,36,thermal, +60249__BES,60249__BES,1,1,Derate,0.02,36,thermal, +60249__CGN,60249__CGN,1,1,MC_sequential,0.045,36,thermal, +60263__GEN1,60263__GEN1,1,1,MC_sequential,0.045,36,thermal, +60263__GEN2,60263__GEN2,1,1,MC_sequential,0.045,36,thermal, +60349__LFGG1,60349__LFGG1,1,1,MC_sequential,0.045,36,thermal, +60349__LFGG2,60349__LFGG2,1,1,MC_sequential,0.045,36,thermal, +60349__LFGG3,60349__LFGG3,1,1,MC_sequential,0.045,36,thermal, +60385__MB_18,60385__MB_18,1,1,MC_sequential,0.03,24,thermal, +60419__DAC2G,60419__DAC2G,1,1,MC_sequential,0.035,30,thermal, +60421__WHR1,60421__WHR1,1,1,MC_sequential,0.03,24,thermal, +60444__GLA,60444__GLA,1,1,Derate,0.02,36,thermal, +60491__SB3BS,60491__SB3BS,1,1,Derate,0.02,36,thermal, +60565__SES1,60565__SES1,1,1,Derate,0.02,36,thermal, +60565__SES2,60565__SES2,1,1,Derate,0.02,36,thermal, +60567__SES1,60567__SES1,1,1,Derate,0.02,36,thermal, +60568__SES,60568__SES,1,1,Derate,0.02,36,thermal, +60569__SES,60569__SES,1,1,Derate,0.02,36,thermal, +60570__SES,60570__SES,1,1,Derate,0.02,36,thermal, +60641__HDES1,60641__HDES1,1,1,Derate,0.02,36,thermal, +60654__GEN02,60654__GEN02,1,1,Derate,0.02,36,thermal, +60661__013A,60661__013A,1,1,Derate,0.02,36,thermal, +60661__013B,60661__013B,1,1,Derate,0.02,36,thermal, +60696__1,60696__1,1,1,MC_sequential,0.045,36,thermal, +60696__2,60696__2,1,1,MC_sequential,0.045,36,thermal, +60698__BESS1,60698__BESS1,1,1,Derate,0.02,36,thermal, +60698__BESS2,60698__BESS2,1,1,Derate,0.02,36,thermal, +60698__GT1,60698__GT1,1,1,MC_sequential,0.023,50,thermal, +60698__GT2,60698__GT2,1,1,MC_sequential,0.023,50,thermal, +60760__PE101,60760__PE101,1,1,Derate,0.02,36,thermal, +60768__CTG3,60768__CTG3,1,1,MC_sequential,0.038,24,thermal, +60768__CTG4,60768__CTG4,1,1,MC_sequential,0.038,24,thermal, +60768__ST10,60768__ST10,1,1,MC_sequential,0.038,24,thermal, +60785__OEC2,60785__OEC2,1,1,MC_sequential,0.035,30,thermal, +60785__UNIT1,60785__UNIT1,1,1,MC_sequential,0.035,30,thermal, +60791__BA1&2,60791__BA1&2,1,1,Derate,0.02,36,thermal, +60791__BA3,60791__BA3,1,1,Derate,0.02,36,thermal, +60792__GT1,60792__GT1,1,1,MC_sequential,0.045,36,thermal, +60792__GT2,60792__GT2,1,1,MC_sequential,0.045,36,thermal, +60918__3,60918__3,1,1,MC_sequential,0.045,36,thermal, +60960__CTG1,60960__CTG1,1,1,MC_sequential,0.045,36,thermal, +60960__CTG2,60960__CTG2,1,1,MC_sequential,0.045,36,thermal, +60960__STG1,60960__STG1,1,1,MC_sequential,0.045,36,thermal, +60964__AEPB1,60964__AEPB1,1,1,Derate,0.02,36,thermal, +60974__2BESS,60974__2BESS,1,1,Derate,0.02,36,thermal, +60996__BA1,60996__BA1,1,1,Derate,0.02,36,thermal, +61098__BMBS,61098__BMBS,1,1,Derate,0.02,36,thermal, +61107__VRF,61107__VRF,1,1,Derate,0.02,36,thermal, +61153__AT057,61153__AT057,1,1,MC_sequential,0.03,24,thermal, +61154__AT058,61154__AT058,1,1,MC_sequential,0.03,24,thermal, +61197__PIMA,61197__PIMA,1,1,Derate,0.02,36,thermal, +61204__ALMTS,61204__ALMTS,1,1,Derate,0.02,36,thermal, +61365__FBES,61365__FBES,1,1,Derate,0.02,36,thermal, +61366__TGES,61366__TGES,1,1,Derate,0.02,36,thermal, +61431__BCNB1,61431__BCNB1,1,1,Derate,0.02,36,thermal, +61439__PANBS,61439__PANBS,1,1,Derate,0.02,36,thermal, +61501__GEN1,61501__GEN1,1,1,MC_sequential,0.045,36,thermal, +61502__GEN1,61502__GEN1,1,1,MC_sequential,0.045,36,thermal, +61503__GEN1,61503__GEN1,1,1,MC_sequential,0.045,36,thermal, +61508__1,61508__1,1,1,MC_sequential,0.04,24,thermal, +61508__2,61508__2,1,1,MC_sequential,0.04,24,thermal, +61508__3,61508__3,1,1,MC_sequential,0.04,24,thermal, +61508__4,61508__4,1,1,MC_sequential,0.04,24,thermal, +61508__5,61508__5,1,1,MC_sequential,0.04,24,thermal, +61661__VISTA,61661__VISTA,1,1,Derate,0.02,36,thermal, +61678__BA1,61678__BA1,1,1,Derate,0.02,36,thermal, +61721__WLA01,61721__WLA01,1,1,Derate,0.02,36,thermal, +61722__IRV01,61722__IRV01,1,1,Derate,0.02,36,thermal, +61722__IRV1W,61722__IRV1W,1,1,Derate,0.02,36,thermal, +61723__IRV06,61723__IRV06,1,1,Derate,0.02,36,thermal, +61723__IRV2W,61723__IRV2W,1,1,Derate,0.02,36,thermal, +61754__1,61754__1,1,1,MC_sequential,0.04,24,thermal, +61754__2,61754__2,1,1,MC_sequential,0.04,24,thermal, +61761__GEN_1,61761__GEN_1,1,1,MC_sequential,0.05,40,thermal, +61795__12649,61795__12649,1,1,Derate,0.02,36,thermal, +61846__MM27,61846__MM27,1,1,MC_sequential,0.045,36,thermal, +61861__SRP,61861__SRP,1,1,Derate,0.02,36,thermal, +61912__G1A,61912__G1A,1,1,MC_sequential,0.035,30,thermal, +61912__OEC31,61912__OEC31,1,1,MC_sequential,0.035,30,thermal, +61912__OEC32,61912__OEC32,1,1,MC_sequential,0.035,30,thermal, +61913__B1,61913__B1,1,1,Derate,0.02,36,thermal, +61925__CMNMB,61925__CMNMB,1,1,Derate,0.02,36,thermal, +61993__GDCBA,61993__GDCBA,1,1,Derate,0.02,36,thermal, +61995__UCMBA,61995__UCMBA,1,1,Derate,0.02,36,thermal, +62115__1A,62115__1A,1,1,MC_sequential,0.038,24,thermal, +62115__1B,62115__1B,1,1,MC_sequential,0.038,24,thermal, +62115__1S,62115__1S,1,1,MC_sequential,0.038,24,thermal, +62116__1A,62116__1A,1,1,MC_sequential,0.038,24,thermal, +62116__1B,62116__1B,1,1,MC_sequential,0.038,24,thermal, +62116__1S,62116__1S,1,1,MC_sequential,0.038,24,thermal, +62175__DIBLO,62175__DIBLO,1,1,Derate,0.02,36,thermal, +62176__21Z,62176__21Z,1,1,MC_sequential,0.023,50,thermal, +62176__PF,62176__PF,1,1,MC_sequential,0.023,50,thermal, +62248__2,62248__2,1,1,Derate,0.02,36,thermal, +62319__1,62319__1,1,1,MC_sequential,0.065,60,thermal, +62418__4,62418__4,1,1,MC_sequential,0.045,36,thermal, +62419__4,62419__4,1,1,MC_sequential,0.045,36,thermal, +62441__U1,62441__U1,1,1,Derate,0.02,36,thermal, +62458__RAT00,62458__RAT00,1,1,MC_sequential,0.03,24,thermal, +62459__SMC01,62459__SMC01,1,1,MC_sequential,0.03,24,thermal, +62460__DESI2,62460__DESI2,1,1,Derate,0.02,36,thermal, +62497__OCES2,62497__OCES2,1,1,Derate,0.02,36,thermal, +62499__OCES3,62499__OCES3,1,1,Derate,0.02,36,thermal, +62564__ELKHO,62564__ELKHO,1,1,Derate,0.02,36,thermal, +62571__DSY01,62571__DSY01,1,1,MC_sequential,0.03,24,thermal, +62573__ATT56,62573__ATT56,1,1,MC_sequential,0.03,24,thermal, +62574__ATT93,62574__ATT93,1,1,MC_sequential,0.03,24,thermal, +62575__FLX01,62575__FLX01,1,1,MC_sequential,0.03,24,thermal, +62577__AP11A,62577__AP11A,1,1,MC_sequential,0.03,24,thermal, +62577__AP11B,62577__AP11B,1,1,MC_sequential,0.03,24,thermal, +62577__AP11C,62577__AP11C,1,1,MC_sequential,0.03,24,thermal, +62577__AP11D,62577__AP11D,1,1,MC_sequential,0.03,24,thermal, +62671__EQX1A,62671__EQX1A,1,1,MC_sequential,0.03,24,thermal, +62671__EQX1B,62671__EQX1B,1,1,MC_sequential,0.03,24,thermal, +62697__NTL3A,62697__NTL3A,1,1,MC_sequential,0.03,24,thermal, +62697__NTL3B,62697__NTL3B,1,1,MC_sequential,0.03,24,thermal, +62698__KR059,62698__KR059,1,1,MC_sequential,0.03,24,thermal, +62699__KSR24,62699__KSR24,1,1,MC_sequential,0.03,24,thermal, +62700__KSR23,62700__KSR23,1,1,MC_sequential,0.03,24,thermal, +62701__KS18A,62701__KS18A,1,1,MC_sequential,0.03,24,thermal, +62701__KS18B,62701__KS18B,1,1,MC_sequential,0.03,24,thermal, +62702__EQ14A,62702__EQ14A,1,1,MC_sequential,0.03,24,thermal, +62702__EQ14B,62702__EQ14B,1,1,MC_sequential,0.03,24,thermal, +62703__EQ13A,62703__EQ13A,1,1,MC_sequential,0.03,24,thermal, +62703__EQ13B,62703__EQ13B,1,1,MC_sequential,0.03,24,thermal, +62703__EQX05,62703__EQX05,1,1,MC_sequential,0.03,24,thermal, +62704__EQX09,62704__EQX09,1,1,MC_sequential,0.03,24,thermal, +62704__EQX95,62704__EQX95,1,1,MC_sequential,0.03,24,thermal, +62705__EQX08,62705__EQX08,1,1,MC_sequential,0.03,24,thermal, +62745__BTRY,62745__BTRY,1,1,Derate,0.02,36,thermal, +62754__BA,62754__BA,1,1,Derate,0.02,36,thermal, +62801__ORN34,62801__ORN34,1,1,Derate,0.02,36,thermal, +62874__ACOR1,62874__ACOR1,1,1,Derate,0.02,36,thermal, +62875__WILD1,62875__WILD1,1,1,Derate,0.02,36,thermal, +62889__HEGJF,62889__HEGJF,1,1,Derate,0.02,36,thermal, +62889__HJFII,62889__HJFII,1,1,Derate,0.02,36,thermal, +62964__EL50M,62964__EL50M,1,1,Derate,0.02,36,thermal, +63001__OH1,63001__OH1,1,1,MC_sequential,0.035,30,thermal, +63001__OH2,63001__OH2,1,1,MC_sequential,0.035,30,thermal, +63001__OL1,63001__OL1,1,1,MC_sequential,0.035,30,thermal, +63001__OL2,63001__OL2,1,1,MC_sequential,0.035,30,thermal, +63022__1,63022__1,1,1,Derate,0.02,36,thermal, +63094__SBAD1,63094__SBAD1,1,1,MC_sequential,0.045,36,thermal, +63094__SBAD2,63094__SBAD2,1,1,MC_sequential,0.045,36,thermal, +63172__ARESS,63172__ARESS,1,1,Derate,0.02,36,thermal, +63285__79G1,63285__79G1,1,1,MC_sequential,0.023,50,thermal, +63352__ARPV1,63352__ARPV1,1,1,Derate,0.02,36,thermal, +63365__SL3,63365__SL3,1,1,MC_sequential,0.035,30,thermal, +63420__BA903,63420__BA903,1,1,Derate,0.02,36,thermal, +63421__BA291,63421__BA291,1,1,Derate,0.02,36,thermal, +63422__BA112,63422__BA112,1,1,Derate,0.02,36,thermal, +63423__GEN1,63423__GEN1,1,1,MC_sequential,0.023,50,thermal, +63439__CCFC1,63439__CCFC1,1,1,MC_sequential,0.03,24,thermal, +63486__DA04B,63486__DA04B,1,1,Derate,0.02,36,thermal, +63490__OEC1,63490__OEC1,1,1,MC_sequential,0.035,30,thermal, +63491__OEC1,63491__OEC1,1,1,MC_sequential,0.035,30,thermal, +63510__ST1,63510__ST1,1,1,Derate,0.02,36,thermal, +63603__ILM01,63603__ILM01,1,1,MC_sequential,0.03,24,thermal, +63604__EXN02,63604__EXN02,1,1,MC_sequential,0.03,24,thermal, +63605__ATT35,63605__ATT35,1,1,MC_sequential,0.03,24,thermal, +63606__ATT27,63606__ATT27,1,1,MC_sequential,0.03,24,thermal, +63607__EXN01,63607__EXN01,1,1,MC_sequential,0.03,24,thermal, +63609__ALRGN,63609__ALRGN,1,1,Derate,0.02,36,thermal, +63610__BAKER,63610__BAKER,1,1,Derate,0.02,36,thermal, +63611__CSULB,63611__CSULB,1,1,Derate,0.02,36,thermal, +63612__DATS0,63612__DATS0,1,1,Derate,0.02,36,thermal, +63613__DOWNY,63613__DOWNY,1,1,Derate,0.02,36,thermal, +63614__LAWRP,63614__LAWRP,1,1,Derate,0.02,36,thermal, +63615__LBCON,63615__LBCON,1,1,Derate,0.02,36,thermal, +63616__OCSD1,63616__OCSD1,1,1,Derate,0.02,36,thermal, +63617__SOCCD,63617__SOCCD,1,1,Derate,0.02,36,thermal, +63638__CTC13,63638__CTC13,1,1,MC_sequential,0.03,24,thermal, +63685__LUNA,63685__LUNA,1,1,Derate,0.02,36,thermal, +63699__AGT0A,63699__AGT0A,1,1,MC_sequential,0.03,24,thermal, +63699__AGT0B,63699__AGT0B,1,1,MC_sequential,0.03,24,thermal, +63701__CST1A,63701__CST1A,1,1,MC_sequential,0.03,24,thermal, +63701__CST1B,63701__CST1B,1,1,MC_sequential,0.03,24,thermal, +63704__EQ10A,63704__EQ10A,1,1,MC_sequential,0.03,24,thermal, +63704__EQ10B,63704__EQ10B,1,1,MC_sequential,0.03,24,thermal, +63705__EQ11A,63705__EQ11A,1,1,MC_sequential,0.03,24,thermal, +63705__EQ11B,63705__EQ11B,1,1,MC_sequential,0.03,24,thermal, +63705__EQ11C,63705__EQ11C,1,1,MC_sequential,0.03,24,thermal, +63708__EQ15A,63708__EQ15A,1,1,MC_sequential,0.03,24,thermal, +63708__EQ15B,63708__EQ15B,1,1,MC_sequential,0.03,24,thermal, +63711__JSR00,63711__JSR00,1,1,MC_sequential,0.03,24,thermal, +63712__KSR28,63712__KSR28,1,1,MC_sequential,0.03,24,thermal, +63714__GEN05,63714__GEN05,1,1,MC_sequential,0.03,24,thermal, +63715__SCU00,63715__SCU00,1,1,MC_sequential,0.03,24,thermal, +63716__KSR53,63716__KSR53,1,1,MC_sequential,0.03,24,thermal, +63717__TLR0A,63717__TLR0A,1,1,MC_sequential,0.03,24,thermal, +63717__TLR0B,63717__TLR0B,1,1,MC_sequential,0.03,24,thermal, +63717__TLR0C,63717__TLR0C,1,1,MC_sequential,0.03,24,thermal, +63722__BA1,63722__BA1,1,1,Derate,0.02,36,thermal, +63727__SLB3C,63727__SLB3C,1,1,Derate,0.02,36,thermal, +63727__SLBES,63727__SLBES,1,1,Derate,0.02,36,thermal, +63727__SLBPW,63727__SLBPW,1,1,Derate,0.02,36,thermal, +63727__SLBSV,63727__SLBSV,1,1,Derate,0.02,36,thermal, +63728__BESS,63728__BESS,1,1,Derate,0.02,36,thermal, +63731__NT125,63731__NT125,1,1,Derate,0.02,36,thermal, +63735__SLV01,63735__SLV01,1,1,Derate,0.02,36,thermal, +63755__E1,63755__E1,1,1,MC_sequential,0.045,36,thermal, +63755__E2,63755__E2,1,1,MC_sequential,0.045,36,thermal, +63755__E3,63755__E3,1,1,MC_sequential,0.045,36,thermal, +63776__TW100,63776__TW100,1,1,Derate,0.02,36,thermal, +63834__GTWAY,63834__GTWAY,1,1,Derate,0.02,36,thermal, +63843__SASP1,63843__SASP1,1,1,Derate,0.02,36,thermal, +63848__BESS1,63848__BESS1,1,1,Derate,0.02,36,thermal, +63849__BESS1,63849__BESS1,1,1,Derate,0.02,36,thermal, +63859__RCBA,63859__RCBA,1,1,Derate,0.02,36,thermal, +63891__SATCY,63891__SATCY,1,1,Derate,0.02,36,thermal, +63913__DODGB,63913__DODGB,1,1,Derate,0.02,36,thermal, +63930__CF60,63930__CF60,1,1,Derate,0.02,36,thermal, +63933__DLES1,63933__DLES1,1,1,Derate,0.02,36,thermal, +63943__61730,63943__61730,1,1,Derate,0.02,36,thermal, +64005__MMR_1,64005__MMR_1,1,1,MC_sequential,0.045,36,thermal, +64027__MB19,64027__MB19,1,1,MC_sequential,0.045,36,thermal, +64103__DH003,64103__DH003,1,1,Derate,0.02,36,thermal, +64105__MAV04,64105__MAV04,1,1,Derate,0.02,36,thermal, +64141__4,64141__4,1,1,MC_sequential,0.045,36,thermal, +64148__FISHB,64148__FISHB,1,1,Derate,0.02,36,thermal, +64197__FTHSB,64197__FTHSB,1,1,Derate,0.02,36,thermal, +64198__HRBE,64198__HRBE,1,1,Derate,0.02,36,thermal, +64426__WILBA,64426__WILBA,1,1,Derate,0.02,36,thermal, +64446__AMGB,64446__AMGB,1,1,Derate,0.02,36,thermal, +64481__AEC2B,64481__AEC2B,1,1,Derate,0.02,36,thermal, +64489__GEN2,64489__GEN2,1,1,Derate,0.02,36,thermal, +64505__LFGE1,64505__LFGE1,1,1,MC_sequential,0.045,36,thermal, +64505__LFGE2,64505__LFGE2,1,1,MC_sequential,0.045,36,thermal, +64564__AEC3B,64564__AEC3B,1,1,Derate,0.02,36,thermal, +64601__ESS,64601__ESS,1,1,Derate,0.02,36,thermal, +64611__1,64611__1,1,1,Derate,0.02,36,thermal, +64612__KNES,64612__KNES,1,1,Derate,0.02,36,thermal, +64614__KSES,64614__KSES,1,1,Derate,0.02,36,thermal, +64622__GEN1,64622__GEN1,1,1,MC_sequential,0.045,36,thermal, +64622__GEN2,64622__GEN2,1,1,MC_sequential,0.045,36,thermal, +64624__BESS1,64624__BESS1,1,1,Derate,0.02,36,thermal, +64630__RBBAT,64630__RBBAT,1,1,Derate,0.02,36,thermal, +64663__EG075,64663__EG075,1,1,MC_sequential,0.045,36,thermal, +64695__BESS,64695__BESS,1,1,Derate,0.02,36,thermal, +64701__LCES,64701__LCES,1,1,Derate,0.02,36,thermal, +64712__ESSB1,64712__ESSB1,1,1,Derate,0.02,36,thermal, +64713__ESSB2,64713__ESSB2,1,1,Derate,0.02,36,thermal, +64743__TB1,64743__TB1,1,1,Derate,0.02,36,thermal, +64743__TB2,64743__TB2,1,1,Derate,0.02,36,thermal, +64766__RCAM2,64766__RCAM2,1,1,Derate,0.02,36,thermal, +64851__DAGGB,64851__DAGGB,1,1,Derate,0.02,36,thermal, +64852__DAGGB,64852__DAGGB,1,1,Derate,0.02,36,thermal, +64877__BESS,64877__BESS,1,1,Derate,0.02,36,thermal, +64878__BESS,64878__BESS,1,1,Derate,0.02,36,thermal, +64879__BESS,64879__BESS,1,1,Derate,0.02,36,thermal, +64881__NMSUB,64881__NMSUB,1,1,Derate,0.02,36,thermal, +64908__GEN02,64908__GEN02,1,1,Derate,0.02,36,thermal, +64921__SAP2,64921__SAP2,1,1,Derate,0.02,36,thermal, +64928__BESS,64928__BESS,1,1,Derate,0.02,36,thermal, +64929__BESS,64929__BESS,1,1,Derate,0.02,36,thermal, +64993__BB1BA,64993__BB1BA,1,1,Derate,0.02,36,thermal, +65053__BMSES,65053__BMSES,1,1,Derate,0.02,36,thermal, +65132__BA1,65132__BA1,1,1,Derate,0.02,36,thermal, +65140__SWSH1,65140__SWSH1,1,1,Derate,0.02,36,thermal, +65140__SWSH2,65140__SWSH2,1,1,Derate,0.02,36,thermal, +65191__USD00,65191__USD00,1,1,MC_sequential,0.03,24,thermal, +65192__ATT41,65192__ATT41,1,1,MC_sequential,0.03,24,thermal, +65193__CLT05,65193__CLT05,1,1,MC_sequential,0.03,24,thermal, +65196__SCC02,65196__SCC02,1,1,MC_sequential,0.03,24,thermal, +65199__KST00,65199__KST00,1,1,MC_sequential,0.03,24,thermal, +65200__DTV02,65200__DTV02,1,1,MC_sequential,0.03,24,thermal, +65202__CLT05,65202__CLT05,1,1,MC_sequential,0.03,24,thermal, +65203__BDB01,65203__BDB01,1,1,MC_sequential,0.03,24,thermal, +65204__ATT95,65204__ATT95,1,1,MC_sequential,0.03,24,thermal, +65205__ATT26,65205__ATT26,1,1,MC_sequential,0.03,24,thermal, +65206__ATT58,65206__ATT58,1,1,MC_sequential,0.03,24,thermal, +65208__ATA17,65208__ATA17,1,1,MC_sequential,0.03,24,thermal, +65210__ENL00,65210__ENL00,1,1,MC_sequential,0.03,24,thermal, +65211__CMC04,65211__CMC04,1,1,MC_sequential,0.03,24,thermal, +65360__ATA02,65360__ATA02,1,1,MC_sequential,0.03,24,thermal, +65361__CLT30,65361__CLT30,1,1,MC_sequential,0.03,24,thermal, +65380__3,65380__3,1,1,MC_sequential,0.04,24,thermal, +65382__ESS,65382__ESS,1,1,Derate,0.02,36,thermal, +65408__GOSSB,65408__GOSSB,1,1,Derate,0.02,36,thermal, +65409__GFCSB,65409__GFCSB,1,1,Derate,0.02,36,thermal, +65469__SAMBA,65469__SAMBA,1,1,Derate,0.02,36,thermal, +65472__CHUK1,65472__CHUK1,1,1,Derate,0.02,36,thermal, +65517__BMORC,65517__BMORC,1,1,MC_sequential,0.05,40,thermal, +65562__ABSBA,65562__ABSBA,1,1,Derate,0.02,36,thermal, +65568__GMSPB,65568__GMSPB,1,1,Derate,0.02,36,thermal, +65569__GSRBA,65569__GSRBA,1,1,Derate,0.02,36,thermal, +65570__WVMBA,65570__WVMBA,1,1,Derate,0.02,36,thermal, +65614__OCCBA,65614__OCCBA,1,1,Derate,0.02,36,thermal, +65672__BESS,65672__BESS,1,1,Derate,0.02,36,thermal, +65673__BESS,65673__BESS,1,1,Derate,0.02,36,thermal, +65674__BESS,65674__BESS,1,1,Derate,0.02,36,thermal, +65675__BESS,65675__BESS,1,1,Derate,0.02,36,thermal, +65676__BESS,65676__BESS,1,1,Derate,0.02,36,thermal, +65677__BESS,65677__BESS,1,1,Derate,0.02,36,thermal, +65711__GEN2,65711__GEN2,1,1,Derate,0.02,36,thermal, +65734__OBIBS,65734__OBIBS,1,1,Derate,0.02,36,thermal, +65735__OBIIB,65735__OBIIB,1,1,Derate,0.02,36,thermal, +65743__VCTBA,65743__VCTBA,1,1,Derate,0.02,36,thermal, +65744__ARCBA,65744__ARCBA,1,1,Derate,0.02,36,thermal, +65773__3500,65773__3500,1,1,MC_sequential,0.035,30,thermal, +65773__5100A,65773__5100A,1,1,MC_sequential,0.035,30,thermal, +65773__5100B,65773__5100B,1,1,MC_sequential,0.035,30,thermal, +65773__5200,65773__5200,1,1,MC_sequential,0.035,30,thermal, +65857__SUNS1,65857__SUNS1,1,1,Derate,0.02,36,thermal, +65898__T0041,65898__T0041,1,1,MC_sequential,0.04,24,thermal, +65898__T0042,65898__T0042,1,1,MC_sequential,0.04,24,thermal, +65933__1,65933__1,1,1,Derate,0.02,36,thermal, +65956__STOBA,65956__STOBA,1,1,Derate,0.02,36,thermal, +65962__MS4B,65962__MS4B,1,1,Derate,0.02,36,thermal, +65963__MS5B,65963__MS5B,1,1,Derate,0.02,36,thermal, +65980__WCBS,65980__WCBS,1,1,Derate,0.02,36,thermal, +65987__DP1,65987__DP1,1,1,Derate,0.02,36,thermal, +65988__DP2,65988__DP2,1,1,Derate,0.02,36,thermal, +66023__19043,66023__19043,1,1,Derate,0.02,36,thermal, +66050__LAB,66050__LAB,1,1,Derate,0.02,36,thermal, +66142__KSR48,66142__KSR48,1,1,MC_sequential,0.03,24,thermal, +66143__SDC01,66143__SDC01,1,1,MC_sequential,0.03,24,thermal, +66145__TMF06,66145__TMF06,1,1,MC_sequential,0.03,24,thermal, +66146__KSR40,66146__KSR40,1,1,MC_sequential,0.03,24,thermal, +66148__KSR55,66148__KSR55,1,1,MC_sequential,0.03,24,thermal, +66163__JICB1,66163__JICB1,1,1,Derate,0.02,36,thermal, +66178__9123,66178__9123,1,1,Derate,0.02,36,thermal, +66208__NCV,66208__NCV,1,1,Derate,0.02,36,thermal, +66263__2222,66263__2222,1,1,Derate,0.02,36,thermal, +66265__1,66265__1,1,1,Derate,0.02,36,thermal, +66266__1,66266__1,1,1,Derate,0.02,36,thermal, +66270__PRXBS,66270__PRXBS,1,1,Derate,0.02,36,thermal, +66271__HCEBA,66271__HCEBA,1,1,Derate,0.02,36,thermal, +66278__1,66278__1,1,1,Derate,0.02,36,thermal, +66279__1,66279__1,1,1,Derate,0.02,36,thermal, +66280__1,66280__1,1,1,Derate,0.02,36,thermal, +66281__1,66281__1,1,1,Derate,0.02,36,thermal, +66281__2,66281__2,1,1,Derate,0.02,36,thermal, +66285__COND1,66285__COND1,1,1,Derate,0.02,36,thermal, +66334__BESS3,66334__BESS3,1,1,Derate,0.02,36,thermal, +66357__YPES,66357__YPES,1,1,Derate,0.02,36,thermal, +66394__GOLET,66394__GOLET,1,1,Derate,0.02,36,thermal, +66408__BESS1,66408__BESS1,1,1,Derate,0.02,36,thermal, +66423__BESS1,66423__BESS1,1,1,Derate,0.02,36,thermal, +66456__ANB00,66456__ANB00,1,1,MC_sequential,0.03,24,thermal, +66458__RCH00,66458__RCH00,1,1,MC_sequential,0.03,24,thermal, +66459__TLR01,66459__TLR01,1,1,MC_sequential,0.03,24,thermal, +66472__CGEN1,66472__CGEN1,1,1,MC_sequential,0.04,24,thermal, +66472__CGEN2,66472__CGEN2,1,1,MC_sequential,0.04,24,thermal, +66494__NOVA1,66494__NOVA1,1,1,Derate,0.02,36,thermal, +66500__VC85,66500__VC85,1,1,Derate,0.02,36,thermal, +66502__VC54,66502__VC54,1,1,Derate,0.02,36,thermal, +66532__BCE22,66532__BCE22,1,1,Derate,0.02,36,thermal, +66533__BCE12,66533__BCE12,1,1,Derate,0.02,36,thermal, +66575__SUNS2,66575__SUNS2,1,1,Derate,0.02,36,thermal, +66620__GEN2,66620__GEN2,1,1,Derate,0.02,36,thermal, +66627__SON13,66627__SON13,1,1,Derate,0.02,36,thermal, +66636__BESS,66636__BESS,1,1,Derate,0.02,36,thermal, +66680__UNIT1,66680__UNIT1,1,1,MC_sequential,0.04,24,thermal, +66680__UNIT2,66680__UNIT2,1,1,MC_sequential,0.04,24,thermal, +66680__UNIT3,66680__UNIT3,1,1,MC_sequential,0.04,24,thermal, +66680__UNIT4,66680__UNIT4,1,1,MC_sequential,0.04,24,thermal, +66716__SB123,66716__SB123,1,1,Derate,0.02,36,thermal, +66772__ESTRB,66772__ESTRB,1,1,Derate,0.02,36,thermal, +66773__RCWYB,66773__RCWYB,1,1,Derate,0.02,36,thermal, +66799__4087B,66799__4087B,1,1,Derate,0.02,36,thermal, +66807__CUYA1,66807__CUYA1,1,1,Derate,0.02,36,thermal, +66814__SKYBA,66814__SKYBA,1,1,Derate,0.02,36,thermal, +66925__MCBA,66925__MCBA,1,1,Derate,0.02,36,thermal, +67091__YP2AB,67091__YP2AB,1,1,Derate,0.02,36,thermal, +67091__YP2BB,67091__YP2BB,1,1,Derate,0.02,36,thermal, +67093__GEN_1,67093__GEN_1,1,1,Derate,0.02,36,thermal, +67170__ASBA,67170__ASBA,1,1,Derate,0.02,36,thermal, +67178__MEBA,67178__MEBA,1,1,Derate,0.02,36,thermal, +67285__GEN02,67285__GEN02,1,1,Derate,0.02,36,thermal, +67300__RATBA,67300__RATBA,1,1,Derate,0.02,36,thermal, +67301__PKWBA,67301__PKWBA,1,1,Derate,0.02,36,thermal, +67303__MEABA,67303__MEABA,1,1,Derate,0.02,36,thermal, +67305__BROBA,67305__BROBA,1,1,Derate,0.02,36,thermal, +67306__KEEBA,67306__KEEBA,1,1,Derate,0.02,36,thermal, +67380__MID,67380__MID,1,1,MC_sequential,0.04,24,thermal, +67485__CG101,67485__CG101,1,1,MC_sequential,0.04,36,thermal, +67485__CG102,67485__CG102,1,1,MC_sequential,0.04,36,thermal, diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_weather_derates.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_weather_derates.csv new file mode 100644 index 0000000000..093bc866ef --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/availability/user_defined_weather_derates.csv @@ -0,0 +1 @@ +year,month,day_of_month,hour_of_day,unit,availability_derate_weather diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/files_to_import.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/files_to_import.csv new file mode 100644 index 0000000000..8666fce850 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/files_to_import.csv @@ -0,0 +1,21 @@ +import,filename,table +1,./geographies/user_defined_baa_key.csv,user_defined_baa_key +1,../../../raw_data/pudl_eia860_generators.csv,raw_data_eia860_generators +1,./project/user_defined_eia_gridpath_key.csv,user_defined_eia_gridpath_key +1,./project/user_defined_heat_rate_curve.csv,user_defined_heat_rate_curve +1,../../../raw_data/pudl_ra_toolkit_var_profiles.csv,raw_data_project_variable_profiles +1,./project/var_profiles/user_defined_var_project_units.csv,raw_data_var_project_units +1,../../../raw_data/ra_toolkit_hydro.csv,raw_data_project_hydro_opchars_by_year_month +1,./project/hydro/user_defined_hydro_years.csv,raw_data_hydro_years +1,./project/hydro/user_defined_bt_horizons.csv,user_defined_balancing_type_horizons +1,../../../raw_data/ra_toolkit_load.csv,raw_data_system_load +1,./load/user_defined_load_zone_units.csv,user_defined_load_zone_units +1,../../../raw_data/pudl_eia930_hourly_interchange.csv,raw_data_eia930_hourly_interchange +1,../../../raw_data/pudl_eiaaeo_fuel_prices.csv,raw_data_eiaaeo_fuel_prices +1,./fuels/user_defined_generic_fuel_intensities.csv,user_defined_generic_fuel_intensities +1,./fuels/user_defined_eiaaeo_region_key.csv,user_defined_eiaaeo_region_key +1,./availability/user_defined_unit_availability_params.csv,raw_data_unit_availability_params +1,./availability/user_defined_weather_derates.csv,raw_data_unit_availability_weather_derates +1,./weather/user_defined_data_availability.csv,user_defined_data_availability +1,./weather/user_defined_monte_carlo_timeseries.csv,user_defined_monte_carlo_timeseries +1,./weather/user_defined_monte_carlo_weather_bins.csv,user_defined_weather_bins diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_eiaaeo_region_key.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_eiaaeo_region_key.csv new file mode 100644 index 0000000000..d915f73511 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_eiaaeo_region_key.csv @@ -0,0 +1,7 @@ +electricity_market_module_region_eiaaeo,region,fuel_region +western_electricity_coordinating_council_basin,WECC,western_electricity_coordinating_council_basin +western_electricity_coordinating_council_california_north,WECC,western_electricity_coordinating_council_california_north +western_electricity_coordinating_council_california_south,WECC,western_electricity_coordinating_council_california_south +western_electricity_coordinating_council_northwest_power_pool_area,WECC,western_electricity_coordinating_council_northwest_power_pool_area +western_electricity_coordinating_council_rockies,WECC,western_electricity_coordinating_council_rockies +western_electricity_coordinating_council_southwest,WECC,western_electricity_coordinating_council_southwest diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_generic_fuel_intensities.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_generic_fuel_intensities.csv new file mode 100644 index 0000000000..5f58d2a329 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/fuels/user_defined_generic_fuel_intensities.csv @@ -0,0 +1,4 @@ +gridpath_generic_fuel,co2_intensity_emissionsunit_per_fuelunit,units,source +Gas,0.05291,metric_tons_per_mmbtu,https://www.eia.gov/environment/emissions/co2_vol_mass.php +Coal,0.09552,metric_tons_per_mmbtu,https://www.eia.gov/environment/emissions/co2_vol_mass.php +Oil,0.07315,metric_tons_per_mmbtu,https://www.eia.gov/environment/emissions/co2_vol_mass.php diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/geographies/user_defined_baa_key.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/geographies/user_defined_baa_key.csv new file mode 100644 index 0000000000..2703ba619d --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/geographies/user_defined_baa_key.csv @@ -0,0 +1,36 @@ +baa,region,fuel_region +AVA,WECC,western_electricity_coordinating_council_northwest_power_pool_area +AVRN,WECC,western_electricity_coordinating_council_northwest_power_pool_area +AZPS,WECC,western_electricity_coordinating_council_southwest +BANC,WECC,western_electricity_coordinating_council_california_north +BPAT,WECC,western_electricity_coordinating_council_northwest_power_pool_area +CHPD,WECC,western_electricity_coordinating_council_northwest_power_pool_area +CISO,WECC,western_electricity_coordinating_council_california_south +DEAA,WECC,western_electricity_coordinating_council_southwest +DOPD,WECC,western_electricity_coordinating_council_northwest_power_pool_area +EPE,WECC,western_electricity_coordinating_council_southwest +GCPD,WECC,western_electricity_coordinating_council_northwest_power_pool_area +GRID,WECC,western_electricity_coordinating_council_northwest_power_pool_area +GRIF,WECC,western_electricity_coordinating_council_southwest +GWA,WECC,western_electricity_coordinating_council_northwest_power_pool_area +HGMA,WECC,western_electricity_coordinating_council_southwest +IID,WECC,western_electricity_coordinating_council_california_south +IPCO,WECC,western_electricity_coordinating_council_northwest_power_pool_area +LDWP,WECC,western_electricity_coordinating_council_california_south +NEVP,WECC,western_electricity_coordinating_council_basin +NWMT,WECC,western_electricity_coordinating_council_northwest_power_pool_area +PACE,WECC,western_electricity_coordinating_council_basin +PACW,WECC,western_electricity_coordinating_council_northwest_power_pool_area +PGE,WECC,western_electricity_coordinating_council_northwest_power_pool_area +PNM,WECC,western_electricity_coordinating_council_southwest +PSCO,WECC,western_electricity_coordinating_council_rockies +PSEI,WECC,western_electricity_coordinating_council_northwest_power_pool_area +SCL,WECC,western_electricity_coordinating_council_northwest_power_pool_area +SRP,WECC,western_electricity_coordinating_council_southwest +TEPC,WECC,western_electricity_coordinating_council_southwest +TIDC,WECC,western_electricity_coordinating_council_california_north +TPWR,WECC,western_electricity_coordinating_council_northwest_power_pool_area +WACM,WECC,western_electricity_coordinating_council_rockies +WALC,WECC,western_electricity_coordinating_council_southwest +WAUW,WECC,western_electricity_coordinating_council_rockies +WWA,WECC,western_electricity_coordinating_council_northwest_power_pool_area diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/load/user_defined_load_zone_units.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/load/user_defined_load_zone_units.csv new file mode 100644 index 0000000000..c45785b1af --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/load/user_defined_load_zone_units.csv @@ -0,0 +1,41 @@ +load_zone_unit,load_zone,unit_weight +AVA,AVA,1 +AZPS,AZPS,1 +BANC,BANC,1 +BPAT,BPAT,1 +CHPD,CHPD,1 +CIPB,CIPB,1 +CIPV,CIPV,1 +CISC,CISC,1 +CISD,CISD,1 +DOPD,DOPD,1 +EPE,EPE,1 +GCPD,GCPD,1 +IID,IID,1 +IPFE,IPFE,1 +IPMV,IPMV,1 +IPTV,IPTV,1 +LDWP,LDWP,1 +NEVP,NEVP,1 +NWMT,NWMT,1 +PACW,PACW,1 +PAID,PAID,1 +PAUT,PAUT,1 +PAWY,PAWY,1 +PGE,PGE,1 +PNM,PNM,1 +PSCO,PSCO,1 +PSEI,PSEI,1 +SCL,SCL,1 +SPPC,SPPC,1 +SRP,SRP,1 +TEPC,TEPC,1 +TH_Malin,TH_Malin,1 +TH_Mead,TH_Mead,1 +TH_PV,TH_PV,1 +TIDC,TIDC,1 +TPWR,TPWR,1 +VEA,VEA,1 +WACM,WACM,1 +WALC,WALC,1 +WAUW,WAUW,1 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_bt_horizons.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_bt_horizons.csv new file mode 100644 index 0000000000..c3091316c9 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_bt_horizons.csv @@ -0,0 +1,432 @@ +balancing_type,horizon,hour_ending_of_year_start,hour_ending_of_year_end +day,1,1,24 +day,2,25,48 +day,3,49,72 +day,4,73,96 +day,5,97,120 +day,6,121,144 +day,7,145,168 +day,8,169,192 +day,9,193,216 +day,10,217,240 +day,11,241,264 +day,12,265,288 +day,13,289,312 +day,14,313,336 +day,15,337,360 +day,16,361,384 +day,17,385,408 +day,18,409,432 +day,19,433,456 +day,20,457,480 +day,21,481,504 +day,22,505,528 +day,23,529,552 +day,24,553,576 +day,25,577,600 +day,26,601,624 +day,27,625,648 +day,28,649,672 +day,29,673,696 +day,30,697,720 +day,31,721,744 +day,32,745,768 +day,33,769,792 +day,34,793,816 +day,35,817,840 +day,36,841,864 +day,37,865,888 +day,38,889,912 +day,39,913,936 +day,40,937,960 +day,41,961,984 +day,42,985,1008 +day,43,1009,1032 +day,44,1033,1056 +day,45,1057,1080 +day,46,1081,1104 +day,47,1105,1128 +day,48,1129,1152 +day,49,1153,1176 +day,50,1177,1200 +day,51,1201,1224 +day,52,1225,1248 +day,53,1249,1272 +day,54,1273,1296 +day,55,1297,1320 +day,56,1321,1344 +day,57,1345,1368 +day,58,1369,1392 +day,59,1393,1416 +day,60,1417,1440 +day,61,1441,1464 +day,62,1465,1488 +day,63,1489,1512 +day,64,1513,1536 +day,65,1537,1560 +day,66,1561,1584 +day,67,1585,1608 +day,68,1609,1632 +day,69,1633,1656 +day,70,1657,1680 +day,71,1681,1704 +day,72,1705,1728 +day,73,1729,1752 +day,74,1753,1776 +day,75,1777,1800 +day,76,1801,1824 +day,77,1825,1848 +day,78,1849,1872 +day,79,1873,1896 +day,80,1897,1920 +day,81,1921,1944 +day,82,1945,1968 +day,83,1969,1992 +day,84,1993,2016 +day,85,2017,2040 +day,86,2041,2064 +day,87,2065,2088 +day,88,2089,2112 +day,89,2113,2136 +day,90,2137,2160 +day,91,2161,2184 +day,92,2185,2208 +day,93,2209,2232 +day,94,2233,2256 +day,95,2257,2280 +day,96,2281,2304 +day,97,2305,2328 +day,98,2329,2352 +day,99,2353,2376 +day,100,2377,2400 +day,101,2401,2424 +day,102,2425,2448 +day,103,2449,2472 +day,104,2473,2496 +day,105,2497,2520 +day,106,2521,2544 +day,107,2545,2568 +day,108,2569,2592 +day,109,2593,2616 +day,110,2617,2640 +day,111,2641,2664 +day,112,2665,2688 +day,113,2689,2712 +day,114,2713,2736 +day,115,2737,2760 +day,116,2761,2784 +day,117,2785,2808 +day,118,2809,2832 +day,119,2833,2856 +day,120,2857,2880 +day,121,2881,2904 +day,122,2905,2928 +day,123,2929,2952 +day,124,2953,2976 +day,125,2977,3000 +day,126,3001,3024 +day,127,3025,3048 +day,128,3049,3072 +day,129,3073,3096 +day,130,3097,3120 +day,131,3121,3144 +day,132,3145,3168 +day,133,3169,3192 +day,134,3193,3216 +day,135,3217,3240 +day,136,3241,3264 +day,137,3265,3288 +day,138,3289,3312 +day,139,3313,3336 +day,140,3337,3360 +day,141,3361,3384 +day,142,3385,3408 +day,143,3409,3432 +day,144,3433,3456 +day,145,3457,3480 +day,146,3481,3504 +day,147,3505,3528 +day,148,3529,3552 +day,149,3553,3576 +day,150,3577,3600 +day,151,3601,3624 +day,152,3625,3648 +day,153,3649,3672 +day,154,3673,3696 +day,155,3697,3720 +day,156,3721,3744 +day,157,3745,3768 +day,158,3769,3792 +day,159,3793,3816 +day,160,3817,3840 +day,161,3841,3864 +day,162,3865,3888 +day,163,3889,3912 +day,164,3913,3936 +day,165,3937,3960 +day,166,3961,3984 +day,167,3985,4008 +day,168,4009,4032 +day,169,4033,4056 +day,170,4057,4080 +day,171,4081,4104 +day,172,4105,4128 +day,173,4129,4152 +day,174,4153,4176 +day,175,4177,4200 +day,176,4201,4224 +day,177,4225,4248 +day,178,4249,4272 +day,179,4273,4296 +day,180,4297,4320 +day,181,4321,4344 +day,182,4345,4368 +day,183,4369,4392 +day,184,4393,4416 +day,185,4417,4440 +day,186,4441,4464 +day,187,4465,4488 +day,188,4489,4512 +day,189,4513,4536 +day,190,4537,4560 +day,191,4561,4584 +day,192,4585,4608 +day,193,4609,4632 +day,194,4633,4656 +day,195,4657,4680 +day,196,4681,4704 +day,197,4705,4728 +day,198,4729,4752 +day,199,4753,4776 +day,200,4777,4800 +day,201,4801,4824 +day,202,4825,4848 +day,203,4849,4872 +day,204,4873,4896 +day,205,4897,4920 +day,206,4921,4944 +day,207,4945,4968 +day,208,4969,4992 +day,209,4993,5016 +day,210,5017,5040 +day,211,5041,5064 +day,212,5065,5088 +day,213,5089,5112 +day,214,5113,5136 +day,215,5137,5160 +day,216,5161,5184 +day,217,5185,5208 +day,218,5209,5232 +day,219,5233,5256 +day,220,5257,5280 +day,221,5281,5304 +day,222,5305,5328 +day,223,5329,5352 +day,224,5353,5376 +day,225,5377,5400 +day,226,5401,5424 +day,227,5425,5448 +day,228,5449,5472 +day,229,5473,5496 +day,230,5497,5520 +day,231,5521,5544 +day,232,5545,5568 +day,233,5569,5592 +day,234,5593,5616 +day,235,5617,5640 +day,236,5641,5664 +day,237,5665,5688 +day,238,5689,5712 +day,239,5713,5736 +day,240,5737,5760 +day,241,5761,5784 +day,242,5785,5808 +day,243,5809,5832 +day,244,5833,5856 +day,245,5857,5880 +day,246,5881,5904 +day,247,5905,5928 +day,248,5929,5952 +day,249,5953,5976 +day,250,5977,6000 +day,251,6001,6024 +day,252,6025,6048 +day,253,6049,6072 +day,254,6073,6096 +day,255,6097,6120 +day,256,6121,6144 +day,257,6145,6168 +day,258,6169,6192 +day,259,6193,6216 +day,260,6217,6240 +day,261,6241,6264 +day,262,6265,6288 +day,263,6289,6312 +day,264,6313,6336 +day,265,6337,6360 +day,266,6361,6384 +day,267,6385,6408 +day,268,6409,6432 +day,269,6433,6456 +day,270,6457,6480 +day,271,6481,6504 +day,272,6505,6528 +day,273,6529,6552 +day,274,6553,6576 +day,275,6577,6600 +day,276,6601,6624 +day,277,6625,6648 +day,278,6649,6672 +day,279,6673,6696 +day,280,6697,6720 +day,281,6721,6744 +day,282,6745,6768 +day,283,6769,6792 +day,284,6793,6816 +day,285,6817,6840 +day,286,6841,6864 +day,287,6865,6888 +day,288,6889,6912 +day,289,6913,6936 +day,290,6937,6960 +day,291,6961,6984 +day,292,6985,7008 +day,293,7009,7032 +day,294,7033,7056 +day,295,7057,7080 +day,296,7081,7104 +day,297,7105,7128 +day,298,7129,7152 +day,299,7153,7176 +day,300,7177,7200 +day,301,7201,7224 +day,302,7225,7248 +day,303,7249,7272 +day,304,7273,7296 +day,305,7297,7320 +day,306,7321,7344 +day,307,7345,7368 +day,308,7369,7392 +day,309,7393,7416 +day,310,7417,7440 +day,311,7441,7464 +day,312,7465,7488 +day,313,7489,7512 +day,314,7513,7536 +day,315,7537,7560 +day,316,7561,7584 +day,317,7585,7608 +day,318,7609,7632 +day,319,7633,7656 +day,320,7657,7680 +day,321,7681,7704 +day,322,7705,7728 +day,323,7729,7752 +day,324,7753,7776 +day,325,7777,7800 +day,326,7801,7824 +day,327,7825,7848 +day,328,7849,7872 +day,329,7873,7896 +day,330,7897,7920 +day,331,7921,7944 +day,332,7945,7968 +day,333,7969,7992 +day,334,7993,8016 +day,335,8017,8040 +day,336,8041,8064 +day,337,8065,8088 +day,338,8089,8112 +day,339,8113,8136 +day,340,8137,8160 +day,341,8161,8184 +day,342,8185,8208 +day,343,8209,8232 +day,344,8233,8256 +day,345,8257,8280 +day,346,8281,8304 +day,347,8305,8328 +day,348,8329,8352 +day,349,8353,8376 +day,350,8377,8400 +day,351,8401,8424 +day,352,8425,8448 +day,353,8449,8472 +day,354,8473,8496 +day,355,8497,8520 +day,356,8521,8544 +day,357,8545,8568 +day,358,8569,8592 +day,359,8593,8616 +day,360,8617,8640 +day,361,8641,8664 +day,362,8665,8688 +day,363,8689,8712 +day,364,8713,8736 +day,365,8737,8760 +week,1,1,168 +week,2,169,336 +week,3,337,504 +week,4,505,672 +week,5,673,840 +week,6,841,1008 +week,7,1009,1176 +week,8,1177,1344 +week,9,1345,1512 +week,10,1513,1680 +week,11,1681,1848 +week,12,1849,2016 +week,13,2017,2184 +week,14,2185,2352 +week,15,2353,2520 +week,16,2521,2688 +week,17,2689,2856 +week,18,2857,3024 +week,19,3025,3192 +week,20,3193,3360 +week,21,3361,3528 +week,22,3529,3696 +week,23,3697,3864 +week,24,3865,4032 +week,25,4033,4200 +week,26,4201,4368 +week,27,4369,4536 +week,28,4537,4704 +week,29,4705,4872 +week,30,4873,5040 +week,31,5041,5208 +week,32,5209,5376 +week,33,5377,5544 +week,34,5545,5712 +week,35,5713,5880 +week,36,5881,6048 +week,37,6049,6216 +week,38,6217,6384 +week,39,6385,6552 +week,40,6553,6720 +week,41,6721,6888 +week,42,6889,7056 +week,43,7057,7224 +week,44,7225,7392 +week,45,7393,7560 +week,46,7561,7728 +week,47,7729,7896 +week,48,7897,8064 +week,49,8065,8232 +week,50,8233,8400 +week,51,8401,8568 +week,52,8569,8736 +week,53,8737,8760 +month,1,1,744 +month,2,745,1416 +month,3,1417,2160 +month,4,2161,2880 +month,5,2881,3624 +month,6,3625,4344 +month,7,4345,5088 +month,8,5089,5832 +month,9,5833,6552 +month,10,6553,7296 +month,11,7297,8016 +month,12,8017,8760 +year,1,1,8760 \ No newline at end of file diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_hydro_years.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_hydro_years.csv new file mode 100644 index 0000000000..5a3070daa2 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/hydro/user_defined_hydro_years.csv @@ -0,0 +1,241 @@ +year,month +2001,1 +2001,2 +2001,3 +2001,4 +2001,5 +2001,6 +2001,7 +2001,8 +2001,9 +2001,10 +2001,11 +2001,12 +2002,1 +2002,2 +2002,3 +2002,4 +2002,5 +2002,6 +2002,7 +2002,8 +2002,9 +2002,10 +2002,11 +2002,12 +2003,1 +2003,2 +2003,3 +2003,4 +2003,5 +2003,6 +2003,7 +2003,8 +2003,9 +2003,10 +2003,11 +2003,12 +2004,1 +2004,2 +2004,3 +2004,4 +2004,5 +2004,6 +2004,7 +2004,8 +2004,9 +2004,10 +2004,11 +2004,12 +2005,1 +2005,2 +2005,3 +2005,4 +2005,5 +2005,6 +2005,7 +2005,8 +2005,9 +2005,10 +2005,11 +2005,12 +2006,1 +2006,2 +2006,3 +2006,4 +2006,5 +2006,6 +2006,7 +2006,8 +2006,9 +2006,10 +2006,11 +2006,12 +2007,1 +2007,2 +2007,3 +2007,4 +2007,5 +2007,6 +2007,7 +2007,8 +2007,9 +2007,10 +2007,11 +2007,12 +2008,1 +2008,2 +2008,3 +2008,4 +2008,5 +2008,6 +2008,7 +2008,8 +2008,9 +2008,10 +2008,11 +2008,12 +2009,1 +2009,2 +2009,3 +2009,4 +2009,5 +2009,6 +2009,7 +2009,8 +2009,9 +2009,10 +2009,11 +2009,12 +2010,1 +2010,2 +2010,3 +2010,4 +2010,5 +2010,6 +2010,7 +2010,8 +2010,9 +2010,10 +2010,11 +2010,12 +2011,1 +2011,2 +2011,3 +2011,4 +2011,5 +2011,6 +2011,7 +2011,8 +2011,9 +2011,10 +2011,11 +2011,12 +2012,1 +2012,2 +2012,3 +2012,4 +2012,5 +2012,6 +2012,7 +2012,8 +2012,9 +2012,10 +2012,11 +2012,12 +2013,1 +2013,2 +2013,3 +2013,4 +2013,5 +2013,6 +2013,7 +2013,8 +2013,9 +2013,10 +2013,11 +2013,12 +2014,1 +2014,2 +2014,3 +2014,4 +2014,5 +2014,6 +2014,7 +2014,8 +2014,9 +2014,10 +2014,11 +2014,12 +2015,1 +2015,2 +2015,3 +2015,4 +2015,5 +2015,6 +2015,7 +2015,8 +2015,9 +2015,10 +2015,11 +2015,12 +2016,1 +2016,2 +2016,3 +2016,4 +2016,5 +2016,6 +2016,7 +2016,8 +2016,9 +2016,10 +2016,11 +2016,12 +2017,1 +2017,2 +2017,3 +2017,4 +2017,5 +2017,6 +2017,7 +2017,8 +2017,9 +2017,10 +2017,11 +2017,12 +2018,1 +2018,2 +2018,3 +2018,4 +2018,5 +2018,6 +2018,7 +2018,8 +2018,9 +2018,10 +2018,11 +2018,12 +2019,1 +2019,2 +2019,3 +2019,4 +2019,5 +2019,6 +2019,7 +2019,8 +2019,9 +2019,10 +2019,11 +2019,12 +2020,1 +2020,2 +2020,3 +2020,4 +2020,5 +2020,6 +2020,7 +2020,8 +2020,9 +2020,10 +2020,11 +2020,12 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_eia_gridpath_key.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_eia_gridpath_key.csv new file mode 100644 index 0000000000..26db0a1038 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_eia_gridpath_key.csv @@ -0,0 +1,83 @@ +prime_mover_code,prime_mover_label,energy_source_code,energy_source_label,fuel_type_eiaaeo,gridpath_generic_fuel,aeo_prices,gridpath_capacity_type,gridpath_operational_type,gridpath_technology,gridpath_balancing_type,default_variable_om_cost_per_mwh,default_storage_efficiency,default_charging_efficiency,default_discharging_efficiency,heat_rate_mmbtu_per_mwh,min_load_fraction,heat_rate_source,agg_project +BA,battery_storage,MWH,electricity_storage,,,,stor_spec,stor,Battery,day,0,1,0.92,0.92,,,, +BT,binary_cycle_turbine,GEO,geothermal,,,,gen_spec,gen_commit_lin,Geothermal,day,0,,,,20.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,BFG,blast_furnace_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,DFO,distillate_fuel_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CC,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,OBG,other_biomass_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,OG,other_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Other,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,SGC,synthesis_gas_coal,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CA,combined_cycle_steam,WO,waste_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CC,combined_cycle_total,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CC,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CC,combined_cycle_total,OTH,other,,,,gen_spec,gen_commit_lin,Other,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CE,compressed_air_energy_storage,NG,natural_gas,natural_gas,Gas,1,stor_spec,stor,CAES,day,0,1,0.7,0.7,,,, +CP,concentrated_solar_power,SUN,solar,,,,gen_spec,gen_commit_lin,Solar_CSP,day,0,,,,0,0.3,, +CS,combined_cycle_single_shaft,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CC,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,DFO,distillate_fuel_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CC,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,OBG,other_biomass_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,RFO,residual_fuel_oil,residual_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,SGC,synthesis_gas_coal,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +CT,combined_cycle_combustion_turbine,WO,waste_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,7.596,0.5,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +FC,fuel_cell,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,7.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +FC,fuel_cell,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Fuel_Cell,day,0,,,,7.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +FC,fuel_cell,OBG,other_biomass_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,7.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +FW,flywheel,MWH,electricity_storage,,,,stor_spec,stor,Flywheel,day,0,1,0.85,0.85,,,, +GT,gas_turbine,DFO,distillate_fuel_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,JF,jet_fuel,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,KER,kerosene,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CT,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,OBG,other_biomass_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,OG,other_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CT,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,OTH,other,,,,gen_spec,gen_commit_lin,Other,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,PG,propane_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_CT,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +GT,gas_turbine,WO,waste_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,10.5,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +HY,hydraulic_turbine,WAT,water,,,,gen_spec,gen_hydro_must_take,Hydro,day,0,,,,,,,Hydro +IC,internal_combustion,DFO,distillate_fuel_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +IC,internal_combustion,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +IC,internal_combustion,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_IC,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +IC,internal_combustion,OBG,other_biomass_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +IC,internal_combustion,OBL,other_biomass_liquids,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +IC,internal_combustion,OG,other_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_IC,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +IC,internal_combustion,OTH,other,,,,gen_spec,gen_commit_lin,Other,day,0,,,,9.5,0.2,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,AB,agricultural_byproducts,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,BFG,blast_furnace_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,OG,other_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Other,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,OTH,other,,,,gen_spec,gen_commit_lin,Other,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,PC,petroleum_coke,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,SUN,solar,,,,gen_spec,gen_var_must_take,Solar,day,0,,,,,,,Solar +OT,other,WDS,wood_waste_solids,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,10.0,0.3,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +OT,other,WH,waste_heat,,,,gen_spec,gen_commit_lin,Waste_Heat,day,0,,,,0,0.3,, +PS,pumped_storage,WAT,water,,,,stor_spec,stor,Pumped_Hydro,day,0,1,0.8,0.8,,,, +PV,solar_pv,SUN,solar,,,,gen_spec,gen_var_must_take,Solar,day,0,,,,,,,Solar +ST,steam_turbine,AB,agricultural_byproducts,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,12.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,BFG,blast_furnace_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,10.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,BIT,bituminous_coal,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.2,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,BLQ,black_liquor,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,12.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,DFO,distillate_fuel_oil,distillate_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,10.5,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,GEO,geothermal,,,,gen_spec,gen_commit_lin,Geothermal,day,0,,,,20.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,LFG,landfill_gas,,,,gen_spec,gen_commit_lin,Landfill_Gas,day,0,,,,10.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,LIG,lignite,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.2,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,MSW,municipal_solid_waste,,,,gen_spec,gen_commit_lin,Waste,day,0,,,,12.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,NG,natural_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Gas_ST,day,0,,,,8.5,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,NUC,nuclear,,,,gen_spec,gen_commit_lin,Nuclear,day,0,,,,10.46,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,OBG,other_biomass_gas,,,,gen_spec,gen_commit_lin,Biomass_Gas,day,0,,,,10.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,OBS,other_biomass_solids,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,12.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,OG,other_gas,natural_gas,Gas,1,gen_spec,gen_commit_lin,Other,day,0,,,,10.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,OTH,other,,,,gen_spec,gen_commit_lin,Other,day,0,,,,10.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,PC,petroleum_coke,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.2,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,PUR,purchased_steam,,,,gen_spec,gen_commit_lin,Purchased_Steam,day,0,,,,0,0.4,, +ST,steam_turbine,RC,refined_coal,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.2,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,RFO,residual_fuel_oil,residual_fuel_oil,Oil,1,gen_spec,gen_commit_lin,Oil,day,0,,,,10.5,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,SUB,subbituminous_coal,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.2,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,SUN,solar,,,,gen_spec,gen_commit_lin,Solar_CSP,day,0,,,,0,0.4,, +ST,steam_turbine,WC,waste_coal,coal,Coal,1,gen_spec,gen_commit_lin,Coal,day,0,,,,10.2,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,WDL,wood_waste_liquids,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,12.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,WDS,wood_waste_solids,,,,gen_spec,gen_commit_lin,Biomass,day,0,,,,12.0,0.4,https://www.eia.gov/electricity/annual/html/epa_08_02.html, +ST,steam_turbine,WH,waste_heat,,,,gen_spec,gen_commit_lin,Waste_Heat,day,0,,,,0,0.4,, +WS,wind_offshore,WND,wind,,,,gen_spec,gen_var_must_take,Wind_Offshore,day,0,,,,,,,Wind_Offshore +WT,wind_onshore,WND,wind,,,,gen_spec,gen_var_must_take,Wind,day,0,,,,,,,Wind diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_heat_rate_curve.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_heat_rate_curve.csv new file mode 100644 index 0000000000..db97986451 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/user_defined_heat_rate_curve.csv @@ -0,0 +1,10 @@ +load_point_fraction,average_heat_rate_coefficient +0.2,1.8 +0.3,1.6 +0.4,1.4 +0.5,1.2 +0.6,1.083333333 +0.7,1.014285714 +0.8,0.975 +0.9,0.966666667 +1,1 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/var_profiles/user_defined_var_project_units.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/var_profiles/user_defined_var_project_units.csv new file mode 100644 index 0000000000..90ba50c9c2 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/project/var_profiles/user_defined_var_project_units.csv @@ -0,0 +1,95 @@ +unit,project,unit_weight,timeseries_name +Hybrid_Solar_57561,Hybrid_Solar_57561,1,solar +Hybrid_Solar_57562,Hybrid_Solar_57562,1,solar +Hybrid_Solar_57563,Hybrid_Solar_57563,1,solar +Hybrid_Solar_57997,Hybrid_Solar_57997,1,solar +Hybrid_Solar_58383,Hybrid_Solar_58383,1,solar +Hybrid_Solar_58462,Hybrid_Solar_58462,1,solar +Hybrid_Solar_58585,Hybrid_Solar_58585,1,solar +Hybrid_Solar_58625,Hybrid_Solar_58625,1,solar +Hybrid_Solar_58899,Hybrid_Solar_58899,1,solar +Hybrid_Solar_59020,Hybrid_Solar_59020,1,solar +Hybrid_Solar_59444,Hybrid_Solar_59444,1,solar +Hybrid_Solar_59939,Hybrid_Solar_59939,1,solar +Hybrid_Solar_60092,Hybrid_Solar_60092,1,solar +Hybrid_Solar_60093,Hybrid_Solar_60093,1,solar +Hybrid_Solar_60094,Hybrid_Solar_60094,1,solar +Hybrid_Solar_60231,Hybrid_Solar_60231,1,solar +Hybrid_Solar_60233,Hybrid_Solar_60233,1,solar +Hybrid_Solar_60491,Hybrid_Solar_60491,1,solar +Hybrid_Solar_60996,Hybrid_Solar_60996,1,solar +Hybrid_Solar_61439,Hybrid_Solar_61439,1,solar +Hybrid_Solar_61678,Hybrid_Solar_61678,1,solar +Hybrid_Solar_61993,Hybrid_Solar_61993,1,solar +Hybrid_Solar_61995,Hybrid_Solar_61995,1,solar +Hybrid_Solar_63352,Hybrid_Solar_63352,1,solar +Hybrid_Solar_63420,Hybrid_Solar_63420,1,solar +Hybrid_Solar_63421,Hybrid_Solar_63421,1,solar +Hybrid_Solar_63422,Hybrid_Solar_63422,1,solar +Hybrid_Solar_63510,Hybrid_Solar_63510,1,solar +Hybrid_Solar_63545,Hybrid_Solar_63545,1,solar +Hybrid_Solar_63722,Hybrid_Solar_63722,1,solar +Hybrid_Solar_63727,Hybrid_Solar_63727,1,solar +Hybrid_Solar_63776,Hybrid_Solar_63776,1,solar +Hybrid_Solar_64103,Hybrid_Solar_64103,1,solar +Hybrid_Solar_64105,Hybrid_Solar_64105,1,solar +Hybrid_Solar_64198,Hybrid_Solar_64198,1,solar +Hybrid_Solar_64426,Hybrid_Solar_64426,1,solar +Hybrid_Solar_64446,Hybrid_Solar_64446,1,solar +Hybrid_Solar_64481,Hybrid_Solar_64481,1,solar +Hybrid_Wind_61925,Hybrid_Wind_61925,1,wind +Hybrid_Wind_62745,Hybrid_Wind_62745,1,wind +Solar_AVA,Solar_AVA,1,solar +Solar_AZPS,Solar_AZPS,1,solar +Solar_BANC,Solar_BANC,1,solar +Solar_BPAT,Solar_BPAT,1,solar +Solar_CIPB,Solar_CIPB,1,solar +Solar_CIPV,Solar_CIPV,1,solar +Solar_CISC,Solar_CISC,1,solar +Solar_CISD,Solar_CISD,1,solar +Solar_EPE,Solar_EPE,1,solar +Solar_IID,Solar_IID,1,solar +Solar_IPFE,Solar_IPFE,1,solar +Solar_IPMV,Solar_IPMV,1,solar +Solar_IPTV,Solar_IPTV,1,solar +Solar_LDWP,Solar_LDWP,1,solar +Solar_NEVP,Solar_NEVP,1,solar +Solar_NWMT,Solar_NWMT,1,solar +Solar_PACW,Solar_PACW,1,solar +Solar_PAUT,Solar_PAUT,1,solar +Solar_PAWY,Solar_PAWY,1,solar +Solar_PGE,Solar_PGE,1,solar +Solar_PNM,Solar_PNM,1,solar +Solar_PSCO,Solar_PSCO,1,solar +Solar_PSEI,Solar_PSEI,1,solar +Solar_SPPC,Solar_SPPC,1,solar +Solar_SRP,Solar_SRP,1,solar +Solar_TEPC,Solar_TEPC,1,solar +Solar_TH_PV,Solar_TH_PV,1,solar +Solar_VEA,Solar_VEA,1,solar +Solar_WACM,Solar_WACM,1,solar +Solar_WALC,Solar_WALC,1,solar +Wind_AVA,Wind_AVA,1,wind +Wind_AZPS,Wind_AZPS,1,wind +Wind_BPAT,Wind_BPAT,1,wind +Wind_CIPB,Wind_CIPB,1,wind +Wind_CIPV,Wind_CIPV,1,wind +Wind_CISC,Wind_CISC,1,wind +Wind_CISD,Wind_CISD,1,wind +Wind_EPE,Wind_EPE,1,wind +Wind_IPFE,Wind_IPFE,1,wind +Wind_IPMV,Wind_IPMV,1,wind +Wind_IPTV,Wind_IPTV,1,wind +Wind_LDWP,Wind_LDWP,1,wind +Wind_NWMT,Wind_NWMT,1,wind +Wind_PACW,Wind_PACW,1,wind +Wind_PAID,Wind_PAID,1,wind +Wind_PAUT,Wind_PAUT,1,wind +Wind_PAWY,Wind_PAWY,1,wind +Wind_PNM,Wind_PNM,1,wind +Wind_PSCO,Wind_PSCO,1,wind +Wind_PSEI,Wind_PSEI,1,wind +Wind_SPPC,Wind_SPPC,1,wind +Wind_TEPC,Wind_TEPC,1,wind +Wind_WACM,Wind_WACM,1,wind +Wind_WALC,Wind_WALC,1,wind diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/scenarios.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/scenarios.csv new file mode 100644 index 0000000000..cdec639007 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/scenarios.csv @@ -0,0 +1,153 @@ +optional_feature_or_subscenarios,ra_toolkit_e2e_monte_carlo,ra_toolkit_e2e_sync +of_transmission,1,1 +of_transmission_hurdle_rates,, +of_transmission_hurdle_rates_by_timepoint,, +of_simultaneous_flow_limits,, +of_lf_reserves_up,, +of_lf_reserves_down,, +of_regulation_up,, +of_regulation_down,, +of_frequency_response,, +of_spinning_reserves,, +of_inertia_reserves,, +of_period_energy_target,, +of_horizon_energy_target,, +of_instantaneous_penetration,, +of_transmission_target,, +of_carbon_cap,, +of_track_carbon_imports,, +of_carbon_tax,, +of_performance_standard,, +of_carbon_credits,, +of_fuel_burn_limit,, +of_subsidies,, +of_policy,, +of_prm,, +of_local_capacity,, +of_capacity_transfers,, +of_elcc_surface,, +of_deliverability,, +of_markets,, +of_water,, +of_tuning,, +temporal_scenario_id,17,26 +load_zone_scenario_id,1,1 +load_balance_scenario_id,1,1 +load_scenario_id,6,6 +project_portfolio_scenario_id,23,23 +project_operational_chars_scenario_id,1,1 +project_availability_scenario_id,1,1 +project_load_zone_scenario_id,1,1 +project_elcc_chars_scenario_id,, +project_specified_capacity_scenario_id,5,5 +project_specified_fixed_cost_scenario_id,1,1 +fuel_scenario_id,1,1 +fuel_price_scenario_id,1,1 +project_new_cost_scenario_id,, +project_new_potential_scenario_id,, +project_new_binary_build_size_scenario_id,, +project_capacity_group_requirement_scenario_id,, +project_capacity_group_scenario_id,, +project_relative_capacity_requirement_scenario_id,, +transmission_portfolio_scenario_id,1,1 +transmission_load_zone_scenario_id,1,1 +transmission_specified_capacity_scenario_id,1,1 +transmission_availability_scenario_id,1,1 +transmission_operational_chars_scenario_id,1,1 +transmission_hurdle_rate_by_timepoint_scenario_id,, +transmission_hurdle_rate_scenario_id,, +transmission_new_cost_scenario_id,, +transmission_new_potential_scenario_id,, +transmission_flow_scenario_id,, +transmission_capacity_group_requirement_scenario_id,, +transmission_capacity_group_scenario_id,, +transmission_carbon_cap_zone_scenario_id,, +transmission_simultaneous_flow_limit_scenario_id,, +transmission_simultaneous_flow_limit_line_group_scenario_id,, +lf_reserves_up_scenario_id,, +lf_reserves_up_ba_scenario_id,, +project_lf_reserves_up_ba_scenario_id,, +lf_reserves_down_scenario_id,, +lf_reserves_down_ba_scenario_id,, +project_lf_reserves_down_ba_scenario_id,, +regulation_up_scenario_id,, +regulation_up_ba_scenario_id,, +project_regulation_up_ba_scenario_id,, +regulation_down_scenario_id,, +regulation_down_ba_scenario_id,, +project_regulation_down_ba_scenario_id,, +frequency_response_scenario_id,, +frequency_response_ba_scenario_id,, +project_frequency_response_ba_scenario_id,, +spinning_reserves_scenario_id,, +spinning_reserves_ba_scenario_id,, +project_spinning_reserves_ba_scenario_id,, +inertia_reserves_scenario_id,, +inertia_reserves_ba_scenario_id,, +project_inertia_reserves_ba_scenario_id,, +period_energy_target_scenario_id,, +horizon_energy_target_scenario_id,, +energy_target_zone_scenario_id,, +project_energy_target_zone_scenario_id,, +instantaneous_penetration_zone_scenario_id,, +project_instantaneous_penetration_zone_scenario_id,, +instantaneous_penetration_scenario_id,, +transmission_target_scenario_id,, +transmission_target_zone_scenario_id,, +tx_line_transmission_target_zone_scenario_id,, +carbon_cap_target_scenario_id,, +carbon_cap_zone_scenario_id,, +project_carbon_cap_zone_scenario_id,, +carbon_tax_scenario_id,, +carbon_tax_zone_scenario_id,, +project_carbon_tax_zone_scenario_id,, +project_carbon_tax_allowance_scenario_id,, +performance_standard_scenario_id,, +performance_standard_zone_scenario_id,, +project_performance_standard_zone_scenario_id,, +carbon_credits_zone_scenario_id,, +carbon_cap_zones_carbon_credits_zones_scenario_id,, +performance_standard_zones_carbon_credits_zones_scenario_id,, +carbon_tax_zones_carbon_credits_zones_scenario_id,, +project_carbon_credits_generation_zone_scenario_id,, +project_carbon_credits_purchase_zone_scenario_id,, +project_carbon_credits_scenario_id,, +project_carbon_credits_purchase_limits_scenario_id,, +carbon_credits_params_scenario_id,, +fuel_burn_limit_scenario_id,, +fuel_burn_limit_ba_scenario_id,, +project_fuel_burn_limit_ba_scenario_id,, +fuel_fuel_burn_limit_ba_scenario_id,, +subsidy_scenario_id,, +prm_requirement_scenario_id,, +prm_zone_scenario_id,, +prm_capacity_transfer_scenario_id,, +prm_capacity_transfer_params_scenario_id,, +project_prm_zone_scenario_id,, +transmission_prm_zone_scenario_id,, +prm_deliverability_cost_scenario_id,, +prm_deliverability_existing_scenario_id,, +prm_deliverability_potential_scenario_id,, +project_prm_deliverability_multipliers_scenario_id,, +elcc_surface_scenario_id,, +local_capacity_requirement_scenario_id,, +local_capacity_zone_scenario_id,, +project_local_capacity_zone_scenario_id,, +project_local_capacity_chars_scenario_id,, +tuning_scenario_id,, +solver_options_id,, +market_scenario_id,, +load_zone_market_scenario_id,, +market_price_scenario_id,, +market_volume_scenario_id,, +market_volume_total_in_tmp_scenario_id,, +market_volume_total_in_prd_scenario_id,, +water_network_scenario_id,, +water_system_params_scenario_id,, +water_node_reservoir_scenario_id,, +water_flow_scenario_id,, +water_inflow_scenario_id,, +water_powerhouse_scenario_id,, +policy_zone_scenario_id,, +policy_requirement_scenario_id,, +project_policy_zone_scenario_id,, diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/description.txt b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/description.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_params.csv new file mode 100644 index 0000000000..5c476a0f5a --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_params.csv @@ -0,0 +1,378 @@ +balancing_type_horizon,horizon,boundary +day,1,circular +day,2,circular +day,3,circular +day,4,circular +day,5,circular +day,6,circular +day,7,circular +day,8,circular +day,9,circular +day,10,circular +day,11,circular +day,12,circular +day,13,circular +day,14,circular +day,15,circular +day,16,circular +day,17,circular +day,18,circular +day,19,circular +day,20,circular +day,21,circular +day,22,circular +day,23,circular +day,24,circular +day,25,circular +day,26,circular +day,27,circular +day,28,circular +day,29,circular +day,30,circular +day,31,circular +day,32,circular +day,33,circular +day,34,circular +day,35,circular +day,36,circular +day,37,circular +day,38,circular +day,39,circular +day,40,circular +day,41,circular +day,42,circular +day,43,circular +day,44,circular +day,45,circular +day,46,circular +day,47,circular +day,48,circular +day,49,circular +day,50,circular +day,51,circular +day,52,circular +day,53,circular +day,54,circular +day,55,circular +day,56,circular +day,57,circular +day,58,circular +day,59,circular +day,60,circular +day,61,circular +day,62,circular +day,63,circular +day,64,circular +day,65,circular +day,66,circular +day,67,circular +day,68,circular +day,69,circular +day,70,circular +day,71,circular +day,72,circular +day,73,circular +day,74,circular +day,75,circular +day,76,circular +day,77,circular +day,78,circular +day,79,circular +day,80,circular +day,81,circular +day,82,circular +day,83,circular +day,84,circular +day,85,circular +day,86,circular +day,87,circular +day,88,circular +day,89,circular +day,90,circular +day,91,circular +day,92,circular +day,93,circular +day,94,circular +day,95,circular +day,96,circular +day,97,circular +day,98,circular +day,99,circular +day,100,circular +day,101,circular +day,102,circular +day,103,circular +day,104,circular +day,105,circular +day,106,circular +day,107,circular +day,108,circular +day,109,circular +day,110,circular +day,111,circular +day,112,circular +day,113,circular +day,114,circular +day,115,circular +day,116,circular +day,117,circular +day,118,circular +day,119,circular +day,120,circular +day,121,circular +day,122,circular +day,123,circular +day,124,circular +day,125,circular +day,126,circular +day,127,circular +day,128,circular +day,129,circular +day,130,circular +day,131,circular +day,132,circular +day,133,circular +day,134,circular +day,135,circular +day,136,circular +day,137,circular +day,138,circular +day,139,circular +day,140,circular +day,141,circular +day,142,circular +day,143,circular +day,144,circular +day,145,circular +day,146,circular +day,147,circular +day,148,circular +day,149,circular +day,150,circular +day,151,circular +day,152,circular +day,153,circular +day,154,circular +day,155,circular +day,156,circular +day,157,circular +day,158,circular +day,159,circular +day,160,circular +day,161,circular +day,162,circular +day,163,circular +day,164,circular +day,165,circular +day,166,circular +day,167,circular +day,168,circular +day,169,circular +day,170,circular +day,171,circular +day,172,circular +day,173,circular +day,174,circular +day,175,circular +day,176,circular +day,177,circular +day,178,circular +day,179,circular +day,180,circular +day,181,circular +day,182,circular +day,183,circular +day,184,circular +day,185,circular +day,186,circular +day,187,circular +day,188,circular +day,189,circular +day,190,circular +day,191,circular +day,192,circular +day,193,circular +day,194,circular +day,195,circular +day,196,circular +day,197,circular +day,198,circular +day,199,circular +day,200,circular +day,201,circular +day,202,circular +day,203,circular +day,204,circular +day,205,circular +day,206,circular +day,207,circular +day,208,circular +day,209,circular +day,210,circular +day,211,circular +day,212,circular +day,213,circular +day,214,circular +day,215,circular +day,216,circular +day,217,circular +day,218,circular +day,219,circular +day,220,circular +day,221,circular +day,222,circular +day,223,circular +day,224,circular +day,225,circular +day,226,circular +day,227,circular +day,228,circular +day,229,circular +day,230,circular +day,231,circular +day,232,circular +day,233,circular +day,234,circular +day,235,circular +day,236,circular +day,237,circular +day,238,circular +day,239,circular +day,240,circular +day,241,circular +day,242,circular +day,243,circular +day,244,circular +day,245,circular +day,246,circular +day,247,circular +day,248,circular +day,249,circular +day,250,circular +day,251,circular +day,252,circular +day,253,circular +day,254,circular +day,255,circular +day,256,circular +day,257,circular +day,258,circular +day,259,circular +day,260,circular +day,261,circular +day,262,circular +day,263,circular +day,264,circular +day,265,circular +day,266,circular +day,267,circular +day,268,circular +day,269,circular +day,270,circular +day,271,circular +day,272,circular +day,273,circular +day,274,circular +day,275,circular +day,276,circular +day,277,circular +day,278,circular +day,279,circular +day,280,circular +day,281,circular +day,282,circular +day,283,circular +day,284,circular +day,285,circular +day,286,circular +day,287,circular +day,288,circular +day,289,circular +day,290,circular +day,291,circular +day,292,circular +day,293,circular +day,294,circular +day,295,circular +day,296,circular +day,297,circular +day,298,circular +day,299,circular +day,300,circular +day,301,circular +day,302,circular +day,303,circular +day,304,circular +day,305,circular +day,306,circular +day,307,circular +day,308,circular +day,309,circular +day,310,circular +day,311,circular +day,312,circular +day,313,circular +day,314,circular +day,315,circular +day,316,circular +day,317,circular +day,318,circular +day,319,circular +day,320,circular +day,321,circular +day,322,circular +day,323,circular +day,324,circular +day,325,circular +day,326,circular +day,327,circular +day,328,circular +day,329,circular +day,330,circular +day,331,circular +day,332,circular +day,333,circular +day,334,circular +day,335,circular +day,336,circular +day,337,circular +day,338,circular +day,339,circular +day,340,circular +day,341,circular +day,342,circular +day,343,circular +day,344,circular +day,345,circular +day,346,circular +day,347,circular +day,348,circular +day,349,circular +day,350,circular +day,351,circular +day,352,circular +day,353,circular +day,354,circular +day,355,circular +day,356,circular +day,357,circular +day,358,circular +day,359,circular +day,360,circular +day,361,circular +day,362,circular +day,363,circular +day,364,circular +day,365,circular +month,1,circular +month,2,circular +month,3,circular +month,4,circular +month,5,circular +month,6,circular +month,7,circular +month,8,circular +month,9,circular +month,10,circular +month,11,circular +month,12,circular diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_timepoints.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_timepoints.csv new file mode 100644 index 0000000000..d1563ba690 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/horizon_timepoints.csv @@ -0,0 +1,378 @@ +stage_id,balancing_type_horizon,horizon,tmp_start,tmp_start_spinup_or_lookahead,tmp_end,tmp_end_spinup_or_lookahead +1,day,1,1,0,24,0 +1,day,2,25,0,48,0 +1,day,3,49,0,72,0 +1,day,4,73,0,96,0 +1,day,5,97,0,120,0 +1,day,6,121,0,144,0 +1,day,7,145,0,168,0 +1,day,8,169,0,192,0 +1,day,9,193,0,216,0 +1,day,10,217,0,240,0 +1,day,11,241,0,264,0 +1,day,12,265,0,288,0 +1,day,13,289,0,312,0 +1,day,14,313,0,336,0 +1,day,15,337,0,360,0 +1,day,16,361,0,384,0 +1,day,17,385,0,408,0 +1,day,18,409,0,432,0 +1,day,19,433,0,456,0 +1,day,20,457,0,480,0 +1,day,21,481,0,504,0 +1,day,22,505,0,528,0 +1,day,23,529,0,552,0 +1,day,24,553,0,576,0 +1,day,25,577,0,600,0 +1,day,26,601,0,624,0 +1,day,27,625,0,648,0 +1,day,28,649,0,672,0 +1,day,29,673,0,696,0 +1,day,30,697,0,720,0 +1,day,31,721,0,744,0 +1,day,32,745,0,768,0 +1,day,33,769,0,792,0 +1,day,34,793,0,816,0 +1,day,35,817,0,840,0 +1,day,36,841,0,864,0 +1,day,37,865,0,888,0 +1,day,38,889,0,912,0 +1,day,39,913,0,936,0 +1,day,40,937,0,960,0 +1,day,41,961,0,984,0 +1,day,42,985,0,1008,0 +1,day,43,1009,0,1032,0 +1,day,44,1033,0,1056,0 +1,day,45,1057,0,1080,0 +1,day,46,1081,0,1104,0 +1,day,47,1105,0,1128,0 +1,day,48,1129,0,1152,0 +1,day,49,1153,0,1176,0 +1,day,50,1177,0,1200,0 +1,day,51,1201,0,1224,0 +1,day,52,1225,0,1248,0 +1,day,53,1249,0,1272,0 +1,day,54,1273,0,1296,0 +1,day,55,1297,0,1320,0 +1,day,56,1321,0,1344,0 +1,day,57,1345,0,1368,0 +1,day,58,1369,0,1392,0 +1,day,59,1393,0,1416,0 +1,day,60,1417,0,1440,0 +1,day,61,1441,0,1464,0 +1,day,62,1465,0,1488,0 +1,day,63,1489,0,1512,0 +1,day,64,1513,0,1536,0 +1,day,65,1537,0,1560,0 +1,day,66,1561,0,1584,0 +1,day,67,1585,0,1608,0 +1,day,68,1609,0,1632,0 +1,day,69,1633,0,1656,0 +1,day,70,1657,0,1680,0 +1,day,71,1681,0,1704,0 +1,day,72,1705,0,1728,0 +1,day,73,1729,0,1752,0 +1,day,74,1753,0,1776,0 +1,day,75,1777,0,1800,0 +1,day,76,1801,0,1824,0 +1,day,77,1825,0,1848,0 +1,day,78,1849,0,1872,0 +1,day,79,1873,0,1896,0 +1,day,80,1897,0,1920,0 +1,day,81,1921,0,1944,0 +1,day,82,1945,0,1968,0 +1,day,83,1969,0,1992,0 +1,day,84,1993,0,2016,0 +1,day,85,2017,0,2040,0 +1,day,86,2041,0,2064,0 +1,day,87,2065,0,2088,0 +1,day,88,2089,0,2112,0 +1,day,89,2113,0,2136,0 +1,day,90,2137,0,2160,0 +1,day,91,2161,0,2184,0 +1,day,92,2185,0,2208,0 +1,day,93,2209,0,2232,0 +1,day,94,2233,0,2256,0 +1,day,95,2257,0,2280,0 +1,day,96,2281,0,2304,0 +1,day,97,2305,0,2328,0 +1,day,98,2329,0,2352,0 +1,day,99,2353,0,2376,0 +1,day,100,2377,0,2400,0 +1,day,101,2401,0,2424,0 +1,day,102,2425,0,2448,0 +1,day,103,2449,0,2472,0 +1,day,104,2473,0,2496,0 +1,day,105,2497,0,2520,0 +1,day,106,2521,0,2544,0 +1,day,107,2545,0,2568,0 +1,day,108,2569,0,2592,0 +1,day,109,2593,0,2616,0 +1,day,110,2617,0,2640,0 +1,day,111,2641,0,2664,0 +1,day,112,2665,0,2688,0 +1,day,113,2689,0,2712,0 +1,day,114,2713,0,2736,0 +1,day,115,2737,0,2760,0 +1,day,116,2761,0,2784,0 +1,day,117,2785,0,2808,0 +1,day,118,2809,0,2832,0 +1,day,119,2833,0,2856,0 +1,day,120,2857,0,2880,0 +1,day,121,2881,0,2904,0 +1,day,122,2905,0,2928,0 +1,day,123,2929,0,2952,0 +1,day,124,2953,0,2976,0 +1,day,125,2977,0,3000,0 +1,day,126,3001,0,3024,0 +1,day,127,3025,0,3048,0 +1,day,128,3049,0,3072,0 +1,day,129,3073,0,3096,0 +1,day,130,3097,0,3120,0 +1,day,131,3121,0,3144,0 +1,day,132,3145,0,3168,0 +1,day,133,3169,0,3192,0 +1,day,134,3193,0,3216,0 +1,day,135,3217,0,3240,0 +1,day,136,3241,0,3264,0 +1,day,137,3265,0,3288,0 +1,day,138,3289,0,3312,0 +1,day,139,3313,0,3336,0 +1,day,140,3337,0,3360,0 +1,day,141,3361,0,3384,0 +1,day,142,3385,0,3408,0 +1,day,143,3409,0,3432,0 +1,day,144,3433,0,3456,0 +1,day,145,3457,0,3480,0 +1,day,146,3481,0,3504,0 +1,day,147,3505,0,3528,0 +1,day,148,3529,0,3552,0 +1,day,149,3553,0,3576,0 +1,day,150,3577,0,3600,0 +1,day,151,3601,0,3624,0 +1,day,152,3625,0,3648,0 +1,day,153,3649,0,3672,0 +1,day,154,3673,0,3696,0 +1,day,155,3697,0,3720,0 +1,day,156,3721,0,3744,0 +1,day,157,3745,0,3768,0 +1,day,158,3769,0,3792,0 +1,day,159,3793,0,3816,0 +1,day,160,3817,0,3840,0 +1,day,161,3841,0,3864,0 +1,day,162,3865,0,3888,0 +1,day,163,3889,0,3912,0 +1,day,164,3913,0,3936,0 +1,day,165,3937,0,3960,0 +1,day,166,3961,0,3984,0 +1,day,167,3985,0,4008,0 +1,day,168,4009,0,4032,0 +1,day,169,4033,0,4056,0 +1,day,170,4057,0,4080,0 +1,day,171,4081,0,4104,0 +1,day,172,4105,0,4128,0 +1,day,173,4129,0,4152,0 +1,day,174,4153,0,4176,0 +1,day,175,4177,0,4200,0 +1,day,176,4201,0,4224,0 +1,day,177,4225,0,4248,0 +1,day,178,4249,0,4272,0 +1,day,179,4273,0,4296,0 +1,day,180,4297,0,4320,0 +1,day,181,4321,0,4344,0 +1,day,182,4345,0,4368,0 +1,day,183,4369,0,4392,0 +1,day,184,4393,0,4416,0 +1,day,185,4417,0,4440,0 +1,day,186,4441,0,4464,0 +1,day,187,4465,0,4488,0 +1,day,188,4489,0,4512,0 +1,day,189,4513,0,4536,0 +1,day,190,4537,0,4560,0 +1,day,191,4561,0,4584,0 +1,day,192,4585,0,4608,0 +1,day,193,4609,0,4632,0 +1,day,194,4633,0,4656,0 +1,day,195,4657,0,4680,0 +1,day,196,4681,0,4704,0 +1,day,197,4705,0,4728,0 +1,day,198,4729,0,4752,0 +1,day,199,4753,0,4776,0 +1,day,200,4777,0,4800,0 +1,day,201,4801,0,4824,0 +1,day,202,4825,0,4848,0 +1,day,203,4849,0,4872,0 +1,day,204,4873,0,4896,0 +1,day,205,4897,0,4920,0 +1,day,206,4921,0,4944,0 +1,day,207,4945,0,4968,0 +1,day,208,4969,0,4992,0 +1,day,209,4993,0,5016,0 +1,day,210,5017,0,5040,0 +1,day,211,5041,0,5064,0 +1,day,212,5065,0,5088,0 +1,day,213,5089,0,5112,0 +1,day,214,5113,0,5136,0 +1,day,215,5137,0,5160,0 +1,day,216,5161,0,5184,0 +1,day,217,5185,0,5208,0 +1,day,218,5209,0,5232,0 +1,day,219,5233,0,5256,0 +1,day,220,5257,0,5280,0 +1,day,221,5281,0,5304,0 +1,day,222,5305,0,5328,0 +1,day,223,5329,0,5352,0 +1,day,224,5353,0,5376,0 +1,day,225,5377,0,5400,0 +1,day,226,5401,0,5424,0 +1,day,227,5425,0,5448,0 +1,day,228,5449,0,5472,0 +1,day,229,5473,0,5496,0 +1,day,230,5497,0,5520,0 +1,day,231,5521,0,5544,0 +1,day,232,5545,0,5568,0 +1,day,233,5569,0,5592,0 +1,day,234,5593,0,5616,0 +1,day,235,5617,0,5640,0 +1,day,236,5641,0,5664,0 +1,day,237,5665,0,5688,0 +1,day,238,5689,0,5712,0 +1,day,239,5713,0,5736,0 +1,day,240,5737,0,5760,0 +1,day,241,5761,0,5784,0 +1,day,242,5785,0,5808,0 +1,day,243,5809,0,5832,0 +1,day,244,5833,0,5856,0 +1,day,245,5857,0,5880,0 +1,day,246,5881,0,5904,0 +1,day,247,5905,0,5928,0 +1,day,248,5929,0,5952,0 +1,day,249,5953,0,5976,0 +1,day,250,5977,0,6000,0 +1,day,251,6001,0,6024,0 +1,day,252,6025,0,6048,0 +1,day,253,6049,0,6072,0 +1,day,254,6073,0,6096,0 +1,day,255,6097,0,6120,0 +1,day,256,6121,0,6144,0 +1,day,257,6145,0,6168,0 +1,day,258,6169,0,6192,0 +1,day,259,6193,0,6216,0 +1,day,260,6217,0,6240,0 +1,day,261,6241,0,6264,0 +1,day,262,6265,0,6288,0 +1,day,263,6289,0,6312,0 +1,day,264,6313,0,6336,0 +1,day,265,6337,0,6360,0 +1,day,266,6361,0,6384,0 +1,day,267,6385,0,6408,0 +1,day,268,6409,0,6432,0 +1,day,269,6433,0,6456,0 +1,day,270,6457,0,6480,0 +1,day,271,6481,0,6504,0 +1,day,272,6505,0,6528,0 +1,day,273,6529,0,6552,0 +1,day,274,6553,0,6576,0 +1,day,275,6577,0,6600,0 +1,day,276,6601,0,6624,0 +1,day,277,6625,0,6648,0 +1,day,278,6649,0,6672,0 +1,day,279,6673,0,6696,0 +1,day,280,6697,0,6720,0 +1,day,281,6721,0,6744,0 +1,day,282,6745,0,6768,0 +1,day,283,6769,0,6792,0 +1,day,284,6793,0,6816,0 +1,day,285,6817,0,6840,0 +1,day,286,6841,0,6864,0 +1,day,287,6865,0,6888,0 +1,day,288,6889,0,6912,0 +1,day,289,6913,0,6936,0 +1,day,290,6937,0,6960,0 +1,day,291,6961,0,6984,0 +1,day,292,6985,0,7008,0 +1,day,293,7009,0,7032,0 +1,day,294,7033,0,7056,0 +1,day,295,7057,0,7080,0 +1,day,296,7081,0,7104,0 +1,day,297,7105,0,7128,0 +1,day,298,7129,0,7152,0 +1,day,299,7153,0,7176,0 +1,day,300,7177,0,7200,0 +1,day,301,7201,0,7224,0 +1,day,302,7225,0,7248,0 +1,day,303,7249,0,7272,0 +1,day,304,7273,0,7296,0 +1,day,305,7297,0,7320,0 +1,day,306,7321,0,7344,0 +1,day,307,7345,0,7368,0 +1,day,308,7369,0,7392,0 +1,day,309,7393,0,7416,0 +1,day,310,7417,0,7440,0 +1,day,311,7441,0,7464,0 +1,day,312,7465,0,7488,0 +1,day,313,7489,0,7512,0 +1,day,314,7513,0,7536,0 +1,day,315,7537,0,7560,0 +1,day,316,7561,0,7584,0 +1,day,317,7585,0,7608,0 +1,day,318,7609,0,7632,0 +1,day,319,7633,0,7656,0 +1,day,320,7657,0,7680,0 +1,day,321,7681,0,7704,0 +1,day,322,7705,0,7728,0 +1,day,323,7729,0,7752,0 +1,day,324,7753,0,7776,0 +1,day,325,7777,0,7800,0 +1,day,326,7801,0,7824,0 +1,day,327,7825,0,7848,0 +1,day,328,7849,0,7872,0 +1,day,329,7873,0,7896,0 +1,day,330,7897,0,7920,0 +1,day,331,7921,0,7944,0 +1,day,332,7945,0,7968,0 +1,day,333,7969,0,7992,0 +1,day,334,7993,0,8016,0 +1,day,335,8017,0,8040,0 +1,day,336,8041,0,8064,0 +1,day,337,8065,0,8088,0 +1,day,338,8089,0,8112,0 +1,day,339,8113,0,8136,0 +1,day,340,8137,0,8160,0 +1,day,341,8161,0,8184,0 +1,day,342,8185,0,8208,0 +1,day,343,8209,0,8232,0 +1,day,344,8233,0,8256,0 +1,day,345,8257,0,8280,0 +1,day,346,8281,0,8304,0 +1,day,347,8305,0,8328,0 +1,day,348,8329,0,8352,0 +1,day,349,8353,0,8376,0 +1,day,350,8377,0,8400,0 +1,day,351,8401,0,8424,0 +1,day,352,8425,0,8448,0 +1,day,353,8449,0,8472,0 +1,day,354,8473,0,8496,0 +1,day,355,8497,0,8520,0 +1,day,356,8521,0,8544,0 +1,day,357,8545,0,8568,0 +1,day,358,8569,0,8592,0 +1,day,359,8593,0,8616,0 +1,day,360,8617,0,8640,0 +1,day,361,8641,0,8664,0 +1,day,362,8665,0,8688,0 +1,day,363,8689,0,8712,0 +1,day,364,8713,0,8736,0 +1,day,365,8737,0,8760,0 +1,month,1,1,0,744,0 +1,month,2,745,0,1416,0 +1,month,3,1417,0,2160,0 +1,month,4,2161,0,2880,0 +1,month,5,2881,0,3624,0 +1,month,6,3625,0,4344,0 +1,month,7,4345,0,5088,0 +1,month,8,5089,0,5832,0 +1,month,9,5833,0,6552,0 +1,month,10,6553,0,7296,0 +1,month,11,7297,0,8016,0 +1,month,12,8017,0,8760,0 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/period_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/period_params.csv new file mode 100644 index 0000000000..df12fbcba4 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/period_params.csv @@ -0,0 +1,2 @@ +period,discount_factor,period_start_year,period_end_year,prev_period +2026,1,2026,2027 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/structure.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/structure.csv new file mode 100644 index 0000000000..5e414e96e3 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/structure.csv @@ -0,0 +1,8761 @@ +subproblem_id,stage_id,timepoint,period,number_of_hours_in_timepoint,timepoint_weight,previous_stage_timepoint_map,spinup_or_lookahead,linked_timepoint,year,month,day_of_month,hour_of_day,timestamp,ignore_horizon_day +1,1,1,2026,1,1,,0,,,1,1,1,1/1/26 0:00, +1,1,2,2026,1,1,,0,,,1,1,2,1/1/26 1:00, +1,1,3,2026,1,1,,0,,,1,1,3,1/1/26 2:00, +1,1,4,2026,1,1,,0,,,1,1,4,1/1/26 3:00, +1,1,5,2026,1,1,,0,,,1,1,5,1/1/26 4:00, +1,1,6,2026,1,1,,0,,,1,1,6,1/1/26 5:00, +1,1,7,2026,1,1,,0,,,1,1,7,1/1/26 6:00, +1,1,8,2026,1,1,,0,,,1,1,8,1/1/26 7:00, +1,1,9,2026,1,1,,0,,,1,1,9,1/1/26 8:00, +1,1,10,2026,1,1,,0,,,1,1,10,1/1/26 9:00, +1,1,11,2026,1,1,,0,,,1,1,11,1/1/26 10:00, +1,1,12,2026,1,1,,0,,,1,1,12,1/1/26 11:00, +1,1,13,2026,1,1,,0,,,1,1,13,1/1/26 12:00, +1,1,14,2026,1,1,,0,,,1,1,14,1/1/26 13:00, +1,1,15,2026,1,1,,0,,,1,1,15,1/1/26 14:00, +1,1,16,2026,1,1,,0,,,1,1,16,1/1/26 15:00, +1,1,17,2026,1,1,,0,,,1,1,17,1/1/26 16:00, +1,1,18,2026,1,1,,0,,,1,1,18,1/1/26 17:00, +1,1,19,2026,1,1,,0,,,1,1,19,1/1/26 18:00, +1,1,20,2026,1,1,,0,,,1,1,20,1/1/26 19:00, +1,1,21,2026,1,1,,0,,,1,1,21,1/1/26 20:00, +1,1,22,2026,1,1,,0,,,1,1,22,1/1/26 21:00, +1,1,23,2026,1,1,,0,,,1,1,23,1/1/26 22:00, +1,1,24,2026,1,1,,0,,,1,1,24,1/1/26 23:00, +1,1,25,2026,1,1,,0,,,1,2,1,1/2/26 0:00, +1,1,26,2026,1,1,,0,,,1,2,2,1/2/26 1:00, +1,1,27,2026,1,1,,0,,,1,2,3,1/2/26 2:00, +1,1,28,2026,1,1,,0,,,1,2,4,1/2/26 3:00, +1,1,29,2026,1,1,,0,,,1,2,5,1/2/26 4:00, +1,1,30,2026,1,1,,0,,,1,2,6,1/2/26 5:00, +1,1,31,2026,1,1,,0,,,1,2,7,1/2/26 6:00, +1,1,32,2026,1,1,,0,,,1,2,8,1/2/26 7:00, +1,1,33,2026,1,1,,0,,,1,2,9,1/2/26 8:00, +1,1,34,2026,1,1,,0,,,1,2,10,1/2/26 9:00, +1,1,35,2026,1,1,,0,,,1,2,11,1/2/26 10:00, +1,1,36,2026,1,1,,0,,,1,2,12,1/2/26 11:00, +1,1,37,2026,1,1,,0,,,1,2,13,1/2/26 12:00, +1,1,38,2026,1,1,,0,,,1,2,14,1/2/26 13:00, +1,1,39,2026,1,1,,0,,,1,2,15,1/2/26 14:00, +1,1,40,2026,1,1,,0,,,1,2,16,1/2/26 15:00, +1,1,41,2026,1,1,,0,,,1,2,17,1/2/26 16:00, +1,1,42,2026,1,1,,0,,,1,2,18,1/2/26 17:00, +1,1,43,2026,1,1,,0,,,1,2,19,1/2/26 18:00, +1,1,44,2026,1,1,,0,,,1,2,20,1/2/26 19:00, +1,1,45,2026,1,1,,0,,,1,2,21,1/2/26 20:00, +1,1,46,2026,1,1,,0,,,1,2,22,1/2/26 21:00, +1,1,47,2026,1,1,,0,,,1,2,23,1/2/26 22:00, +1,1,48,2026,1,1,,0,,,1,2,24,1/2/26 23:00, +1,1,49,2026,1,1,,0,,,1,3,1,1/3/26 0:00, +1,1,50,2026,1,1,,0,,,1,3,2,1/3/26 1:00, +1,1,51,2026,1,1,,0,,,1,3,3,1/3/26 2:00, +1,1,52,2026,1,1,,0,,,1,3,4,1/3/26 3:00, +1,1,53,2026,1,1,,0,,,1,3,5,1/3/26 4:00, +1,1,54,2026,1,1,,0,,,1,3,6,1/3/26 5:00, +1,1,55,2026,1,1,,0,,,1,3,7,1/3/26 6:00, +1,1,56,2026,1,1,,0,,,1,3,8,1/3/26 7:00, +1,1,57,2026,1,1,,0,,,1,3,9,1/3/26 8:00, +1,1,58,2026,1,1,,0,,,1,3,10,1/3/26 9:00, +1,1,59,2026,1,1,,0,,,1,3,11,1/3/26 10:00, +1,1,60,2026,1,1,,0,,,1,3,12,1/3/26 11:00, +1,1,61,2026,1,1,,0,,,1,3,13,1/3/26 12:00, +1,1,62,2026,1,1,,0,,,1,3,14,1/3/26 13:00, +1,1,63,2026,1,1,,0,,,1,3,15,1/3/26 14:00, +1,1,64,2026,1,1,,0,,,1,3,16,1/3/26 15:00, +1,1,65,2026,1,1,,0,,,1,3,17,1/3/26 16:00, +1,1,66,2026,1,1,,0,,,1,3,18,1/3/26 17:00, +1,1,67,2026,1,1,,0,,,1,3,19,1/3/26 18:00, +1,1,68,2026,1,1,,0,,,1,3,20,1/3/26 19:00, +1,1,69,2026,1,1,,0,,,1,3,21,1/3/26 20:00, +1,1,70,2026,1,1,,0,,,1,3,22,1/3/26 21:00, +1,1,71,2026,1,1,,0,,,1,3,23,1/3/26 22:00, +1,1,72,2026,1,1,,0,,,1,3,24,1/3/26 23:00, +1,1,73,2026,1,1,,0,,,1,4,1,1/4/26 0:00, +1,1,74,2026,1,1,,0,,,1,4,2,1/4/26 1:00, +1,1,75,2026,1,1,,0,,,1,4,3,1/4/26 2:00, +1,1,76,2026,1,1,,0,,,1,4,4,1/4/26 3:00, +1,1,77,2026,1,1,,0,,,1,4,5,1/4/26 4:00, +1,1,78,2026,1,1,,0,,,1,4,6,1/4/26 5:00, +1,1,79,2026,1,1,,0,,,1,4,7,1/4/26 6:00, +1,1,80,2026,1,1,,0,,,1,4,8,1/4/26 7:00, +1,1,81,2026,1,1,,0,,,1,4,9,1/4/26 8:00, +1,1,82,2026,1,1,,0,,,1,4,10,1/4/26 9:00, +1,1,83,2026,1,1,,0,,,1,4,11,1/4/26 10:00, +1,1,84,2026,1,1,,0,,,1,4,12,1/4/26 11:00, +1,1,85,2026,1,1,,0,,,1,4,13,1/4/26 12:00, +1,1,86,2026,1,1,,0,,,1,4,14,1/4/26 13:00, +1,1,87,2026,1,1,,0,,,1,4,15,1/4/26 14:00, +1,1,88,2026,1,1,,0,,,1,4,16,1/4/26 15:00, +1,1,89,2026,1,1,,0,,,1,4,17,1/4/26 16:00, +1,1,90,2026,1,1,,0,,,1,4,18,1/4/26 17:00, +1,1,91,2026,1,1,,0,,,1,4,19,1/4/26 18:00, +1,1,92,2026,1,1,,0,,,1,4,20,1/4/26 19:00, +1,1,93,2026,1,1,,0,,,1,4,21,1/4/26 20:00, +1,1,94,2026,1,1,,0,,,1,4,22,1/4/26 21:00, +1,1,95,2026,1,1,,0,,,1,4,23,1/4/26 22:00, +1,1,96,2026,1,1,,0,,,1,4,24,1/4/26 23:00, +1,1,97,2026,1,1,,0,,,1,5,1,1/5/26 0:00, +1,1,98,2026,1,1,,0,,,1,5,2,1/5/26 1:00, +1,1,99,2026,1,1,,0,,,1,5,3,1/5/26 2:00, +1,1,100,2026,1,1,,0,,,1,5,4,1/5/26 3:00, +1,1,101,2026,1,1,,0,,,1,5,5,1/5/26 4:00, +1,1,102,2026,1,1,,0,,,1,5,6,1/5/26 5:00, +1,1,103,2026,1,1,,0,,,1,5,7,1/5/26 6:00, +1,1,104,2026,1,1,,0,,,1,5,8,1/5/26 7:00, +1,1,105,2026,1,1,,0,,,1,5,9,1/5/26 8:00, +1,1,106,2026,1,1,,0,,,1,5,10,1/5/26 9:00, +1,1,107,2026,1,1,,0,,,1,5,11,1/5/26 10:00, +1,1,108,2026,1,1,,0,,,1,5,12,1/5/26 11:00, +1,1,109,2026,1,1,,0,,,1,5,13,1/5/26 12:00, +1,1,110,2026,1,1,,0,,,1,5,14,1/5/26 13:00, +1,1,111,2026,1,1,,0,,,1,5,15,1/5/26 14:00, +1,1,112,2026,1,1,,0,,,1,5,16,1/5/26 15:00, +1,1,113,2026,1,1,,0,,,1,5,17,1/5/26 16:00, +1,1,114,2026,1,1,,0,,,1,5,18,1/5/26 17:00, +1,1,115,2026,1,1,,0,,,1,5,19,1/5/26 18:00, +1,1,116,2026,1,1,,0,,,1,5,20,1/5/26 19:00, +1,1,117,2026,1,1,,0,,,1,5,21,1/5/26 20:00, +1,1,118,2026,1,1,,0,,,1,5,22,1/5/26 21:00, +1,1,119,2026,1,1,,0,,,1,5,23,1/5/26 22:00, +1,1,120,2026,1,1,,0,,,1,5,24,1/5/26 23:00, +1,1,121,2026,1,1,,0,,,1,6,1,1/6/26 0:00, +1,1,122,2026,1,1,,0,,,1,6,2,1/6/26 1:00, +1,1,123,2026,1,1,,0,,,1,6,3,1/6/26 2:00, +1,1,124,2026,1,1,,0,,,1,6,4,1/6/26 3:00, +1,1,125,2026,1,1,,0,,,1,6,5,1/6/26 4:00, +1,1,126,2026,1,1,,0,,,1,6,6,1/6/26 5:00, +1,1,127,2026,1,1,,0,,,1,6,7,1/6/26 6:00, +1,1,128,2026,1,1,,0,,,1,6,8,1/6/26 7:00, +1,1,129,2026,1,1,,0,,,1,6,9,1/6/26 8:00, +1,1,130,2026,1,1,,0,,,1,6,10,1/6/26 9:00, +1,1,131,2026,1,1,,0,,,1,6,11,1/6/26 10:00, +1,1,132,2026,1,1,,0,,,1,6,12,1/6/26 11:00, +1,1,133,2026,1,1,,0,,,1,6,13,1/6/26 12:00, +1,1,134,2026,1,1,,0,,,1,6,14,1/6/26 13:00, +1,1,135,2026,1,1,,0,,,1,6,15,1/6/26 14:00, +1,1,136,2026,1,1,,0,,,1,6,16,1/6/26 15:00, +1,1,137,2026,1,1,,0,,,1,6,17,1/6/26 16:00, +1,1,138,2026,1,1,,0,,,1,6,18,1/6/26 17:00, +1,1,139,2026,1,1,,0,,,1,6,19,1/6/26 18:00, +1,1,140,2026,1,1,,0,,,1,6,20,1/6/26 19:00, +1,1,141,2026,1,1,,0,,,1,6,21,1/6/26 20:00, +1,1,142,2026,1,1,,0,,,1,6,22,1/6/26 21:00, +1,1,143,2026,1,1,,0,,,1,6,23,1/6/26 22:00, +1,1,144,2026,1,1,,0,,,1,6,24,1/6/26 23:00, +1,1,145,2026,1,1,,0,,,1,7,1,1/7/26 0:00, +1,1,146,2026,1,1,,0,,,1,7,2,1/7/26 1:00, +1,1,147,2026,1,1,,0,,,1,7,3,1/7/26 2:00, +1,1,148,2026,1,1,,0,,,1,7,4,1/7/26 3:00, +1,1,149,2026,1,1,,0,,,1,7,5,1/7/26 4:00, +1,1,150,2026,1,1,,0,,,1,7,6,1/7/26 5:00, +1,1,151,2026,1,1,,0,,,1,7,7,1/7/26 6:00, +1,1,152,2026,1,1,,0,,,1,7,8,1/7/26 7:00, +1,1,153,2026,1,1,,0,,,1,7,9,1/7/26 8:00, +1,1,154,2026,1,1,,0,,,1,7,10,1/7/26 9:00, +1,1,155,2026,1,1,,0,,,1,7,11,1/7/26 10:00, +1,1,156,2026,1,1,,0,,,1,7,12,1/7/26 11:00, +1,1,157,2026,1,1,,0,,,1,7,13,1/7/26 12:00, +1,1,158,2026,1,1,,0,,,1,7,14,1/7/26 13:00, +1,1,159,2026,1,1,,0,,,1,7,15,1/7/26 14:00, +1,1,160,2026,1,1,,0,,,1,7,16,1/7/26 15:00, +1,1,161,2026,1,1,,0,,,1,7,17,1/7/26 16:00, +1,1,162,2026,1,1,,0,,,1,7,18,1/7/26 17:00, +1,1,163,2026,1,1,,0,,,1,7,19,1/7/26 18:00, +1,1,164,2026,1,1,,0,,,1,7,20,1/7/26 19:00, +1,1,165,2026,1,1,,0,,,1,7,21,1/7/26 20:00, +1,1,166,2026,1,1,,0,,,1,7,22,1/7/26 21:00, +1,1,167,2026,1,1,,0,,,1,7,23,1/7/26 22:00, +1,1,168,2026,1,1,,0,,,1,7,24,1/7/26 23:00, +1,1,169,2026,1,1,,0,,,1,8,1,1/8/26 0:00, +1,1,170,2026,1,1,,0,,,1,8,2,1/8/26 1:00, +1,1,171,2026,1,1,,0,,,1,8,3,1/8/26 2:00, +1,1,172,2026,1,1,,0,,,1,8,4,1/8/26 3:00, +1,1,173,2026,1,1,,0,,,1,8,5,1/8/26 4:00, +1,1,174,2026,1,1,,0,,,1,8,6,1/8/26 5:00, +1,1,175,2026,1,1,,0,,,1,8,7,1/8/26 6:00, +1,1,176,2026,1,1,,0,,,1,8,8,1/8/26 7:00, +1,1,177,2026,1,1,,0,,,1,8,9,1/8/26 8:00, +1,1,178,2026,1,1,,0,,,1,8,10,1/8/26 9:00, +1,1,179,2026,1,1,,0,,,1,8,11,1/8/26 10:00, +1,1,180,2026,1,1,,0,,,1,8,12,1/8/26 11:00, +1,1,181,2026,1,1,,0,,,1,8,13,1/8/26 12:00, +1,1,182,2026,1,1,,0,,,1,8,14,1/8/26 13:00, +1,1,183,2026,1,1,,0,,,1,8,15,1/8/26 14:00, +1,1,184,2026,1,1,,0,,,1,8,16,1/8/26 15:00, +1,1,185,2026,1,1,,0,,,1,8,17,1/8/26 16:00, +1,1,186,2026,1,1,,0,,,1,8,18,1/8/26 17:00, +1,1,187,2026,1,1,,0,,,1,8,19,1/8/26 18:00, +1,1,188,2026,1,1,,0,,,1,8,20,1/8/26 19:00, +1,1,189,2026,1,1,,0,,,1,8,21,1/8/26 20:00, +1,1,190,2026,1,1,,0,,,1,8,22,1/8/26 21:00, +1,1,191,2026,1,1,,0,,,1,8,23,1/8/26 22:00, +1,1,192,2026,1,1,,0,,,1,8,24,1/8/26 23:00, +1,1,193,2026,1,1,,0,,,1,9,1,1/9/26 0:00, +1,1,194,2026,1,1,,0,,,1,9,2,1/9/26 1:00, +1,1,195,2026,1,1,,0,,,1,9,3,1/9/26 2:00, +1,1,196,2026,1,1,,0,,,1,9,4,1/9/26 3:00, +1,1,197,2026,1,1,,0,,,1,9,5,1/9/26 4:00, +1,1,198,2026,1,1,,0,,,1,9,6,1/9/26 5:00, +1,1,199,2026,1,1,,0,,,1,9,7,1/9/26 6:00, +1,1,200,2026,1,1,,0,,,1,9,8,1/9/26 7:00, +1,1,201,2026,1,1,,0,,,1,9,9,1/9/26 8:00, +1,1,202,2026,1,1,,0,,,1,9,10,1/9/26 9:00, +1,1,203,2026,1,1,,0,,,1,9,11,1/9/26 10:00, +1,1,204,2026,1,1,,0,,,1,9,12,1/9/26 11:00, +1,1,205,2026,1,1,,0,,,1,9,13,1/9/26 12:00, +1,1,206,2026,1,1,,0,,,1,9,14,1/9/26 13:00, +1,1,207,2026,1,1,,0,,,1,9,15,1/9/26 14:00, +1,1,208,2026,1,1,,0,,,1,9,16,1/9/26 15:00, +1,1,209,2026,1,1,,0,,,1,9,17,1/9/26 16:00, +1,1,210,2026,1,1,,0,,,1,9,18,1/9/26 17:00, +1,1,211,2026,1,1,,0,,,1,9,19,1/9/26 18:00, +1,1,212,2026,1,1,,0,,,1,9,20,1/9/26 19:00, +1,1,213,2026,1,1,,0,,,1,9,21,1/9/26 20:00, +1,1,214,2026,1,1,,0,,,1,9,22,1/9/26 21:00, +1,1,215,2026,1,1,,0,,,1,9,23,1/9/26 22:00, +1,1,216,2026,1,1,,0,,,1,9,24,1/9/26 23:00, +1,1,217,2026,1,1,,0,,,1,10,1,1/10/26 0:00, +1,1,218,2026,1,1,,0,,,1,10,2,1/10/26 1:00, +1,1,219,2026,1,1,,0,,,1,10,3,1/10/26 2:00, +1,1,220,2026,1,1,,0,,,1,10,4,1/10/26 3:00, +1,1,221,2026,1,1,,0,,,1,10,5,1/10/26 4:00, +1,1,222,2026,1,1,,0,,,1,10,6,1/10/26 5:00, +1,1,223,2026,1,1,,0,,,1,10,7,1/10/26 6:00, +1,1,224,2026,1,1,,0,,,1,10,8,1/10/26 7:00, +1,1,225,2026,1,1,,0,,,1,10,9,1/10/26 8:00, +1,1,226,2026,1,1,,0,,,1,10,10,1/10/26 9:00, +1,1,227,2026,1,1,,0,,,1,10,11,1/10/26 10:00, +1,1,228,2026,1,1,,0,,,1,10,12,1/10/26 11:00, +1,1,229,2026,1,1,,0,,,1,10,13,1/10/26 12:00, +1,1,230,2026,1,1,,0,,,1,10,14,1/10/26 13:00, +1,1,231,2026,1,1,,0,,,1,10,15,1/10/26 14:00, +1,1,232,2026,1,1,,0,,,1,10,16,1/10/26 15:00, +1,1,233,2026,1,1,,0,,,1,10,17,1/10/26 16:00, +1,1,234,2026,1,1,,0,,,1,10,18,1/10/26 17:00, +1,1,235,2026,1,1,,0,,,1,10,19,1/10/26 18:00, +1,1,236,2026,1,1,,0,,,1,10,20,1/10/26 19:00, +1,1,237,2026,1,1,,0,,,1,10,21,1/10/26 20:00, +1,1,238,2026,1,1,,0,,,1,10,22,1/10/26 21:00, +1,1,239,2026,1,1,,0,,,1,10,23,1/10/26 22:00, +1,1,240,2026,1,1,,0,,,1,10,24,1/10/26 23:00, +1,1,241,2026,1,1,,0,,,1,11,1,1/11/26 0:00, +1,1,242,2026,1,1,,0,,,1,11,2,1/11/26 1:00, +1,1,243,2026,1,1,,0,,,1,11,3,1/11/26 2:00, +1,1,244,2026,1,1,,0,,,1,11,4,1/11/26 3:00, +1,1,245,2026,1,1,,0,,,1,11,5,1/11/26 4:00, +1,1,246,2026,1,1,,0,,,1,11,6,1/11/26 5:00, +1,1,247,2026,1,1,,0,,,1,11,7,1/11/26 6:00, +1,1,248,2026,1,1,,0,,,1,11,8,1/11/26 7:00, +1,1,249,2026,1,1,,0,,,1,11,9,1/11/26 8:00, +1,1,250,2026,1,1,,0,,,1,11,10,1/11/26 9:00, +1,1,251,2026,1,1,,0,,,1,11,11,1/11/26 10:00, +1,1,252,2026,1,1,,0,,,1,11,12,1/11/26 11:00, +1,1,253,2026,1,1,,0,,,1,11,13,1/11/26 12:00, +1,1,254,2026,1,1,,0,,,1,11,14,1/11/26 13:00, +1,1,255,2026,1,1,,0,,,1,11,15,1/11/26 14:00, +1,1,256,2026,1,1,,0,,,1,11,16,1/11/26 15:00, +1,1,257,2026,1,1,,0,,,1,11,17,1/11/26 16:00, +1,1,258,2026,1,1,,0,,,1,11,18,1/11/26 17:00, +1,1,259,2026,1,1,,0,,,1,11,19,1/11/26 18:00, +1,1,260,2026,1,1,,0,,,1,11,20,1/11/26 19:00, +1,1,261,2026,1,1,,0,,,1,11,21,1/11/26 20:00, +1,1,262,2026,1,1,,0,,,1,11,22,1/11/26 21:00, +1,1,263,2026,1,1,,0,,,1,11,23,1/11/26 22:00, +1,1,264,2026,1,1,,0,,,1,11,24,1/11/26 23:00, +1,1,265,2026,1,1,,0,,,1,12,1,1/12/26 0:00, +1,1,266,2026,1,1,,0,,,1,12,2,1/12/26 1:00, +1,1,267,2026,1,1,,0,,,1,12,3,1/12/26 2:00, +1,1,268,2026,1,1,,0,,,1,12,4,1/12/26 3:00, +1,1,269,2026,1,1,,0,,,1,12,5,1/12/26 4:00, +1,1,270,2026,1,1,,0,,,1,12,6,1/12/26 5:00, +1,1,271,2026,1,1,,0,,,1,12,7,1/12/26 6:00, +1,1,272,2026,1,1,,0,,,1,12,8,1/12/26 7:00, +1,1,273,2026,1,1,,0,,,1,12,9,1/12/26 8:00, +1,1,274,2026,1,1,,0,,,1,12,10,1/12/26 9:00, +1,1,275,2026,1,1,,0,,,1,12,11,1/12/26 10:00, +1,1,276,2026,1,1,,0,,,1,12,12,1/12/26 11:00, +1,1,277,2026,1,1,,0,,,1,12,13,1/12/26 12:00, +1,1,278,2026,1,1,,0,,,1,12,14,1/12/26 13:00, +1,1,279,2026,1,1,,0,,,1,12,15,1/12/26 14:00, +1,1,280,2026,1,1,,0,,,1,12,16,1/12/26 15:00, +1,1,281,2026,1,1,,0,,,1,12,17,1/12/26 16:00, +1,1,282,2026,1,1,,0,,,1,12,18,1/12/26 17:00, +1,1,283,2026,1,1,,0,,,1,12,19,1/12/26 18:00, +1,1,284,2026,1,1,,0,,,1,12,20,1/12/26 19:00, +1,1,285,2026,1,1,,0,,,1,12,21,1/12/26 20:00, +1,1,286,2026,1,1,,0,,,1,12,22,1/12/26 21:00, +1,1,287,2026,1,1,,0,,,1,12,23,1/12/26 22:00, +1,1,288,2026,1,1,,0,,,1,12,24,1/12/26 23:00, +1,1,289,2026,1,1,,0,,,1,13,1,1/13/26 0:00, +1,1,290,2026,1,1,,0,,,1,13,2,1/13/26 1:00, +1,1,291,2026,1,1,,0,,,1,13,3,1/13/26 2:00, +1,1,292,2026,1,1,,0,,,1,13,4,1/13/26 3:00, +1,1,293,2026,1,1,,0,,,1,13,5,1/13/26 4:00, +1,1,294,2026,1,1,,0,,,1,13,6,1/13/26 5:00, +1,1,295,2026,1,1,,0,,,1,13,7,1/13/26 6:00, +1,1,296,2026,1,1,,0,,,1,13,8,1/13/26 7:00, +1,1,297,2026,1,1,,0,,,1,13,9,1/13/26 8:00, +1,1,298,2026,1,1,,0,,,1,13,10,1/13/26 9:00, +1,1,299,2026,1,1,,0,,,1,13,11,1/13/26 10:00, +1,1,300,2026,1,1,,0,,,1,13,12,1/13/26 11:00, +1,1,301,2026,1,1,,0,,,1,13,13,1/13/26 12:00, +1,1,302,2026,1,1,,0,,,1,13,14,1/13/26 13:00, +1,1,303,2026,1,1,,0,,,1,13,15,1/13/26 14:00, +1,1,304,2026,1,1,,0,,,1,13,16,1/13/26 15:00, +1,1,305,2026,1,1,,0,,,1,13,17,1/13/26 16:00, +1,1,306,2026,1,1,,0,,,1,13,18,1/13/26 17:00, +1,1,307,2026,1,1,,0,,,1,13,19,1/13/26 18:00, +1,1,308,2026,1,1,,0,,,1,13,20,1/13/26 19:00, +1,1,309,2026,1,1,,0,,,1,13,21,1/13/26 20:00, +1,1,310,2026,1,1,,0,,,1,13,22,1/13/26 21:00, +1,1,311,2026,1,1,,0,,,1,13,23,1/13/26 22:00, +1,1,312,2026,1,1,,0,,,1,13,24,1/13/26 23:00, +1,1,313,2026,1,1,,0,,,1,14,1,1/14/26 0:00, +1,1,314,2026,1,1,,0,,,1,14,2,1/14/26 1:00, +1,1,315,2026,1,1,,0,,,1,14,3,1/14/26 2:00, +1,1,316,2026,1,1,,0,,,1,14,4,1/14/26 3:00, +1,1,317,2026,1,1,,0,,,1,14,5,1/14/26 4:00, +1,1,318,2026,1,1,,0,,,1,14,6,1/14/26 5:00, +1,1,319,2026,1,1,,0,,,1,14,7,1/14/26 6:00, +1,1,320,2026,1,1,,0,,,1,14,8,1/14/26 7:00, +1,1,321,2026,1,1,,0,,,1,14,9,1/14/26 8:00, +1,1,322,2026,1,1,,0,,,1,14,10,1/14/26 9:00, +1,1,323,2026,1,1,,0,,,1,14,11,1/14/26 10:00, +1,1,324,2026,1,1,,0,,,1,14,12,1/14/26 11:00, +1,1,325,2026,1,1,,0,,,1,14,13,1/14/26 12:00, +1,1,326,2026,1,1,,0,,,1,14,14,1/14/26 13:00, +1,1,327,2026,1,1,,0,,,1,14,15,1/14/26 14:00, +1,1,328,2026,1,1,,0,,,1,14,16,1/14/26 15:00, +1,1,329,2026,1,1,,0,,,1,14,17,1/14/26 16:00, +1,1,330,2026,1,1,,0,,,1,14,18,1/14/26 17:00, +1,1,331,2026,1,1,,0,,,1,14,19,1/14/26 18:00, +1,1,332,2026,1,1,,0,,,1,14,20,1/14/26 19:00, +1,1,333,2026,1,1,,0,,,1,14,21,1/14/26 20:00, +1,1,334,2026,1,1,,0,,,1,14,22,1/14/26 21:00, +1,1,335,2026,1,1,,0,,,1,14,23,1/14/26 22:00, +1,1,336,2026,1,1,,0,,,1,14,24,1/14/26 23:00, +1,1,337,2026,1,1,,0,,,1,15,1,1/15/26 0:00, +1,1,338,2026,1,1,,0,,,1,15,2,1/15/26 1:00, +1,1,339,2026,1,1,,0,,,1,15,3,1/15/26 2:00, +1,1,340,2026,1,1,,0,,,1,15,4,1/15/26 3:00, +1,1,341,2026,1,1,,0,,,1,15,5,1/15/26 4:00, +1,1,342,2026,1,1,,0,,,1,15,6,1/15/26 5:00, +1,1,343,2026,1,1,,0,,,1,15,7,1/15/26 6:00, +1,1,344,2026,1,1,,0,,,1,15,8,1/15/26 7:00, +1,1,345,2026,1,1,,0,,,1,15,9,1/15/26 8:00, +1,1,346,2026,1,1,,0,,,1,15,10,1/15/26 9:00, +1,1,347,2026,1,1,,0,,,1,15,11,1/15/26 10:00, +1,1,348,2026,1,1,,0,,,1,15,12,1/15/26 11:00, +1,1,349,2026,1,1,,0,,,1,15,13,1/15/26 12:00, +1,1,350,2026,1,1,,0,,,1,15,14,1/15/26 13:00, +1,1,351,2026,1,1,,0,,,1,15,15,1/15/26 14:00, +1,1,352,2026,1,1,,0,,,1,15,16,1/15/26 15:00, +1,1,353,2026,1,1,,0,,,1,15,17,1/15/26 16:00, +1,1,354,2026,1,1,,0,,,1,15,18,1/15/26 17:00, +1,1,355,2026,1,1,,0,,,1,15,19,1/15/26 18:00, +1,1,356,2026,1,1,,0,,,1,15,20,1/15/26 19:00, +1,1,357,2026,1,1,,0,,,1,15,21,1/15/26 20:00, +1,1,358,2026,1,1,,0,,,1,15,22,1/15/26 21:00, +1,1,359,2026,1,1,,0,,,1,15,23,1/15/26 22:00, +1,1,360,2026,1,1,,0,,,1,15,24,1/15/26 23:00, +1,1,361,2026,1,1,,0,,,1,16,1,1/16/26 0:00, +1,1,362,2026,1,1,,0,,,1,16,2,1/16/26 1:00, +1,1,363,2026,1,1,,0,,,1,16,3,1/16/26 2:00, +1,1,364,2026,1,1,,0,,,1,16,4,1/16/26 3:00, +1,1,365,2026,1,1,,0,,,1,16,5,1/16/26 4:00, +1,1,366,2026,1,1,,0,,,1,16,6,1/16/26 5:00, +1,1,367,2026,1,1,,0,,,1,16,7,1/16/26 6:00, +1,1,368,2026,1,1,,0,,,1,16,8,1/16/26 7:00, +1,1,369,2026,1,1,,0,,,1,16,9,1/16/26 8:00, +1,1,370,2026,1,1,,0,,,1,16,10,1/16/26 9:00, +1,1,371,2026,1,1,,0,,,1,16,11,1/16/26 10:00, +1,1,372,2026,1,1,,0,,,1,16,12,1/16/26 11:00, +1,1,373,2026,1,1,,0,,,1,16,13,1/16/26 12:00, +1,1,374,2026,1,1,,0,,,1,16,14,1/16/26 13:00, +1,1,375,2026,1,1,,0,,,1,16,15,1/16/26 14:00, +1,1,376,2026,1,1,,0,,,1,16,16,1/16/26 15:00, +1,1,377,2026,1,1,,0,,,1,16,17,1/16/26 16:00, +1,1,378,2026,1,1,,0,,,1,16,18,1/16/26 17:00, +1,1,379,2026,1,1,,0,,,1,16,19,1/16/26 18:00, +1,1,380,2026,1,1,,0,,,1,16,20,1/16/26 19:00, +1,1,381,2026,1,1,,0,,,1,16,21,1/16/26 20:00, +1,1,382,2026,1,1,,0,,,1,16,22,1/16/26 21:00, +1,1,383,2026,1,1,,0,,,1,16,23,1/16/26 22:00, +1,1,384,2026,1,1,,0,,,1,16,24,1/16/26 23:00, +1,1,385,2026,1,1,,0,,,1,17,1,1/17/26 0:00, +1,1,386,2026,1,1,,0,,,1,17,2,1/17/26 1:00, +1,1,387,2026,1,1,,0,,,1,17,3,1/17/26 2:00, +1,1,388,2026,1,1,,0,,,1,17,4,1/17/26 3:00, +1,1,389,2026,1,1,,0,,,1,17,5,1/17/26 4:00, +1,1,390,2026,1,1,,0,,,1,17,6,1/17/26 5:00, +1,1,391,2026,1,1,,0,,,1,17,7,1/17/26 6:00, +1,1,392,2026,1,1,,0,,,1,17,8,1/17/26 7:00, +1,1,393,2026,1,1,,0,,,1,17,9,1/17/26 8:00, +1,1,394,2026,1,1,,0,,,1,17,10,1/17/26 9:00, +1,1,395,2026,1,1,,0,,,1,17,11,1/17/26 10:00, +1,1,396,2026,1,1,,0,,,1,17,12,1/17/26 11:00, +1,1,397,2026,1,1,,0,,,1,17,13,1/17/26 12:00, +1,1,398,2026,1,1,,0,,,1,17,14,1/17/26 13:00, +1,1,399,2026,1,1,,0,,,1,17,15,1/17/26 14:00, +1,1,400,2026,1,1,,0,,,1,17,16,1/17/26 15:00, +1,1,401,2026,1,1,,0,,,1,17,17,1/17/26 16:00, +1,1,402,2026,1,1,,0,,,1,17,18,1/17/26 17:00, +1,1,403,2026,1,1,,0,,,1,17,19,1/17/26 18:00, +1,1,404,2026,1,1,,0,,,1,17,20,1/17/26 19:00, +1,1,405,2026,1,1,,0,,,1,17,21,1/17/26 20:00, +1,1,406,2026,1,1,,0,,,1,17,22,1/17/26 21:00, +1,1,407,2026,1,1,,0,,,1,17,23,1/17/26 22:00, +1,1,408,2026,1,1,,0,,,1,17,24,1/17/26 23:00, +1,1,409,2026,1,1,,0,,,1,18,1,1/18/26 0:00, +1,1,410,2026,1,1,,0,,,1,18,2,1/18/26 1:00, +1,1,411,2026,1,1,,0,,,1,18,3,1/18/26 2:00, +1,1,412,2026,1,1,,0,,,1,18,4,1/18/26 3:00, +1,1,413,2026,1,1,,0,,,1,18,5,1/18/26 4:00, +1,1,414,2026,1,1,,0,,,1,18,6,1/18/26 5:00, +1,1,415,2026,1,1,,0,,,1,18,7,1/18/26 6:00, +1,1,416,2026,1,1,,0,,,1,18,8,1/18/26 7:00, +1,1,417,2026,1,1,,0,,,1,18,9,1/18/26 8:00, +1,1,418,2026,1,1,,0,,,1,18,10,1/18/26 9:00, +1,1,419,2026,1,1,,0,,,1,18,11,1/18/26 10:00, +1,1,420,2026,1,1,,0,,,1,18,12,1/18/26 11:00, +1,1,421,2026,1,1,,0,,,1,18,13,1/18/26 12:00, +1,1,422,2026,1,1,,0,,,1,18,14,1/18/26 13:00, +1,1,423,2026,1,1,,0,,,1,18,15,1/18/26 14:00, +1,1,424,2026,1,1,,0,,,1,18,16,1/18/26 15:00, +1,1,425,2026,1,1,,0,,,1,18,17,1/18/26 16:00, +1,1,426,2026,1,1,,0,,,1,18,18,1/18/26 17:00, +1,1,427,2026,1,1,,0,,,1,18,19,1/18/26 18:00, +1,1,428,2026,1,1,,0,,,1,18,20,1/18/26 19:00, +1,1,429,2026,1,1,,0,,,1,18,21,1/18/26 20:00, +1,1,430,2026,1,1,,0,,,1,18,22,1/18/26 21:00, +1,1,431,2026,1,1,,0,,,1,18,23,1/18/26 22:00, +1,1,432,2026,1,1,,0,,,1,18,24,1/18/26 23:00, +1,1,433,2026,1,1,,0,,,1,19,1,1/19/26 0:00, +1,1,434,2026,1,1,,0,,,1,19,2,1/19/26 1:00, +1,1,435,2026,1,1,,0,,,1,19,3,1/19/26 2:00, +1,1,436,2026,1,1,,0,,,1,19,4,1/19/26 3:00, +1,1,437,2026,1,1,,0,,,1,19,5,1/19/26 4:00, +1,1,438,2026,1,1,,0,,,1,19,6,1/19/26 5:00, +1,1,439,2026,1,1,,0,,,1,19,7,1/19/26 6:00, +1,1,440,2026,1,1,,0,,,1,19,8,1/19/26 7:00, +1,1,441,2026,1,1,,0,,,1,19,9,1/19/26 8:00, +1,1,442,2026,1,1,,0,,,1,19,10,1/19/26 9:00, +1,1,443,2026,1,1,,0,,,1,19,11,1/19/26 10:00, +1,1,444,2026,1,1,,0,,,1,19,12,1/19/26 11:00, +1,1,445,2026,1,1,,0,,,1,19,13,1/19/26 12:00, +1,1,446,2026,1,1,,0,,,1,19,14,1/19/26 13:00, +1,1,447,2026,1,1,,0,,,1,19,15,1/19/26 14:00, +1,1,448,2026,1,1,,0,,,1,19,16,1/19/26 15:00, +1,1,449,2026,1,1,,0,,,1,19,17,1/19/26 16:00, +1,1,450,2026,1,1,,0,,,1,19,18,1/19/26 17:00, +1,1,451,2026,1,1,,0,,,1,19,19,1/19/26 18:00, +1,1,452,2026,1,1,,0,,,1,19,20,1/19/26 19:00, +1,1,453,2026,1,1,,0,,,1,19,21,1/19/26 20:00, +1,1,454,2026,1,1,,0,,,1,19,22,1/19/26 21:00, +1,1,455,2026,1,1,,0,,,1,19,23,1/19/26 22:00, +1,1,456,2026,1,1,,0,,,1,19,24,1/19/26 23:00, +1,1,457,2026,1,1,,0,,,1,20,1,1/20/26 0:00, +1,1,458,2026,1,1,,0,,,1,20,2,1/20/26 1:00, +1,1,459,2026,1,1,,0,,,1,20,3,1/20/26 2:00, +1,1,460,2026,1,1,,0,,,1,20,4,1/20/26 3:00, +1,1,461,2026,1,1,,0,,,1,20,5,1/20/26 4:00, +1,1,462,2026,1,1,,0,,,1,20,6,1/20/26 5:00, +1,1,463,2026,1,1,,0,,,1,20,7,1/20/26 6:00, +1,1,464,2026,1,1,,0,,,1,20,8,1/20/26 7:00, +1,1,465,2026,1,1,,0,,,1,20,9,1/20/26 8:00, +1,1,466,2026,1,1,,0,,,1,20,10,1/20/26 9:00, +1,1,467,2026,1,1,,0,,,1,20,11,1/20/26 10:00, +1,1,468,2026,1,1,,0,,,1,20,12,1/20/26 11:00, +1,1,469,2026,1,1,,0,,,1,20,13,1/20/26 12:00, +1,1,470,2026,1,1,,0,,,1,20,14,1/20/26 13:00, +1,1,471,2026,1,1,,0,,,1,20,15,1/20/26 14:00, +1,1,472,2026,1,1,,0,,,1,20,16,1/20/26 15:00, +1,1,473,2026,1,1,,0,,,1,20,17,1/20/26 16:00, +1,1,474,2026,1,1,,0,,,1,20,18,1/20/26 17:00, +1,1,475,2026,1,1,,0,,,1,20,19,1/20/26 18:00, +1,1,476,2026,1,1,,0,,,1,20,20,1/20/26 19:00, +1,1,477,2026,1,1,,0,,,1,20,21,1/20/26 20:00, +1,1,478,2026,1,1,,0,,,1,20,22,1/20/26 21:00, +1,1,479,2026,1,1,,0,,,1,20,23,1/20/26 22:00, +1,1,480,2026,1,1,,0,,,1,20,24,1/20/26 23:00, +1,1,481,2026,1,1,,0,,,1,21,1,1/21/26 0:00, +1,1,482,2026,1,1,,0,,,1,21,2,1/21/26 1:00, +1,1,483,2026,1,1,,0,,,1,21,3,1/21/26 2:00, +1,1,484,2026,1,1,,0,,,1,21,4,1/21/26 3:00, +1,1,485,2026,1,1,,0,,,1,21,5,1/21/26 4:00, +1,1,486,2026,1,1,,0,,,1,21,6,1/21/26 5:00, +1,1,487,2026,1,1,,0,,,1,21,7,1/21/26 6:00, +1,1,488,2026,1,1,,0,,,1,21,8,1/21/26 7:00, +1,1,489,2026,1,1,,0,,,1,21,9,1/21/26 8:00, +1,1,490,2026,1,1,,0,,,1,21,10,1/21/26 9:00, +1,1,491,2026,1,1,,0,,,1,21,11,1/21/26 10:00, +1,1,492,2026,1,1,,0,,,1,21,12,1/21/26 11:00, +1,1,493,2026,1,1,,0,,,1,21,13,1/21/26 12:00, +1,1,494,2026,1,1,,0,,,1,21,14,1/21/26 13:00, +1,1,495,2026,1,1,,0,,,1,21,15,1/21/26 14:00, +1,1,496,2026,1,1,,0,,,1,21,16,1/21/26 15:00, +1,1,497,2026,1,1,,0,,,1,21,17,1/21/26 16:00, +1,1,498,2026,1,1,,0,,,1,21,18,1/21/26 17:00, +1,1,499,2026,1,1,,0,,,1,21,19,1/21/26 18:00, +1,1,500,2026,1,1,,0,,,1,21,20,1/21/26 19:00, +1,1,501,2026,1,1,,0,,,1,21,21,1/21/26 20:00, +1,1,502,2026,1,1,,0,,,1,21,22,1/21/26 21:00, +1,1,503,2026,1,1,,0,,,1,21,23,1/21/26 22:00, +1,1,504,2026,1,1,,0,,,1,21,24,1/21/26 23:00, +1,1,505,2026,1,1,,0,,,1,22,1,1/22/26 0:00, +1,1,506,2026,1,1,,0,,,1,22,2,1/22/26 1:00, +1,1,507,2026,1,1,,0,,,1,22,3,1/22/26 2:00, +1,1,508,2026,1,1,,0,,,1,22,4,1/22/26 3:00, +1,1,509,2026,1,1,,0,,,1,22,5,1/22/26 4:00, +1,1,510,2026,1,1,,0,,,1,22,6,1/22/26 5:00, +1,1,511,2026,1,1,,0,,,1,22,7,1/22/26 6:00, +1,1,512,2026,1,1,,0,,,1,22,8,1/22/26 7:00, +1,1,513,2026,1,1,,0,,,1,22,9,1/22/26 8:00, +1,1,514,2026,1,1,,0,,,1,22,10,1/22/26 9:00, +1,1,515,2026,1,1,,0,,,1,22,11,1/22/26 10:00, +1,1,516,2026,1,1,,0,,,1,22,12,1/22/26 11:00, +1,1,517,2026,1,1,,0,,,1,22,13,1/22/26 12:00, +1,1,518,2026,1,1,,0,,,1,22,14,1/22/26 13:00, +1,1,519,2026,1,1,,0,,,1,22,15,1/22/26 14:00, +1,1,520,2026,1,1,,0,,,1,22,16,1/22/26 15:00, +1,1,521,2026,1,1,,0,,,1,22,17,1/22/26 16:00, +1,1,522,2026,1,1,,0,,,1,22,18,1/22/26 17:00, +1,1,523,2026,1,1,,0,,,1,22,19,1/22/26 18:00, +1,1,524,2026,1,1,,0,,,1,22,20,1/22/26 19:00, +1,1,525,2026,1,1,,0,,,1,22,21,1/22/26 20:00, +1,1,526,2026,1,1,,0,,,1,22,22,1/22/26 21:00, +1,1,527,2026,1,1,,0,,,1,22,23,1/22/26 22:00, +1,1,528,2026,1,1,,0,,,1,22,24,1/22/26 23:00, +1,1,529,2026,1,1,,0,,,1,23,1,1/23/26 0:00, +1,1,530,2026,1,1,,0,,,1,23,2,1/23/26 1:00, +1,1,531,2026,1,1,,0,,,1,23,3,1/23/26 2:00, +1,1,532,2026,1,1,,0,,,1,23,4,1/23/26 3:00, +1,1,533,2026,1,1,,0,,,1,23,5,1/23/26 4:00, +1,1,534,2026,1,1,,0,,,1,23,6,1/23/26 5:00, +1,1,535,2026,1,1,,0,,,1,23,7,1/23/26 6:00, +1,1,536,2026,1,1,,0,,,1,23,8,1/23/26 7:00, +1,1,537,2026,1,1,,0,,,1,23,9,1/23/26 8:00, +1,1,538,2026,1,1,,0,,,1,23,10,1/23/26 9:00, +1,1,539,2026,1,1,,0,,,1,23,11,1/23/26 10:00, +1,1,540,2026,1,1,,0,,,1,23,12,1/23/26 11:00, +1,1,541,2026,1,1,,0,,,1,23,13,1/23/26 12:00, +1,1,542,2026,1,1,,0,,,1,23,14,1/23/26 13:00, +1,1,543,2026,1,1,,0,,,1,23,15,1/23/26 14:00, +1,1,544,2026,1,1,,0,,,1,23,16,1/23/26 15:00, +1,1,545,2026,1,1,,0,,,1,23,17,1/23/26 16:00, +1,1,546,2026,1,1,,0,,,1,23,18,1/23/26 17:00, +1,1,547,2026,1,1,,0,,,1,23,19,1/23/26 18:00, +1,1,548,2026,1,1,,0,,,1,23,20,1/23/26 19:00, +1,1,549,2026,1,1,,0,,,1,23,21,1/23/26 20:00, +1,1,550,2026,1,1,,0,,,1,23,22,1/23/26 21:00, +1,1,551,2026,1,1,,0,,,1,23,23,1/23/26 22:00, +1,1,552,2026,1,1,,0,,,1,23,24,1/23/26 23:00, +1,1,553,2026,1,1,,0,,,1,24,1,1/24/26 0:00, +1,1,554,2026,1,1,,0,,,1,24,2,1/24/26 1:00, +1,1,555,2026,1,1,,0,,,1,24,3,1/24/26 2:00, +1,1,556,2026,1,1,,0,,,1,24,4,1/24/26 3:00, +1,1,557,2026,1,1,,0,,,1,24,5,1/24/26 4:00, +1,1,558,2026,1,1,,0,,,1,24,6,1/24/26 5:00, +1,1,559,2026,1,1,,0,,,1,24,7,1/24/26 6:00, +1,1,560,2026,1,1,,0,,,1,24,8,1/24/26 7:00, +1,1,561,2026,1,1,,0,,,1,24,9,1/24/26 8:00, +1,1,562,2026,1,1,,0,,,1,24,10,1/24/26 9:00, +1,1,563,2026,1,1,,0,,,1,24,11,1/24/26 10:00, +1,1,564,2026,1,1,,0,,,1,24,12,1/24/26 11:00, +1,1,565,2026,1,1,,0,,,1,24,13,1/24/26 12:00, +1,1,566,2026,1,1,,0,,,1,24,14,1/24/26 13:00, +1,1,567,2026,1,1,,0,,,1,24,15,1/24/26 14:00, +1,1,568,2026,1,1,,0,,,1,24,16,1/24/26 15:00, +1,1,569,2026,1,1,,0,,,1,24,17,1/24/26 16:00, +1,1,570,2026,1,1,,0,,,1,24,18,1/24/26 17:00, +1,1,571,2026,1,1,,0,,,1,24,19,1/24/26 18:00, +1,1,572,2026,1,1,,0,,,1,24,20,1/24/26 19:00, +1,1,573,2026,1,1,,0,,,1,24,21,1/24/26 20:00, +1,1,574,2026,1,1,,0,,,1,24,22,1/24/26 21:00, +1,1,575,2026,1,1,,0,,,1,24,23,1/24/26 22:00, +1,1,576,2026,1,1,,0,,,1,24,24,1/24/26 23:00, +1,1,577,2026,1,1,,0,,,1,25,1,1/25/26 0:00, +1,1,578,2026,1,1,,0,,,1,25,2,1/25/26 1:00, +1,1,579,2026,1,1,,0,,,1,25,3,1/25/26 2:00, +1,1,580,2026,1,1,,0,,,1,25,4,1/25/26 3:00, +1,1,581,2026,1,1,,0,,,1,25,5,1/25/26 4:00, +1,1,582,2026,1,1,,0,,,1,25,6,1/25/26 5:00, +1,1,583,2026,1,1,,0,,,1,25,7,1/25/26 6:00, +1,1,584,2026,1,1,,0,,,1,25,8,1/25/26 7:00, +1,1,585,2026,1,1,,0,,,1,25,9,1/25/26 8:00, +1,1,586,2026,1,1,,0,,,1,25,10,1/25/26 9:00, +1,1,587,2026,1,1,,0,,,1,25,11,1/25/26 10:00, +1,1,588,2026,1,1,,0,,,1,25,12,1/25/26 11:00, +1,1,589,2026,1,1,,0,,,1,25,13,1/25/26 12:00, +1,1,590,2026,1,1,,0,,,1,25,14,1/25/26 13:00, +1,1,591,2026,1,1,,0,,,1,25,15,1/25/26 14:00, +1,1,592,2026,1,1,,0,,,1,25,16,1/25/26 15:00, +1,1,593,2026,1,1,,0,,,1,25,17,1/25/26 16:00, +1,1,594,2026,1,1,,0,,,1,25,18,1/25/26 17:00, +1,1,595,2026,1,1,,0,,,1,25,19,1/25/26 18:00, +1,1,596,2026,1,1,,0,,,1,25,20,1/25/26 19:00, +1,1,597,2026,1,1,,0,,,1,25,21,1/25/26 20:00, +1,1,598,2026,1,1,,0,,,1,25,22,1/25/26 21:00, +1,1,599,2026,1,1,,0,,,1,25,23,1/25/26 22:00, +1,1,600,2026,1,1,,0,,,1,25,24,1/25/26 23:00, +1,1,601,2026,1,1,,0,,,1,26,1,1/26/26 0:00, +1,1,602,2026,1,1,,0,,,1,26,2,1/26/26 1:00, +1,1,603,2026,1,1,,0,,,1,26,3,1/26/26 2:00, +1,1,604,2026,1,1,,0,,,1,26,4,1/26/26 3:00, +1,1,605,2026,1,1,,0,,,1,26,5,1/26/26 4:00, +1,1,606,2026,1,1,,0,,,1,26,6,1/26/26 5:00, +1,1,607,2026,1,1,,0,,,1,26,7,1/26/26 6:00, +1,1,608,2026,1,1,,0,,,1,26,8,1/26/26 7:00, +1,1,609,2026,1,1,,0,,,1,26,9,1/26/26 8:00, +1,1,610,2026,1,1,,0,,,1,26,10,1/26/26 9:00, +1,1,611,2026,1,1,,0,,,1,26,11,1/26/26 10:00, +1,1,612,2026,1,1,,0,,,1,26,12,1/26/26 11:00, +1,1,613,2026,1,1,,0,,,1,26,13,1/26/26 12:00, +1,1,614,2026,1,1,,0,,,1,26,14,1/26/26 13:00, +1,1,615,2026,1,1,,0,,,1,26,15,1/26/26 14:00, +1,1,616,2026,1,1,,0,,,1,26,16,1/26/26 15:00, +1,1,617,2026,1,1,,0,,,1,26,17,1/26/26 16:00, +1,1,618,2026,1,1,,0,,,1,26,18,1/26/26 17:00, +1,1,619,2026,1,1,,0,,,1,26,19,1/26/26 18:00, +1,1,620,2026,1,1,,0,,,1,26,20,1/26/26 19:00, +1,1,621,2026,1,1,,0,,,1,26,21,1/26/26 20:00, +1,1,622,2026,1,1,,0,,,1,26,22,1/26/26 21:00, +1,1,623,2026,1,1,,0,,,1,26,23,1/26/26 22:00, +1,1,624,2026,1,1,,0,,,1,26,24,1/26/26 23:00, +1,1,625,2026,1,1,,0,,,1,27,1,1/27/26 0:00, +1,1,626,2026,1,1,,0,,,1,27,2,1/27/26 1:00, +1,1,627,2026,1,1,,0,,,1,27,3,1/27/26 2:00, +1,1,628,2026,1,1,,0,,,1,27,4,1/27/26 3:00, +1,1,629,2026,1,1,,0,,,1,27,5,1/27/26 4:00, +1,1,630,2026,1,1,,0,,,1,27,6,1/27/26 5:00, +1,1,631,2026,1,1,,0,,,1,27,7,1/27/26 6:00, +1,1,632,2026,1,1,,0,,,1,27,8,1/27/26 7:00, +1,1,633,2026,1,1,,0,,,1,27,9,1/27/26 8:00, +1,1,634,2026,1,1,,0,,,1,27,10,1/27/26 9:00, +1,1,635,2026,1,1,,0,,,1,27,11,1/27/26 10:00, +1,1,636,2026,1,1,,0,,,1,27,12,1/27/26 11:00, +1,1,637,2026,1,1,,0,,,1,27,13,1/27/26 12:00, +1,1,638,2026,1,1,,0,,,1,27,14,1/27/26 13:00, +1,1,639,2026,1,1,,0,,,1,27,15,1/27/26 14:00, +1,1,640,2026,1,1,,0,,,1,27,16,1/27/26 15:00, +1,1,641,2026,1,1,,0,,,1,27,17,1/27/26 16:00, +1,1,642,2026,1,1,,0,,,1,27,18,1/27/26 17:00, +1,1,643,2026,1,1,,0,,,1,27,19,1/27/26 18:00, +1,1,644,2026,1,1,,0,,,1,27,20,1/27/26 19:00, +1,1,645,2026,1,1,,0,,,1,27,21,1/27/26 20:00, +1,1,646,2026,1,1,,0,,,1,27,22,1/27/26 21:00, +1,1,647,2026,1,1,,0,,,1,27,23,1/27/26 22:00, +1,1,648,2026,1,1,,0,,,1,27,24,1/27/26 23:00, +1,1,649,2026,1,1,,0,,,1,28,1,1/28/26 0:00, +1,1,650,2026,1,1,,0,,,1,28,2,1/28/26 1:00, +1,1,651,2026,1,1,,0,,,1,28,3,1/28/26 2:00, +1,1,652,2026,1,1,,0,,,1,28,4,1/28/26 3:00, +1,1,653,2026,1,1,,0,,,1,28,5,1/28/26 4:00, +1,1,654,2026,1,1,,0,,,1,28,6,1/28/26 5:00, +1,1,655,2026,1,1,,0,,,1,28,7,1/28/26 6:00, +1,1,656,2026,1,1,,0,,,1,28,8,1/28/26 7:00, +1,1,657,2026,1,1,,0,,,1,28,9,1/28/26 8:00, +1,1,658,2026,1,1,,0,,,1,28,10,1/28/26 9:00, +1,1,659,2026,1,1,,0,,,1,28,11,1/28/26 10:00, +1,1,660,2026,1,1,,0,,,1,28,12,1/28/26 11:00, +1,1,661,2026,1,1,,0,,,1,28,13,1/28/26 12:00, +1,1,662,2026,1,1,,0,,,1,28,14,1/28/26 13:00, +1,1,663,2026,1,1,,0,,,1,28,15,1/28/26 14:00, +1,1,664,2026,1,1,,0,,,1,28,16,1/28/26 15:00, +1,1,665,2026,1,1,,0,,,1,28,17,1/28/26 16:00, +1,1,666,2026,1,1,,0,,,1,28,18,1/28/26 17:00, +1,1,667,2026,1,1,,0,,,1,28,19,1/28/26 18:00, +1,1,668,2026,1,1,,0,,,1,28,20,1/28/26 19:00, +1,1,669,2026,1,1,,0,,,1,28,21,1/28/26 20:00, +1,1,670,2026,1,1,,0,,,1,28,22,1/28/26 21:00, +1,1,671,2026,1,1,,0,,,1,28,23,1/28/26 22:00, +1,1,672,2026,1,1,,0,,,1,28,24,1/28/26 23:00, +1,1,673,2026,1,1,,0,,,1,29,1,1/29/26 0:00, +1,1,674,2026,1,1,,0,,,1,29,2,1/29/26 1:00, +1,1,675,2026,1,1,,0,,,1,29,3,1/29/26 2:00, +1,1,676,2026,1,1,,0,,,1,29,4,1/29/26 3:00, +1,1,677,2026,1,1,,0,,,1,29,5,1/29/26 4:00, +1,1,678,2026,1,1,,0,,,1,29,6,1/29/26 5:00, +1,1,679,2026,1,1,,0,,,1,29,7,1/29/26 6:00, +1,1,680,2026,1,1,,0,,,1,29,8,1/29/26 7:00, +1,1,681,2026,1,1,,0,,,1,29,9,1/29/26 8:00, +1,1,682,2026,1,1,,0,,,1,29,10,1/29/26 9:00, +1,1,683,2026,1,1,,0,,,1,29,11,1/29/26 10:00, +1,1,684,2026,1,1,,0,,,1,29,12,1/29/26 11:00, +1,1,685,2026,1,1,,0,,,1,29,13,1/29/26 12:00, +1,1,686,2026,1,1,,0,,,1,29,14,1/29/26 13:00, +1,1,687,2026,1,1,,0,,,1,29,15,1/29/26 14:00, +1,1,688,2026,1,1,,0,,,1,29,16,1/29/26 15:00, +1,1,689,2026,1,1,,0,,,1,29,17,1/29/26 16:00, +1,1,690,2026,1,1,,0,,,1,29,18,1/29/26 17:00, +1,1,691,2026,1,1,,0,,,1,29,19,1/29/26 18:00, +1,1,692,2026,1,1,,0,,,1,29,20,1/29/26 19:00, +1,1,693,2026,1,1,,0,,,1,29,21,1/29/26 20:00, +1,1,694,2026,1,1,,0,,,1,29,22,1/29/26 21:00, +1,1,695,2026,1,1,,0,,,1,29,23,1/29/26 22:00, +1,1,696,2026,1,1,,0,,,1,29,24,1/29/26 23:00, +1,1,697,2026,1,1,,0,,,1,30,1,1/30/26 0:00, +1,1,698,2026,1,1,,0,,,1,30,2,1/30/26 1:00, +1,1,699,2026,1,1,,0,,,1,30,3,1/30/26 2:00, +1,1,700,2026,1,1,,0,,,1,30,4,1/30/26 3:00, +1,1,701,2026,1,1,,0,,,1,30,5,1/30/26 4:00, +1,1,702,2026,1,1,,0,,,1,30,6,1/30/26 5:00, +1,1,703,2026,1,1,,0,,,1,30,7,1/30/26 6:00, +1,1,704,2026,1,1,,0,,,1,30,8,1/30/26 7:00, +1,1,705,2026,1,1,,0,,,1,30,9,1/30/26 8:00, +1,1,706,2026,1,1,,0,,,1,30,10,1/30/26 9:00, +1,1,707,2026,1,1,,0,,,1,30,11,1/30/26 10:00, +1,1,708,2026,1,1,,0,,,1,30,12,1/30/26 11:00, +1,1,709,2026,1,1,,0,,,1,30,13,1/30/26 12:00, +1,1,710,2026,1,1,,0,,,1,30,14,1/30/26 13:00, +1,1,711,2026,1,1,,0,,,1,30,15,1/30/26 14:00, +1,1,712,2026,1,1,,0,,,1,30,16,1/30/26 15:00, +1,1,713,2026,1,1,,0,,,1,30,17,1/30/26 16:00, +1,1,714,2026,1,1,,0,,,1,30,18,1/30/26 17:00, +1,1,715,2026,1,1,,0,,,1,30,19,1/30/26 18:00, +1,1,716,2026,1,1,,0,,,1,30,20,1/30/26 19:00, +1,1,717,2026,1,1,,0,,,1,30,21,1/30/26 20:00, +1,1,718,2026,1,1,,0,,,1,30,22,1/30/26 21:00, +1,1,719,2026,1,1,,0,,,1,30,23,1/30/26 22:00, +1,1,720,2026,1,1,,0,,,1,30,24,1/30/26 23:00, +1,1,721,2026,1,1,,0,,,1,31,1,1/31/26 0:00, +1,1,722,2026,1,1,,0,,,1,31,2,1/31/26 1:00, +1,1,723,2026,1,1,,0,,,1,31,3,1/31/26 2:00, +1,1,724,2026,1,1,,0,,,1,31,4,1/31/26 3:00, +1,1,725,2026,1,1,,0,,,1,31,5,1/31/26 4:00, +1,1,726,2026,1,1,,0,,,1,31,6,1/31/26 5:00, +1,1,727,2026,1,1,,0,,,1,31,7,1/31/26 6:00, +1,1,728,2026,1,1,,0,,,1,31,8,1/31/26 7:00, +1,1,729,2026,1,1,,0,,,1,31,9,1/31/26 8:00, +1,1,730,2026,1,1,,0,,,1,31,10,1/31/26 9:00, +1,1,731,2026,1,1,,0,,,1,31,11,1/31/26 10:00, +1,1,732,2026,1,1,,0,,,1,31,12,1/31/26 11:00, +1,1,733,2026,1,1,,0,,,1,31,13,1/31/26 12:00, +1,1,734,2026,1,1,,0,,,1,31,14,1/31/26 13:00, +1,1,735,2026,1,1,,0,,,1,31,15,1/31/26 14:00, +1,1,736,2026,1,1,,0,,,1,31,16,1/31/26 15:00, +1,1,737,2026,1,1,,0,,,1,31,17,1/31/26 16:00, +1,1,738,2026,1,1,,0,,,1,31,18,1/31/26 17:00, +1,1,739,2026,1,1,,0,,,1,31,19,1/31/26 18:00, +1,1,740,2026,1,1,,0,,,1,31,20,1/31/26 19:00, +1,1,741,2026,1,1,,0,,,1,31,21,1/31/26 20:00, +1,1,742,2026,1,1,,0,,,1,31,22,1/31/26 21:00, +1,1,743,2026,1,1,,0,,,1,31,23,1/31/26 22:00, +1,1,744,2026,1,1,,0,,,1,31,24,1/31/26 23:00, +1,1,745,2026,1,1,,0,,,2,1,1,2/1/26 0:00, +1,1,746,2026,1,1,,0,,,2,1,2,2/1/26 1:00, +1,1,747,2026,1,1,,0,,,2,1,3,2/1/26 2:00, +1,1,748,2026,1,1,,0,,,2,1,4,2/1/26 3:00, +1,1,749,2026,1,1,,0,,,2,1,5,2/1/26 4:00, +1,1,750,2026,1,1,,0,,,2,1,6,2/1/26 5:00, +1,1,751,2026,1,1,,0,,,2,1,7,2/1/26 6:00, +1,1,752,2026,1,1,,0,,,2,1,8,2/1/26 7:00, +1,1,753,2026,1,1,,0,,,2,1,9,2/1/26 8:00, +1,1,754,2026,1,1,,0,,,2,1,10,2/1/26 9:00, +1,1,755,2026,1,1,,0,,,2,1,11,2/1/26 10:00, +1,1,756,2026,1,1,,0,,,2,1,12,2/1/26 11:00, +1,1,757,2026,1,1,,0,,,2,1,13,2/1/26 12:00, +1,1,758,2026,1,1,,0,,,2,1,14,2/1/26 13:00, +1,1,759,2026,1,1,,0,,,2,1,15,2/1/26 14:00, +1,1,760,2026,1,1,,0,,,2,1,16,2/1/26 15:00, +1,1,761,2026,1,1,,0,,,2,1,17,2/1/26 16:00, +1,1,762,2026,1,1,,0,,,2,1,18,2/1/26 17:00, +1,1,763,2026,1,1,,0,,,2,1,19,2/1/26 18:00, +1,1,764,2026,1,1,,0,,,2,1,20,2/1/26 19:00, +1,1,765,2026,1,1,,0,,,2,1,21,2/1/26 20:00, +1,1,766,2026,1,1,,0,,,2,1,22,2/1/26 21:00, +1,1,767,2026,1,1,,0,,,2,1,23,2/1/26 22:00, +1,1,768,2026,1,1,,0,,,2,1,24,2/1/26 23:00, +1,1,769,2026,1,1,,0,,,2,2,1,2/2/26 0:00, +1,1,770,2026,1,1,,0,,,2,2,2,2/2/26 1:00, +1,1,771,2026,1,1,,0,,,2,2,3,2/2/26 2:00, +1,1,772,2026,1,1,,0,,,2,2,4,2/2/26 3:00, +1,1,773,2026,1,1,,0,,,2,2,5,2/2/26 4:00, +1,1,774,2026,1,1,,0,,,2,2,6,2/2/26 5:00, +1,1,775,2026,1,1,,0,,,2,2,7,2/2/26 6:00, +1,1,776,2026,1,1,,0,,,2,2,8,2/2/26 7:00, +1,1,777,2026,1,1,,0,,,2,2,9,2/2/26 8:00, +1,1,778,2026,1,1,,0,,,2,2,10,2/2/26 9:00, +1,1,779,2026,1,1,,0,,,2,2,11,2/2/26 10:00, +1,1,780,2026,1,1,,0,,,2,2,12,2/2/26 11:00, +1,1,781,2026,1,1,,0,,,2,2,13,2/2/26 12:00, +1,1,782,2026,1,1,,0,,,2,2,14,2/2/26 13:00, +1,1,783,2026,1,1,,0,,,2,2,15,2/2/26 14:00, +1,1,784,2026,1,1,,0,,,2,2,16,2/2/26 15:00, +1,1,785,2026,1,1,,0,,,2,2,17,2/2/26 16:00, +1,1,786,2026,1,1,,0,,,2,2,18,2/2/26 17:00, +1,1,787,2026,1,1,,0,,,2,2,19,2/2/26 18:00, +1,1,788,2026,1,1,,0,,,2,2,20,2/2/26 19:00, +1,1,789,2026,1,1,,0,,,2,2,21,2/2/26 20:00, +1,1,790,2026,1,1,,0,,,2,2,22,2/2/26 21:00, +1,1,791,2026,1,1,,0,,,2,2,23,2/2/26 22:00, +1,1,792,2026,1,1,,0,,,2,2,24,2/2/26 23:00, +1,1,793,2026,1,1,,0,,,2,3,1,2/3/26 0:00, +1,1,794,2026,1,1,,0,,,2,3,2,2/3/26 1:00, +1,1,795,2026,1,1,,0,,,2,3,3,2/3/26 2:00, +1,1,796,2026,1,1,,0,,,2,3,4,2/3/26 3:00, +1,1,797,2026,1,1,,0,,,2,3,5,2/3/26 4:00, +1,1,798,2026,1,1,,0,,,2,3,6,2/3/26 5:00, +1,1,799,2026,1,1,,0,,,2,3,7,2/3/26 6:00, +1,1,800,2026,1,1,,0,,,2,3,8,2/3/26 7:00, +1,1,801,2026,1,1,,0,,,2,3,9,2/3/26 8:00, +1,1,802,2026,1,1,,0,,,2,3,10,2/3/26 9:00, +1,1,803,2026,1,1,,0,,,2,3,11,2/3/26 10:00, +1,1,804,2026,1,1,,0,,,2,3,12,2/3/26 11:00, +1,1,805,2026,1,1,,0,,,2,3,13,2/3/26 12:00, +1,1,806,2026,1,1,,0,,,2,3,14,2/3/26 13:00, +1,1,807,2026,1,1,,0,,,2,3,15,2/3/26 14:00, +1,1,808,2026,1,1,,0,,,2,3,16,2/3/26 15:00, +1,1,809,2026,1,1,,0,,,2,3,17,2/3/26 16:00, +1,1,810,2026,1,1,,0,,,2,3,18,2/3/26 17:00, +1,1,811,2026,1,1,,0,,,2,3,19,2/3/26 18:00, +1,1,812,2026,1,1,,0,,,2,3,20,2/3/26 19:00, +1,1,813,2026,1,1,,0,,,2,3,21,2/3/26 20:00, +1,1,814,2026,1,1,,0,,,2,3,22,2/3/26 21:00, +1,1,815,2026,1,1,,0,,,2,3,23,2/3/26 22:00, +1,1,816,2026,1,1,,0,,,2,3,24,2/3/26 23:00, +1,1,817,2026,1,1,,0,,,2,4,1,2/4/26 0:00, +1,1,818,2026,1,1,,0,,,2,4,2,2/4/26 1:00, +1,1,819,2026,1,1,,0,,,2,4,3,2/4/26 2:00, +1,1,820,2026,1,1,,0,,,2,4,4,2/4/26 3:00, +1,1,821,2026,1,1,,0,,,2,4,5,2/4/26 4:00, +1,1,822,2026,1,1,,0,,,2,4,6,2/4/26 5:00, +1,1,823,2026,1,1,,0,,,2,4,7,2/4/26 6:00, +1,1,824,2026,1,1,,0,,,2,4,8,2/4/26 7:00, +1,1,825,2026,1,1,,0,,,2,4,9,2/4/26 8:00, +1,1,826,2026,1,1,,0,,,2,4,10,2/4/26 9:00, +1,1,827,2026,1,1,,0,,,2,4,11,2/4/26 10:00, +1,1,828,2026,1,1,,0,,,2,4,12,2/4/26 11:00, +1,1,829,2026,1,1,,0,,,2,4,13,2/4/26 12:00, +1,1,830,2026,1,1,,0,,,2,4,14,2/4/26 13:00, +1,1,831,2026,1,1,,0,,,2,4,15,2/4/26 14:00, +1,1,832,2026,1,1,,0,,,2,4,16,2/4/26 15:00, +1,1,833,2026,1,1,,0,,,2,4,17,2/4/26 16:00, +1,1,834,2026,1,1,,0,,,2,4,18,2/4/26 17:00, +1,1,835,2026,1,1,,0,,,2,4,19,2/4/26 18:00, +1,1,836,2026,1,1,,0,,,2,4,20,2/4/26 19:00, +1,1,837,2026,1,1,,0,,,2,4,21,2/4/26 20:00, +1,1,838,2026,1,1,,0,,,2,4,22,2/4/26 21:00, +1,1,839,2026,1,1,,0,,,2,4,23,2/4/26 22:00, +1,1,840,2026,1,1,,0,,,2,4,24,2/4/26 23:00, +1,1,841,2026,1,1,,0,,,2,5,1,2/5/26 0:00, +1,1,842,2026,1,1,,0,,,2,5,2,2/5/26 1:00, +1,1,843,2026,1,1,,0,,,2,5,3,2/5/26 2:00, +1,1,844,2026,1,1,,0,,,2,5,4,2/5/26 3:00, +1,1,845,2026,1,1,,0,,,2,5,5,2/5/26 4:00, +1,1,846,2026,1,1,,0,,,2,5,6,2/5/26 5:00, +1,1,847,2026,1,1,,0,,,2,5,7,2/5/26 6:00, +1,1,848,2026,1,1,,0,,,2,5,8,2/5/26 7:00, +1,1,849,2026,1,1,,0,,,2,5,9,2/5/26 8:00, +1,1,850,2026,1,1,,0,,,2,5,10,2/5/26 9:00, +1,1,851,2026,1,1,,0,,,2,5,11,2/5/26 10:00, +1,1,852,2026,1,1,,0,,,2,5,12,2/5/26 11:00, +1,1,853,2026,1,1,,0,,,2,5,13,2/5/26 12:00, +1,1,854,2026,1,1,,0,,,2,5,14,2/5/26 13:00, +1,1,855,2026,1,1,,0,,,2,5,15,2/5/26 14:00, +1,1,856,2026,1,1,,0,,,2,5,16,2/5/26 15:00, +1,1,857,2026,1,1,,0,,,2,5,17,2/5/26 16:00, +1,1,858,2026,1,1,,0,,,2,5,18,2/5/26 17:00, +1,1,859,2026,1,1,,0,,,2,5,19,2/5/26 18:00, +1,1,860,2026,1,1,,0,,,2,5,20,2/5/26 19:00, +1,1,861,2026,1,1,,0,,,2,5,21,2/5/26 20:00, +1,1,862,2026,1,1,,0,,,2,5,22,2/5/26 21:00, +1,1,863,2026,1,1,,0,,,2,5,23,2/5/26 22:00, +1,1,864,2026,1,1,,0,,,2,5,24,2/5/26 23:00, +1,1,865,2026,1,1,,0,,,2,6,1,2/6/26 0:00, +1,1,866,2026,1,1,,0,,,2,6,2,2/6/26 1:00, +1,1,867,2026,1,1,,0,,,2,6,3,2/6/26 2:00, +1,1,868,2026,1,1,,0,,,2,6,4,2/6/26 3:00, +1,1,869,2026,1,1,,0,,,2,6,5,2/6/26 4:00, +1,1,870,2026,1,1,,0,,,2,6,6,2/6/26 5:00, +1,1,871,2026,1,1,,0,,,2,6,7,2/6/26 6:00, +1,1,872,2026,1,1,,0,,,2,6,8,2/6/26 7:00, +1,1,873,2026,1,1,,0,,,2,6,9,2/6/26 8:00, +1,1,874,2026,1,1,,0,,,2,6,10,2/6/26 9:00, +1,1,875,2026,1,1,,0,,,2,6,11,2/6/26 10:00, +1,1,876,2026,1,1,,0,,,2,6,12,2/6/26 11:00, +1,1,877,2026,1,1,,0,,,2,6,13,2/6/26 12:00, +1,1,878,2026,1,1,,0,,,2,6,14,2/6/26 13:00, +1,1,879,2026,1,1,,0,,,2,6,15,2/6/26 14:00, +1,1,880,2026,1,1,,0,,,2,6,16,2/6/26 15:00, +1,1,881,2026,1,1,,0,,,2,6,17,2/6/26 16:00, +1,1,882,2026,1,1,,0,,,2,6,18,2/6/26 17:00, +1,1,883,2026,1,1,,0,,,2,6,19,2/6/26 18:00, +1,1,884,2026,1,1,,0,,,2,6,20,2/6/26 19:00, +1,1,885,2026,1,1,,0,,,2,6,21,2/6/26 20:00, +1,1,886,2026,1,1,,0,,,2,6,22,2/6/26 21:00, +1,1,887,2026,1,1,,0,,,2,6,23,2/6/26 22:00, +1,1,888,2026,1,1,,0,,,2,6,24,2/6/26 23:00, +1,1,889,2026,1,1,,0,,,2,7,1,2/7/26 0:00, +1,1,890,2026,1,1,,0,,,2,7,2,2/7/26 1:00, +1,1,891,2026,1,1,,0,,,2,7,3,2/7/26 2:00, +1,1,892,2026,1,1,,0,,,2,7,4,2/7/26 3:00, +1,1,893,2026,1,1,,0,,,2,7,5,2/7/26 4:00, +1,1,894,2026,1,1,,0,,,2,7,6,2/7/26 5:00, +1,1,895,2026,1,1,,0,,,2,7,7,2/7/26 6:00, +1,1,896,2026,1,1,,0,,,2,7,8,2/7/26 7:00, +1,1,897,2026,1,1,,0,,,2,7,9,2/7/26 8:00, +1,1,898,2026,1,1,,0,,,2,7,10,2/7/26 9:00, +1,1,899,2026,1,1,,0,,,2,7,11,2/7/26 10:00, +1,1,900,2026,1,1,,0,,,2,7,12,2/7/26 11:00, +1,1,901,2026,1,1,,0,,,2,7,13,2/7/26 12:00, +1,1,902,2026,1,1,,0,,,2,7,14,2/7/26 13:00, +1,1,903,2026,1,1,,0,,,2,7,15,2/7/26 14:00, +1,1,904,2026,1,1,,0,,,2,7,16,2/7/26 15:00, +1,1,905,2026,1,1,,0,,,2,7,17,2/7/26 16:00, +1,1,906,2026,1,1,,0,,,2,7,18,2/7/26 17:00, +1,1,907,2026,1,1,,0,,,2,7,19,2/7/26 18:00, +1,1,908,2026,1,1,,0,,,2,7,20,2/7/26 19:00, +1,1,909,2026,1,1,,0,,,2,7,21,2/7/26 20:00, +1,1,910,2026,1,1,,0,,,2,7,22,2/7/26 21:00, +1,1,911,2026,1,1,,0,,,2,7,23,2/7/26 22:00, +1,1,912,2026,1,1,,0,,,2,7,24,2/7/26 23:00, +1,1,913,2026,1,1,,0,,,2,8,1,2/8/26 0:00, +1,1,914,2026,1,1,,0,,,2,8,2,2/8/26 1:00, +1,1,915,2026,1,1,,0,,,2,8,3,2/8/26 2:00, +1,1,916,2026,1,1,,0,,,2,8,4,2/8/26 3:00, +1,1,917,2026,1,1,,0,,,2,8,5,2/8/26 4:00, +1,1,918,2026,1,1,,0,,,2,8,6,2/8/26 5:00, +1,1,919,2026,1,1,,0,,,2,8,7,2/8/26 6:00, +1,1,920,2026,1,1,,0,,,2,8,8,2/8/26 7:00, +1,1,921,2026,1,1,,0,,,2,8,9,2/8/26 8:00, +1,1,922,2026,1,1,,0,,,2,8,10,2/8/26 9:00, +1,1,923,2026,1,1,,0,,,2,8,11,2/8/26 10:00, +1,1,924,2026,1,1,,0,,,2,8,12,2/8/26 11:00, +1,1,925,2026,1,1,,0,,,2,8,13,2/8/26 12:00, +1,1,926,2026,1,1,,0,,,2,8,14,2/8/26 13:00, +1,1,927,2026,1,1,,0,,,2,8,15,2/8/26 14:00, +1,1,928,2026,1,1,,0,,,2,8,16,2/8/26 15:00, +1,1,929,2026,1,1,,0,,,2,8,17,2/8/26 16:00, +1,1,930,2026,1,1,,0,,,2,8,18,2/8/26 17:00, +1,1,931,2026,1,1,,0,,,2,8,19,2/8/26 18:00, +1,1,932,2026,1,1,,0,,,2,8,20,2/8/26 19:00, +1,1,933,2026,1,1,,0,,,2,8,21,2/8/26 20:00, +1,1,934,2026,1,1,,0,,,2,8,22,2/8/26 21:00, +1,1,935,2026,1,1,,0,,,2,8,23,2/8/26 22:00, +1,1,936,2026,1,1,,0,,,2,8,24,2/8/26 23:00, +1,1,937,2026,1,1,,0,,,2,9,1,2/9/26 0:00, +1,1,938,2026,1,1,,0,,,2,9,2,2/9/26 1:00, +1,1,939,2026,1,1,,0,,,2,9,3,2/9/26 2:00, +1,1,940,2026,1,1,,0,,,2,9,4,2/9/26 3:00, +1,1,941,2026,1,1,,0,,,2,9,5,2/9/26 4:00, +1,1,942,2026,1,1,,0,,,2,9,6,2/9/26 5:00, +1,1,943,2026,1,1,,0,,,2,9,7,2/9/26 6:00, +1,1,944,2026,1,1,,0,,,2,9,8,2/9/26 7:00, +1,1,945,2026,1,1,,0,,,2,9,9,2/9/26 8:00, +1,1,946,2026,1,1,,0,,,2,9,10,2/9/26 9:00, +1,1,947,2026,1,1,,0,,,2,9,11,2/9/26 10:00, +1,1,948,2026,1,1,,0,,,2,9,12,2/9/26 11:00, +1,1,949,2026,1,1,,0,,,2,9,13,2/9/26 12:00, +1,1,950,2026,1,1,,0,,,2,9,14,2/9/26 13:00, +1,1,951,2026,1,1,,0,,,2,9,15,2/9/26 14:00, +1,1,952,2026,1,1,,0,,,2,9,16,2/9/26 15:00, +1,1,953,2026,1,1,,0,,,2,9,17,2/9/26 16:00, +1,1,954,2026,1,1,,0,,,2,9,18,2/9/26 17:00, +1,1,955,2026,1,1,,0,,,2,9,19,2/9/26 18:00, +1,1,956,2026,1,1,,0,,,2,9,20,2/9/26 19:00, +1,1,957,2026,1,1,,0,,,2,9,21,2/9/26 20:00, +1,1,958,2026,1,1,,0,,,2,9,22,2/9/26 21:00, +1,1,959,2026,1,1,,0,,,2,9,23,2/9/26 22:00, +1,1,960,2026,1,1,,0,,,2,9,24,2/9/26 23:00, +1,1,961,2026,1,1,,0,,,2,10,1,2/10/26 0:00, +1,1,962,2026,1,1,,0,,,2,10,2,2/10/26 1:00, +1,1,963,2026,1,1,,0,,,2,10,3,2/10/26 2:00, +1,1,964,2026,1,1,,0,,,2,10,4,2/10/26 3:00, +1,1,965,2026,1,1,,0,,,2,10,5,2/10/26 4:00, +1,1,966,2026,1,1,,0,,,2,10,6,2/10/26 5:00, +1,1,967,2026,1,1,,0,,,2,10,7,2/10/26 6:00, +1,1,968,2026,1,1,,0,,,2,10,8,2/10/26 7:00, +1,1,969,2026,1,1,,0,,,2,10,9,2/10/26 8:00, +1,1,970,2026,1,1,,0,,,2,10,10,2/10/26 9:00, +1,1,971,2026,1,1,,0,,,2,10,11,2/10/26 10:00, +1,1,972,2026,1,1,,0,,,2,10,12,2/10/26 11:00, +1,1,973,2026,1,1,,0,,,2,10,13,2/10/26 12:00, +1,1,974,2026,1,1,,0,,,2,10,14,2/10/26 13:00, +1,1,975,2026,1,1,,0,,,2,10,15,2/10/26 14:00, +1,1,976,2026,1,1,,0,,,2,10,16,2/10/26 15:00, +1,1,977,2026,1,1,,0,,,2,10,17,2/10/26 16:00, +1,1,978,2026,1,1,,0,,,2,10,18,2/10/26 17:00, +1,1,979,2026,1,1,,0,,,2,10,19,2/10/26 18:00, +1,1,980,2026,1,1,,0,,,2,10,20,2/10/26 19:00, +1,1,981,2026,1,1,,0,,,2,10,21,2/10/26 20:00, +1,1,982,2026,1,1,,0,,,2,10,22,2/10/26 21:00, +1,1,983,2026,1,1,,0,,,2,10,23,2/10/26 22:00, +1,1,984,2026,1,1,,0,,,2,10,24,2/10/26 23:00, +1,1,985,2026,1,1,,0,,,2,11,1,2/11/26 0:00, +1,1,986,2026,1,1,,0,,,2,11,2,2/11/26 1:00, +1,1,987,2026,1,1,,0,,,2,11,3,2/11/26 2:00, +1,1,988,2026,1,1,,0,,,2,11,4,2/11/26 3:00, +1,1,989,2026,1,1,,0,,,2,11,5,2/11/26 4:00, +1,1,990,2026,1,1,,0,,,2,11,6,2/11/26 5:00, +1,1,991,2026,1,1,,0,,,2,11,7,2/11/26 6:00, +1,1,992,2026,1,1,,0,,,2,11,8,2/11/26 7:00, +1,1,993,2026,1,1,,0,,,2,11,9,2/11/26 8:00, +1,1,994,2026,1,1,,0,,,2,11,10,2/11/26 9:00, +1,1,995,2026,1,1,,0,,,2,11,11,2/11/26 10:00, +1,1,996,2026,1,1,,0,,,2,11,12,2/11/26 11:00, +1,1,997,2026,1,1,,0,,,2,11,13,2/11/26 12:00, +1,1,998,2026,1,1,,0,,,2,11,14,2/11/26 13:00, +1,1,999,2026,1,1,,0,,,2,11,15,2/11/26 14:00, +1,1,1000,2026,1,1,,0,,,2,11,16,2/11/26 15:00, +1,1,1001,2026,1,1,,0,,,2,11,17,2/11/26 16:00, +1,1,1002,2026,1,1,,0,,,2,11,18,2/11/26 17:00, +1,1,1003,2026,1,1,,0,,,2,11,19,2/11/26 18:00, +1,1,1004,2026,1,1,,0,,,2,11,20,2/11/26 19:00, +1,1,1005,2026,1,1,,0,,,2,11,21,2/11/26 20:00, +1,1,1006,2026,1,1,,0,,,2,11,22,2/11/26 21:00, +1,1,1007,2026,1,1,,0,,,2,11,23,2/11/26 22:00, +1,1,1008,2026,1,1,,0,,,2,11,24,2/11/26 23:00, +1,1,1009,2026,1,1,,0,,,2,12,1,2/12/26 0:00, +1,1,1010,2026,1,1,,0,,,2,12,2,2/12/26 1:00, +1,1,1011,2026,1,1,,0,,,2,12,3,2/12/26 2:00, +1,1,1012,2026,1,1,,0,,,2,12,4,2/12/26 3:00, +1,1,1013,2026,1,1,,0,,,2,12,5,2/12/26 4:00, +1,1,1014,2026,1,1,,0,,,2,12,6,2/12/26 5:00, +1,1,1015,2026,1,1,,0,,,2,12,7,2/12/26 6:00, +1,1,1016,2026,1,1,,0,,,2,12,8,2/12/26 7:00, +1,1,1017,2026,1,1,,0,,,2,12,9,2/12/26 8:00, +1,1,1018,2026,1,1,,0,,,2,12,10,2/12/26 9:00, +1,1,1019,2026,1,1,,0,,,2,12,11,2/12/26 10:00, +1,1,1020,2026,1,1,,0,,,2,12,12,2/12/26 11:00, +1,1,1021,2026,1,1,,0,,,2,12,13,2/12/26 12:00, +1,1,1022,2026,1,1,,0,,,2,12,14,2/12/26 13:00, +1,1,1023,2026,1,1,,0,,,2,12,15,2/12/26 14:00, +1,1,1024,2026,1,1,,0,,,2,12,16,2/12/26 15:00, +1,1,1025,2026,1,1,,0,,,2,12,17,2/12/26 16:00, +1,1,1026,2026,1,1,,0,,,2,12,18,2/12/26 17:00, +1,1,1027,2026,1,1,,0,,,2,12,19,2/12/26 18:00, +1,1,1028,2026,1,1,,0,,,2,12,20,2/12/26 19:00, +1,1,1029,2026,1,1,,0,,,2,12,21,2/12/26 20:00, +1,1,1030,2026,1,1,,0,,,2,12,22,2/12/26 21:00, +1,1,1031,2026,1,1,,0,,,2,12,23,2/12/26 22:00, +1,1,1032,2026,1,1,,0,,,2,12,24,2/12/26 23:00, +1,1,1033,2026,1,1,,0,,,2,13,1,2/13/26 0:00, +1,1,1034,2026,1,1,,0,,,2,13,2,2/13/26 1:00, +1,1,1035,2026,1,1,,0,,,2,13,3,2/13/26 2:00, +1,1,1036,2026,1,1,,0,,,2,13,4,2/13/26 3:00, +1,1,1037,2026,1,1,,0,,,2,13,5,2/13/26 4:00, +1,1,1038,2026,1,1,,0,,,2,13,6,2/13/26 5:00, +1,1,1039,2026,1,1,,0,,,2,13,7,2/13/26 6:00, +1,1,1040,2026,1,1,,0,,,2,13,8,2/13/26 7:00, +1,1,1041,2026,1,1,,0,,,2,13,9,2/13/26 8:00, +1,1,1042,2026,1,1,,0,,,2,13,10,2/13/26 9:00, +1,1,1043,2026,1,1,,0,,,2,13,11,2/13/26 10:00, +1,1,1044,2026,1,1,,0,,,2,13,12,2/13/26 11:00, +1,1,1045,2026,1,1,,0,,,2,13,13,2/13/26 12:00, +1,1,1046,2026,1,1,,0,,,2,13,14,2/13/26 13:00, +1,1,1047,2026,1,1,,0,,,2,13,15,2/13/26 14:00, +1,1,1048,2026,1,1,,0,,,2,13,16,2/13/26 15:00, +1,1,1049,2026,1,1,,0,,,2,13,17,2/13/26 16:00, +1,1,1050,2026,1,1,,0,,,2,13,18,2/13/26 17:00, +1,1,1051,2026,1,1,,0,,,2,13,19,2/13/26 18:00, +1,1,1052,2026,1,1,,0,,,2,13,20,2/13/26 19:00, +1,1,1053,2026,1,1,,0,,,2,13,21,2/13/26 20:00, +1,1,1054,2026,1,1,,0,,,2,13,22,2/13/26 21:00, +1,1,1055,2026,1,1,,0,,,2,13,23,2/13/26 22:00, +1,1,1056,2026,1,1,,0,,,2,13,24,2/13/26 23:00, +1,1,1057,2026,1,1,,0,,,2,14,1,2/14/26 0:00, +1,1,1058,2026,1,1,,0,,,2,14,2,2/14/26 1:00, +1,1,1059,2026,1,1,,0,,,2,14,3,2/14/26 2:00, +1,1,1060,2026,1,1,,0,,,2,14,4,2/14/26 3:00, +1,1,1061,2026,1,1,,0,,,2,14,5,2/14/26 4:00, +1,1,1062,2026,1,1,,0,,,2,14,6,2/14/26 5:00, +1,1,1063,2026,1,1,,0,,,2,14,7,2/14/26 6:00, +1,1,1064,2026,1,1,,0,,,2,14,8,2/14/26 7:00, +1,1,1065,2026,1,1,,0,,,2,14,9,2/14/26 8:00, +1,1,1066,2026,1,1,,0,,,2,14,10,2/14/26 9:00, +1,1,1067,2026,1,1,,0,,,2,14,11,2/14/26 10:00, +1,1,1068,2026,1,1,,0,,,2,14,12,2/14/26 11:00, +1,1,1069,2026,1,1,,0,,,2,14,13,2/14/26 12:00, +1,1,1070,2026,1,1,,0,,,2,14,14,2/14/26 13:00, +1,1,1071,2026,1,1,,0,,,2,14,15,2/14/26 14:00, +1,1,1072,2026,1,1,,0,,,2,14,16,2/14/26 15:00, +1,1,1073,2026,1,1,,0,,,2,14,17,2/14/26 16:00, +1,1,1074,2026,1,1,,0,,,2,14,18,2/14/26 17:00, +1,1,1075,2026,1,1,,0,,,2,14,19,2/14/26 18:00, +1,1,1076,2026,1,1,,0,,,2,14,20,2/14/26 19:00, +1,1,1077,2026,1,1,,0,,,2,14,21,2/14/26 20:00, +1,1,1078,2026,1,1,,0,,,2,14,22,2/14/26 21:00, +1,1,1079,2026,1,1,,0,,,2,14,23,2/14/26 22:00, +1,1,1080,2026,1,1,,0,,,2,14,24,2/14/26 23:00, +1,1,1081,2026,1,1,,0,,,2,15,1,2/15/26 0:00, +1,1,1082,2026,1,1,,0,,,2,15,2,2/15/26 1:00, +1,1,1083,2026,1,1,,0,,,2,15,3,2/15/26 2:00, +1,1,1084,2026,1,1,,0,,,2,15,4,2/15/26 3:00, +1,1,1085,2026,1,1,,0,,,2,15,5,2/15/26 4:00, +1,1,1086,2026,1,1,,0,,,2,15,6,2/15/26 5:00, +1,1,1087,2026,1,1,,0,,,2,15,7,2/15/26 6:00, +1,1,1088,2026,1,1,,0,,,2,15,8,2/15/26 7:00, +1,1,1089,2026,1,1,,0,,,2,15,9,2/15/26 8:00, +1,1,1090,2026,1,1,,0,,,2,15,10,2/15/26 9:00, +1,1,1091,2026,1,1,,0,,,2,15,11,2/15/26 10:00, +1,1,1092,2026,1,1,,0,,,2,15,12,2/15/26 11:00, +1,1,1093,2026,1,1,,0,,,2,15,13,2/15/26 12:00, +1,1,1094,2026,1,1,,0,,,2,15,14,2/15/26 13:00, +1,1,1095,2026,1,1,,0,,,2,15,15,2/15/26 14:00, +1,1,1096,2026,1,1,,0,,,2,15,16,2/15/26 15:00, +1,1,1097,2026,1,1,,0,,,2,15,17,2/15/26 16:00, +1,1,1098,2026,1,1,,0,,,2,15,18,2/15/26 17:00, +1,1,1099,2026,1,1,,0,,,2,15,19,2/15/26 18:00, +1,1,1100,2026,1,1,,0,,,2,15,20,2/15/26 19:00, +1,1,1101,2026,1,1,,0,,,2,15,21,2/15/26 20:00, +1,1,1102,2026,1,1,,0,,,2,15,22,2/15/26 21:00, +1,1,1103,2026,1,1,,0,,,2,15,23,2/15/26 22:00, +1,1,1104,2026,1,1,,0,,,2,15,24,2/15/26 23:00, +1,1,1105,2026,1,1,,0,,,2,16,1,2/16/26 0:00, +1,1,1106,2026,1,1,,0,,,2,16,2,2/16/26 1:00, +1,1,1107,2026,1,1,,0,,,2,16,3,2/16/26 2:00, +1,1,1108,2026,1,1,,0,,,2,16,4,2/16/26 3:00, +1,1,1109,2026,1,1,,0,,,2,16,5,2/16/26 4:00, +1,1,1110,2026,1,1,,0,,,2,16,6,2/16/26 5:00, +1,1,1111,2026,1,1,,0,,,2,16,7,2/16/26 6:00, +1,1,1112,2026,1,1,,0,,,2,16,8,2/16/26 7:00, +1,1,1113,2026,1,1,,0,,,2,16,9,2/16/26 8:00, +1,1,1114,2026,1,1,,0,,,2,16,10,2/16/26 9:00, +1,1,1115,2026,1,1,,0,,,2,16,11,2/16/26 10:00, +1,1,1116,2026,1,1,,0,,,2,16,12,2/16/26 11:00, +1,1,1117,2026,1,1,,0,,,2,16,13,2/16/26 12:00, +1,1,1118,2026,1,1,,0,,,2,16,14,2/16/26 13:00, +1,1,1119,2026,1,1,,0,,,2,16,15,2/16/26 14:00, +1,1,1120,2026,1,1,,0,,,2,16,16,2/16/26 15:00, +1,1,1121,2026,1,1,,0,,,2,16,17,2/16/26 16:00, +1,1,1122,2026,1,1,,0,,,2,16,18,2/16/26 17:00, +1,1,1123,2026,1,1,,0,,,2,16,19,2/16/26 18:00, +1,1,1124,2026,1,1,,0,,,2,16,20,2/16/26 19:00, +1,1,1125,2026,1,1,,0,,,2,16,21,2/16/26 20:00, +1,1,1126,2026,1,1,,0,,,2,16,22,2/16/26 21:00, +1,1,1127,2026,1,1,,0,,,2,16,23,2/16/26 22:00, +1,1,1128,2026,1,1,,0,,,2,16,24,2/16/26 23:00, +1,1,1129,2026,1,1,,0,,,2,17,1,2/17/26 0:00, +1,1,1130,2026,1,1,,0,,,2,17,2,2/17/26 1:00, +1,1,1131,2026,1,1,,0,,,2,17,3,2/17/26 2:00, +1,1,1132,2026,1,1,,0,,,2,17,4,2/17/26 3:00, +1,1,1133,2026,1,1,,0,,,2,17,5,2/17/26 4:00, +1,1,1134,2026,1,1,,0,,,2,17,6,2/17/26 5:00, +1,1,1135,2026,1,1,,0,,,2,17,7,2/17/26 6:00, +1,1,1136,2026,1,1,,0,,,2,17,8,2/17/26 7:00, +1,1,1137,2026,1,1,,0,,,2,17,9,2/17/26 8:00, +1,1,1138,2026,1,1,,0,,,2,17,10,2/17/26 9:00, +1,1,1139,2026,1,1,,0,,,2,17,11,2/17/26 10:00, +1,1,1140,2026,1,1,,0,,,2,17,12,2/17/26 11:00, +1,1,1141,2026,1,1,,0,,,2,17,13,2/17/26 12:00, +1,1,1142,2026,1,1,,0,,,2,17,14,2/17/26 13:00, +1,1,1143,2026,1,1,,0,,,2,17,15,2/17/26 14:00, +1,1,1144,2026,1,1,,0,,,2,17,16,2/17/26 15:00, +1,1,1145,2026,1,1,,0,,,2,17,17,2/17/26 16:00, +1,1,1146,2026,1,1,,0,,,2,17,18,2/17/26 17:00, +1,1,1147,2026,1,1,,0,,,2,17,19,2/17/26 18:00, +1,1,1148,2026,1,1,,0,,,2,17,20,2/17/26 19:00, +1,1,1149,2026,1,1,,0,,,2,17,21,2/17/26 20:00, +1,1,1150,2026,1,1,,0,,,2,17,22,2/17/26 21:00, +1,1,1151,2026,1,1,,0,,,2,17,23,2/17/26 22:00, +1,1,1152,2026,1,1,,0,,,2,17,24,2/17/26 23:00, +1,1,1153,2026,1,1,,0,,,2,18,1,2/18/26 0:00, +1,1,1154,2026,1,1,,0,,,2,18,2,2/18/26 1:00, +1,1,1155,2026,1,1,,0,,,2,18,3,2/18/26 2:00, +1,1,1156,2026,1,1,,0,,,2,18,4,2/18/26 3:00, +1,1,1157,2026,1,1,,0,,,2,18,5,2/18/26 4:00, +1,1,1158,2026,1,1,,0,,,2,18,6,2/18/26 5:00, +1,1,1159,2026,1,1,,0,,,2,18,7,2/18/26 6:00, +1,1,1160,2026,1,1,,0,,,2,18,8,2/18/26 7:00, +1,1,1161,2026,1,1,,0,,,2,18,9,2/18/26 8:00, +1,1,1162,2026,1,1,,0,,,2,18,10,2/18/26 9:00, +1,1,1163,2026,1,1,,0,,,2,18,11,2/18/26 10:00, +1,1,1164,2026,1,1,,0,,,2,18,12,2/18/26 11:00, +1,1,1165,2026,1,1,,0,,,2,18,13,2/18/26 12:00, +1,1,1166,2026,1,1,,0,,,2,18,14,2/18/26 13:00, +1,1,1167,2026,1,1,,0,,,2,18,15,2/18/26 14:00, +1,1,1168,2026,1,1,,0,,,2,18,16,2/18/26 15:00, +1,1,1169,2026,1,1,,0,,,2,18,17,2/18/26 16:00, +1,1,1170,2026,1,1,,0,,,2,18,18,2/18/26 17:00, +1,1,1171,2026,1,1,,0,,,2,18,19,2/18/26 18:00, +1,1,1172,2026,1,1,,0,,,2,18,20,2/18/26 19:00, +1,1,1173,2026,1,1,,0,,,2,18,21,2/18/26 20:00, +1,1,1174,2026,1,1,,0,,,2,18,22,2/18/26 21:00, +1,1,1175,2026,1,1,,0,,,2,18,23,2/18/26 22:00, +1,1,1176,2026,1,1,,0,,,2,18,24,2/18/26 23:00, +1,1,1177,2026,1,1,,0,,,2,19,1,2/19/26 0:00, +1,1,1178,2026,1,1,,0,,,2,19,2,2/19/26 1:00, +1,1,1179,2026,1,1,,0,,,2,19,3,2/19/26 2:00, +1,1,1180,2026,1,1,,0,,,2,19,4,2/19/26 3:00, +1,1,1181,2026,1,1,,0,,,2,19,5,2/19/26 4:00, +1,1,1182,2026,1,1,,0,,,2,19,6,2/19/26 5:00, +1,1,1183,2026,1,1,,0,,,2,19,7,2/19/26 6:00, +1,1,1184,2026,1,1,,0,,,2,19,8,2/19/26 7:00, +1,1,1185,2026,1,1,,0,,,2,19,9,2/19/26 8:00, +1,1,1186,2026,1,1,,0,,,2,19,10,2/19/26 9:00, +1,1,1187,2026,1,1,,0,,,2,19,11,2/19/26 10:00, +1,1,1188,2026,1,1,,0,,,2,19,12,2/19/26 11:00, +1,1,1189,2026,1,1,,0,,,2,19,13,2/19/26 12:00, +1,1,1190,2026,1,1,,0,,,2,19,14,2/19/26 13:00, +1,1,1191,2026,1,1,,0,,,2,19,15,2/19/26 14:00, +1,1,1192,2026,1,1,,0,,,2,19,16,2/19/26 15:00, +1,1,1193,2026,1,1,,0,,,2,19,17,2/19/26 16:00, +1,1,1194,2026,1,1,,0,,,2,19,18,2/19/26 17:00, +1,1,1195,2026,1,1,,0,,,2,19,19,2/19/26 18:00, +1,1,1196,2026,1,1,,0,,,2,19,20,2/19/26 19:00, +1,1,1197,2026,1,1,,0,,,2,19,21,2/19/26 20:00, +1,1,1198,2026,1,1,,0,,,2,19,22,2/19/26 21:00, +1,1,1199,2026,1,1,,0,,,2,19,23,2/19/26 22:00, +1,1,1200,2026,1,1,,0,,,2,19,24,2/19/26 23:00, +1,1,1201,2026,1,1,,0,,,2,20,1,2/20/26 0:00, +1,1,1202,2026,1,1,,0,,,2,20,2,2/20/26 1:00, +1,1,1203,2026,1,1,,0,,,2,20,3,2/20/26 2:00, +1,1,1204,2026,1,1,,0,,,2,20,4,2/20/26 3:00, +1,1,1205,2026,1,1,,0,,,2,20,5,2/20/26 4:00, +1,1,1206,2026,1,1,,0,,,2,20,6,2/20/26 5:00, +1,1,1207,2026,1,1,,0,,,2,20,7,2/20/26 6:00, +1,1,1208,2026,1,1,,0,,,2,20,8,2/20/26 7:00, +1,1,1209,2026,1,1,,0,,,2,20,9,2/20/26 8:00, +1,1,1210,2026,1,1,,0,,,2,20,10,2/20/26 9:00, +1,1,1211,2026,1,1,,0,,,2,20,11,2/20/26 10:00, +1,1,1212,2026,1,1,,0,,,2,20,12,2/20/26 11:00, +1,1,1213,2026,1,1,,0,,,2,20,13,2/20/26 12:00, +1,1,1214,2026,1,1,,0,,,2,20,14,2/20/26 13:00, +1,1,1215,2026,1,1,,0,,,2,20,15,2/20/26 14:00, +1,1,1216,2026,1,1,,0,,,2,20,16,2/20/26 15:00, +1,1,1217,2026,1,1,,0,,,2,20,17,2/20/26 16:00, +1,1,1218,2026,1,1,,0,,,2,20,18,2/20/26 17:00, +1,1,1219,2026,1,1,,0,,,2,20,19,2/20/26 18:00, +1,1,1220,2026,1,1,,0,,,2,20,20,2/20/26 19:00, +1,1,1221,2026,1,1,,0,,,2,20,21,2/20/26 20:00, +1,1,1222,2026,1,1,,0,,,2,20,22,2/20/26 21:00, +1,1,1223,2026,1,1,,0,,,2,20,23,2/20/26 22:00, +1,1,1224,2026,1,1,,0,,,2,20,24,2/20/26 23:00, +1,1,1225,2026,1,1,,0,,,2,21,1,2/21/26 0:00, +1,1,1226,2026,1,1,,0,,,2,21,2,2/21/26 1:00, +1,1,1227,2026,1,1,,0,,,2,21,3,2/21/26 2:00, +1,1,1228,2026,1,1,,0,,,2,21,4,2/21/26 3:00, +1,1,1229,2026,1,1,,0,,,2,21,5,2/21/26 4:00, +1,1,1230,2026,1,1,,0,,,2,21,6,2/21/26 5:00, +1,1,1231,2026,1,1,,0,,,2,21,7,2/21/26 6:00, +1,1,1232,2026,1,1,,0,,,2,21,8,2/21/26 7:00, +1,1,1233,2026,1,1,,0,,,2,21,9,2/21/26 8:00, +1,1,1234,2026,1,1,,0,,,2,21,10,2/21/26 9:00, +1,1,1235,2026,1,1,,0,,,2,21,11,2/21/26 10:00, +1,1,1236,2026,1,1,,0,,,2,21,12,2/21/26 11:00, +1,1,1237,2026,1,1,,0,,,2,21,13,2/21/26 12:00, +1,1,1238,2026,1,1,,0,,,2,21,14,2/21/26 13:00, +1,1,1239,2026,1,1,,0,,,2,21,15,2/21/26 14:00, +1,1,1240,2026,1,1,,0,,,2,21,16,2/21/26 15:00, +1,1,1241,2026,1,1,,0,,,2,21,17,2/21/26 16:00, +1,1,1242,2026,1,1,,0,,,2,21,18,2/21/26 17:00, +1,1,1243,2026,1,1,,0,,,2,21,19,2/21/26 18:00, +1,1,1244,2026,1,1,,0,,,2,21,20,2/21/26 19:00, +1,1,1245,2026,1,1,,0,,,2,21,21,2/21/26 20:00, +1,1,1246,2026,1,1,,0,,,2,21,22,2/21/26 21:00, +1,1,1247,2026,1,1,,0,,,2,21,23,2/21/26 22:00, +1,1,1248,2026,1,1,,0,,,2,21,24,2/21/26 23:00, +1,1,1249,2026,1,1,,0,,,2,22,1,2/22/26 0:00, +1,1,1250,2026,1,1,,0,,,2,22,2,2/22/26 1:00, +1,1,1251,2026,1,1,,0,,,2,22,3,2/22/26 2:00, +1,1,1252,2026,1,1,,0,,,2,22,4,2/22/26 3:00, +1,1,1253,2026,1,1,,0,,,2,22,5,2/22/26 4:00, +1,1,1254,2026,1,1,,0,,,2,22,6,2/22/26 5:00, +1,1,1255,2026,1,1,,0,,,2,22,7,2/22/26 6:00, +1,1,1256,2026,1,1,,0,,,2,22,8,2/22/26 7:00, +1,1,1257,2026,1,1,,0,,,2,22,9,2/22/26 8:00, +1,1,1258,2026,1,1,,0,,,2,22,10,2/22/26 9:00, +1,1,1259,2026,1,1,,0,,,2,22,11,2/22/26 10:00, +1,1,1260,2026,1,1,,0,,,2,22,12,2/22/26 11:00, +1,1,1261,2026,1,1,,0,,,2,22,13,2/22/26 12:00, +1,1,1262,2026,1,1,,0,,,2,22,14,2/22/26 13:00, +1,1,1263,2026,1,1,,0,,,2,22,15,2/22/26 14:00, +1,1,1264,2026,1,1,,0,,,2,22,16,2/22/26 15:00, +1,1,1265,2026,1,1,,0,,,2,22,17,2/22/26 16:00, +1,1,1266,2026,1,1,,0,,,2,22,18,2/22/26 17:00, +1,1,1267,2026,1,1,,0,,,2,22,19,2/22/26 18:00, +1,1,1268,2026,1,1,,0,,,2,22,20,2/22/26 19:00, +1,1,1269,2026,1,1,,0,,,2,22,21,2/22/26 20:00, +1,1,1270,2026,1,1,,0,,,2,22,22,2/22/26 21:00, +1,1,1271,2026,1,1,,0,,,2,22,23,2/22/26 22:00, +1,1,1272,2026,1,1,,0,,,2,22,24,2/22/26 23:00, +1,1,1273,2026,1,1,,0,,,2,23,1,2/23/26 0:00, +1,1,1274,2026,1,1,,0,,,2,23,2,2/23/26 1:00, +1,1,1275,2026,1,1,,0,,,2,23,3,2/23/26 2:00, +1,1,1276,2026,1,1,,0,,,2,23,4,2/23/26 3:00, +1,1,1277,2026,1,1,,0,,,2,23,5,2/23/26 4:00, +1,1,1278,2026,1,1,,0,,,2,23,6,2/23/26 5:00, +1,1,1279,2026,1,1,,0,,,2,23,7,2/23/26 6:00, +1,1,1280,2026,1,1,,0,,,2,23,8,2/23/26 7:00, +1,1,1281,2026,1,1,,0,,,2,23,9,2/23/26 8:00, +1,1,1282,2026,1,1,,0,,,2,23,10,2/23/26 9:00, +1,1,1283,2026,1,1,,0,,,2,23,11,2/23/26 10:00, +1,1,1284,2026,1,1,,0,,,2,23,12,2/23/26 11:00, +1,1,1285,2026,1,1,,0,,,2,23,13,2/23/26 12:00, +1,1,1286,2026,1,1,,0,,,2,23,14,2/23/26 13:00, +1,1,1287,2026,1,1,,0,,,2,23,15,2/23/26 14:00, +1,1,1288,2026,1,1,,0,,,2,23,16,2/23/26 15:00, +1,1,1289,2026,1,1,,0,,,2,23,17,2/23/26 16:00, +1,1,1290,2026,1,1,,0,,,2,23,18,2/23/26 17:00, +1,1,1291,2026,1,1,,0,,,2,23,19,2/23/26 18:00, +1,1,1292,2026,1,1,,0,,,2,23,20,2/23/26 19:00, +1,1,1293,2026,1,1,,0,,,2,23,21,2/23/26 20:00, +1,1,1294,2026,1,1,,0,,,2,23,22,2/23/26 21:00, +1,1,1295,2026,1,1,,0,,,2,23,23,2/23/26 22:00, +1,1,1296,2026,1,1,,0,,,2,23,24,2/23/26 23:00, +1,1,1297,2026,1,1,,0,,,2,24,1,2/24/26 0:00, +1,1,1298,2026,1,1,,0,,,2,24,2,2/24/26 1:00, +1,1,1299,2026,1,1,,0,,,2,24,3,2/24/26 2:00, +1,1,1300,2026,1,1,,0,,,2,24,4,2/24/26 3:00, +1,1,1301,2026,1,1,,0,,,2,24,5,2/24/26 4:00, +1,1,1302,2026,1,1,,0,,,2,24,6,2/24/26 5:00, +1,1,1303,2026,1,1,,0,,,2,24,7,2/24/26 6:00, +1,1,1304,2026,1,1,,0,,,2,24,8,2/24/26 7:00, +1,1,1305,2026,1,1,,0,,,2,24,9,2/24/26 8:00, +1,1,1306,2026,1,1,,0,,,2,24,10,2/24/26 9:00, +1,1,1307,2026,1,1,,0,,,2,24,11,2/24/26 10:00, +1,1,1308,2026,1,1,,0,,,2,24,12,2/24/26 11:00, +1,1,1309,2026,1,1,,0,,,2,24,13,2/24/26 12:00, +1,1,1310,2026,1,1,,0,,,2,24,14,2/24/26 13:00, +1,1,1311,2026,1,1,,0,,,2,24,15,2/24/26 14:00, +1,1,1312,2026,1,1,,0,,,2,24,16,2/24/26 15:00, +1,1,1313,2026,1,1,,0,,,2,24,17,2/24/26 16:00, +1,1,1314,2026,1,1,,0,,,2,24,18,2/24/26 17:00, +1,1,1315,2026,1,1,,0,,,2,24,19,2/24/26 18:00, +1,1,1316,2026,1,1,,0,,,2,24,20,2/24/26 19:00, +1,1,1317,2026,1,1,,0,,,2,24,21,2/24/26 20:00, +1,1,1318,2026,1,1,,0,,,2,24,22,2/24/26 21:00, +1,1,1319,2026,1,1,,0,,,2,24,23,2/24/26 22:00, +1,1,1320,2026,1,1,,0,,,2,24,24,2/24/26 23:00, +1,1,1321,2026,1,1,,0,,,2,25,1,2/25/26 0:00, +1,1,1322,2026,1,1,,0,,,2,25,2,2/25/26 1:00, +1,1,1323,2026,1,1,,0,,,2,25,3,2/25/26 2:00, +1,1,1324,2026,1,1,,0,,,2,25,4,2/25/26 3:00, +1,1,1325,2026,1,1,,0,,,2,25,5,2/25/26 4:00, +1,1,1326,2026,1,1,,0,,,2,25,6,2/25/26 5:00, +1,1,1327,2026,1,1,,0,,,2,25,7,2/25/26 6:00, +1,1,1328,2026,1,1,,0,,,2,25,8,2/25/26 7:00, +1,1,1329,2026,1,1,,0,,,2,25,9,2/25/26 8:00, +1,1,1330,2026,1,1,,0,,,2,25,10,2/25/26 9:00, +1,1,1331,2026,1,1,,0,,,2,25,11,2/25/26 10:00, +1,1,1332,2026,1,1,,0,,,2,25,12,2/25/26 11:00, +1,1,1333,2026,1,1,,0,,,2,25,13,2/25/26 12:00, +1,1,1334,2026,1,1,,0,,,2,25,14,2/25/26 13:00, +1,1,1335,2026,1,1,,0,,,2,25,15,2/25/26 14:00, +1,1,1336,2026,1,1,,0,,,2,25,16,2/25/26 15:00, +1,1,1337,2026,1,1,,0,,,2,25,17,2/25/26 16:00, +1,1,1338,2026,1,1,,0,,,2,25,18,2/25/26 17:00, +1,1,1339,2026,1,1,,0,,,2,25,19,2/25/26 18:00, +1,1,1340,2026,1,1,,0,,,2,25,20,2/25/26 19:00, +1,1,1341,2026,1,1,,0,,,2,25,21,2/25/26 20:00, +1,1,1342,2026,1,1,,0,,,2,25,22,2/25/26 21:00, +1,1,1343,2026,1,1,,0,,,2,25,23,2/25/26 22:00, +1,1,1344,2026,1,1,,0,,,2,25,24,2/25/26 23:00, +1,1,1345,2026,1,1,,0,,,2,26,1,2/26/26 0:00, +1,1,1346,2026,1,1,,0,,,2,26,2,2/26/26 1:00, +1,1,1347,2026,1,1,,0,,,2,26,3,2/26/26 2:00, +1,1,1348,2026,1,1,,0,,,2,26,4,2/26/26 3:00, +1,1,1349,2026,1,1,,0,,,2,26,5,2/26/26 4:00, +1,1,1350,2026,1,1,,0,,,2,26,6,2/26/26 5:00, +1,1,1351,2026,1,1,,0,,,2,26,7,2/26/26 6:00, +1,1,1352,2026,1,1,,0,,,2,26,8,2/26/26 7:00, +1,1,1353,2026,1,1,,0,,,2,26,9,2/26/26 8:00, +1,1,1354,2026,1,1,,0,,,2,26,10,2/26/26 9:00, +1,1,1355,2026,1,1,,0,,,2,26,11,2/26/26 10:00, +1,1,1356,2026,1,1,,0,,,2,26,12,2/26/26 11:00, +1,1,1357,2026,1,1,,0,,,2,26,13,2/26/26 12:00, +1,1,1358,2026,1,1,,0,,,2,26,14,2/26/26 13:00, +1,1,1359,2026,1,1,,0,,,2,26,15,2/26/26 14:00, +1,1,1360,2026,1,1,,0,,,2,26,16,2/26/26 15:00, +1,1,1361,2026,1,1,,0,,,2,26,17,2/26/26 16:00, +1,1,1362,2026,1,1,,0,,,2,26,18,2/26/26 17:00, +1,1,1363,2026,1,1,,0,,,2,26,19,2/26/26 18:00, +1,1,1364,2026,1,1,,0,,,2,26,20,2/26/26 19:00, +1,1,1365,2026,1,1,,0,,,2,26,21,2/26/26 20:00, +1,1,1366,2026,1,1,,0,,,2,26,22,2/26/26 21:00, +1,1,1367,2026,1,1,,0,,,2,26,23,2/26/26 22:00, +1,1,1368,2026,1,1,,0,,,2,26,24,2/26/26 23:00, +1,1,1369,2026,1,1,,0,,,2,27,1,2/27/26 0:00, +1,1,1370,2026,1,1,,0,,,2,27,2,2/27/26 1:00, +1,1,1371,2026,1,1,,0,,,2,27,3,2/27/26 2:00, +1,1,1372,2026,1,1,,0,,,2,27,4,2/27/26 3:00, +1,1,1373,2026,1,1,,0,,,2,27,5,2/27/26 4:00, +1,1,1374,2026,1,1,,0,,,2,27,6,2/27/26 5:00, +1,1,1375,2026,1,1,,0,,,2,27,7,2/27/26 6:00, +1,1,1376,2026,1,1,,0,,,2,27,8,2/27/26 7:00, +1,1,1377,2026,1,1,,0,,,2,27,9,2/27/26 8:00, +1,1,1378,2026,1,1,,0,,,2,27,10,2/27/26 9:00, +1,1,1379,2026,1,1,,0,,,2,27,11,2/27/26 10:00, +1,1,1380,2026,1,1,,0,,,2,27,12,2/27/26 11:00, +1,1,1381,2026,1,1,,0,,,2,27,13,2/27/26 12:00, +1,1,1382,2026,1,1,,0,,,2,27,14,2/27/26 13:00, +1,1,1383,2026,1,1,,0,,,2,27,15,2/27/26 14:00, +1,1,1384,2026,1,1,,0,,,2,27,16,2/27/26 15:00, +1,1,1385,2026,1,1,,0,,,2,27,17,2/27/26 16:00, +1,1,1386,2026,1,1,,0,,,2,27,18,2/27/26 17:00, +1,1,1387,2026,1,1,,0,,,2,27,19,2/27/26 18:00, +1,1,1388,2026,1,1,,0,,,2,27,20,2/27/26 19:00, +1,1,1389,2026,1,1,,0,,,2,27,21,2/27/26 20:00, +1,1,1390,2026,1,1,,0,,,2,27,22,2/27/26 21:00, +1,1,1391,2026,1,1,,0,,,2,27,23,2/27/26 22:00, +1,1,1392,2026,1,1,,0,,,2,27,24,2/27/26 23:00, +1,1,1393,2026,1,1,,0,,,2,28,1,2/28/26 0:00, +1,1,1394,2026,1,1,,0,,,2,28,2,2/28/26 1:00, +1,1,1395,2026,1,1,,0,,,2,28,3,2/28/26 2:00, +1,1,1396,2026,1,1,,0,,,2,28,4,2/28/26 3:00, +1,1,1397,2026,1,1,,0,,,2,28,5,2/28/26 4:00, +1,1,1398,2026,1,1,,0,,,2,28,6,2/28/26 5:00, +1,1,1399,2026,1,1,,0,,,2,28,7,2/28/26 6:00, +1,1,1400,2026,1,1,,0,,,2,28,8,2/28/26 7:00, +1,1,1401,2026,1,1,,0,,,2,28,9,2/28/26 8:00, +1,1,1402,2026,1,1,,0,,,2,28,10,2/28/26 9:00, +1,1,1403,2026,1,1,,0,,,2,28,11,2/28/26 10:00, +1,1,1404,2026,1,1,,0,,,2,28,12,2/28/26 11:00, +1,1,1405,2026,1,1,,0,,,2,28,13,2/28/26 12:00, +1,1,1406,2026,1,1,,0,,,2,28,14,2/28/26 13:00, +1,1,1407,2026,1,1,,0,,,2,28,15,2/28/26 14:00, +1,1,1408,2026,1,1,,0,,,2,28,16,2/28/26 15:00, +1,1,1409,2026,1,1,,0,,,2,28,17,2/28/26 16:00, +1,1,1410,2026,1,1,,0,,,2,28,18,2/28/26 17:00, +1,1,1411,2026,1,1,,0,,,2,28,19,2/28/26 18:00, +1,1,1412,2026,1,1,,0,,,2,28,20,2/28/26 19:00, +1,1,1413,2026,1,1,,0,,,2,28,21,2/28/26 20:00, +1,1,1414,2026,1,1,,0,,,2,28,22,2/28/26 21:00, +1,1,1415,2026,1,1,,0,,,2,28,23,2/28/26 22:00, +1,1,1416,2026,1,1,,0,,,2,28,24,2/28/26 23:00, +1,1,1417,2026,1,1,,0,,,3,1,1,3/1/26 0:00, +1,1,1418,2026,1,1,,0,,,3,1,2,3/1/26 1:00, +1,1,1419,2026,1,1,,0,,,3,1,3,3/1/26 2:00, +1,1,1420,2026,1,1,,0,,,3,1,4,3/1/26 3:00, +1,1,1421,2026,1,1,,0,,,3,1,5,3/1/26 4:00, +1,1,1422,2026,1,1,,0,,,3,1,6,3/1/26 5:00, +1,1,1423,2026,1,1,,0,,,3,1,7,3/1/26 6:00, +1,1,1424,2026,1,1,,0,,,3,1,8,3/1/26 7:00, +1,1,1425,2026,1,1,,0,,,3,1,9,3/1/26 8:00, +1,1,1426,2026,1,1,,0,,,3,1,10,3/1/26 9:00, +1,1,1427,2026,1,1,,0,,,3,1,11,3/1/26 10:00, +1,1,1428,2026,1,1,,0,,,3,1,12,3/1/26 11:00, +1,1,1429,2026,1,1,,0,,,3,1,13,3/1/26 12:00, +1,1,1430,2026,1,1,,0,,,3,1,14,3/1/26 13:00, +1,1,1431,2026,1,1,,0,,,3,1,15,3/1/26 14:00, +1,1,1432,2026,1,1,,0,,,3,1,16,3/1/26 15:00, +1,1,1433,2026,1,1,,0,,,3,1,17,3/1/26 16:00, +1,1,1434,2026,1,1,,0,,,3,1,18,3/1/26 17:00, +1,1,1435,2026,1,1,,0,,,3,1,19,3/1/26 18:00, +1,1,1436,2026,1,1,,0,,,3,1,20,3/1/26 19:00, +1,1,1437,2026,1,1,,0,,,3,1,21,3/1/26 20:00, +1,1,1438,2026,1,1,,0,,,3,1,22,3/1/26 21:00, +1,1,1439,2026,1,1,,0,,,3,1,23,3/1/26 22:00, +1,1,1440,2026,1,1,,0,,,3,1,24,3/1/26 23:00, +1,1,1441,2026,1,1,,0,,,3,2,1,3/2/26 0:00, +1,1,1442,2026,1,1,,0,,,3,2,2,3/2/26 1:00, +1,1,1443,2026,1,1,,0,,,3,2,3,3/2/26 2:00, +1,1,1444,2026,1,1,,0,,,3,2,4,3/2/26 3:00, +1,1,1445,2026,1,1,,0,,,3,2,5,3/2/26 4:00, +1,1,1446,2026,1,1,,0,,,3,2,6,3/2/26 5:00, +1,1,1447,2026,1,1,,0,,,3,2,7,3/2/26 6:00, +1,1,1448,2026,1,1,,0,,,3,2,8,3/2/26 7:00, +1,1,1449,2026,1,1,,0,,,3,2,9,3/2/26 8:00, +1,1,1450,2026,1,1,,0,,,3,2,10,3/2/26 9:00, +1,1,1451,2026,1,1,,0,,,3,2,11,3/2/26 10:00, +1,1,1452,2026,1,1,,0,,,3,2,12,3/2/26 11:00, +1,1,1453,2026,1,1,,0,,,3,2,13,3/2/26 12:00, +1,1,1454,2026,1,1,,0,,,3,2,14,3/2/26 13:00, +1,1,1455,2026,1,1,,0,,,3,2,15,3/2/26 14:00, +1,1,1456,2026,1,1,,0,,,3,2,16,3/2/26 15:00, +1,1,1457,2026,1,1,,0,,,3,2,17,3/2/26 16:00, +1,1,1458,2026,1,1,,0,,,3,2,18,3/2/26 17:00, +1,1,1459,2026,1,1,,0,,,3,2,19,3/2/26 18:00, +1,1,1460,2026,1,1,,0,,,3,2,20,3/2/26 19:00, +1,1,1461,2026,1,1,,0,,,3,2,21,3/2/26 20:00, +1,1,1462,2026,1,1,,0,,,3,2,22,3/2/26 21:00, +1,1,1463,2026,1,1,,0,,,3,2,23,3/2/26 22:00, +1,1,1464,2026,1,1,,0,,,3,2,24,3/2/26 23:00, +1,1,1465,2026,1,1,,0,,,3,3,1,3/3/26 0:00, +1,1,1466,2026,1,1,,0,,,3,3,2,3/3/26 1:00, +1,1,1467,2026,1,1,,0,,,3,3,3,3/3/26 2:00, +1,1,1468,2026,1,1,,0,,,3,3,4,3/3/26 3:00, +1,1,1469,2026,1,1,,0,,,3,3,5,3/3/26 4:00, +1,1,1470,2026,1,1,,0,,,3,3,6,3/3/26 5:00, +1,1,1471,2026,1,1,,0,,,3,3,7,3/3/26 6:00, +1,1,1472,2026,1,1,,0,,,3,3,8,3/3/26 7:00, +1,1,1473,2026,1,1,,0,,,3,3,9,3/3/26 8:00, +1,1,1474,2026,1,1,,0,,,3,3,10,3/3/26 9:00, +1,1,1475,2026,1,1,,0,,,3,3,11,3/3/26 10:00, +1,1,1476,2026,1,1,,0,,,3,3,12,3/3/26 11:00, +1,1,1477,2026,1,1,,0,,,3,3,13,3/3/26 12:00, +1,1,1478,2026,1,1,,0,,,3,3,14,3/3/26 13:00, +1,1,1479,2026,1,1,,0,,,3,3,15,3/3/26 14:00, +1,1,1480,2026,1,1,,0,,,3,3,16,3/3/26 15:00, +1,1,1481,2026,1,1,,0,,,3,3,17,3/3/26 16:00, +1,1,1482,2026,1,1,,0,,,3,3,18,3/3/26 17:00, +1,1,1483,2026,1,1,,0,,,3,3,19,3/3/26 18:00, +1,1,1484,2026,1,1,,0,,,3,3,20,3/3/26 19:00, +1,1,1485,2026,1,1,,0,,,3,3,21,3/3/26 20:00, +1,1,1486,2026,1,1,,0,,,3,3,22,3/3/26 21:00, +1,1,1487,2026,1,1,,0,,,3,3,23,3/3/26 22:00, +1,1,1488,2026,1,1,,0,,,3,3,24,3/3/26 23:00, +1,1,1489,2026,1,1,,0,,,3,4,1,3/4/26 0:00, +1,1,1490,2026,1,1,,0,,,3,4,2,3/4/26 1:00, +1,1,1491,2026,1,1,,0,,,3,4,3,3/4/26 2:00, +1,1,1492,2026,1,1,,0,,,3,4,4,3/4/26 3:00, +1,1,1493,2026,1,1,,0,,,3,4,5,3/4/26 4:00, +1,1,1494,2026,1,1,,0,,,3,4,6,3/4/26 5:00, +1,1,1495,2026,1,1,,0,,,3,4,7,3/4/26 6:00, +1,1,1496,2026,1,1,,0,,,3,4,8,3/4/26 7:00, +1,1,1497,2026,1,1,,0,,,3,4,9,3/4/26 8:00, +1,1,1498,2026,1,1,,0,,,3,4,10,3/4/26 9:00, +1,1,1499,2026,1,1,,0,,,3,4,11,3/4/26 10:00, +1,1,1500,2026,1,1,,0,,,3,4,12,3/4/26 11:00, +1,1,1501,2026,1,1,,0,,,3,4,13,3/4/26 12:00, +1,1,1502,2026,1,1,,0,,,3,4,14,3/4/26 13:00, +1,1,1503,2026,1,1,,0,,,3,4,15,3/4/26 14:00, +1,1,1504,2026,1,1,,0,,,3,4,16,3/4/26 15:00, +1,1,1505,2026,1,1,,0,,,3,4,17,3/4/26 16:00, +1,1,1506,2026,1,1,,0,,,3,4,18,3/4/26 17:00, +1,1,1507,2026,1,1,,0,,,3,4,19,3/4/26 18:00, +1,1,1508,2026,1,1,,0,,,3,4,20,3/4/26 19:00, +1,1,1509,2026,1,1,,0,,,3,4,21,3/4/26 20:00, +1,1,1510,2026,1,1,,0,,,3,4,22,3/4/26 21:00, +1,1,1511,2026,1,1,,0,,,3,4,23,3/4/26 22:00, +1,1,1512,2026,1,1,,0,,,3,4,24,3/4/26 23:00, +1,1,1513,2026,1,1,,0,,,3,5,1,3/5/26 0:00, +1,1,1514,2026,1,1,,0,,,3,5,2,3/5/26 1:00, +1,1,1515,2026,1,1,,0,,,3,5,3,3/5/26 2:00, +1,1,1516,2026,1,1,,0,,,3,5,4,3/5/26 3:00, +1,1,1517,2026,1,1,,0,,,3,5,5,3/5/26 4:00, +1,1,1518,2026,1,1,,0,,,3,5,6,3/5/26 5:00, +1,1,1519,2026,1,1,,0,,,3,5,7,3/5/26 6:00, +1,1,1520,2026,1,1,,0,,,3,5,8,3/5/26 7:00, +1,1,1521,2026,1,1,,0,,,3,5,9,3/5/26 8:00, +1,1,1522,2026,1,1,,0,,,3,5,10,3/5/26 9:00, +1,1,1523,2026,1,1,,0,,,3,5,11,3/5/26 10:00, +1,1,1524,2026,1,1,,0,,,3,5,12,3/5/26 11:00, +1,1,1525,2026,1,1,,0,,,3,5,13,3/5/26 12:00, +1,1,1526,2026,1,1,,0,,,3,5,14,3/5/26 13:00, +1,1,1527,2026,1,1,,0,,,3,5,15,3/5/26 14:00, +1,1,1528,2026,1,1,,0,,,3,5,16,3/5/26 15:00, +1,1,1529,2026,1,1,,0,,,3,5,17,3/5/26 16:00, +1,1,1530,2026,1,1,,0,,,3,5,18,3/5/26 17:00, +1,1,1531,2026,1,1,,0,,,3,5,19,3/5/26 18:00, +1,1,1532,2026,1,1,,0,,,3,5,20,3/5/26 19:00, +1,1,1533,2026,1,1,,0,,,3,5,21,3/5/26 20:00, +1,1,1534,2026,1,1,,0,,,3,5,22,3/5/26 21:00, +1,1,1535,2026,1,1,,0,,,3,5,23,3/5/26 22:00, +1,1,1536,2026,1,1,,0,,,3,5,24,3/5/26 23:00, +1,1,1537,2026,1,1,,0,,,3,6,1,3/6/26 0:00, +1,1,1538,2026,1,1,,0,,,3,6,2,3/6/26 1:00, +1,1,1539,2026,1,1,,0,,,3,6,3,3/6/26 2:00, +1,1,1540,2026,1,1,,0,,,3,6,4,3/6/26 3:00, +1,1,1541,2026,1,1,,0,,,3,6,5,3/6/26 4:00, +1,1,1542,2026,1,1,,0,,,3,6,6,3/6/26 5:00, +1,1,1543,2026,1,1,,0,,,3,6,7,3/6/26 6:00, +1,1,1544,2026,1,1,,0,,,3,6,8,3/6/26 7:00, +1,1,1545,2026,1,1,,0,,,3,6,9,3/6/26 8:00, +1,1,1546,2026,1,1,,0,,,3,6,10,3/6/26 9:00, +1,1,1547,2026,1,1,,0,,,3,6,11,3/6/26 10:00, +1,1,1548,2026,1,1,,0,,,3,6,12,3/6/26 11:00, +1,1,1549,2026,1,1,,0,,,3,6,13,3/6/26 12:00, +1,1,1550,2026,1,1,,0,,,3,6,14,3/6/26 13:00, +1,1,1551,2026,1,1,,0,,,3,6,15,3/6/26 14:00, +1,1,1552,2026,1,1,,0,,,3,6,16,3/6/26 15:00, +1,1,1553,2026,1,1,,0,,,3,6,17,3/6/26 16:00, +1,1,1554,2026,1,1,,0,,,3,6,18,3/6/26 17:00, +1,1,1555,2026,1,1,,0,,,3,6,19,3/6/26 18:00, +1,1,1556,2026,1,1,,0,,,3,6,20,3/6/26 19:00, +1,1,1557,2026,1,1,,0,,,3,6,21,3/6/26 20:00, +1,1,1558,2026,1,1,,0,,,3,6,22,3/6/26 21:00, +1,1,1559,2026,1,1,,0,,,3,6,23,3/6/26 22:00, +1,1,1560,2026,1,1,,0,,,3,6,24,3/6/26 23:00, +1,1,1561,2026,1,1,,0,,,3,7,1,3/7/26 0:00, +1,1,1562,2026,1,1,,0,,,3,7,2,3/7/26 1:00, +1,1,1563,2026,1,1,,0,,,3,7,3,3/7/26 2:00, +1,1,1564,2026,1,1,,0,,,3,7,4,3/7/26 3:00, +1,1,1565,2026,1,1,,0,,,3,7,5,3/7/26 4:00, +1,1,1566,2026,1,1,,0,,,3,7,6,3/7/26 5:00, +1,1,1567,2026,1,1,,0,,,3,7,7,3/7/26 6:00, +1,1,1568,2026,1,1,,0,,,3,7,8,3/7/26 7:00, +1,1,1569,2026,1,1,,0,,,3,7,9,3/7/26 8:00, +1,1,1570,2026,1,1,,0,,,3,7,10,3/7/26 9:00, +1,1,1571,2026,1,1,,0,,,3,7,11,3/7/26 10:00, +1,1,1572,2026,1,1,,0,,,3,7,12,3/7/26 11:00, +1,1,1573,2026,1,1,,0,,,3,7,13,3/7/26 12:00, +1,1,1574,2026,1,1,,0,,,3,7,14,3/7/26 13:00, +1,1,1575,2026,1,1,,0,,,3,7,15,3/7/26 14:00, +1,1,1576,2026,1,1,,0,,,3,7,16,3/7/26 15:00, +1,1,1577,2026,1,1,,0,,,3,7,17,3/7/26 16:00, +1,1,1578,2026,1,1,,0,,,3,7,18,3/7/26 17:00, +1,1,1579,2026,1,1,,0,,,3,7,19,3/7/26 18:00, +1,1,1580,2026,1,1,,0,,,3,7,20,3/7/26 19:00, +1,1,1581,2026,1,1,,0,,,3,7,21,3/7/26 20:00, +1,1,1582,2026,1,1,,0,,,3,7,22,3/7/26 21:00, +1,1,1583,2026,1,1,,0,,,3,7,23,3/7/26 22:00, +1,1,1584,2026,1,1,,0,,,3,7,24,3/7/26 23:00, +1,1,1585,2026,1,1,,0,,,3,8,1,3/8/26 0:00, +1,1,1586,2026,1,1,,0,,,3,8,2,3/8/26 1:00, +1,1,1587,2026,1,1,,0,,,3,8,3,3/8/26 2:00, +1,1,1588,2026,1,1,,0,,,3,8,4,3/8/26 3:00, +1,1,1589,2026,1,1,,0,,,3,8,5,3/8/26 4:00, +1,1,1590,2026,1,1,,0,,,3,8,6,3/8/26 5:00, +1,1,1591,2026,1,1,,0,,,3,8,7,3/8/26 6:00, +1,1,1592,2026,1,1,,0,,,3,8,8,3/8/26 7:00, +1,1,1593,2026,1,1,,0,,,3,8,9,3/8/26 8:00, +1,1,1594,2026,1,1,,0,,,3,8,10,3/8/26 9:00, +1,1,1595,2026,1,1,,0,,,3,8,11,3/8/26 10:00, +1,1,1596,2026,1,1,,0,,,3,8,12,3/8/26 11:00, +1,1,1597,2026,1,1,,0,,,3,8,13,3/8/26 12:00, +1,1,1598,2026,1,1,,0,,,3,8,14,3/8/26 13:00, +1,1,1599,2026,1,1,,0,,,3,8,15,3/8/26 14:00, +1,1,1600,2026,1,1,,0,,,3,8,16,3/8/26 15:00, +1,1,1601,2026,1,1,,0,,,3,8,17,3/8/26 16:00, +1,1,1602,2026,1,1,,0,,,3,8,18,3/8/26 17:00, +1,1,1603,2026,1,1,,0,,,3,8,19,3/8/26 18:00, +1,1,1604,2026,1,1,,0,,,3,8,20,3/8/26 19:00, +1,1,1605,2026,1,1,,0,,,3,8,21,3/8/26 20:00, +1,1,1606,2026,1,1,,0,,,3,8,22,3/8/26 21:00, +1,1,1607,2026,1,1,,0,,,3,8,23,3/8/26 22:00, +1,1,1608,2026,1,1,,0,,,3,8,24,3/8/26 23:00, +1,1,1609,2026,1,1,,0,,,3,9,1,3/9/26 0:00, +1,1,1610,2026,1,1,,0,,,3,9,2,3/9/26 1:00, +1,1,1611,2026,1,1,,0,,,3,9,3,3/9/26 2:00, +1,1,1612,2026,1,1,,0,,,3,9,4,3/9/26 3:00, +1,1,1613,2026,1,1,,0,,,3,9,5,3/9/26 4:00, +1,1,1614,2026,1,1,,0,,,3,9,6,3/9/26 5:00, +1,1,1615,2026,1,1,,0,,,3,9,7,3/9/26 6:00, +1,1,1616,2026,1,1,,0,,,3,9,8,3/9/26 7:00, +1,1,1617,2026,1,1,,0,,,3,9,9,3/9/26 8:00, +1,1,1618,2026,1,1,,0,,,3,9,10,3/9/26 9:00, +1,1,1619,2026,1,1,,0,,,3,9,11,3/9/26 10:00, +1,1,1620,2026,1,1,,0,,,3,9,12,3/9/26 11:00, +1,1,1621,2026,1,1,,0,,,3,9,13,3/9/26 12:00, +1,1,1622,2026,1,1,,0,,,3,9,14,3/9/26 13:00, +1,1,1623,2026,1,1,,0,,,3,9,15,3/9/26 14:00, +1,1,1624,2026,1,1,,0,,,3,9,16,3/9/26 15:00, +1,1,1625,2026,1,1,,0,,,3,9,17,3/9/26 16:00, +1,1,1626,2026,1,1,,0,,,3,9,18,3/9/26 17:00, +1,1,1627,2026,1,1,,0,,,3,9,19,3/9/26 18:00, +1,1,1628,2026,1,1,,0,,,3,9,20,3/9/26 19:00, +1,1,1629,2026,1,1,,0,,,3,9,21,3/9/26 20:00, +1,1,1630,2026,1,1,,0,,,3,9,22,3/9/26 21:00, +1,1,1631,2026,1,1,,0,,,3,9,23,3/9/26 22:00, +1,1,1632,2026,1,1,,0,,,3,9,24,3/9/26 23:00, +1,1,1633,2026,1,1,,0,,,3,10,1,3/10/26 0:00, +1,1,1634,2026,1,1,,0,,,3,10,2,3/10/26 1:00, +1,1,1635,2026,1,1,,0,,,3,10,3,3/10/26 2:00, +1,1,1636,2026,1,1,,0,,,3,10,4,3/10/26 3:00, +1,1,1637,2026,1,1,,0,,,3,10,5,3/10/26 4:00, +1,1,1638,2026,1,1,,0,,,3,10,6,3/10/26 5:00, +1,1,1639,2026,1,1,,0,,,3,10,7,3/10/26 6:00, +1,1,1640,2026,1,1,,0,,,3,10,8,3/10/26 7:00, +1,1,1641,2026,1,1,,0,,,3,10,9,3/10/26 8:00, +1,1,1642,2026,1,1,,0,,,3,10,10,3/10/26 9:00, +1,1,1643,2026,1,1,,0,,,3,10,11,3/10/26 10:00, +1,1,1644,2026,1,1,,0,,,3,10,12,3/10/26 11:00, +1,1,1645,2026,1,1,,0,,,3,10,13,3/10/26 12:00, +1,1,1646,2026,1,1,,0,,,3,10,14,3/10/26 13:00, +1,1,1647,2026,1,1,,0,,,3,10,15,3/10/26 14:00, +1,1,1648,2026,1,1,,0,,,3,10,16,3/10/26 15:00, +1,1,1649,2026,1,1,,0,,,3,10,17,3/10/26 16:00, +1,1,1650,2026,1,1,,0,,,3,10,18,3/10/26 17:00, +1,1,1651,2026,1,1,,0,,,3,10,19,3/10/26 18:00, +1,1,1652,2026,1,1,,0,,,3,10,20,3/10/26 19:00, +1,1,1653,2026,1,1,,0,,,3,10,21,3/10/26 20:00, +1,1,1654,2026,1,1,,0,,,3,10,22,3/10/26 21:00, +1,1,1655,2026,1,1,,0,,,3,10,23,3/10/26 22:00, +1,1,1656,2026,1,1,,0,,,3,10,24,3/10/26 23:00, +1,1,1657,2026,1,1,,0,,,3,11,1,3/11/26 0:00, +1,1,1658,2026,1,1,,0,,,3,11,2,3/11/26 1:00, +1,1,1659,2026,1,1,,0,,,3,11,3,3/11/26 2:00, +1,1,1660,2026,1,1,,0,,,3,11,4,3/11/26 3:00, +1,1,1661,2026,1,1,,0,,,3,11,5,3/11/26 4:00, +1,1,1662,2026,1,1,,0,,,3,11,6,3/11/26 5:00, +1,1,1663,2026,1,1,,0,,,3,11,7,3/11/26 6:00, +1,1,1664,2026,1,1,,0,,,3,11,8,3/11/26 7:00, +1,1,1665,2026,1,1,,0,,,3,11,9,3/11/26 8:00, +1,1,1666,2026,1,1,,0,,,3,11,10,3/11/26 9:00, +1,1,1667,2026,1,1,,0,,,3,11,11,3/11/26 10:00, +1,1,1668,2026,1,1,,0,,,3,11,12,3/11/26 11:00, +1,1,1669,2026,1,1,,0,,,3,11,13,3/11/26 12:00, +1,1,1670,2026,1,1,,0,,,3,11,14,3/11/26 13:00, +1,1,1671,2026,1,1,,0,,,3,11,15,3/11/26 14:00, +1,1,1672,2026,1,1,,0,,,3,11,16,3/11/26 15:00, +1,1,1673,2026,1,1,,0,,,3,11,17,3/11/26 16:00, +1,1,1674,2026,1,1,,0,,,3,11,18,3/11/26 17:00, +1,1,1675,2026,1,1,,0,,,3,11,19,3/11/26 18:00, +1,1,1676,2026,1,1,,0,,,3,11,20,3/11/26 19:00, +1,1,1677,2026,1,1,,0,,,3,11,21,3/11/26 20:00, +1,1,1678,2026,1,1,,0,,,3,11,22,3/11/26 21:00, +1,1,1679,2026,1,1,,0,,,3,11,23,3/11/26 22:00, +1,1,1680,2026,1,1,,0,,,3,11,24,3/11/26 23:00, +1,1,1681,2026,1,1,,0,,,3,12,1,3/12/26 0:00, +1,1,1682,2026,1,1,,0,,,3,12,2,3/12/26 1:00, +1,1,1683,2026,1,1,,0,,,3,12,3,3/12/26 2:00, +1,1,1684,2026,1,1,,0,,,3,12,4,3/12/26 3:00, +1,1,1685,2026,1,1,,0,,,3,12,5,3/12/26 4:00, +1,1,1686,2026,1,1,,0,,,3,12,6,3/12/26 5:00, +1,1,1687,2026,1,1,,0,,,3,12,7,3/12/26 6:00, +1,1,1688,2026,1,1,,0,,,3,12,8,3/12/26 7:00, +1,1,1689,2026,1,1,,0,,,3,12,9,3/12/26 8:00, +1,1,1690,2026,1,1,,0,,,3,12,10,3/12/26 9:00, +1,1,1691,2026,1,1,,0,,,3,12,11,3/12/26 10:00, +1,1,1692,2026,1,1,,0,,,3,12,12,3/12/26 11:00, +1,1,1693,2026,1,1,,0,,,3,12,13,3/12/26 12:00, +1,1,1694,2026,1,1,,0,,,3,12,14,3/12/26 13:00, +1,1,1695,2026,1,1,,0,,,3,12,15,3/12/26 14:00, +1,1,1696,2026,1,1,,0,,,3,12,16,3/12/26 15:00, +1,1,1697,2026,1,1,,0,,,3,12,17,3/12/26 16:00, +1,1,1698,2026,1,1,,0,,,3,12,18,3/12/26 17:00, +1,1,1699,2026,1,1,,0,,,3,12,19,3/12/26 18:00, +1,1,1700,2026,1,1,,0,,,3,12,20,3/12/26 19:00, +1,1,1701,2026,1,1,,0,,,3,12,21,3/12/26 20:00, +1,1,1702,2026,1,1,,0,,,3,12,22,3/12/26 21:00, +1,1,1703,2026,1,1,,0,,,3,12,23,3/12/26 22:00, +1,1,1704,2026,1,1,,0,,,3,12,24,3/12/26 23:00, +1,1,1705,2026,1,1,,0,,,3,13,1,3/13/26 0:00, +1,1,1706,2026,1,1,,0,,,3,13,2,3/13/26 1:00, +1,1,1707,2026,1,1,,0,,,3,13,3,3/13/26 2:00, +1,1,1708,2026,1,1,,0,,,3,13,4,3/13/26 3:00, +1,1,1709,2026,1,1,,0,,,3,13,5,3/13/26 4:00, +1,1,1710,2026,1,1,,0,,,3,13,6,3/13/26 5:00, +1,1,1711,2026,1,1,,0,,,3,13,7,3/13/26 6:00, +1,1,1712,2026,1,1,,0,,,3,13,8,3/13/26 7:00, +1,1,1713,2026,1,1,,0,,,3,13,9,3/13/26 8:00, +1,1,1714,2026,1,1,,0,,,3,13,10,3/13/26 9:00, +1,1,1715,2026,1,1,,0,,,3,13,11,3/13/26 10:00, +1,1,1716,2026,1,1,,0,,,3,13,12,3/13/26 11:00, +1,1,1717,2026,1,1,,0,,,3,13,13,3/13/26 12:00, +1,1,1718,2026,1,1,,0,,,3,13,14,3/13/26 13:00, +1,1,1719,2026,1,1,,0,,,3,13,15,3/13/26 14:00, +1,1,1720,2026,1,1,,0,,,3,13,16,3/13/26 15:00, +1,1,1721,2026,1,1,,0,,,3,13,17,3/13/26 16:00, +1,1,1722,2026,1,1,,0,,,3,13,18,3/13/26 17:00, +1,1,1723,2026,1,1,,0,,,3,13,19,3/13/26 18:00, +1,1,1724,2026,1,1,,0,,,3,13,20,3/13/26 19:00, +1,1,1725,2026,1,1,,0,,,3,13,21,3/13/26 20:00, +1,1,1726,2026,1,1,,0,,,3,13,22,3/13/26 21:00, +1,1,1727,2026,1,1,,0,,,3,13,23,3/13/26 22:00, +1,1,1728,2026,1,1,,0,,,3,13,24,3/13/26 23:00, +1,1,1729,2026,1,1,,0,,,3,14,1,3/14/26 0:00, +1,1,1730,2026,1,1,,0,,,3,14,2,3/14/26 1:00, +1,1,1731,2026,1,1,,0,,,3,14,3,3/14/26 2:00, +1,1,1732,2026,1,1,,0,,,3,14,4,3/14/26 3:00, +1,1,1733,2026,1,1,,0,,,3,14,5,3/14/26 4:00, +1,1,1734,2026,1,1,,0,,,3,14,6,3/14/26 5:00, +1,1,1735,2026,1,1,,0,,,3,14,7,3/14/26 6:00, +1,1,1736,2026,1,1,,0,,,3,14,8,3/14/26 7:00, +1,1,1737,2026,1,1,,0,,,3,14,9,3/14/26 8:00, +1,1,1738,2026,1,1,,0,,,3,14,10,3/14/26 9:00, +1,1,1739,2026,1,1,,0,,,3,14,11,3/14/26 10:00, +1,1,1740,2026,1,1,,0,,,3,14,12,3/14/26 11:00, +1,1,1741,2026,1,1,,0,,,3,14,13,3/14/26 12:00, +1,1,1742,2026,1,1,,0,,,3,14,14,3/14/26 13:00, +1,1,1743,2026,1,1,,0,,,3,14,15,3/14/26 14:00, +1,1,1744,2026,1,1,,0,,,3,14,16,3/14/26 15:00, +1,1,1745,2026,1,1,,0,,,3,14,17,3/14/26 16:00, +1,1,1746,2026,1,1,,0,,,3,14,18,3/14/26 17:00, +1,1,1747,2026,1,1,,0,,,3,14,19,3/14/26 18:00, +1,1,1748,2026,1,1,,0,,,3,14,20,3/14/26 19:00, +1,1,1749,2026,1,1,,0,,,3,14,21,3/14/26 20:00, +1,1,1750,2026,1,1,,0,,,3,14,22,3/14/26 21:00, +1,1,1751,2026,1,1,,0,,,3,14,23,3/14/26 22:00, +1,1,1752,2026,1,1,,0,,,3,14,24,3/14/26 23:00, +1,1,1753,2026,1,1,,0,,,3,15,1,3/15/26 0:00, +1,1,1754,2026,1,1,,0,,,3,15,2,3/15/26 1:00, +1,1,1755,2026,1,1,,0,,,3,15,3,3/15/26 2:00, +1,1,1756,2026,1,1,,0,,,3,15,4,3/15/26 3:00, +1,1,1757,2026,1,1,,0,,,3,15,5,3/15/26 4:00, +1,1,1758,2026,1,1,,0,,,3,15,6,3/15/26 5:00, +1,1,1759,2026,1,1,,0,,,3,15,7,3/15/26 6:00, +1,1,1760,2026,1,1,,0,,,3,15,8,3/15/26 7:00, +1,1,1761,2026,1,1,,0,,,3,15,9,3/15/26 8:00, +1,1,1762,2026,1,1,,0,,,3,15,10,3/15/26 9:00, +1,1,1763,2026,1,1,,0,,,3,15,11,3/15/26 10:00, +1,1,1764,2026,1,1,,0,,,3,15,12,3/15/26 11:00, +1,1,1765,2026,1,1,,0,,,3,15,13,3/15/26 12:00, +1,1,1766,2026,1,1,,0,,,3,15,14,3/15/26 13:00, +1,1,1767,2026,1,1,,0,,,3,15,15,3/15/26 14:00, +1,1,1768,2026,1,1,,0,,,3,15,16,3/15/26 15:00, +1,1,1769,2026,1,1,,0,,,3,15,17,3/15/26 16:00, +1,1,1770,2026,1,1,,0,,,3,15,18,3/15/26 17:00, +1,1,1771,2026,1,1,,0,,,3,15,19,3/15/26 18:00, +1,1,1772,2026,1,1,,0,,,3,15,20,3/15/26 19:00, +1,1,1773,2026,1,1,,0,,,3,15,21,3/15/26 20:00, +1,1,1774,2026,1,1,,0,,,3,15,22,3/15/26 21:00, +1,1,1775,2026,1,1,,0,,,3,15,23,3/15/26 22:00, +1,1,1776,2026,1,1,,0,,,3,15,24,3/15/26 23:00, +1,1,1777,2026,1,1,,0,,,3,16,1,3/16/26 0:00, +1,1,1778,2026,1,1,,0,,,3,16,2,3/16/26 1:00, +1,1,1779,2026,1,1,,0,,,3,16,3,3/16/26 2:00, +1,1,1780,2026,1,1,,0,,,3,16,4,3/16/26 3:00, +1,1,1781,2026,1,1,,0,,,3,16,5,3/16/26 4:00, +1,1,1782,2026,1,1,,0,,,3,16,6,3/16/26 5:00, +1,1,1783,2026,1,1,,0,,,3,16,7,3/16/26 6:00, +1,1,1784,2026,1,1,,0,,,3,16,8,3/16/26 7:00, +1,1,1785,2026,1,1,,0,,,3,16,9,3/16/26 8:00, +1,1,1786,2026,1,1,,0,,,3,16,10,3/16/26 9:00, +1,1,1787,2026,1,1,,0,,,3,16,11,3/16/26 10:00, +1,1,1788,2026,1,1,,0,,,3,16,12,3/16/26 11:00, +1,1,1789,2026,1,1,,0,,,3,16,13,3/16/26 12:00, +1,1,1790,2026,1,1,,0,,,3,16,14,3/16/26 13:00, +1,1,1791,2026,1,1,,0,,,3,16,15,3/16/26 14:00, +1,1,1792,2026,1,1,,0,,,3,16,16,3/16/26 15:00, +1,1,1793,2026,1,1,,0,,,3,16,17,3/16/26 16:00, +1,1,1794,2026,1,1,,0,,,3,16,18,3/16/26 17:00, +1,1,1795,2026,1,1,,0,,,3,16,19,3/16/26 18:00, +1,1,1796,2026,1,1,,0,,,3,16,20,3/16/26 19:00, +1,1,1797,2026,1,1,,0,,,3,16,21,3/16/26 20:00, +1,1,1798,2026,1,1,,0,,,3,16,22,3/16/26 21:00, +1,1,1799,2026,1,1,,0,,,3,16,23,3/16/26 22:00, +1,1,1800,2026,1,1,,0,,,3,16,24,3/16/26 23:00, +1,1,1801,2026,1,1,,0,,,3,17,1,3/17/26 0:00, +1,1,1802,2026,1,1,,0,,,3,17,2,3/17/26 1:00, +1,1,1803,2026,1,1,,0,,,3,17,3,3/17/26 2:00, +1,1,1804,2026,1,1,,0,,,3,17,4,3/17/26 3:00, +1,1,1805,2026,1,1,,0,,,3,17,5,3/17/26 4:00, +1,1,1806,2026,1,1,,0,,,3,17,6,3/17/26 5:00, +1,1,1807,2026,1,1,,0,,,3,17,7,3/17/26 6:00, +1,1,1808,2026,1,1,,0,,,3,17,8,3/17/26 7:00, +1,1,1809,2026,1,1,,0,,,3,17,9,3/17/26 8:00, +1,1,1810,2026,1,1,,0,,,3,17,10,3/17/26 9:00, +1,1,1811,2026,1,1,,0,,,3,17,11,3/17/26 10:00, +1,1,1812,2026,1,1,,0,,,3,17,12,3/17/26 11:00, +1,1,1813,2026,1,1,,0,,,3,17,13,3/17/26 12:00, +1,1,1814,2026,1,1,,0,,,3,17,14,3/17/26 13:00, +1,1,1815,2026,1,1,,0,,,3,17,15,3/17/26 14:00, +1,1,1816,2026,1,1,,0,,,3,17,16,3/17/26 15:00, +1,1,1817,2026,1,1,,0,,,3,17,17,3/17/26 16:00, +1,1,1818,2026,1,1,,0,,,3,17,18,3/17/26 17:00, +1,1,1819,2026,1,1,,0,,,3,17,19,3/17/26 18:00, +1,1,1820,2026,1,1,,0,,,3,17,20,3/17/26 19:00, +1,1,1821,2026,1,1,,0,,,3,17,21,3/17/26 20:00, +1,1,1822,2026,1,1,,0,,,3,17,22,3/17/26 21:00, +1,1,1823,2026,1,1,,0,,,3,17,23,3/17/26 22:00, +1,1,1824,2026,1,1,,0,,,3,17,24,3/17/26 23:00, +1,1,1825,2026,1,1,,0,,,3,18,1,3/18/26 0:00, +1,1,1826,2026,1,1,,0,,,3,18,2,3/18/26 1:00, +1,1,1827,2026,1,1,,0,,,3,18,3,3/18/26 2:00, +1,1,1828,2026,1,1,,0,,,3,18,4,3/18/26 3:00, +1,1,1829,2026,1,1,,0,,,3,18,5,3/18/26 4:00, +1,1,1830,2026,1,1,,0,,,3,18,6,3/18/26 5:00, +1,1,1831,2026,1,1,,0,,,3,18,7,3/18/26 6:00, +1,1,1832,2026,1,1,,0,,,3,18,8,3/18/26 7:00, +1,1,1833,2026,1,1,,0,,,3,18,9,3/18/26 8:00, +1,1,1834,2026,1,1,,0,,,3,18,10,3/18/26 9:00, +1,1,1835,2026,1,1,,0,,,3,18,11,3/18/26 10:00, +1,1,1836,2026,1,1,,0,,,3,18,12,3/18/26 11:00, +1,1,1837,2026,1,1,,0,,,3,18,13,3/18/26 12:00, +1,1,1838,2026,1,1,,0,,,3,18,14,3/18/26 13:00, +1,1,1839,2026,1,1,,0,,,3,18,15,3/18/26 14:00, +1,1,1840,2026,1,1,,0,,,3,18,16,3/18/26 15:00, +1,1,1841,2026,1,1,,0,,,3,18,17,3/18/26 16:00, +1,1,1842,2026,1,1,,0,,,3,18,18,3/18/26 17:00, +1,1,1843,2026,1,1,,0,,,3,18,19,3/18/26 18:00, +1,1,1844,2026,1,1,,0,,,3,18,20,3/18/26 19:00, +1,1,1845,2026,1,1,,0,,,3,18,21,3/18/26 20:00, +1,1,1846,2026,1,1,,0,,,3,18,22,3/18/26 21:00, +1,1,1847,2026,1,1,,0,,,3,18,23,3/18/26 22:00, +1,1,1848,2026,1,1,,0,,,3,18,24,3/18/26 23:00, +1,1,1849,2026,1,1,,0,,,3,19,1,3/19/26 0:00, +1,1,1850,2026,1,1,,0,,,3,19,2,3/19/26 1:00, +1,1,1851,2026,1,1,,0,,,3,19,3,3/19/26 2:00, +1,1,1852,2026,1,1,,0,,,3,19,4,3/19/26 3:00, +1,1,1853,2026,1,1,,0,,,3,19,5,3/19/26 4:00, +1,1,1854,2026,1,1,,0,,,3,19,6,3/19/26 5:00, +1,1,1855,2026,1,1,,0,,,3,19,7,3/19/26 6:00, +1,1,1856,2026,1,1,,0,,,3,19,8,3/19/26 7:00, +1,1,1857,2026,1,1,,0,,,3,19,9,3/19/26 8:00, +1,1,1858,2026,1,1,,0,,,3,19,10,3/19/26 9:00, +1,1,1859,2026,1,1,,0,,,3,19,11,3/19/26 10:00, +1,1,1860,2026,1,1,,0,,,3,19,12,3/19/26 11:00, +1,1,1861,2026,1,1,,0,,,3,19,13,3/19/26 12:00, +1,1,1862,2026,1,1,,0,,,3,19,14,3/19/26 13:00, +1,1,1863,2026,1,1,,0,,,3,19,15,3/19/26 14:00, +1,1,1864,2026,1,1,,0,,,3,19,16,3/19/26 15:00, +1,1,1865,2026,1,1,,0,,,3,19,17,3/19/26 16:00, +1,1,1866,2026,1,1,,0,,,3,19,18,3/19/26 17:00, +1,1,1867,2026,1,1,,0,,,3,19,19,3/19/26 18:00, +1,1,1868,2026,1,1,,0,,,3,19,20,3/19/26 19:00, +1,1,1869,2026,1,1,,0,,,3,19,21,3/19/26 20:00, +1,1,1870,2026,1,1,,0,,,3,19,22,3/19/26 21:00, +1,1,1871,2026,1,1,,0,,,3,19,23,3/19/26 22:00, +1,1,1872,2026,1,1,,0,,,3,19,24,3/19/26 23:00, +1,1,1873,2026,1,1,,0,,,3,20,1,3/20/26 0:00, +1,1,1874,2026,1,1,,0,,,3,20,2,3/20/26 1:00, +1,1,1875,2026,1,1,,0,,,3,20,3,3/20/26 2:00, +1,1,1876,2026,1,1,,0,,,3,20,4,3/20/26 3:00, +1,1,1877,2026,1,1,,0,,,3,20,5,3/20/26 4:00, +1,1,1878,2026,1,1,,0,,,3,20,6,3/20/26 5:00, +1,1,1879,2026,1,1,,0,,,3,20,7,3/20/26 6:00, +1,1,1880,2026,1,1,,0,,,3,20,8,3/20/26 7:00, +1,1,1881,2026,1,1,,0,,,3,20,9,3/20/26 8:00, +1,1,1882,2026,1,1,,0,,,3,20,10,3/20/26 9:00, +1,1,1883,2026,1,1,,0,,,3,20,11,3/20/26 10:00, +1,1,1884,2026,1,1,,0,,,3,20,12,3/20/26 11:00, +1,1,1885,2026,1,1,,0,,,3,20,13,3/20/26 12:00, +1,1,1886,2026,1,1,,0,,,3,20,14,3/20/26 13:00, +1,1,1887,2026,1,1,,0,,,3,20,15,3/20/26 14:00, +1,1,1888,2026,1,1,,0,,,3,20,16,3/20/26 15:00, +1,1,1889,2026,1,1,,0,,,3,20,17,3/20/26 16:00, +1,1,1890,2026,1,1,,0,,,3,20,18,3/20/26 17:00, +1,1,1891,2026,1,1,,0,,,3,20,19,3/20/26 18:00, +1,1,1892,2026,1,1,,0,,,3,20,20,3/20/26 19:00, +1,1,1893,2026,1,1,,0,,,3,20,21,3/20/26 20:00, +1,1,1894,2026,1,1,,0,,,3,20,22,3/20/26 21:00, +1,1,1895,2026,1,1,,0,,,3,20,23,3/20/26 22:00, +1,1,1896,2026,1,1,,0,,,3,20,24,3/20/26 23:00, +1,1,1897,2026,1,1,,0,,,3,21,1,3/21/26 0:00, +1,1,1898,2026,1,1,,0,,,3,21,2,3/21/26 1:00, +1,1,1899,2026,1,1,,0,,,3,21,3,3/21/26 2:00, +1,1,1900,2026,1,1,,0,,,3,21,4,3/21/26 3:00, +1,1,1901,2026,1,1,,0,,,3,21,5,3/21/26 4:00, +1,1,1902,2026,1,1,,0,,,3,21,6,3/21/26 5:00, +1,1,1903,2026,1,1,,0,,,3,21,7,3/21/26 6:00, +1,1,1904,2026,1,1,,0,,,3,21,8,3/21/26 7:00, +1,1,1905,2026,1,1,,0,,,3,21,9,3/21/26 8:00, +1,1,1906,2026,1,1,,0,,,3,21,10,3/21/26 9:00, +1,1,1907,2026,1,1,,0,,,3,21,11,3/21/26 10:00, +1,1,1908,2026,1,1,,0,,,3,21,12,3/21/26 11:00, +1,1,1909,2026,1,1,,0,,,3,21,13,3/21/26 12:00, +1,1,1910,2026,1,1,,0,,,3,21,14,3/21/26 13:00, +1,1,1911,2026,1,1,,0,,,3,21,15,3/21/26 14:00, +1,1,1912,2026,1,1,,0,,,3,21,16,3/21/26 15:00, +1,1,1913,2026,1,1,,0,,,3,21,17,3/21/26 16:00, +1,1,1914,2026,1,1,,0,,,3,21,18,3/21/26 17:00, +1,1,1915,2026,1,1,,0,,,3,21,19,3/21/26 18:00, +1,1,1916,2026,1,1,,0,,,3,21,20,3/21/26 19:00, +1,1,1917,2026,1,1,,0,,,3,21,21,3/21/26 20:00, +1,1,1918,2026,1,1,,0,,,3,21,22,3/21/26 21:00, +1,1,1919,2026,1,1,,0,,,3,21,23,3/21/26 22:00, +1,1,1920,2026,1,1,,0,,,3,21,24,3/21/26 23:00, +1,1,1921,2026,1,1,,0,,,3,22,1,3/22/26 0:00, +1,1,1922,2026,1,1,,0,,,3,22,2,3/22/26 1:00, +1,1,1923,2026,1,1,,0,,,3,22,3,3/22/26 2:00, +1,1,1924,2026,1,1,,0,,,3,22,4,3/22/26 3:00, +1,1,1925,2026,1,1,,0,,,3,22,5,3/22/26 4:00, +1,1,1926,2026,1,1,,0,,,3,22,6,3/22/26 5:00, +1,1,1927,2026,1,1,,0,,,3,22,7,3/22/26 6:00, +1,1,1928,2026,1,1,,0,,,3,22,8,3/22/26 7:00, +1,1,1929,2026,1,1,,0,,,3,22,9,3/22/26 8:00, +1,1,1930,2026,1,1,,0,,,3,22,10,3/22/26 9:00, +1,1,1931,2026,1,1,,0,,,3,22,11,3/22/26 10:00, +1,1,1932,2026,1,1,,0,,,3,22,12,3/22/26 11:00, +1,1,1933,2026,1,1,,0,,,3,22,13,3/22/26 12:00, +1,1,1934,2026,1,1,,0,,,3,22,14,3/22/26 13:00, +1,1,1935,2026,1,1,,0,,,3,22,15,3/22/26 14:00, +1,1,1936,2026,1,1,,0,,,3,22,16,3/22/26 15:00, +1,1,1937,2026,1,1,,0,,,3,22,17,3/22/26 16:00, +1,1,1938,2026,1,1,,0,,,3,22,18,3/22/26 17:00, +1,1,1939,2026,1,1,,0,,,3,22,19,3/22/26 18:00, +1,1,1940,2026,1,1,,0,,,3,22,20,3/22/26 19:00, +1,1,1941,2026,1,1,,0,,,3,22,21,3/22/26 20:00, +1,1,1942,2026,1,1,,0,,,3,22,22,3/22/26 21:00, +1,1,1943,2026,1,1,,0,,,3,22,23,3/22/26 22:00, +1,1,1944,2026,1,1,,0,,,3,22,24,3/22/26 23:00, +1,1,1945,2026,1,1,,0,,,3,23,1,3/23/26 0:00, +1,1,1946,2026,1,1,,0,,,3,23,2,3/23/26 1:00, +1,1,1947,2026,1,1,,0,,,3,23,3,3/23/26 2:00, +1,1,1948,2026,1,1,,0,,,3,23,4,3/23/26 3:00, +1,1,1949,2026,1,1,,0,,,3,23,5,3/23/26 4:00, +1,1,1950,2026,1,1,,0,,,3,23,6,3/23/26 5:00, +1,1,1951,2026,1,1,,0,,,3,23,7,3/23/26 6:00, +1,1,1952,2026,1,1,,0,,,3,23,8,3/23/26 7:00, +1,1,1953,2026,1,1,,0,,,3,23,9,3/23/26 8:00, +1,1,1954,2026,1,1,,0,,,3,23,10,3/23/26 9:00, +1,1,1955,2026,1,1,,0,,,3,23,11,3/23/26 10:00, +1,1,1956,2026,1,1,,0,,,3,23,12,3/23/26 11:00, +1,1,1957,2026,1,1,,0,,,3,23,13,3/23/26 12:00, +1,1,1958,2026,1,1,,0,,,3,23,14,3/23/26 13:00, +1,1,1959,2026,1,1,,0,,,3,23,15,3/23/26 14:00, +1,1,1960,2026,1,1,,0,,,3,23,16,3/23/26 15:00, +1,1,1961,2026,1,1,,0,,,3,23,17,3/23/26 16:00, +1,1,1962,2026,1,1,,0,,,3,23,18,3/23/26 17:00, +1,1,1963,2026,1,1,,0,,,3,23,19,3/23/26 18:00, +1,1,1964,2026,1,1,,0,,,3,23,20,3/23/26 19:00, +1,1,1965,2026,1,1,,0,,,3,23,21,3/23/26 20:00, +1,1,1966,2026,1,1,,0,,,3,23,22,3/23/26 21:00, +1,1,1967,2026,1,1,,0,,,3,23,23,3/23/26 22:00, +1,1,1968,2026,1,1,,0,,,3,23,24,3/23/26 23:00, +1,1,1969,2026,1,1,,0,,,3,24,1,3/24/26 0:00, +1,1,1970,2026,1,1,,0,,,3,24,2,3/24/26 1:00, +1,1,1971,2026,1,1,,0,,,3,24,3,3/24/26 2:00, +1,1,1972,2026,1,1,,0,,,3,24,4,3/24/26 3:00, +1,1,1973,2026,1,1,,0,,,3,24,5,3/24/26 4:00, +1,1,1974,2026,1,1,,0,,,3,24,6,3/24/26 5:00, +1,1,1975,2026,1,1,,0,,,3,24,7,3/24/26 6:00, +1,1,1976,2026,1,1,,0,,,3,24,8,3/24/26 7:00, +1,1,1977,2026,1,1,,0,,,3,24,9,3/24/26 8:00, +1,1,1978,2026,1,1,,0,,,3,24,10,3/24/26 9:00, +1,1,1979,2026,1,1,,0,,,3,24,11,3/24/26 10:00, +1,1,1980,2026,1,1,,0,,,3,24,12,3/24/26 11:00, +1,1,1981,2026,1,1,,0,,,3,24,13,3/24/26 12:00, +1,1,1982,2026,1,1,,0,,,3,24,14,3/24/26 13:00, +1,1,1983,2026,1,1,,0,,,3,24,15,3/24/26 14:00, +1,1,1984,2026,1,1,,0,,,3,24,16,3/24/26 15:00, +1,1,1985,2026,1,1,,0,,,3,24,17,3/24/26 16:00, +1,1,1986,2026,1,1,,0,,,3,24,18,3/24/26 17:00, +1,1,1987,2026,1,1,,0,,,3,24,19,3/24/26 18:00, +1,1,1988,2026,1,1,,0,,,3,24,20,3/24/26 19:00, +1,1,1989,2026,1,1,,0,,,3,24,21,3/24/26 20:00, +1,1,1990,2026,1,1,,0,,,3,24,22,3/24/26 21:00, +1,1,1991,2026,1,1,,0,,,3,24,23,3/24/26 22:00, +1,1,1992,2026,1,1,,0,,,3,24,24,3/24/26 23:00, +1,1,1993,2026,1,1,,0,,,3,25,1,3/25/26 0:00, +1,1,1994,2026,1,1,,0,,,3,25,2,3/25/26 1:00, +1,1,1995,2026,1,1,,0,,,3,25,3,3/25/26 2:00, +1,1,1996,2026,1,1,,0,,,3,25,4,3/25/26 3:00, +1,1,1997,2026,1,1,,0,,,3,25,5,3/25/26 4:00, +1,1,1998,2026,1,1,,0,,,3,25,6,3/25/26 5:00, +1,1,1999,2026,1,1,,0,,,3,25,7,3/25/26 6:00, +1,1,2000,2026,1,1,,0,,,3,25,8,3/25/26 7:00, +1,1,2001,2026,1,1,,0,,,3,25,9,3/25/26 8:00, +1,1,2002,2026,1,1,,0,,,3,25,10,3/25/26 9:00, +1,1,2003,2026,1,1,,0,,,3,25,11,3/25/26 10:00, +1,1,2004,2026,1,1,,0,,,3,25,12,3/25/26 11:00, +1,1,2005,2026,1,1,,0,,,3,25,13,3/25/26 12:00, +1,1,2006,2026,1,1,,0,,,3,25,14,3/25/26 13:00, +1,1,2007,2026,1,1,,0,,,3,25,15,3/25/26 14:00, +1,1,2008,2026,1,1,,0,,,3,25,16,3/25/26 15:00, +1,1,2009,2026,1,1,,0,,,3,25,17,3/25/26 16:00, +1,1,2010,2026,1,1,,0,,,3,25,18,3/25/26 17:00, +1,1,2011,2026,1,1,,0,,,3,25,19,3/25/26 18:00, +1,1,2012,2026,1,1,,0,,,3,25,20,3/25/26 19:00, +1,1,2013,2026,1,1,,0,,,3,25,21,3/25/26 20:00, +1,1,2014,2026,1,1,,0,,,3,25,22,3/25/26 21:00, +1,1,2015,2026,1,1,,0,,,3,25,23,3/25/26 22:00, +1,1,2016,2026,1,1,,0,,,3,25,24,3/25/26 23:00, +1,1,2017,2026,1,1,,0,,,3,26,1,3/26/26 0:00, +1,1,2018,2026,1,1,,0,,,3,26,2,3/26/26 1:00, +1,1,2019,2026,1,1,,0,,,3,26,3,3/26/26 2:00, +1,1,2020,2026,1,1,,0,,,3,26,4,3/26/26 3:00, +1,1,2021,2026,1,1,,0,,,3,26,5,3/26/26 4:00, +1,1,2022,2026,1,1,,0,,,3,26,6,3/26/26 5:00, +1,1,2023,2026,1,1,,0,,,3,26,7,3/26/26 6:00, +1,1,2024,2026,1,1,,0,,,3,26,8,3/26/26 7:00, +1,1,2025,2026,1,1,,0,,,3,26,9,3/26/26 8:00, +1,1,2026,2026,1,1,,0,,,3,26,10,3/26/26 9:00, +1,1,2027,2026,1,1,,0,,,3,26,11,3/26/26 10:00, +1,1,2028,2026,1,1,,0,,,3,26,12,3/26/26 11:00, +1,1,2029,2026,1,1,,0,,,3,26,13,3/26/26 12:00, +1,1,2030,2026,1,1,,0,,,3,26,14,3/26/26 13:00, +1,1,2031,2026,1,1,,0,,,3,26,15,3/26/26 14:00, +1,1,2032,2026,1,1,,0,,,3,26,16,3/26/26 15:00, +1,1,2033,2026,1,1,,0,,,3,26,17,3/26/26 16:00, +1,1,2034,2026,1,1,,0,,,3,26,18,3/26/26 17:00, +1,1,2035,2026,1,1,,0,,,3,26,19,3/26/26 18:00, +1,1,2036,2026,1,1,,0,,,3,26,20,3/26/26 19:00, +1,1,2037,2026,1,1,,0,,,3,26,21,3/26/26 20:00, +1,1,2038,2026,1,1,,0,,,3,26,22,3/26/26 21:00, +1,1,2039,2026,1,1,,0,,,3,26,23,3/26/26 22:00, +1,1,2040,2026,1,1,,0,,,3,26,24,3/26/26 23:00, +1,1,2041,2026,1,1,,0,,,3,27,1,3/27/26 0:00, +1,1,2042,2026,1,1,,0,,,3,27,2,3/27/26 1:00, +1,1,2043,2026,1,1,,0,,,3,27,3,3/27/26 2:00, +1,1,2044,2026,1,1,,0,,,3,27,4,3/27/26 3:00, +1,1,2045,2026,1,1,,0,,,3,27,5,3/27/26 4:00, +1,1,2046,2026,1,1,,0,,,3,27,6,3/27/26 5:00, +1,1,2047,2026,1,1,,0,,,3,27,7,3/27/26 6:00, +1,1,2048,2026,1,1,,0,,,3,27,8,3/27/26 7:00, +1,1,2049,2026,1,1,,0,,,3,27,9,3/27/26 8:00, +1,1,2050,2026,1,1,,0,,,3,27,10,3/27/26 9:00, +1,1,2051,2026,1,1,,0,,,3,27,11,3/27/26 10:00, +1,1,2052,2026,1,1,,0,,,3,27,12,3/27/26 11:00, +1,1,2053,2026,1,1,,0,,,3,27,13,3/27/26 12:00, +1,1,2054,2026,1,1,,0,,,3,27,14,3/27/26 13:00, +1,1,2055,2026,1,1,,0,,,3,27,15,3/27/26 14:00, +1,1,2056,2026,1,1,,0,,,3,27,16,3/27/26 15:00, +1,1,2057,2026,1,1,,0,,,3,27,17,3/27/26 16:00, +1,1,2058,2026,1,1,,0,,,3,27,18,3/27/26 17:00, +1,1,2059,2026,1,1,,0,,,3,27,19,3/27/26 18:00, +1,1,2060,2026,1,1,,0,,,3,27,20,3/27/26 19:00, +1,1,2061,2026,1,1,,0,,,3,27,21,3/27/26 20:00, +1,1,2062,2026,1,1,,0,,,3,27,22,3/27/26 21:00, +1,1,2063,2026,1,1,,0,,,3,27,23,3/27/26 22:00, +1,1,2064,2026,1,1,,0,,,3,27,24,3/27/26 23:00, +1,1,2065,2026,1,1,,0,,,3,28,1,3/28/26 0:00, +1,1,2066,2026,1,1,,0,,,3,28,2,3/28/26 1:00, +1,1,2067,2026,1,1,,0,,,3,28,3,3/28/26 2:00, +1,1,2068,2026,1,1,,0,,,3,28,4,3/28/26 3:00, +1,1,2069,2026,1,1,,0,,,3,28,5,3/28/26 4:00, +1,1,2070,2026,1,1,,0,,,3,28,6,3/28/26 5:00, +1,1,2071,2026,1,1,,0,,,3,28,7,3/28/26 6:00, +1,1,2072,2026,1,1,,0,,,3,28,8,3/28/26 7:00, +1,1,2073,2026,1,1,,0,,,3,28,9,3/28/26 8:00, +1,1,2074,2026,1,1,,0,,,3,28,10,3/28/26 9:00, +1,1,2075,2026,1,1,,0,,,3,28,11,3/28/26 10:00, +1,1,2076,2026,1,1,,0,,,3,28,12,3/28/26 11:00, +1,1,2077,2026,1,1,,0,,,3,28,13,3/28/26 12:00, +1,1,2078,2026,1,1,,0,,,3,28,14,3/28/26 13:00, +1,1,2079,2026,1,1,,0,,,3,28,15,3/28/26 14:00, +1,1,2080,2026,1,1,,0,,,3,28,16,3/28/26 15:00, +1,1,2081,2026,1,1,,0,,,3,28,17,3/28/26 16:00, +1,1,2082,2026,1,1,,0,,,3,28,18,3/28/26 17:00, +1,1,2083,2026,1,1,,0,,,3,28,19,3/28/26 18:00, +1,1,2084,2026,1,1,,0,,,3,28,20,3/28/26 19:00, +1,1,2085,2026,1,1,,0,,,3,28,21,3/28/26 20:00, +1,1,2086,2026,1,1,,0,,,3,28,22,3/28/26 21:00, +1,1,2087,2026,1,1,,0,,,3,28,23,3/28/26 22:00, +1,1,2088,2026,1,1,,0,,,3,28,24,3/28/26 23:00, +1,1,2089,2026,1,1,,0,,,3,29,1,3/29/26 0:00, +1,1,2090,2026,1,1,,0,,,3,29,2,3/29/26 1:00, +1,1,2091,2026,1,1,,0,,,3,29,3,3/29/26 2:00, +1,1,2092,2026,1,1,,0,,,3,29,4,3/29/26 3:00, +1,1,2093,2026,1,1,,0,,,3,29,5,3/29/26 4:00, +1,1,2094,2026,1,1,,0,,,3,29,6,3/29/26 5:00, +1,1,2095,2026,1,1,,0,,,3,29,7,3/29/26 6:00, +1,1,2096,2026,1,1,,0,,,3,29,8,3/29/26 7:00, +1,1,2097,2026,1,1,,0,,,3,29,9,3/29/26 8:00, +1,1,2098,2026,1,1,,0,,,3,29,10,3/29/26 9:00, +1,1,2099,2026,1,1,,0,,,3,29,11,3/29/26 10:00, +1,1,2100,2026,1,1,,0,,,3,29,12,3/29/26 11:00, +1,1,2101,2026,1,1,,0,,,3,29,13,3/29/26 12:00, +1,1,2102,2026,1,1,,0,,,3,29,14,3/29/26 13:00, +1,1,2103,2026,1,1,,0,,,3,29,15,3/29/26 14:00, +1,1,2104,2026,1,1,,0,,,3,29,16,3/29/26 15:00, +1,1,2105,2026,1,1,,0,,,3,29,17,3/29/26 16:00, +1,1,2106,2026,1,1,,0,,,3,29,18,3/29/26 17:00, +1,1,2107,2026,1,1,,0,,,3,29,19,3/29/26 18:00, +1,1,2108,2026,1,1,,0,,,3,29,20,3/29/26 19:00, +1,1,2109,2026,1,1,,0,,,3,29,21,3/29/26 20:00, +1,1,2110,2026,1,1,,0,,,3,29,22,3/29/26 21:00, +1,1,2111,2026,1,1,,0,,,3,29,23,3/29/26 22:00, +1,1,2112,2026,1,1,,0,,,3,29,24,3/29/26 23:00, +1,1,2113,2026,1,1,,0,,,3,30,1,3/30/26 0:00, +1,1,2114,2026,1,1,,0,,,3,30,2,3/30/26 1:00, +1,1,2115,2026,1,1,,0,,,3,30,3,3/30/26 2:00, +1,1,2116,2026,1,1,,0,,,3,30,4,3/30/26 3:00, +1,1,2117,2026,1,1,,0,,,3,30,5,3/30/26 4:00, +1,1,2118,2026,1,1,,0,,,3,30,6,3/30/26 5:00, +1,1,2119,2026,1,1,,0,,,3,30,7,3/30/26 6:00, +1,1,2120,2026,1,1,,0,,,3,30,8,3/30/26 7:00, +1,1,2121,2026,1,1,,0,,,3,30,9,3/30/26 8:00, +1,1,2122,2026,1,1,,0,,,3,30,10,3/30/26 9:00, +1,1,2123,2026,1,1,,0,,,3,30,11,3/30/26 10:00, +1,1,2124,2026,1,1,,0,,,3,30,12,3/30/26 11:00, +1,1,2125,2026,1,1,,0,,,3,30,13,3/30/26 12:00, +1,1,2126,2026,1,1,,0,,,3,30,14,3/30/26 13:00, +1,1,2127,2026,1,1,,0,,,3,30,15,3/30/26 14:00, +1,1,2128,2026,1,1,,0,,,3,30,16,3/30/26 15:00, +1,1,2129,2026,1,1,,0,,,3,30,17,3/30/26 16:00, +1,1,2130,2026,1,1,,0,,,3,30,18,3/30/26 17:00, +1,1,2131,2026,1,1,,0,,,3,30,19,3/30/26 18:00, +1,1,2132,2026,1,1,,0,,,3,30,20,3/30/26 19:00, +1,1,2133,2026,1,1,,0,,,3,30,21,3/30/26 20:00, +1,1,2134,2026,1,1,,0,,,3,30,22,3/30/26 21:00, +1,1,2135,2026,1,1,,0,,,3,30,23,3/30/26 22:00, +1,1,2136,2026,1,1,,0,,,3,30,24,3/30/26 23:00, +1,1,2137,2026,1,1,,0,,,3,31,1,3/31/26 0:00, +1,1,2138,2026,1,1,,0,,,3,31,2,3/31/26 1:00, +1,1,2139,2026,1,1,,0,,,3,31,3,3/31/26 2:00, +1,1,2140,2026,1,1,,0,,,3,31,4,3/31/26 3:00, +1,1,2141,2026,1,1,,0,,,3,31,5,3/31/26 4:00, +1,1,2142,2026,1,1,,0,,,3,31,6,3/31/26 5:00, +1,1,2143,2026,1,1,,0,,,3,31,7,3/31/26 6:00, +1,1,2144,2026,1,1,,0,,,3,31,8,3/31/26 7:00, +1,1,2145,2026,1,1,,0,,,3,31,9,3/31/26 8:00, +1,1,2146,2026,1,1,,0,,,3,31,10,3/31/26 9:00, +1,1,2147,2026,1,1,,0,,,3,31,11,3/31/26 10:00, +1,1,2148,2026,1,1,,0,,,3,31,12,3/31/26 11:00, +1,1,2149,2026,1,1,,0,,,3,31,13,3/31/26 12:00, +1,1,2150,2026,1,1,,0,,,3,31,14,3/31/26 13:00, +1,1,2151,2026,1,1,,0,,,3,31,15,3/31/26 14:00, +1,1,2152,2026,1,1,,0,,,3,31,16,3/31/26 15:00, +1,1,2153,2026,1,1,,0,,,3,31,17,3/31/26 16:00, +1,1,2154,2026,1,1,,0,,,3,31,18,3/31/26 17:00, +1,1,2155,2026,1,1,,0,,,3,31,19,3/31/26 18:00, +1,1,2156,2026,1,1,,0,,,3,31,20,3/31/26 19:00, +1,1,2157,2026,1,1,,0,,,3,31,21,3/31/26 20:00, +1,1,2158,2026,1,1,,0,,,3,31,22,3/31/26 21:00, +1,1,2159,2026,1,1,,0,,,3,31,23,3/31/26 22:00, +1,1,2160,2026,1,1,,0,,,3,31,24,3/31/26 23:00, +1,1,2161,2026,1,1,,0,,,4,1,1,4/1/26 0:00, +1,1,2162,2026,1,1,,0,,,4,1,2,4/1/26 1:00, +1,1,2163,2026,1,1,,0,,,4,1,3,4/1/26 2:00, +1,1,2164,2026,1,1,,0,,,4,1,4,4/1/26 3:00, +1,1,2165,2026,1,1,,0,,,4,1,5,4/1/26 4:00, +1,1,2166,2026,1,1,,0,,,4,1,6,4/1/26 5:00, +1,1,2167,2026,1,1,,0,,,4,1,7,4/1/26 6:00, +1,1,2168,2026,1,1,,0,,,4,1,8,4/1/26 7:00, +1,1,2169,2026,1,1,,0,,,4,1,9,4/1/26 8:00, +1,1,2170,2026,1,1,,0,,,4,1,10,4/1/26 9:00, +1,1,2171,2026,1,1,,0,,,4,1,11,4/1/26 10:00, +1,1,2172,2026,1,1,,0,,,4,1,12,4/1/26 11:00, +1,1,2173,2026,1,1,,0,,,4,1,13,4/1/26 12:00, +1,1,2174,2026,1,1,,0,,,4,1,14,4/1/26 13:00, +1,1,2175,2026,1,1,,0,,,4,1,15,4/1/26 14:00, +1,1,2176,2026,1,1,,0,,,4,1,16,4/1/26 15:00, +1,1,2177,2026,1,1,,0,,,4,1,17,4/1/26 16:00, +1,1,2178,2026,1,1,,0,,,4,1,18,4/1/26 17:00, +1,1,2179,2026,1,1,,0,,,4,1,19,4/1/26 18:00, +1,1,2180,2026,1,1,,0,,,4,1,20,4/1/26 19:00, +1,1,2181,2026,1,1,,0,,,4,1,21,4/1/26 20:00, +1,1,2182,2026,1,1,,0,,,4,1,22,4/1/26 21:00, +1,1,2183,2026,1,1,,0,,,4,1,23,4/1/26 22:00, +1,1,2184,2026,1,1,,0,,,4,1,24,4/1/26 23:00, +1,1,2185,2026,1,1,,0,,,4,2,1,4/2/26 0:00, +1,1,2186,2026,1,1,,0,,,4,2,2,4/2/26 1:00, +1,1,2187,2026,1,1,,0,,,4,2,3,4/2/26 2:00, +1,1,2188,2026,1,1,,0,,,4,2,4,4/2/26 3:00, +1,1,2189,2026,1,1,,0,,,4,2,5,4/2/26 4:00, +1,1,2190,2026,1,1,,0,,,4,2,6,4/2/26 5:00, +1,1,2191,2026,1,1,,0,,,4,2,7,4/2/26 6:00, +1,1,2192,2026,1,1,,0,,,4,2,8,4/2/26 7:00, +1,1,2193,2026,1,1,,0,,,4,2,9,4/2/26 8:00, +1,1,2194,2026,1,1,,0,,,4,2,10,4/2/26 9:00, +1,1,2195,2026,1,1,,0,,,4,2,11,4/2/26 10:00, +1,1,2196,2026,1,1,,0,,,4,2,12,4/2/26 11:00, +1,1,2197,2026,1,1,,0,,,4,2,13,4/2/26 12:00, +1,1,2198,2026,1,1,,0,,,4,2,14,4/2/26 13:00, +1,1,2199,2026,1,1,,0,,,4,2,15,4/2/26 14:00, +1,1,2200,2026,1,1,,0,,,4,2,16,4/2/26 15:00, +1,1,2201,2026,1,1,,0,,,4,2,17,4/2/26 16:00, +1,1,2202,2026,1,1,,0,,,4,2,18,4/2/26 17:00, +1,1,2203,2026,1,1,,0,,,4,2,19,4/2/26 18:00, +1,1,2204,2026,1,1,,0,,,4,2,20,4/2/26 19:00, +1,1,2205,2026,1,1,,0,,,4,2,21,4/2/26 20:00, +1,1,2206,2026,1,1,,0,,,4,2,22,4/2/26 21:00, +1,1,2207,2026,1,1,,0,,,4,2,23,4/2/26 22:00, +1,1,2208,2026,1,1,,0,,,4,2,24,4/2/26 23:00, +1,1,2209,2026,1,1,,0,,,4,3,1,4/3/26 0:00, +1,1,2210,2026,1,1,,0,,,4,3,2,4/3/26 1:00, +1,1,2211,2026,1,1,,0,,,4,3,3,4/3/26 2:00, +1,1,2212,2026,1,1,,0,,,4,3,4,4/3/26 3:00, +1,1,2213,2026,1,1,,0,,,4,3,5,4/3/26 4:00, +1,1,2214,2026,1,1,,0,,,4,3,6,4/3/26 5:00, +1,1,2215,2026,1,1,,0,,,4,3,7,4/3/26 6:00, +1,1,2216,2026,1,1,,0,,,4,3,8,4/3/26 7:00, +1,1,2217,2026,1,1,,0,,,4,3,9,4/3/26 8:00, +1,1,2218,2026,1,1,,0,,,4,3,10,4/3/26 9:00, +1,1,2219,2026,1,1,,0,,,4,3,11,4/3/26 10:00, +1,1,2220,2026,1,1,,0,,,4,3,12,4/3/26 11:00, +1,1,2221,2026,1,1,,0,,,4,3,13,4/3/26 12:00, +1,1,2222,2026,1,1,,0,,,4,3,14,4/3/26 13:00, +1,1,2223,2026,1,1,,0,,,4,3,15,4/3/26 14:00, +1,1,2224,2026,1,1,,0,,,4,3,16,4/3/26 15:00, +1,1,2225,2026,1,1,,0,,,4,3,17,4/3/26 16:00, +1,1,2226,2026,1,1,,0,,,4,3,18,4/3/26 17:00, +1,1,2227,2026,1,1,,0,,,4,3,19,4/3/26 18:00, +1,1,2228,2026,1,1,,0,,,4,3,20,4/3/26 19:00, +1,1,2229,2026,1,1,,0,,,4,3,21,4/3/26 20:00, +1,1,2230,2026,1,1,,0,,,4,3,22,4/3/26 21:00, +1,1,2231,2026,1,1,,0,,,4,3,23,4/3/26 22:00, +1,1,2232,2026,1,1,,0,,,4,3,24,4/3/26 23:00, +1,1,2233,2026,1,1,,0,,,4,4,1,4/4/26 0:00, +1,1,2234,2026,1,1,,0,,,4,4,2,4/4/26 1:00, +1,1,2235,2026,1,1,,0,,,4,4,3,4/4/26 2:00, +1,1,2236,2026,1,1,,0,,,4,4,4,4/4/26 3:00, +1,1,2237,2026,1,1,,0,,,4,4,5,4/4/26 4:00, +1,1,2238,2026,1,1,,0,,,4,4,6,4/4/26 5:00, +1,1,2239,2026,1,1,,0,,,4,4,7,4/4/26 6:00, +1,1,2240,2026,1,1,,0,,,4,4,8,4/4/26 7:00, +1,1,2241,2026,1,1,,0,,,4,4,9,4/4/26 8:00, +1,1,2242,2026,1,1,,0,,,4,4,10,4/4/26 9:00, +1,1,2243,2026,1,1,,0,,,4,4,11,4/4/26 10:00, +1,1,2244,2026,1,1,,0,,,4,4,12,4/4/26 11:00, +1,1,2245,2026,1,1,,0,,,4,4,13,4/4/26 12:00, +1,1,2246,2026,1,1,,0,,,4,4,14,4/4/26 13:00, +1,1,2247,2026,1,1,,0,,,4,4,15,4/4/26 14:00, +1,1,2248,2026,1,1,,0,,,4,4,16,4/4/26 15:00, +1,1,2249,2026,1,1,,0,,,4,4,17,4/4/26 16:00, +1,1,2250,2026,1,1,,0,,,4,4,18,4/4/26 17:00, +1,1,2251,2026,1,1,,0,,,4,4,19,4/4/26 18:00, +1,1,2252,2026,1,1,,0,,,4,4,20,4/4/26 19:00, +1,1,2253,2026,1,1,,0,,,4,4,21,4/4/26 20:00, +1,1,2254,2026,1,1,,0,,,4,4,22,4/4/26 21:00, +1,1,2255,2026,1,1,,0,,,4,4,23,4/4/26 22:00, +1,1,2256,2026,1,1,,0,,,4,4,24,4/4/26 23:00, +1,1,2257,2026,1,1,,0,,,4,5,1,4/5/26 0:00, +1,1,2258,2026,1,1,,0,,,4,5,2,4/5/26 1:00, +1,1,2259,2026,1,1,,0,,,4,5,3,4/5/26 2:00, +1,1,2260,2026,1,1,,0,,,4,5,4,4/5/26 3:00, +1,1,2261,2026,1,1,,0,,,4,5,5,4/5/26 4:00, +1,1,2262,2026,1,1,,0,,,4,5,6,4/5/26 5:00, +1,1,2263,2026,1,1,,0,,,4,5,7,4/5/26 6:00, +1,1,2264,2026,1,1,,0,,,4,5,8,4/5/26 7:00, +1,1,2265,2026,1,1,,0,,,4,5,9,4/5/26 8:00, +1,1,2266,2026,1,1,,0,,,4,5,10,4/5/26 9:00, +1,1,2267,2026,1,1,,0,,,4,5,11,4/5/26 10:00, +1,1,2268,2026,1,1,,0,,,4,5,12,4/5/26 11:00, +1,1,2269,2026,1,1,,0,,,4,5,13,4/5/26 12:00, +1,1,2270,2026,1,1,,0,,,4,5,14,4/5/26 13:00, +1,1,2271,2026,1,1,,0,,,4,5,15,4/5/26 14:00, +1,1,2272,2026,1,1,,0,,,4,5,16,4/5/26 15:00, +1,1,2273,2026,1,1,,0,,,4,5,17,4/5/26 16:00, +1,1,2274,2026,1,1,,0,,,4,5,18,4/5/26 17:00, +1,1,2275,2026,1,1,,0,,,4,5,19,4/5/26 18:00, +1,1,2276,2026,1,1,,0,,,4,5,20,4/5/26 19:00, +1,1,2277,2026,1,1,,0,,,4,5,21,4/5/26 20:00, +1,1,2278,2026,1,1,,0,,,4,5,22,4/5/26 21:00, +1,1,2279,2026,1,1,,0,,,4,5,23,4/5/26 22:00, +1,1,2280,2026,1,1,,0,,,4,5,24,4/5/26 23:00, +1,1,2281,2026,1,1,,0,,,4,6,1,4/6/26 0:00, +1,1,2282,2026,1,1,,0,,,4,6,2,4/6/26 1:00, +1,1,2283,2026,1,1,,0,,,4,6,3,4/6/26 2:00, +1,1,2284,2026,1,1,,0,,,4,6,4,4/6/26 3:00, +1,1,2285,2026,1,1,,0,,,4,6,5,4/6/26 4:00, +1,1,2286,2026,1,1,,0,,,4,6,6,4/6/26 5:00, +1,1,2287,2026,1,1,,0,,,4,6,7,4/6/26 6:00, +1,1,2288,2026,1,1,,0,,,4,6,8,4/6/26 7:00, +1,1,2289,2026,1,1,,0,,,4,6,9,4/6/26 8:00, +1,1,2290,2026,1,1,,0,,,4,6,10,4/6/26 9:00, +1,1,2291,2026,1,1,,0,,,4,6,11,4/6/26 10:00, +1,1,2292,2026,1,1,,0,,,4,6,12,4/6/26 11:00, +1,1,2293,2026,1,1,,0,,,4,6,13,4/6/26 12:00, +1,1,2294,2026,1,1,,0,,,4,6,14,4/6/26 13:00, +1,1,2295,2026,1,1,,0,,,4,6,15,4/6/26 14:00, +1,1,2296,2026,1,1,,0,,,4,6,16,4/6/26 15:00, +1,1,2297,2026,1,1,,0,,,4,6,17,4/6/26 16:00, +1,1,2298,2026,1,1,,0,,,4,6,18,4/6/26 17:00, +1,1,2299,2026,1,1,,0,,,4,6,19,4/6/26 18:00, +1,1,2300,2026,1,1,,0,,,4,6,20,4/6/26 19:00, +1,1,2301,2026,1,1,,0,,,4,6,21,4/6/26 20:00, +1,1,2302,2026,1,1,,0,,,4,6,22,4/6/26 21:00, +1,1,2303,2026,1,1,,0,,,4,6,23,4/6/26 22:00, +1,1,2304,2026,1,1,,0,,,4,6,24,4/6/26 23:00, +1,1,2305,2026,1,1,,0,,,4,7,1,4/7/26 0:00, +1,1,2306,2026,1,1,,0,,,4,7,2,4/7/26 1:00, +1,1,2307,2026,1,1,,0,,,4,7,3,4/7/26 2:00, +1,1,2308,2026,1,1,,0,,,4,7,4,4/7/26 3:00, +1,1,2309,2026,1,1,,0,,,4,7,5,4/7/26 4:00, +1,1,2310,2026,1,1,,0,,,4,7,6,4/7/26 5:00, +1,1,2311,2026,1,1,,0,,,4,7,7,4/7/26 6:00, +1,1,2312,2026,1,1,,0,,,4,7,8,4/7/26 7:00, +1,1,2313,2026,1,1,,0,,,4,7,9,4/7/26 8:00, +1,1,2314,2026,1,1,,0,,,4,7,10,4/7/26 9:00, +1,1,2315,2026,1,1,,0,,,4,7,11,4/7/26 10:00, +1,1,2316,2026,1,1,,0,,,4,7,12,4/7/26 11:00, +1,1,2317,2026,1,1,,0,,,4,7,13,4/7/26 12:00, +1,1,2318,2026,1,1,,0,,,4,7,14,4/7/26 13:00, +1,1,2319,2026,1,1,,0,,,4,7,15,4/7/26 14:00, +1,1,2320,2026,1,1,,0,,,4,7,16,4/7/26 15:00, +1,1,2321,2026,1,1,,0,,,4,7,17,4/7/26 16:00, +1,1,2322,2026,1,1,,0,,,4,7,18,4/7/26 17:00, +1,1,2323,2026,1,1,,0,,,4,7,19,4/7/26 18:00, +1,1,2324,2026,1,1,,0,,,4,7,20,4/7/26 19:00, +1,1,2325,2026,1,1,,0,,,4,7,21,4/7/26 20:00, +1,1,2326,2026,1,1,,0,,,4,7,22,4/7/26 21:00, +1,1,2327,2026,1,1,,0,,,4,7,23,4/7/26 22:00, +1,1,2328,2026,1,1,,0,,,4,7,24,4/7/26 23:00, +1,1,2329,2026,1,1,,0,,,4,8,1,4/8/26 0:00, +1,1,2330,2026,1,1,,0,,,4,8,2,4/8/26 1:00, +1,1,2331,2026,1,1,,0,,,4,8,3,4/8/26 2:00, +1,1,2332,2026,1,1,,0,,,4,8,4,4/8/26 3:00, +1,1,2333,2026,1,1,,0,,,4,8,5,4/8/26 4:00, +1,1,2334,2026,1,1,,0,,,4,8,6,4/8/26 5:00, +1,1,2335,2026,1,1,,0,,,4,8,7,4/8/26 6:00, +1,1,2336,2026,1,1,,0,,,4,8,8,4/8/26 7:00, +1,1,2337,2026,1,1,,0,,,4,8,9,4/8/26 8:00, +1,1,2338,2026,1,1,,0,,,4,8,10,4/8/26 9:00, +1,1,2339,2026,1,1,,0,,,4,8,11,4/8/26 10:00, +1,1,2340,2026,1,1,,0,,,4,8,12,4/8/26 11:00, +1,1,2341,2026,1,1,,0,,,4,8,13,4/8/26 12:00, +1,1,2342,2026,1,1,,0,,,4,8,14,4/8/26 13:00, +1,1,2343,2026,1,1,,0,,,4,8,15,4/8/26 14:00, +1,1,2344,2026,1,1,,0,,,4,8,16,4/8/26 15:00, +1,1,2345,2026,1,1,,0,,,4,8,17,4/8/26 16:00, +1,1,2346,2026,1,1,,0,,,4,8,18,4/8/26 17:00, +1,1,2347,2026,1,1,,0,,,4,8,19,4/8/26 18:00, +1,1,2348,2026,1,1,,0,,,4,8,20,4/8/26 19:00, +1,1,2349,2026,1,1,,0,,,4,8,21,4/8/26 20:00, +1,1,2350,2026,1,1,,0,,,4,8,22,4/8/26 21:00, +1,1,2351,2026,1,1,,0,,,4,8,23,4/8/26 22:00, +1,1,2352,2026,1,1,,0,,,4,8,24,4/8/26 23:00, +1,1,2353,2026,1,1,,0,,,4,9,1,4/9/26 0:00, +1,1,2354,2026,1,1,,0,,,4,9,2,4/9/26 1:00, +1,1,2355,2026,1,1,,0,,,4,9,3,4/9/26 2:00, +1,1,2356,2026,1,1,,0,,,4,9,4,4/9/26 3:00, +1,1,2357,2026,1,1,,0,,,4,9,5,4/9/26 4:00, +1,1,2358,2026,1,1,,0,,,4,9,6,4/9/26 5:00, +1,1,2359,2026,1,1,,0,,,4,9,7,4/9/26 6:00, +1,1,2360,2026,1,1,,0,,,4,9,8,4/9/26 7:00, +1,1,2361,2026,1,1,,0,,,4,9,9,4/9/26 8:00, +1,1,2362,2026,1,1,,0,,,4,9,10,4/9/26 9:00, +1,1,2363,2026,1,1,,0,,,4,9,11,4/9/26 10:00, +1,1,2364,2026,1,1,,0,,,4,9,12,4/9/26 11:00, +1,1,2365,2026,1,1,,0,,,4,9,13,4/9/26 12:00, +1,1,2366,2026,1,1,,0,,,4,9,14,4/9/26 13:00, +1,1,2367,2026,1,1,,0,,,4,9,15,4/9/26 14:00, +1,1,2368,2026,1,1,,0,,,4,9,16,4/9/26 15:00, +1,1,2369,2026,1,1,,0,,,4,9,17,4/9/26 16:00, +1,1,2370,2026,1,1,,0,,,4,9,18,4/9/26 17:00, +1,1,2371,2026,1,1,,0,,,4,9,19,4/9/26 18:00, +1,1,2372,2026,1,1,,0,,,4,9,20,4/9/26 19:00, +1,1,2373,2026,1,1,,0,,,4,9,21,4/9/26 20:00, +1,1,2374,2026,1,1,,0,,,4,9,22,4/9/26 21:00, +1,1,2375,2026,1,1,,0,,,4,9,23,4/9/26 22:00, +1,1,2376,2026,1,1,,0,,,4,9,24,4/9/26 23:00, +1,1,2377,2026,1,1,,0,,,4,10,1,4/10/26 0:00, +1,1,2378,2026,1,1,,0,,,4,10,2,4/10/26 1:00, +1,1,2379,2026,1,1,,0,,,4,10,3,4/10/26 2:00, +1,1,2380,2026,1,1,,0,,,4,10,4,4/10/26 3:00, +1,1,2381,2026,1,1,,0,,,4,10,5,4/10/26 4:00, +1,1,2382,2026,1,1,,0,,,4,10,6,4/10/26 5:00, +1,1,2383,2026,1,1,,0,,,4,10,7,4/10/26 6:00, +1,1,2384,2026,1,1,,0,,,4,10,8,4/10/26 7:00, +1,1,2385,2026,1,1,,0,,,4,10,9,4/10/26 8:00, +1,1,2386,2026,1,1,,0,,,4,10,10,4/10/26 9:00, +1,1,2387,2026,1,1,,0,,,4,10,11,4/10/26 10:00, +1,1,2388,2026,1,1,,0,,,4,10,12,4/10/26 11:00, +1,1,2389,2026,1,1,,0,,,4,10,13,4/10/26 12:00, +1,1,2390,2026,1,1,,0,,,4,10,14,4/10/26 13:00, +1,1,2391,2026,1,1,,0,,,4,10,15,4/10/26 14:00, +1,1,2392,2026,1,1,,0,,,4,10,16,4/10/26 15:00, +1,1,2393,2026,1,1,,0,,,4,10,17,4/10/26 16:00, +1,1,2394,2026,1,1,,0,,,4,10,18,4/10/26 17:00, +1,1,2395,2026,1,1,,0,,,4,10,19,4/10/26 18:00, +1,1,2396,2026,1,1,,0,,,4,10,20,4/10/26 19:00, +1,1,2397,2026,1,1,,0,,,4,10,21,4/10/26 20:00, +1,1,2398,2026,1,1,,0,,,4,10,22,4/10/26 21:00, +1,1,2399,2026,1,1,,0,,,4,10,23,4/10/26 22:00, +1,1,2400,2026,1,1,,0,,,4,10,24,4/10/26 23:00, +1,1,2401,2026,1,1,,0,,,4,11,1,4/11/26 0:00, +1,1,2402,2026,1,1,,0,,,4,11,2,4/11/26 1:00, +1,1,2403,2026,1,1,,0,,,4,11,3,4/11/26 2:00, +1,1,2404,2026,1,1,,0,,,4,11,4,4/11/26 3:00, +1,1,2405,2026,1,1,,0,,,4,11,5,4/11/26 4:00, +1,1,2406,2026,1,1,,0,,,4,11,6,4/11/26 5:00, +1,1,2407,2026,1,1,,0,,,4,11,7,4/11/26 6:00, +1,1,2408,2026,1,1,,0,,,4,11,8,4/11/26 7:00, +1,1,2409,2026,1,1,,0,,,4,11,9,4/11/26 8:00, +1,1,2410,2026,1,1,,0,,,4,11,10,4/11/26 9:00, +1,1,2411,2026,1,1,,0,,,4,11,11,4/11/26 10:00, +1,1,2412,2026,1,1,,0,,,4,11,12,4/11/26 11:00, +1,1,2413,2026,1,1,,0,,,4,11,13,4/11/26 12:00, +1,1,2414,2026,1,1,,0,,,4,11,14,4/11/26 13:00, +1,1,2415,2026,1,1,,0,,,4,11,15,4/11/26 14:00, +1,1,2416,2026,1,1,,0,,,4,11,16,4/11/26 15:00, +1,1,2417,2026,1,1,,0,,,4,11,17,4/11/26 16:00, +1,1,2418,2026,1,1,,0,,,4,11,18,4/11/26 17:00, +1,1,2419,2026,1,1,,0,,,4,11,19,4/11/26 18:00, +1,1,2420,2026,1,1,,0,,,4,11,20,4/11/26 19:00, +1,1,2421,2026,1,1,,0,,,4,11,21,4/11/26 20:00, +1,1,2422,2026,1,1,,0,,,4,11,22,4/11/26 21:00, +1,1,2423,2026,1,1,,0,,,4,11,23,4/11/26 22:00, +1,1,2424,2026,1,1,,0,,,4,11,24,4/11/26 23:00, +1,1,2425,2026,1,1,,0,,,4,12,1,4/12/26 0:00, +1,1,2426,2026,1,1,,0,,,4,12,2,4/12/26 1:00, +1,1,2427,2026,1,1,,0,,,4,12,3,4/12/26 2:00, +1,1,2428,2026,1,1,,0,,,4,12,4,4/12/26 3:00, +1,1,2429,2026,1,1,,0,,,4,12,5,4/12/26 4:00, +1,1,2430,2026,1,1,,0,,,4,12,6,4/12/26 5:00, +1,1,2431,2026,1,1,,0,,,4,12,7,4/12/26 6:00, +1,1,2432,2026,1,1,,0,,,4,12,8,4/12/26 7:00, +1,1,2433,2026,1,1,,0,,,4,12,9,4/12/26 8:00, +1,1,2434,2026,1,1,,0,,,4,12,10,4/12/26 9:00, +1,1,2435,2026,1,1,,0,,,4,12,11,4/12/26 10:00, +1,1,2436,2026,1,1,,0,,,4,12,12,4/12/26 11:00, +1,1,2437,2026,1,1,,0,,,4,12,13,4/12/26 12:00, +1,1,2438,2026,1,1,,0,,,4,12,14,4/12/26 13:00, +1,1,2439,2026,1,1,,0,,,4,12,15,4/12/26 14:00, +1,1,2440,2026,1,1,,0,,,4,12,16,4/12/26 15:00, +1,1,2441,2026,1,1,,0,,,4,12,17,4/12/26 16:00, +1,1,2442,2026,1,1,,0,,,4,12,18,4/12/26 17:00, +1,1,2443,2026,1,1,,0,,,4,12,19,4/12/26 18:00, +1,1,2444,2026,1,1,,0,,,4,12,20,4/12/26 19:00, +1,1,2445,2026,1,1,,0,,,4,12,21,4/12/26 20:00, +1,1,2446,2026,1,1,,0,,,4,12,22,4/12/26 21:00, +1,1,2447,2026,1,1,,0,,,4,12,23,4/12/26 22:00, +1,1,2448,2026,1,1,,0,,,4,12,24,4/12/26 23:00, +1,1,2449,2026,1,1,,0,,,4,13,1,4/13/26 0:00, +1,1,2450,2026,1,1,,0,,,4,13,2,4/13/26 1:00, +1,1,2451,2026,1,1,,0,,,4,13,3,4/13/26 2:00, +1,1,2452,2026,1,1,,0,,,4,13,4,4/13/26 3:00, +1,1,2453,2026,1,1,,0,,,4,13,5,4/13/26 4:00, +1,1,2454,2026,1,1,,0,,,4,13,6,4/13/26 5:00, +1,1,2455,2026,1,1,,0,,,4,13,7,4/13/26 6:00, +1,1,2456,2026,1,1,,0,,,4,13,8,4/13/26 7:00, +1,1,2457,2026,1,1,,0,,,4,13,9,4/13/26 8:00, +1,1,2458,2026,1,1,,0,,,4,13,10,4/13/26 9:00, +1,1,2459,2026,1,1,,0,,,4,13,11,4/13/26 10:00, +1,1,2460,2026,1,1,,0,,,4,13,12,4/13/26 11:00, +1,1,2461,2026,1,1,,0,,,4,13,13,4/13/26 12:00, +1,1,2462,2026,1,1,,0,,,4,13,14,4/13/26 13:00, +1,1,2463,2026,1,1,,0,,,4,13,15,4/13/26 14:00, +1,1,2464,2026,1,1,,0,,,4,13,16,4/13/26 15:00, +1,1,2465,2026,1,1,,0,,,4,13,17,4/13/26 16:00, +1,1,2466,2026,1,1,,0,,,4,13,18,4/13/26 17:00, +1,1,2467,2026,1,1,,0,,,4,13,19,4/13/26 18:00, +1,1,2468,2026,1,1,,0,,,4,13,20,4/13/26 19:00, +1,1,2469,2026,1,1,,0,,,4,13,21,4/13/26 20:00, +1,1,2470,2026,1,1,,0,,,4,13,22,4/13/26 21:00, +1,1,2471,2026,1,1,,0,,,4,13,23,4/13/26 22:00, +1,1,2472,2026,1,1,,0,,,4,13,24,4/13/26 23:00, +1,1,2473,2026,1,1,,0,,,4,14,1,4/14/26 0:00, +1,1,2474,2026,1,1,,0,,,4,14,2,4/14/26 1:00, +1,1,2475,2026,1,1,,0,,,4,14,3,4/14/26 2:00, +1,1,2476,2026,1,1,,0,,,4,14,4,4/14/26 3:00, +1,1,2477,2026,1,1,,0,,,4,14,5,4/14/26 4:00, +1,1,2478,2026,1,1,,0,,,4,14,6,4/14/26 5:00, +1,1,2479,2026,1,1,,0,,,4,14,7,4/14/26 6:00, +1,1,2480,2026,1,1,,0,,,4,14,8,4/14/26 7:00, +1,1,2481,2026,1,1,,0,,,4,14,9,4/14/26 8:00, +1,1,2482,2026,1,1,,0,,,4,14,10,4/14/26 9:00, +1,1,2483,2026,1,1,,0,,,4,14,11,4/14/26 10:00, +1,1,2484,2026,1,1,,0,,,4,14,12,4/14/26 11:00, +1,1,2485,2026,1,1,,0,,,4,14,13,4/14/26 12:00, +1,1,2486,2026,1,1,,0,,,4,14,14,4/14/26 13:00, +1,1,2487,2026,1,1,,0,,,4,14,15,4/14/26 14:00, +1,1,2488,2026,1,1,,0,,,4,14,16,4/14/26 15:00, +1,1,2489,2026,1,1,,0,,,4,14,17,4/14/26 16:00, +1,1,2490,2026,1,1,,0,,,4,14,18,4/14/26 17:00, +1,1,2491,2026,1,1,,0,,,4,14,19,4/14/26 18:00, +1,1,2492,2026,1,1,,0,,,4,14,20,4/14/26 19:00, +1,1,2493,2026,1,1,,0,,,4,14,21,4/14/26 20:00, +1,1,2494,2026,1,1,,0,,,4,14,22,4/14/26 21:00, +1,1,2495,2026,1,1,,0,,,4,14,23,4/14/26 22:00, +1,1,2496,2026,1,1,,0,,,4,14,24,4/14/26 23:00, +1,1,2497,2026,1,1,,0,,,4,15,1,4/15/26 0:00, +1,1,2498,2026,1,1,,0,,,4,15,2,4/15/26 1:00, +1,1,2499,2026,1,1,,0,,,4,15,3,4/15/26 2:00, +1,1,2500,2026,1,1,,0,,,4,15,4,4/15/26 3:00, +1,1,2501,2026,1,1,,0,,,4,15,5,4/15/26 4:00, +1,1,2502,2026,1,1,,0,,,4,15,6,4/15/26 5:00, +1,1,2503,2026,1,1,,0,,,4,15,7,4/15/26 6:00, +1,1,2504,2026,1,1,,0,,,4,15,8,4/15/26 7:00, +1,1,2505,2026,1,1,,0,,,4,15,9,4/15/26 8:00, +1,1,2506,2026,1,1,,0,,,4,15,10,4/15/26 9:00, +1,1,2507,2026,1,1,,0,,,4,15,11,4/15/26 10:00, +1,1,2508,2026,1,1,,0,,,4,15,12,4/15/26 11:00, +1,1,2509,2026,1,1,,0,,,4,15,13,4/15/26 12:00, +1,1,2510,2026,1,1,,0,,,4,15,14,4/15/26 13:00, +1,1,2511,2026,1,1,,0,,,4,15,15,4/15/26 14:00, +1,1,2512,2026,1,1,,0,,,4,15,16,4/15/26 15:00, +1,1,2513,2026,1,1,,0,,,4,15,17,4/15/26 16:00, +1,1,2514,2026,1,1,,0,,,4,15,18,4/15/26 17:00, +1,1,2515,2026,1,1,,0,,,4,15,19,4/15/26 18:00, +1,1,2516,2026,1,1,,0,,,4,15,20,4/15/26 19:00, +1,1,2517,2026,1,1,,0,,,4,15,21,4/15/26 20:00, +1,1,2518,2026,1,1,,0,,,4,15,22,4/15/26 21:00, +1,1,2519,2026,1,1,,0,,,4,15,23,4/15/26 22:00, +1,1,2520,2026,1,1,,0,,,4,15,24,4/15/26 23:00, +1,1,2521,2026,1,1,,0,,,4,16,1,4/16/26 0:00, +1,1,2522,2026,1,1,,0,,,4,16,2,4/16/26 1:00, +1,1,2523,2026,1,1,,0,,,4,16,3,4/16/26 2:00, +1,1,2524,2026,1,1,,0,,,4,16,4,4/16/26 3:00, +1,1,2525,2026,1,1,,0,,,4,16,5,4/16/26 4:00, +1,1,2526,2026,1,1,,0,,,4,16,6,4/16/26 5:00, +1,1,2527,2026,1,1,,0,,,4,16,7,4/16/26 6:00, +1,1,2528,2026,1,1,,0,,,4,16,8,4/16/26 7:00, +1,1,2529,2026,1,1,,0,,,4,16,9,4/16/26 8:00, +1,1,2530,2026,1,1,,0,,,4,16,10,4/16/26 9:00, +1,1,2531,2026,1,1,,0,,,4,16,11,4/16/26 10:00, +1,1,2532,2026,1,1,,0,,,4,16,12,4/16/26 11:00, +1,1,2533,2026,1,1,,0,,,4,16,13,4/16/26 12:00, +1,1,2534,2026,1,1,,0,,,4,16,14,4/16/26 13:00, +1,1,2535,2026,1,1,,0,,,4,16,15,4/16/26 14:00, +1,1,2536,2026,1,1,,0,,,4,16,16,4/16/26 15:00, +1,1,2537,2026,1,1,,0,,,4,16,17,4/16/26 16:00, +1,1,2538,2026,1,1,,0,,,4,16,18,4/16/26 17:00, +1,1,2539,2026,1,1,,0,,,4,16,19,4/16/26 18:00, +1,1,2540,2026,1,1,,0,,,4,16,20,4/16/26 19:00, +1,1,2541,2026,1,1,,0,,,4,16,21,4/16/26 20:00, +1,1,2542,2026,1,1,,0,,,4,16,22,4/16/26 21:00, +1,1,2543,2026,1,1,,0,,,4,16,23,4/16/26 22:00, +1,1,2544,2026,1,1,,0,,,4,16,24,4/16/26 23:00, +1,1,2545,2026,1,1,,0,,,4,17,1,4/17/26 0:00, +1,1,2546,2026,1,1,,0,,,4,17,2,4/17/26 1:00, +1,1,2547,2026,1,1,,0,,,4,17,3,4/17/26 2:00, +1,1,2548,2026,1,1,,0,,,4,17,4,4/17/26 3:00, +1,1,2549,2026,1,1,,0,,,4,17,5,4/17/26 4:00, +1,1,2550,2026,1,1,,0,,,4,17,6,4/17/26 5:00, +1,1,2551,2026,1,1,,0,,,4,17,7,4/17/26 6:00, +1,1,2552,2026,1,1,,0,,,4,17,8,4/17/26 7:00, +1,1,2553,2026,1,1,,0,,,4,17,9,4/17/26 8:00, +1,1,2554,2026,1,1,,0,,,4,17,10,4/17/26 9:00, +1,1,2555,2026,1,1,,0,,,4,17,11,4/17/26 10:00, +1,1,2556,2026,1,1,,0,,,4,17,12,4/17/26 11:00, +1,1,2557,2026,1,1,,0,,,4,17,13,4/17/26 12:00, +1,1,2558,2026,1,1,,0,,,4,17,14,4/17/26 13:00, +1,1,2559,2026,1,1,,0,,,4,17,15,4/17/26 14:00, +1,1,2560,2026,1,1,,0,,,4,17,16,4/17/26 15:00, +1,1,2561,2026,1,1,,0,,,4,17,17,4/17/26 16:00, +1,1,2562,2026,1,1,,0,,,4,17,18,4/17/26 17:00, +1,1,2563,2026,1,1,,0,,,4,17,19,4/17/26 18:00, +1,1,2564,2026,1,1,,0,,,4,17,20,4/17/26 19:00, +1,1,2565,2026,1,1,,0,,,4,17,21,4/17/26 20:00, +1,1,2566,2026,1,1,,0,,,4,17,22,4/17/26 21:00, +1,1,2567,2026,1,1,,0,,,4,17,23,4/17/26 22:00, +1,1,2568,2026,1,1,,0,,,4,17,24,4/17/26 23:00, +1,1,2569,2026,1,1,,0,,,4,18,1,4/18/26 0:00, +1,1,2570,2026,1,1,,0,,,4,18,2,4/18/26 1:00, +1,1,2571,2026,1,1,,0,,,4,18,3,4/18/26 2:00, +1,1,2572,2026,1,1,,0,,,4,18,4,4/18/26 3:00, +1,1,2573,2026,1,1,,0,,,4,18,5,4/18/26 4:00, +1,1,2574,2026,1,1,,0,,,4,18,6,4/18/26 5:00, +1,1,2575,2026,1,1,,0,,,4,18,7,4/18/26 6:00, +1,1,2576,2026,1,1,,0,,,4,18,8,4/18/26 7:00, +1,1,2577,2026,1,1,,0,,,4,18,9,4/18/26 8:00, +1,1,2578,2026,1,1,,0,,,4,18,10,4/18/26 9:00, +1,1,2579,2026,1,1,,0,,,4,18,11,4/18/26 10:00, +1,1,2580,2026,1,1,,0,,,4,18,12,4/18/26 11:00, +1,1,2581,2026,1,1,,0,,,4,18,13,4/18/26 12:00, +1,1,2582,2026,1,1,,0,,,4,18,14,4/18/26 13:00, +1,1,2583,2026,1,1,,0,,,4,18,15,4/18/26 14:00, +1,1,2584,2026,1,1,,0,,,4,18,16,4/18/26 15:00, +1,1,2585,2026,1,1,,0,,,4,18,17,4/18/26 16:00, +1,1,2586,2026,1,1,,0,,,4,18,18,4/18/26 17:00, +1,1,2587,2026,1,1,,0,,,4,18,19,4/18/26 18:00, +1,1,2588,2026,1,1,,0,,,4,18,20,4/18/26 19:00, +1,1,2589,2026,1,1,,0,,,4,18,21,4/18/26 20:00, +1,1,2590,2026,1,1,,0,,,4,18,22,4/18/26 21:00, +1,1,2591,2026,1,1,,0,,,4,18,23,4/18/26 22:00, +1,1,2592,2026,1,1,,0,,,4,18,24,4/18/26 23:00, +1,1,2593,2026,1,1,,0,,,4,19,1,4/19/26 0:00, +1,1,2594,2026,1,1,,0,,,4,19,2,4/19/26 1:00, +1,1,2595,2026,1,1,,0,,,4,19,3,4/19/26 2:00, +1,1,2596,2026,1,1,,0,,,4,19,4,4/19/26 3:00, +1,1,2597,2026,1,1,,0,,,4,19,5,4/19/26 4:00, +1,1,2598,2026,1,1,,0,,,4,19,6,4/19/26 5:00, +1,1,2599,2026,1,1,,0,,,4,19,7,4/19/26 6:00, +1,1,2600,2026,1,1,,0,,,4,19,8,4/19/26 7:00, +1,1,2601,2026,1,1,,0,,,4,19,9,4/19/26 8:00, +1,1,2602,2026,1,1,,0,,,4,19,10,4/19/26 9:00, +1,1,2603,2026,1,1,,0,,,4,19,11,4/19/26 10:00, +1,1,2604,2026,1,1,,0,,,4,19,12,4/19/26 11:00, +1,1,2605,2026,1,1,,0,,,4,19,13,4/19/26 12:00, +1,1,2606,2026,1,1,,0,,,4,19,14,4/19/26 13:00, +1,1,2607,2026,1,1,,0,,,4,19,15,4/19/26 14:00, +1,1,2608,2026,1,1,,0,,,4,19,16,4/19/26 15:00, +1,1,2609,2026,1,1,,0,,,4,19,17,4/19/26 16:00, +1,1,2610,2026,1,1,,0,,,4,19,18,4/19/26 17:00, +1,1,2611,2026,1,1,,0,,,4,19,19,4/19/26 18:00, +1,1,2612,2026,1,1,,0,,,4,19,20,4/19/26 19:00, +1,1,2613,2026,1,1,,0,,,4,19,21,4/19/26 20:00, +1,1,2614,2026,1,1,,0,,,4,19,22,4/19/26 21:00, +1,1,2615,2026,1,1,,0,,,4,19,23,4/19/26 22:00, +1,1,2616,2026,1,1,,0,,,4,19,24,4/19/26 23:00, +1,1,2617,2026,1,1,,0,,,4,20,1,4/20/26 0:00, +1,1,2618,2026,1,1,,0,,,4,20,2,4/20/26 1:00, +1,1,2619,2026,1,1,,0,,,4,20,3,4/20/26 2:00, +1,1,2620,2026,1,1,,0,,,4,20,4,4/20/26 3:00, +1,1,2621,2026,1,1,,0,,,4,20,5,4/20/26 4:00, +1,1,2622,2026,1,1,,0,,,4,20,6,4/20/26 5:00, +1,1,2623,2026,1,1,,0,,,4,20,7,4/20/26 6:00, +1,1,2624,2026,1,1,,0,,,4,20,8,4/20/26 7:00, +1,1,2625,2026,1,1,,0,,,4,20,9,4/20/26 8:00, +1,1,2626,2026,1,1,,0,,,4,20,10,4/20/26 9:00, +1,1,2627,2026,1,1,,0,,,4,20,11,4/20/26 10:00, +1,1,2628,2026,1,1,,0,,,4,20,12,4/20/26 11:00, +1,1,2629,2026,1,1,,0,,,4,20,13,4/20/26 12:00, +1,1,2630,2026,1,1,,0,,,4,20,14,4/20/26 13:00, +1,1,2631,2026,1,1,,0,,,4,20,15,4/20/26 14:00, +1,1,2632,2026,1,1,,0,,,4,20,16,4/20/26 15:00, +1,1,2633,2026,1,1,,0,,,4,20,17,4/20/26 16:00, +1,1,2634,2026,1,1,,0,,,4,20,18,4/20/26 17:00, +1,1,2635,2026,1,1,,0,,,4,20,19,4/20/26 18:00, +1,1,2636,2026,1,1,,0,,,4,20,20,4/20/26 19:00, +1,1,2637,2026,1,1,,0,,,4,20,21,4/20/26 20:00, +1,1,2638,2026,1,1,,0,,,4,20,22,4/20/26 21:00, +1,1,2639,2026,1,1,,0,,,4,20,23,4/20/26 22:00, +1,1,2640,2026,1,1,,0,,,4,20,24,4/20/26 23:00, +1,1,2641,2026,1,1,,0,,,4,21,1,4/21/26 0:00, +1,1,2642,2026,1,1,,0,,,4,21,2,4/21/26 1:00, +1,1,2643,2026,1,1,,0,,,4,21,3,4/21/26 2:00, +1,1,2644,2026,1,1,,0,,,4,21,4,4/21/26 3:00, +1,1,2645,2026,1,1,,0,,,4,21,5,4/21/26 4:00, +1,1,2646,2026,1,1,,0,,,4,21,6,4/21/26 5:00, +1,1,2647,2026,1,1,,0,,,4,21,7,4/21/26 6:00, +1,1,2648,2026,1,1,,0,,,4,21,8,4/21/26 7:00, +1,1,2649,2026,1,1,,0,,,4,21,9,4/21/26 8:00, +1,1,2650,2026,1,1,,0,,,4,21,10,4/21/26 9:00, +1,1,2651,2026,1,1,,0,,,4,21,11,4/21/26 10:00, +1,1,2652,2026,1,1,,0,,,4,21,12,4/21/26 11:00, +1,1,2653,2026,1,1,,0,,,4,21,13,4/21/26 12:00, +1,1,2654,2026,1,1,,0,,,4,21,14,4/21/26 13:00, +1,1,2655,2026,1,1,,0,,,4,21,15,4/21/26 14:00, +1,1,2656,2026,1,1,,0,,,4,21,16,4/21/26 15:00, +1,1,2657,2026,1,1,,0,,,4,21,17,4/21/26 16:00, +1,1,2658,2026,1,1,,0,,,4,21,18,4/21/26 17:00, +1,1,2659,2026,1,1,,0,,,4,21,19,4/21/26 18:00, +1,1,2660,2026,1,1,,0,,,4,21,20,4/21/26 19:00, +1,1,2661,2026,1,1,,0,,,4,21,21,4/21/26 20:00, +1,1,2662,2026,1,1,,0,,,4,21,22,4/21/26 21:00, +1,1,2663,2026,1,1,,0,,,4,21,23,4/21/26 22:00, +1,1,2664,2026,1,1,,0,,,4,21,24,4/21/26 23:00, +1,1,2665,2026,1,1,,0,,,4,22,1,4/22/26 0:00, +1,1,2666,2026,1,1,,0,,,4,22,2,4/22/26 1:00, +1,1,2667,2026,1,1,,0,,,4,22,3,4/22/26 2:00, +1,1,2668,2026,1,1,,0,,,4,22,4,4/22/26 3:00, +1,1,2669,2026,1,1,,0,,,4,22,5,4/22/26 4:00, +1,1,2670,2026,1,1,,0,,,4,22,6,4/22/26 5:00, +1,1,2671,2026,1,1,,0,,,4,22,7,4/22/26 6:00, +1,1,2672,2026,1,1,,0,,,4,22,8,4/22/26 7:00, +1,1,2673,2026,1,1,,0,,,4,22,9,4/22/26 8:00, +1,1,2674,2026,1,1,,0,,,4,22,10,4/22/26 9:00, +1,1,2675,2026,1,1,,0,,,4,22,11,4/22/26 10:00, +1,1,2676,2026,1,1,,0,,,4,22,12,4/22/26 11:00, +1,1,2677,2026,1,1,,0,,,4,22,13,4/22/26 12:00, +1,1,2678,2026,1,1,,0,,,4,22,14,4/22/26 13:00, +1,1,2679,2026,1,1,,0,,,4,22,15,4/22/26 14:00, +1,1,2680,2026,1,1,,0,,,4,22,16,4/22/26 15:00, +1,1,2681,2026,1,1,,0,,,4,22,17,4/22/26 16:00, +1,1,2682,2026,1,1,,0,,,4,22,18,4/22/26 17:00, +1,1,2683,2026,1,1,,0,,,4,22,19,4/22/26 18:00, +1,1,2684,2026,1,1,,0,,,4,22,20,4/22/26 19:00, +1,1,2685,2026,1,1,,0,,,4,22,21,4/22/26 20:00, +1,1,2686,2026,1,1,,0,,,4,22,22,4/22/26 21:00, +1,1,2687,2026,1,1,,0,,,4,22,23,4/22/26 22:00, +1,1,2688,2026,1,1,,0,,,4,22,24,4/22/26 23:00, +1,1,2689,2026,1,1,,0,,,4,23,1,4/23/26 0:00, +1,1,2690,2026,1,1,,0,,,4,23,2,4/23/26 1:00, +1,1,2691,2026,1,1,,0,,,4,23,3,4/23/26 2:00, +1,1,2692,2026,1,1,,0,,,4,23,4,4/23/26 3:00, +1,1,2693,2026,1,1,,0,,,4,23,5,4/23/26 4:00, +1,1,2694,2026,1,1,,0,,,4,23,6,4/23/26 5:00, +1,1,2695,2026,1,1,,0,,,4,23,7,4/23/26 6:00, +1,1,2696,2026,1,1,,0,,,4,23,8,4/23/26 7:00, +1,1,2697,2026,1,1,,0,,,4,23,9,4/23/26 8:00, +1,1,2698,2026,1,1,,0,,,4,23,10,4/23/26 9:00, +1,1,2699,2026,1,1,,0,,,4,23,11,4/23/26 10:00, +1,1,2700,2026,1,1,,0,,,4,23,12,4/23/26 11:00, +1,1,2701,2026,1,1,,0,,,4,23,13,4/23/26 12:00, +1,1,2702,2026,1,1,,0,,,4,23,14,4/23/26 13:00, +1,1,2703,2026,1,1,,0,,,4,23,15,4/23/26 14:00, +1,1,2704,2026,1,1,,0,,,4,23,16,4/23/26 15:00, +1,1,2705,2026,1,1,,0,,,4,23,17,4/23/26 16:00, +1,1,2706,2026,1,1,,0,,,4,23,18,4/23/26 17:00, +1,1,2707,2026,1,1,,0,,,4,23,19,4/23/26 18:00, +1,1,2708,2026,1,1,,0,,,4,23,20,4/23/26 19:00, +1,1,2709,2026,1,1,,0,,,4,23,21,4/23/26 20:00, +1,1,2710,2026,1,1,,0,,,4,23,22,4/23/26 21:00, +1,1,2711,2026,1,1,,0,,,4,23,23,4/23/26 22:00, +1,1,2712,2026,1,1,,0,,,4,23,24,4/23/26 23:00, +1,1,2713,2026,1,1,,0,,,4,24,1,4/24/26 0:00, +1,1,2714,2026,1,1,,0,,,4,24,2,4/24/26 1:00, +1,1,2715,2026,1,1,,0,,,4,24,3,4/24/26 2:00, +1,1,2716,2026,1,1,,0,,,4,24,4,4/24/26 3:00, +1,1,2717,2026,1,1,,0,,,4,24,5,4/24/26 4:00, +1,1,2718,2026,1,1,,0,,,4,24,6,4/24/26 5:00, +1,1,2719,2026,1,1,,0,,,4,24,7,4/24/26 6:00, +1,1,2720,2026,1,1,,0,,,4,24,8,4/24/26 7:00, +1,1,2721,2026,1,1,,0,,,4,24,9,4/24/26 8:00, +1,1,2722,2026,1,1,,0,,,4,24,10,4/24/26 9:00, +1,1,2723,2026,1,1,,0,,,4,24,11,4/24/26 10:00, +1,1,2724,2026,1,1,,0,,,4,24,12,4/24/26 11:00, +1,1,2725,2026,1,1,,0,,,4,24,13,4/24/26 12:00, +1,1,2726,2026,1,1,,0,,,4,24,14,4/24/26 13:00, +1,1,2727,2026,1,1,,0,,,4,24,15,4/24/26 14:00, +1,1,2728,2026,1,1,,0,,,4,24,16,4/24/26 15:00, +1,1,2729,2026,1,1,,0,,,4,24,17,4/24/26 16:00, +1,1,2730,2026,1,1,,0,,,4,24,18,4/24/26 17:00, +1,1,2731,2026,1,1,,0,,,4,24,19,4/24/26 18:00, +1,1,2732,2026,1,1,,0,,,4,24,20,4/24/26 19:00, +1,1,2733,2026,1,1,,0,,,4,24,21,4/24/26 20:00, +1,1,2734,2026,1,1,,0,,,4,24,22,4/24/26 21:00, +1,1,2735,2026,1,1,,0,,,4,24,23,4/24/26 22:00, +1,1,2736,2026,1,1,,0,,,4,24,24,4/24/26 23:00, +1,1,2737,2026,1,1,,0,,,4,25,1,4/25/26 0:00, +1,1,2738,2026,1,1,,0,,,4,25,2,4/25/26 1:00, +1,1,2739,2026,1,1,,0,,,4,25,3,4/25/26 2:00, +1,1,2740,2026,1,1,,0,,,4,25,4,4/25/26 3:00, +1,1,2741,2026,1,1,,0,,,4,25,5,4/25/26 4:00, +1,1,2742,2026,1,1,,0,,,4,25,6,4/25/26 5:00, +1,1,2743,2026,1,1,,0,,,4,25,7,4/25/26 6:00, +1,1,2744,2026,1,1,,0,,,4,25,8,4/25/26 7:00, +1,1,2745,2026,1,1,,0,,,4,25,9,4/25/26 8:00, +1,1,2746,2026,1,1,,0,,,4,25,10,4/25/26 9:00, +1,1,2747,2026,1,1,,0,,,4,25,11,4/25/26 10:00, +1,1,2748,2026,1,1,,0,,,4,25,12,4/25/26 11:00, +1,1,2749,2026,1,1,,0,,,4,25,13,4/25/26 12:00, +1,1,2750,2026,1,1,,0,,,4,25,14,4/25/26 13:00, +1,1,2751,2026,1,1,,0,,,4,25,15,4/25/26 14:00, +1,1,2752,2026,1,1,,0,,,4,25,16,4/25/26 15:00, +1,1,2753,2026,1,1,,0,,,4,25,17,4/25/26 16:00, +1,1,2754,2026,1,1,,0,,,4,25,18,4/25/26 17:00, +1,1,2755,2026,1,1,,0,,,4,25,19,4/25/26 18:00, +1,1,2756,2026,1,1,,0,,,4,25,20,4/25/26 19:00, +1,1,2757,2026,1,1,,0,,,4,25,21,4/25/26 20:00, +1,1,2758,2026,1,1,,0,,,4,25,22,4/25/26 21:00, +1,1,2759,2026,1,1,,0,,,4,25,23,4/25/26 22:00, +1,1,2760,2026,1,1,,0,,,4,25,24,4/25/26 23:00, +1,1,2761,2026,1,1,,0,,,4,26,1,4/26/26 0:00, +1,1,2762,2026,1,1,,0,,,4,26,2,4/26/26 1:00, +1,1,2763,2026,1,1,,0,,,4,26,3,4/26/26 2:00, +1,1,2764,2026,1,1,,0,,,4,26,4,4/26/26 3:00, +1,1,2765,2026,1,1,,0,,,4,26,5,4/26/26 4:00, +1,1,2766,2026,1,1,,0,,,4,26,6,4/26/26 5:00, +1,1,2767,2026,1,1,,0,,,4,26,7,4/26/26 6:00, +1,1,2768,2026,1,1,,0,,,4,26,8,4/26/26 7:00, +1,1,2769,2026,1,1,,0,,,4,26,9,4/26/26 8:00, +1,1,2770,2026,1,1,,0,,,4,26,10,4/26/26 9:00, +1,1,2771,2026,1,1,,0,,,4,26,11,4/26/26 10:00, +1,1,2772,2026,1,1,,0,,,4,26,12,4/26/26 11:00, +1,1,2773,2026,1,1,,0,,,4,26,13,4/26/26 12:00, +1,1,2774,2026,1,1,,0,,,4,26,14,4/26/26 13:00, +1,1,2775,2026,1,1,,0,,,4,26,15,4/26/26 14:00, +1,1,2776,2026,1,1,,0,,,4,26,16,4/26/26 15:00, +1,1,2777,2026,1,1,,0,,,4,26,17,4/26/26 16:00, +1,1,2778,2026,1,1,,0,,,4,26,18,4/26/26 17:00, +1,1,2779,2026,1,1,,0,,,4,26,19,4/26/26 18:00, +1,1,2780,2026,1,1,,0,,,4,26,20,4/26/26 19:00, +1,1,2781,2026,1,1,,0,,,4,26,21,4/26/26 20:00, +1,1,2782,2026,1,1,,0,,,4,26,22,4/26/26 21:00, +1,1,2783,2026,1,1,,0,,,4,26,23,4/26/26 22:00, +1,1,2784,2026,1,1,,0,,,4,26,24,4/26/26 23:00, +1,1,2785,2026,1,1,,0,,,4,27,1,4/27/26 0:00, +1,1,2786,2026,1,1,,0,,,4,27,2,4/27/26 1:00, +1,1,2787,2026,1,1,,0,,,4,27,3,4/27/26 2:00, +1,1,2788,2026,1,1,,0,,,4,27,4,4/27/26 3:00, +1,1,2789,2026,1,1,,0,,,4,27,5,4/27/26 4:00, +1,1,2790,2026,1,1,,0,,,4,27,6,4/27/26 5:00, +1,1,2791,2026,1,1,,0,,,4,27,7,4/27/26 6:00, +1,1,2792,2026,1,1,,0,,,4,27,8,4/27/26 7:00, +1,1,2793,2026,1,1,,0,,,4,27,9,4/27/26 8:00, +1,1,2794,2026,1,1,,0,,,4,27,10,4/27/26 9:00, +1,1,2795,2026,1,1,,0,,,4,27,11,4/27/26 10:00, +1,1,2796,2026,1,1,,0,,,4,27,12,4/27/26 11:00, +1,1,2797,2026,1,1,,0,,,4,27,13,4/27/26 12:00, +1,1,2798,2026,1,1,,0,,,4,27,14,4/27/26 13:00, +1,1,2799,2026,1,1,,0,,,4,27,15,4/27/26 14:00, +1,1,2800,2026,1,1,,0,,,4,27,16,4/27/26 15:00, +1,1,2801,2026,1,1,,0,,,4,27,17,4/27/26 16:00, +1,1,2802,2026,1,1,,0,,,4,27,18,4/27/26 17:00, +1,1,2803,2026,1,1,,0,,,4,27,19,4/27/26 18:00, +1,1,2804,2026,1,1,,0,,,4,27,20,4/27/26 19:00, +1,1,2805,2026,1,1,,0,,,4,27,21,4/27/26 20:00, +1,1,2806,2026,1,1,,0,,,4,27,22,4/27/26 21:00, +1,1,2807,2026,1,1,,0,,,4,27,23,4/27/26 22:00, +1,1,2808,2026,1,1,,0,,,4,27,24,4/27/26 23:00, +1,1,2809,2026,1,1,,0,,,4,28,1,4/28/26 0:00, +1,1,2810,2026,1,1,,0,,,4,28,2,4/28/26 1:00, +1,1,2811,2026,1,1,,0,,,4,28,3,4/28/26 2:00, +1,1,2812,2026,1,1,,0,,,4,28,4,4/28/26 3:00, +1,1,2813,2026,1,1,,0,,,4,28,5,4/28/26 4:00, +1,1,2814,2026,1,1,,0,,,4,28,6,4/28/26 5:00, +1,1,2815,2026,1,1,,0,,,4,28,7,4/28/26 6:00, +1,1,2816,2026,1,1,,0,,,4,28,8,4/28/26 7:00, +1,1,2817,2026,1,1,,0,,,4,28,9,4/28/26 8:00, +1,1,2818,2026,1,1,,0,,,4,28,10,4/28/26 9:00, +1,1,2819,2026,1,1,,0,,,4,28,11,4/28/26 10:00, +1,1,2820,2026,1,1,,0,,,4,28,12,4/28/26 11:00, +1,1,2821,2026,1,1,,0,,,4,28,13,4/28/26 12:00, +1,1,2822,2026,1,1,,0,,,4,28,14,4/28/26 13:00, +1,1,2823,2026,1,1,,0,,,4,28,15,4/28/26 14:00, +1,1,2824,2026,1,1,,0,,,4,28,16,4/28/26 15:00, +1,1,2825,2026,1,1,,0,,,4,28,17,4/28/26 16:00, +1,1,2826,2026,1,1,,0,,,4,28,18,4/28/26 17:00, +1,1,2827,2026,1,1,,0,,,4,28,19,4/28/26 18:00, +1,1,2828,2026,1,1,,0,,,4,28,20,4/28/26 19:00, +1,1,2829,2026,1,1,,0,,,4,28,21,4/28/26 20:00, +1,1,2830,2026,1,1,,0,,,4,28,22,4/28/26 21:00, +1,1,2831,2026,1,1,,0,,,4,28,23,4/28/26 22:00, +1,1,2832,2026,1,1,,0,,,4,28,24,4/28/26 23:00, +1,1,2833,2026,1,1,,0,,,4,29,1,4/29/26 0:00, +1,1,2834,2026,1,1,,0,,,4,29,2,4/29/26 1:00, +1,1,2835,2026,1,1,,0,,,4,29,3,4/29/26 2:00, +1,1,2836,2026,1,1,,0,,,4,29,4,4/29/26 3:00, +1,1,2837,2026,1,1,,0,,,4,29,5,4/29/26 4:00, +1,1,2838,2026,1,1,,0,,,4,29,6,4/29/26 5:00, +1,1,2839,2026,1,1,,0,,,4,29,7,4/29/26 6:00, +1,1,2840,2026,1,1,,0,,,4,29,8,4/29/26 7:00, +1,1,2841,2026,1,1,,0,,,4,29,9,4/29/26 8:00, +1,1,2842,2026,1,1,,0,,,4,29,10,4/29/26 9:00, +1,1,2843,2026,1,1,,0,,,4,29,11,4/29/26 10:00, +1,1,2844,2026,1,1,,0,,,4,29,12,4/29/26 11:00, +1,1,2845,2026,1,1,,0,,,4,29,13,4/29/26 12:00, +1,1,2846,2026,1,1,,0,,,4,29,14,4/29/26 13:00, +1,1,2847,2026,1,1,,0,,,4,29,15,4/29/26 14:00, +1,1,2848,2026,1,1,,0,,,4,29,16,4/29/26 15:00, +1,1,2849,2026,1,1,,0,,,4,29,17,4/29/26 16:00, +1,1,2850,2026,1,1,,0,,,4,29,18,4/29/26 17:00, +1,1,2851,2026,1,1,,0,,,4,29,19,4/29/26 18:00, +1,1,2852,2026,1,1,,0,,,4,29,20,4/29/26 19:00, +1,1,2853,2026,1,1,,0,,,4,29,21,4/29/26 20:00, +1,1,2854,2026,1,1,,0,,,4,29,22,4/29/26 21:00, +1,1,2855,2026,1,1,,0,,,4,29,23,4/29/26 22:00, +1,1,2856,2026,1,1,,0,,,4,29,24,4/29/26 23:00, +1,1,2857,2026,1,1,,0,,,4,30,1,4/30/26 0:00, +1,1,2858,2026,1,1,,0,,,4,30,2,4/30/26 1:00, +1,1,2859,2026,1,1,,0,,,4,30,3,4/30/26 2:00, +1,1,2860,2026,1,1,,0,,,4,30,4,4/30/26 3:00, +1,1,2861,2026,1,1,,0,,,4,30,5,4/30/26 4:00, +1,1,2862,2026,1,1,,0,,,4,30,6,4/30/26 5:00, +1,1,2863,2026,1,1,,0,,,4,30,7,4/30/26 6:00, +1,1,2864,2026,1,1,,0,,,4,30,8,4/30/26 7:00, +1,1,2865,2026,1,1,,0,,,4,30,9,4/30/26 8:00, +1,1,2866,2026,1,1,,0,,,4,30,10,4/30/26 9:00, +1,1,2867,2026,1,1,,0,,,4,30,11,4/30/26 10:00, +1,1,2868,2026,1,1,,0,,,4,30,12,4/30/26 11:00, +1,1,2869,2026,1,1,,0,,,4,30,13,4/30/26 12:00, +1,1,2870,2026,1,1,,0,,,4,30,14,4/30/26 13:00, +1,1,2871,2026,1,1,,0,,,4,30,15,4/30/26 14:00, +1,1,2872,2026,1,1,,0,,,4,30,16,4/30/26 15:00, +1,1,2873,2026,1,1,,0,,,4,30,17,4/30/26 16:00, +1,1,2874,2026,1,1,,0,,,4,30,18,4/30/26 17:00, +1,1,2875,2026,1,1,,0,,,4,30,19,4/30/26 18:00, +1,1,2876,2026,1,1,,0,,,4,30,20,4/30/26 19:00, +1,1,2877,2026,1,1,,0,,,4,30,21,4/30/26 20:00, +1,1,2878,2026,1,1,,0,,,4,30,22,4/30/26 21:00, +1,1,2879,2026,1,1,,0,,,4,30,23,4/30/26 22:00, +1,1,2880,2026,1,1,,0,,,4,30,24,4/30/26 23:00, +1,1,2881,2026,1,1,,0,,,5,1,1,5/1/26 0:00, +1,1,2882,2026,1,1,,0,,,5,1,2,5/1/26 1:00, +1,1,2883,2026,1,1,,0,,,5,1,3,5/1/26 2:00, +1,1,2884,2026,1,1,,0,,,5,1,4,5/1/26 3:00, +1,1,2885,2026,1,1,,0,,,5,1,5,5/1/26 4:00, +1,1,2886,2026,1,1,,0,,,5,1,6,5/1/26 5:00, +1,1,2887,2026,1,1,,0,,,5,1,7,5/1/26 6:00, +1,1,2888,2026,1,1,,0,,,5,1,8,5/1/26 7:00, +1,1,2889,2026,1,1,,0,,,5,1,9,5/1/26 8:00, +1,1,2890,2026,1,1,,0,,,5,1,10,5/1/26 9:00, +1,1,2891,2026,1,1,,0,,,5,1,11,5/1/26 10:00, +1,1,2892,2026,1,1,,0,,,5,1,12,5/1/26 11:00, +1,1,2893,2026,1,1,,0,,,5,1,13,5/1/26 12:00, +1,1,2894,2026,1,1,,0,,,5,1,14,5/1/26 13:00, +1,1,2895,2026,1,1,,0,,,5,1,15,5/1/26 14:00, +1,1,2896,2026,1,1,,0,,,5,1,16,5/1/26 15:00, +1,1,2897,2026,1,1,,0,,,5,1,17,5/1/26 16:00, +1,1,2898,2026,1,1,,0,,,5,1,18,5/1/26 17:00, +1,1,2899,2026,1,1,,0,,,5,1,19,5/1/26 18:00, +1,1,2900,2026,1,1,,0,,,5,1,20,5/1/26 19:00, +1,1,2901,2026,1,1,,0,,,5,1,21,5/1/26 20:00, +1,1,2902,2026,1,1,,0,,,5,1,22,5/1/26 21:00, +1,1,2903,2026,1,1,,0,,,5,1,23,5/1/26 22:00, +1,1,2904,2026,1,1,,0,,,5,1,24,5/1/26 23:00, +1,1,2905,2026,1,1,,0,,,5,2,1,5/2/26 0:00, +1,1,2906,2026,1,1,,0,,,5,2,2,5/2/26 1:00, +1,1,2907,2026,1,1,,0,,,5,2,3,5/2/26 2:00, +1,1,2908,2026,1,1,,0,,,5,2,4,5/2/26 3:00, +1,1,2909,2026,1,1,,0,,,5,2,5,5/2/26 4:00, +1,1,2910,2026,1,1,,0,,,5,2,6,5/2/26 5:00, +1,1,2911,2026,1,1,,0,,,5,2,7,5/2/26 6:00, +1,1,2912,2026,1,1,,0,,,5,2,8,5/2/26 7:00, +1,1,2913,2026,1,1,,0,,,5,2,9,5/2/26 8:00, +1,1,2914,2026,1,1,,0,,,5,2,10,5/2/26 9:00, +1,1,2915,2026,1,1,,0,,,5,2,11,5/2/26 10:00, +1,1,2916,2026,1,1,,0,,,5,2,12,5/2/26 11:00, +1,1,2917,2026,1,1,,0,,,5,2,13,5/2/26 12:00, +1,1,2918,2026,1,1,,0,,,5,2,14,5/2/26 13:00, +1,1,2919,2026,1,1,,0,,,5,2,15,5/2/26 14:00, +1,1,2920,2026,1,1,,0,,,5,2,16,5/2/26 15:00, +1,1,2921,2026,1,1,,0,,,5,2,17,5/2/26 16:00, +1,1,2922,2026,1,1,,0,,,5,2,18,5/2/26 17:00, +1,1,2923,2026,1,1,,0,,,5,2,19,5/2/26 18:00, +1,1,2924,2026,1,1,,0,,,5,2,20,5/2/26 19:00, +1,1,2925,2026,1,1,,0,,,5,2,21,5/2/26 20:00, +1,1,2926,2026,1,1,,0,,,5,2,22,5/2/26 21:00, +1,1,2927,2026,1,1,,0,,,5,2,23,5/2/26 22:00, +1,1,2928,2026,1,1,,0,,,5,2,24,5/2/26 23:00, +1,1,2929,2026,1,1,,0,,,5,3,1,5/3/26 0:00, +1,1,2930,2026,1,1,,0,,,5,3,2,5/3/26 1:00, +1,1,2931,2026,1,1,,0,,,5,3,3,5/3/26 2:00, +1,1,2932,2026,1,1,,0,,,5,3,4,5/3/26 3:00, +1,1,2933,2026,1,1,,0,,,5,3,5,5/3/26 4:00, +1,1,2934,2026,1,1,,0,,,5,3,6,5/3/26 5:00, +1,1,2935,2026,1,1,,0,,,5,3,7,5/3/26 6:00, +1,1,2936,2026,1,1,,0,,,5,3,8,5/3/26 7:00, +1,1,2937,2026,1,1,,0,,,5,3,9,5/3/26 8:00, +1,1,2938,2026,1,1,,0,,,5,3,10,5/3/26 9:00, +1,1,2939,2026,1,1,,0,,,5,3,11,5/3/26 10:00, +1,1,2940,2026,1,1,,0,,,5,3,12,5/3/26 11:00, +1,1,2941,2026,1,1,,0,,,5,3,13,5/3/26 12:00, +1,1,2942,2026,1,1,,0,,,5,3,14,5/3/26 13:00, +1,1,2943,2026,1,1,,0,,,5,3,15,5/3/26 14:00, +1,1,2944,2026,1,1,,0,,,5,3,16,5/3/26 15:00, +1,1,2945,2026,1,1,,0,,,5,3,17,5/3/26 16:00, +1,1,2946,2026,1,1,,0,,,5,3,18,5/3/26 17:00, +1,1,2947,2026,1,1,,0,,,5,3,19,5/3/26 18:00, +1,1,2948,2026,1,1,,0,,,5,3,20,5/3/26 19:00, +1,1,2949,2026,1,1,,0,,,5,3,21,5/3/26 20:00, +1,1,2950,2026,1,1,,0,,,5,3,22,5/3/26 21:00, +1,1,2951,2026,1,1,,0,,,5,3,23,5/3/26 22:00, +1,1,2952,2026,1,1,,0,,,5,3,24,5/3/26 23:00, +1,1,2953,2026,1,1,,0,,,5,4,1,5/4/26 0:00, +1,1,2954,2026,1,1,,0,,,5,4,2,5/4/26 1:00, +1,1,2955,2026,1,1,,0,,,5,4,3,5/4/26 2:00, +1,1,2956,2026,1,1,,0,,,5,4,4,5/4/26 3:00, +1,1,2957,2026,1,1,,0,,,5,4,5,5/4/26 4:00, +1,1,2958,2026,1,1,,0,,,5,4,6,5/4/26 5:00, +1,1,2959,2026,1,1,,0,,,5,4,7,5/4/26 6:00, +1,1,2960,2026,1,1,,0,,,5,4,8,5/4/26 7:00, +1,1,2961,2026,1,1,,0,,,5,4,9,5/4/26 8:00, +1,1,2962,2026,1,1,,0,,,5,4,10,5/4/26 9:00, +1,1,2963,2026,1,1,,0,,,5,4,11,5/4/26 10:00, +1,1,2964,2026,1,1,,0,,,5,4,12,5/4/26 11:00, +1,1,2965,2026,1,1,,0,,,5,4,13,5/4/26 12:00, +1,1,2966,2026,1,1,,0,,,5,4,14,5/4/26 13:00, +1,1,2967,2026,1,1,,0,,,5,4,15,5/4/26 14:00, +1,1,2968,2026,1,1,,0,,,5,4,16,5/4/26 15:00, +1,1,2969,2026,1,1,,0,,,5,4,17,5/4/26 16:00, +1,1,2970,2026,1,1,,0,,,5,4,18,5/4/26 17:00, +1,1,2971,2026,1,1,,0,,,5,4,19,5/4/26 18:00, +1,1,2972,2026,1,1,,0,,,5,4,20,5/4/26 19:00, +1,1,2973,2026,1,1,,0,,,5,4,21,5/4/26 20:00, +1,1,2974,2026,1,1,,0,,,5,4,22,5/4/26 21:00, +1,1,2975,2026,1,1,,0,,,5,4,23,5/4/26 22:00, +1,1,2976,2026,1,1,,0,,,5,4,24,5/4/26 23:00, +1,1,2977,2026,1,1,,0,,,5,5,1,5/5/26 0:00, +1,1,2978,2026,1,1,,0,,,5,5,2,5/5/26 1:00, +1,1,2979,2026,1,1,,0,,,5,5,3,5/5/26 2:00, +1,1,2980,2026,1,1,,0,,,5,5,4,5/5/26 3:00, +1,1,2981,2026,1,1,,0,,,5,5,5,5/5/26 4:00, +1,1,2982,2026,1,1,,0,,,5,5,6,5/5/26 5:00, +1,1,2983,2026,1,1,,0,,,5,5,7,5/5/26 6:00, +1,1,2984,2026,1,1,,0,,,5,5,8,5/5/26 7:00, +1,1,2985,2026,1,1,,0,,,5,5,9,5/5/26 8:00, +1,1,2986,2026,1,1,,0,,,5,5,10,5/5/26 9:00, +1,1,2987,2026,1,1,,0,,,5,5,11,5/5/26 10:00, +1,1,2988,2026,1,1,,0,,,5,5,12,5/5/26 11:00, +1,1,2989,2026,1,1,,0,,,5,5,13,5/5/26 12:00, +1,1,2990,2026,1,1,,0,,,5,5,14,5/5/26 13:00, +1,1,2991,2026,1,1,,0,,,5,5,15,5/5/26 14:00, +1,1,2992,2026,1,1,,0,,,5,5,16,5/5/26 15:00, +1,1,2993,2026,1,1,,0,,,5,5,17,5/5/26 16:00, +1,1,2994,2026,1,1,,0,,,5,5,18,5/5/26 17:00, +1,1,2995,2026,1,1,,0,,,5,5,19,5/5/26 18:00, +1,1,2996,2026,1,1,,0,,,5,5,20,5/5/26 19:00, +1,1,2997,2026,1,1,,0,,,5,5,21,5/5/26 20:00, +1,1,2998,2026,1,1,,0,,,5,5,22,5/5/26 21:00, +1,1,2999,2026,1,1,,0,,,5,5,23,5/5/26 22:00, +1,1,3000,2026,1,1,,0,,,5,5,24,5/5/26 23:00, +1,1,3001,2026,1,1,,0,,,5,6,1,5/6/26 0:00, +1,1,3002,2026,1,1,,0,,,5,6,2,5/6/26 1:00, +1,1,3003,2026,1,1,,0,,,5,6,3,5/6/26 2:00, +1,1,3004,2026,1,1,,0,,,5,6,4,5/6/26 3:00, +1,1,3005,2026,1,1,,0,,,5,6,5,5/6/26 4:00, +1,1,3006,2026,1,1,,0,,,5,6,6,5/6/26 5:00, +1,1,3007,2026,1,1,,0,,,5,6,7,5/6/26 6:00, +1,1,3008,2026,1,1,,0,,,5,6,8,5/6/26 7:00, +1,1,3009,2026,1,1,,0,,,5,6,9,5/6/26 8:00, +1,1,3010,2026,1,1,,0,,,5,6,10,5/6/26 9:00, +1,1,3011,2026,1,1,,0,,,5,6,11,5/6/26 10:00, +1,1,3012,2026,1,1,,0,,,5,6,12,5/6/26 11:00, +1,1,3013,2026,1,1,,0,,,5,6,13,5/6/26 12:00, +1,1,3014,2026,1,1,,0,,,5,6,14,5/6/26 13:00, +1,1,3015,2026,1,1,,0,,,5,6,15,5/6/26 14:00, +1,1,3016,2026,1,1,,0,,,5,6,16,5/6/26 15:00, +1,1,3017,2026,1,1,,0,,,5,6,17,5/6/26 16:00, +1,1,3018,2026,1,1,,0,,,5,6,18,5/6/26 17:00, +1,1,3019,2026,1,1,,0,,,5,6,19,5/6/26 18:00, +1,1,3020,2026,1,1,,0,,,5,6,20,5/6/26 19:00, +1,1,3021,2026,1,1,,0,,,5,6,21,5/6/26 20:00, +1,1,3022,2026,1,1,,0,,,5,6,22,5/6/26 21:00, +1,1,3023,2026,1,1,,0,,,5,6,23,5/6/26 22:00, +1,1,3024,2026,1,1,,0,,,5,6,24,5/6/26 23:00, +1,1,3025,2026,1,1,,0,,,5,7,1,5/7/26 0:00, +1,1,3026,2026,1,1,,0,,,5,7,2,5/7/26 1:00, +1,1,3027,2026,1,1,,0,,,5,7,3,5/7/26 2:00, +1,1,3028,2026,1,1,,0,,,5,7,4,5/7/26 3:00, +1,1,3029,2026,1,1,,0,,,5,7,5,5/7/26 4:00, +1,1,3030,2026,1,1,,0,,,5,7,6,5/7/26 5:00, +1,1,3031,2026,1,1,,0,,,5,7,7,5/7/26 6:00, +1,1,3032,2026,1,1,,0,,,5,7,8,5/7/26 7:00, +1,1,3033,2026,1,1,,0,,,5,7,9,5/7/26 8:00, +1,1,3034,2026,1,1,,0,,,5,7,10,5/7/26 9:00, +1,1,3035,2026,1,1,,0,,,5,7,11,5/7/26 10:00, +1,1,3036,2026,1,1,,0,,,5,7,12,5/7/26 11:00, +1,1,3037,2026,1,1,,0,,,5,7,13,5/7/26 12:00, +1,1,3038,2026,1,1,,0,,,5,7,14,5/7/26 13:00, +1,1,3039,2026,1,1,,0,,,5,7,15,5/7/26 14:00, +1,1,3040,2026,1,1,,0,,,5,7,16,5/7/26 15:00, +1,1,3041,2026,1,1,,0,,,5,7,17,5/7/26 16:00, +1,1,3042,2026,1,1,,0,,,5,7,18,5/7/26 17:00, +1,1,3043,2026,1,1,,0,,,5,7,19,5/7/26 18:00, +1,1,3044,2026,1,1,,0,,,5,7,20,5/7/26 19:00, +1,1,3045,2026,1,1,,0,,,5,7,21,5/7/26 20:00, +1,1,3046,2026,1,1,,0,,,5,7,22,5/7/26 21:00, +1,1,3047,2026,1,1,,0,,,5,7,23,5/7/26 22:00, +1,1,3048,2026,1,1,,0,,,5,7,24,5/7/26 23:00, +1,1,3049,2026,1,1,,0,,,5,8,1,5/8/26 0:00, +1,1,3050,2026,1,1,,0,,,5,8,2,5/8/26 1:00, +1,1,3051,2026,1,1,,0,,,5,8,3,5/8/26 2:00, +1,1,3052,2026,1,1,,0,,,5,8,4,5/8/26 3:00, +1,1,3053,2026,1,1,,0,,,5,8,5,5/8/26 4:00, +1,1,3054,2026,1,1,,0,,,5,8,6,5/8/26 5:00, +1,1,3055,2026,1,1,,0,,,5,8,7,5/8/26 6:00, +1,1,3056,2026,1,1,,0,,,5,8,8,5/8/26 7:00, +1,1,3057,2026,1,1,,0,,,5,8,9,5/8/26 8:00, +1,1,3058,2026,1,1,,0,,,5,8,10,5/8/26 9:00, +1,1,3059,2026,1,1,,0,,,5,8,11,5/8/26 10:00, +1,1,3060,2026,1,1,,0,,,5,8,12,5/8/26 11:00, +1,1,3061,2026,1,1,,0,,,5,8,13,5/8/26 12:00, +1,1,3062,2026,1,1,,0,,,5,8,14,5/8/26 13:00, +1,1,3063,2026,1,1,,0,,,5,8,15,5/8/26 14:00, +1,1,3064,2026,1,1,,0,,,5,8,16,5/8/26 15:00, +1,1,3065,2026,1,1,,0,,,5,8,17,5/8/26 16:00, +1,1,3066,2026,1,1,,0,,,5,8,18,5/8/26 17:00, +1,1,3067,2026,1,1,,0,,,5,8,19,5/8/26 18:00, +1,1,3068,2026,1,1,,0,,,5,8,20,5/8/26 19:00, +1,1,3069,2026,1,1,,0,,,5,8,21,5/8/26 20:00, +1,1,3070,2026,1,1,,0,,,5,8,22,5/8/26 21:00, +1,1,3071,2026,1,1,,0,,,5,8,23,5/8/26 22:00, +1,1,3072,2026,1,1,,0,,,5,8,24,5/8/26 23:00, +1,1,3073,2026,1,1,,0,,,5,9,1,5/9/26 0:00, +1,1,3074,2026,1,1,,0,,,5,9,2,5/9/26 1:00, +1,1,3075,2026,1,1,,0,,,5,9,3,5/9/26 2:00, +1,1,3076,2026,1,1,,0,,,5,9,4,5/9/26 3:00, +1,1,3077,2026,1,1,,0,,,5,9,5,5/9/26 4:00, +1,1,3078,2026,1,1,,0,,,5,9,6,5/9/26 5:00, +1,1,3079,2026,1,1,,0,,,5,9,7,5/9/26 6:00, +1,1,3080,2026,1,1,,0,,,5,9,8,5/9/26 7:00, +1,1,3081,2026,1,1,,0,,,5,9,9,5/9/26 8:00, +1,1,3082,2026,1,1,,0,,,5,9,10,5/9/26 9:00, +1,1,3083,2026,1,1,,0,,,5,9,11,5/9/26 10:00, +1,1,3084,2026,1,1,,0,,,5,9,12,5/9/26 11:00, +1,1,3085,2026,1,1,,0,,,5,9,13,5/9/26 12:00, +1,1,3086,2026,1,1,,0,,,5,9,14,5/9/26 13:00, +1,1,3087,2026,1,1,,0,,,5,9,15,5/9/26 14:00, +1,1,3088,2026,1,1,,0,,,5,9,16,5/9/26 15:00, +1,1,3089,2026,1,1,,0,,,5,9,17,5/9/26 16:00, +1,1,3090,2026,1,1,,0,,,5,9,18,5/9/26 17:00, +1,1,3091,2026,1,1,,0,,,5,9,19,5/9/26 18:00, +1,1,3092,2026,1,1,,0,,,5,9,20,5/9/26 19:00, +1,1,3093,2026,1,1,,0,,,5,9,21,5/9/26 20:00, +1,1,3094,2026,1,1,,0,,,5,9,22,5/9/26 21:00, +1,1,3095,2026,1,1,,0,,,5,9,23,5/9/26 22:00, +1,1,3096,2026,1,1,,0,,,5,9,24,5/9/26 23:00, +1,1,3097,2026,1,1,,0,,,5,10,1,5/10/26 0:00, +1,1,3098,2026,1,1,,0,,,5,10,2,5/10/26 1:00, +1,1,3099,2026,1,1,,0,,,5,10,3,5/10/26 2:00, +1,1,3100,2026,1,1,,0,,,5,10,4,5/10/26 3:00, +1,1,3101,2026,1,1,,0,,,5,10,5,5/10/26 4:00, +1,1,3102,2026,1,1,,0,,,5,10,6,5/10/26 5:00, +1,1,3103,2026,1,1,,0,,,5,10,7,5/10/26 6:00, +1,1,3104,2026,1,1,,0,,,5,10,8,5/10/26 7:00, +1,1,3105,2026,1,1,,0,,,5,10,9,5/10/26 8:00, +1,1,3106,2026,1,1,,0,,,5,10,10,5/10/26 9:00, +1,1,3107,2026,1,1,,0,,,5,10,11,5/10/26 10:00, +1,1,3108,2026,1,1,,0,,,5,10,12,5/10/26 11:00, +1,1,3109,2026,1,1,,0,,,5,10,13,5/10/26 12:00, +1,1,3110,2026,1,1,,0,,,5,10,14,5/10/26 13:00, +1,1,3111,2026,1,1,,0,,,5,10,15,5/10/26 14:00, +1,1,3112,2026,1,1,,0,,,5,10,16,5/10/26 15:00, +1,1,3113,2026,1,1,,0,,,5,10,17,5/10/26 16:00, +1,1,3114,2026,1,1,,0,,,5,10,18,5/10/26 17:00, +1,1,3115,2026,1,1,,0,,,5,10,19,5/10/26 18:00, +1,1,3116,2026,1,1,,0,,,5,10,20,5/10/26 19:00, +1,1,3117,2026,1,1,,0,,,5,10,21,5/10/26 20:00, +1,1,3118,2026,1,1,,0,,,5,10,22,5/10/26 21:00, +1,1,3119,2026,1,1,,0,,,5,10,23,5/10/26 22:00, +1,1,3120,2026,1,1,,0,,,5,10,24,5/10/26 23:00, +1,1,3121,2026,1,1,,0,,,5,11,1,5/11/26 0:00, +1,1,3122,2026,1,1,,0,,,5,11,2,5/11/26 1:00, +1,1,3123,2026,1,1,,0,,,5,11,3,5/11/26 2:00, +1,1,3124,2026,1,1,,0,,,5,11,4,5/11/26 3:00, +1,1,3125,2026,1,1,,0,,,5,11,5,5/11/26 4:00, +1,1,3126,2026,1,1,,0,,,5,11,6,5/11/26 5:00, +1,1,3127,2026,1,1,,0,,,5,11,7,5/11/26 6:00, +1,1,3128,2026,1,1,,0,,,5,11,8,5/11/26 7:00, +1,1,3129,2026,1,1,,0,,,5,11,9,5/11/26 8:00, +1,1,3130,2026,1,1,,0,,,5,11,10,5/11/26 9:00, +1,1,3131,2026,1,1,,0,,,5,11,11,5/11/26 10:00, +1,1,3132,2026,1,1,,0,,,5,11,12,5/11/26 11:00, +1,1,3133,2026,1,1,,0,,,5,11,13,5/11/26 12:00, +1,1,3134,2026,1,1,,0,,,5,11,14,5/11/26 13:00, +1,1,3135,2026,1,1,,0,,,5,11,15,5/11/26 14:00, +1,1,3136,2026,1,1,,0,,,5,11,16,5/11/26 15:00, +1,1,3137,2026,1,1,,0,,,5,11,17,5/11/26 16:00, +1,1,3138,2026,1,1,,0,,,5,11,18,5/11/26 17:00, +1,1,3139,2026,1,1,,0,,,5,11,19,5/11/26 18:00, +1,1,3140,2026,1,1,,0,,,5,11,20,5/11/26 19:00, +1,1,3141,2026,1,1,,0,,,5,11,21,5/11/26 20:00, +1,1,3142,2026,1,1,,0,,,5,11,22,5/11/26 21:00, +1,1,3143,2026,1,1,,0,,,5,11,23,5/11/26 22:00, +1,1,3144,2026,1,1,,0,,,5,11,24,5/11/26 23:00, +1,1,3145,2026,1,1,,0,,,5,12,1,5/12/26 0:00, +1,1,3146,2026,1,1,,0,,,5,12,2,5/12/26 1:00, +1,1,3147,2026,1,1,,0,,,5,12,3,5/12/26 2:00, +1,1,3148,2026,1,1,,0,,,5,12,4,5/12/26 3:00, +1,1,3149,2026,1,1,,0,,,5,12,5,5/12/26 4:00, +1,1,3150,2026,1,1,,0,,,5,12,6,5/12/26 5:00, +1,1,3151,2026,1,1,,0,,,5,12,7,5/12/26 6:00, +1,1,3152,2026,1,1,,0,,,5,12,8,5/12/26 7:00, +1,1,3153,2026,1,1,,0,,,5,12,9,5/12/26 8:00, +1,1,3154,2026,1,1,,0,,,5,12,10,5/12/26 9:00, +1,1,3155,2026,1,1,,0,,,5,12,11,5/12/26 10:00, +1,1,3156,2026,1,1,,0,,,5,12,12,5/12/26 11:00, +1,1,3157,2026,1,1,,0,,,5,12,13,5/12/26 12:00, +1,1,3158,2026,1,1,,0,,,5,12,14,5/12/26 13:00, +1,1,3159,2026,1,1,,0,,,5,12,15,5/12/26 14:00, +1,1,3160,2026,1,1,,0,,,5,12,16,5/12/26 15:00, +1,1,3161,2026,1,1,,0,,,5,12,17,5/12/26 16:00, +1,1,3162,2026,1,1,,0,,,5,12,18,5/12/26 17:00, +1,1,3163,2026,1,1,,0,,,5,12,19,5/12/26 18:00, +1,1,3164,2026,1,1,,0,,,5,12,20,5/12/26 19:00, +1,1,3165,2026,1,1,,0,,,5,12,21,5/12/26 20:00, +1,1,3166,2026,1,1,,0,,,5,12,22,5/12/26 21:00, +1,1,3167,2026,1,1,,0,,,5,12,23,5/12/26 22:00, +1,1,3168,2026,1,1,,0,,,5,12,24,5/12/26 23:00, +1,1,3169,2026,1,1,,0,,,5,13,1,5/13/26 0:00, +1,1,3170,2026,1,1,,0,,,5,13,2,5/13/26 1:00, +1,1,3171,2026,1,1,,0,,,5,13,3,5/13/26 2:00, +1,1,3172,2026,1,1,,0,,,5,13,4,5/13/26 3:00, +1,1,3173,2026,1,1,,0,,,5,13,5,5/13/26 4:00, +1,1,3174,2026,1,1,,0,,,5,13,6,5/13/26 5:00, +1,1,3175,2026,1,1,,0,,,5,13,7,5/13/26 6:00, +1,1,3176,2026,1,1,,0,,,5,13,8,5/13/26 7:00, +1,1,3177,2026,1,1,,0,,,5,13,9,5/13/26 8:00, +1,1,3178,2026,1,1,,0,,,5,13,10,5/13/26 9:00, +1,1,3179,2026,1,1,,0,,,5,13,11,5/13/26 10:00, +1,1,3180,2026,1,1,,0,,,5,13,12,5/13/26 11:00, +1,1,3181,2026,1,1,,0,,,5,13,13,5/13/26 12:00, +1,1,3182,2026,1,1,,0,,,5,13,14,5/13/26 13:00, +1,1,3183,2026,1,1,,0,,,5,13,15,5/13/26 14:00, +1,1,3184,2026,1,1,,0,,,5,13,16,5/13/26 15:00, +1,1,3185,2026,1,1,,0,,,5,13,17,5/13/26 16:00, +1,1,3186,2026,1,1,,0,,,5,13,18,5/13/26 17:00, +1,1,3187,2026,1,1,,0,,,5,13,19,5/13/26 18:00, +1,1,3188,2026,1,1,,0,,,5,13,20,5/13/26 19:00, +1,1,3189,2026,1,1,,0,,,5,13,21,5/13/26 20:00, +1,1,3190,2026,1,1,,0,,,5,13,22,5/13/26 21:00, +1,1,3191,2026,1,1,,0,,,5,13,23,5/13/26 22:00, +1,1,3192,2026,1,1,,0,,,5,13,24,5/13/26 23:00, +1,1,3193,2026,1,1,,0,,,5,14,1,5/14/26 0:00, +1,1,3194,2026,1,1,,0,,,5,14,2,5/14/26 1:00, +1,1,3195,2026,1,1,,0,,,5,14,3,5/14/26 2:00, +1,1,3196,2026,1,1,,0,,,5,14,4,5/14/26 3:00, +1,1,3197,2026,1,1,,0,,,5,14,5,5/14/26 4:00, +1,1,3198,2026,1,1,,0,,,5,14,6,5/14/26 5:00, +1,1,3199,2026,1,1,,0,,,5,14,7,5/14/26 6:00, +1,1,3200,2026,1,1,,0,,,5,14,8,5/14/26 7:00, +1,1,3201,2026,1,1,,0,,,5,14,9,5/14/26 8:00, +1,1,3202,2026,1,1,,0,,,5,14,10,5/14/26 9:00, +1,1,3203,2026,1,1,,0,,,5,14,11,5/14/26 10:00, +1,1,3204,2026,1,1,,0,,,5,14,12,5/14/26 11:00, +1,1,3205,2026,1,1,,0,,,5,14,13,5/14/26 12:00, +1,1,3206,2026,1,1,,0,,,5,14,14,5/14/26 13:00, +1,1,3207,2026,1,1,,0,,,5,14,15,5/14/26 14:00, +1,1,3208,2026,1,1,,0,,,5,14,16,5/14/26 15:00, +1,1,3209,2026,1,1,,0,,,5,14,17,5/14/26 16:00, +1,1,3210,2026,1,1,,0,,,5,14,18,5/14/26 17:00, +1,1,3211,2026,1,1,,0,,,5,14,19,5/14/26 18:00, +1,1,3212,2026,1,1,,0,,,5,14,20,5/14/26 19:00, +1,1,3213,2026,1,1,,0,,,5,14,21,5/14/26 20:00, +1,1,3214,2026,1,1,,0,,,5,14,22,5/14/26 21:00, +1,1,3215,2026,1,1,,0,,,5,14,23,5/14/26 22:00, +1,1,3216,2026,1,1,,0,,,5,14,24,5/14/26 23:00, +1,1,3217,2026,1,1,,0,,,5,15,1,5/15/26 0:00, +1,1,3218,2026,1,1,,0,,,5,15,2,5/15/26 1:00, +1,1,3219,2026,1,1,,0,,,5,15,3,5/15/26 2:00, +1,1,3220,2026,1,1,,0,,,5,15,4,5/15/26 3:00, +1,1,3221,2026,1,1,,0,,,5,15,5,5/15/26 4:00, +1,1,3222,2026,1,1,,0,,,5,15,6,5/15/26 5:00, +1,1,3223,2026,1,1,,0,,,5,15,7,5/15/26 6:00, +1,1,3224,2026,1,1,,0,,,5,15,8,5/15/26 7:00, +1,1,3225,2026,1,1,,0,,,5,15,9,5/15/26 8:00, +1,1,3226,2026,1,1,,0,,,5,15,10,5/15/26 9:00, +1,1,3227,2026,1,1,,0,,,5,15,11,5/15/26 10:00, +1,1,3228,2026,1,1,,0,,,5,15,12,5/15/26 11:00, +1,1,3229,2026,1,1,,0,,,5,15,13,5/15/26 12:00, +1,1,3230,2026,1,1,,0,,,5,15,14,5/15/26 13:00, +1,1,3231,2026,1,1,,0,,,5,15,15,5/15/26 14:00, +1,1,3232,2026,1,1,,0,,,5,15,16,5/15/26 15:00, +1,1,3233,2026,1,1,,0,,,5,15,17,5/15/26 16:00, +1,1,3234,2026,1,1,,0,,,5,15,18,5/15/26 17:00, +1,1,3235,2026,1,1,,0,,,5,15,19,5/15/26 18:00, +1,1,3236,2026,1,1,,0,,,5,15,20,5/15/26 19:00, +1,1,3237,2026,1,1,,0,,,5,15,21,5/15/26 20:00, +1,1,3238,2026,1,1,,0,,,5,15,22,5/15/26 21:00, +1,1,3239,2026,1,1,,0,,,5,15,23,5/15/26 22:00, +1,1,3240,2026,1,1,,0,,,5,15,24,5/15/26 23:00, +1,1,3241,2026,1,1,,0,,,5,16,1,5/16/26 0:00, +1,1,3242,2026,1,1,,0,,,5,16,2,5/16/26 1:00, +1,1,3243,2026,1,1,,0,,,5,16,3,5/16/26 2:00, +1,1,3244,2026,1,1,,0,,,5,16,4,5/16/26 3:00, +1,1,3245,2026,1,1,,0,,,5,16,5,5/16/26 4:00, +1,1,3246,2026,1,1,,0,,,5,16,6,5/16/26 5:00, +1,1,3247,2026,1,1,,0,,,5,16,7,5/16/26 6:00, +1,1,3248,2026,1,1,,0,,,5,16,8,5/16/26 7:00, +1,1,3249,2026,1,1,,0,,,5,16,9,5/16/26 8:00, +1,1,3250,2026,1,1,,0,,,5,16,10,5/16/26 9:00, +1,1,3251,2026,1,1,,0,,,5,16,11,5/16/26 10:00, +1,1,3252,2026,1,1,,0,,,5,16,12,5/16/26 11:00, +1,1,3253,2026,1,1,,0,,,5,16,13,5/16/26 12:00, +1,1,3254,2026,1,1,,0,,,5,16,14,5/16/26 13:00, +1,1,3255,2026,1,1,,0,,,5,16,15,5/16/26 14:00, +1,1,3256,2026,1,1,,0,,,5,16,16,5/16/26 15:00, +1,1,3257,2026,1,1,,0,,,5,16,17,5/16/26 16:00, +1,1,3258,2026,1,1,,0,,,5,16,18,5/16/26 17:00, +1,1,3259,2026,1,1,,0,,,5,16,19,5/16/26 18:00, +1,1,3260,2026,1,1,,0,,,5,16,20,5/16/26 19:00, +1,1,3261,2026,1,1,,0,,,5,16,21,5/16/26 20:00, +1,1,3262,2026,1,1,,0,,,5,16,22,5/16/26 21:00, +1,1,3263,2026,1,1,,0,,,5,16,23,5/16/26 22:00, +1,1,3264,2026,1,1,,0,,,5,16,24,5/16/26 23:00, +1,1,3265,2026,1,1,,0,,,5,17,1,5/17/26 0:00, +1,1,3266,2026,1,1,,0,,,5,17,2,5/17/26 1:00, +1,1,3267,2026,1,1,,0,,,5,17,3,5/17/26 2:00, +1,1,3268,2026,1,1,,0,,,5,17,4,5/17/26 3:00, +1,1,3269,2026,1,1,,0,,,5,17,5,5/17/26 4:00, +1,1,3270,2026,1,1,,0,,,5,17,6,5/17/26 5:00, +1,1,3271,2026,1,1,,0,,,5,17,7,5/17/26 6:00, +1,1,3272,2026,1,1,,0,,,5,17,8,5/17/26 7:00, +1,1,3273,2026,1,1,,0,,,5,17,9,5/17/26 8:00, +1,1,3274,2026,1,1,,0,,,5,17,10,5/17/26 9:00, +1,1,3275,2026,1,1,,0,,,5,17,11,5/17/26 10:00, +1,1,3276,2026,1,1,,0,,,5,17,12,5/17/26 11:00, +1,1,3277,2026,1,1,,0,,,5,17,13,5/17/26 12:00, +1,1,3278,2026,1,1,,0,,,5,17,14,5/17/26 13:00, +1,1,3279,2026,1,1,,0,,,5,17,15,5/17/26 14:00, +1,1,3280,2026,1,1,,0,,,5,17,16,5/17/26 15:00, +1,1,3281,2026,1,1,,0,,,5,17,17,5/17/26 16:00, +1,1,3282,2026,1,1,,0,,,5,17,18,5/17/26 17:00, +1,1,3283,2026,1,1,,0,,,5,17,19,5/17/26 18:00, +1,1,3284,2026,1,1,,0,,,5,17,20,5/17/26 19:00, +1,1,3285,2026,1,1,,0,,,5,17,21,5/17/26 20:00, +1,1,3286,2026,1,1,,0,,,5,17,22,5/17/26 21:00, +1,1,3287,2026,1,1,,0,,,5,17,23,5/17/26 22:00, +1,1,3288,2026,1,1,,0,,,5,17,24,5/17/26 23:00, +1,1,3289,2026,1,1,,0,,,5,18,1,5/18/26 0:00, +1,1,3290,2026,1,1,,0,,,5,18,2,5/18/26 1:00, +1,1,3291,2026,1,1,,0,,,5,18,3,5/18/26 2:00, +1,1,3292,2026,1,1,,0,,,5,18,4,5/18/26 3:00, +1,1,3293,2026,1,1,,0,,,5,18,5,5/18/26 4:00, +1,1,3294,2026,1,1,,0,,,5,18,6,5/18/26 5:00, +1,1,3295,2026,1,1,,0,,,5,18,7,5/18/26 6:00, +1,1,3296,2026,1,1,,0,,,5,18,8,5/18/26 7:00, +1,1,3297,2026,1,1,,0,,,5,18,9,5/18/26 8:00, +1,1,3298,2026,1,1,,0,,,5,18,10,5/18/26 9:00, +1,1,3299,2026,1,1,,0,,,5,18,11,5/18/26 10:00, +1,1,3300,2026,1,1,,0,,,5,18,12,5/18/26 11:00, +1,1,3301,2026,1,1,,0,,,5,18,13,5/18/26 12:00, +1,1,3302,2026,1,1,,0,,,5,18,14,5/18/26 13:00, +1,1,3303,2026,1,1,,0,,,5,18,15,5/18/26 14:00, +1,1,3304,2026,1,1,,0,,,5,18,16,5/18/26 15:00, +1,1,3305,2026,1,1,,0,,,5,18,17,5/18/26 16:00, +1,1,3306,2026,1,1,,0,,,5,18,18,5/18/26 17:00, +1,1,3307,2026,1,1,,0,,,5,18,19,5/18/26 18:00, +1,1,3308,2026,1,1,,0,,,5,18,20,5/18/26 19:00, +1,1,3309,2026,1,1,,0,,,5,18,21,5/18/26 20:00, +1,1,3310,2026,1,1,,0,,,5,18,22,5/18/26 21:00, +1,1,3311,2026,1,1,,0,,,5,18,23,5/18/26 22:00, +1,1,3312,2026,1,1,,0,,,5,18,24,5/18/26 23:00, +1,1,3313,2026,1,1,,0,,,5,19,1,5/19/26 0:00, +1,1,3314,2026,1,1,,0,,,5,19,2,5/19/26 1:00, +1,1,3315,2026,1,1,,0,,,5,19,3,5/19/26 2:00, +1,1,3316,2026,1,1,,0,,,5,19,4,5/19/26 3:00, +1,1,3317,2026,1,1,,0,,,5,19,5,5/19/26 4:00, +1,1,3318,2026,1,1,,0,,,5,19,6,5/19/26 5:00, +1,1,3319,2026,1,1,,0,,,5,19,7,5/19/26 6:00, +1,1,3320,2026,1,1,,0,,,5,19,8,5/19/26 7:00, +1,1,3321,2026,1,1,,0,,,5,19,9,5/19/26 8:00, +1,1,3322,2026,1,1,,0,,,5,19,10,5/19/26 9:00, +1,1,3323,2026,1,1,,0,,,5,19,11,5/19/26 10:00, +1,1,3324,2026,1,1,,0,,,5,19,12,5/19/26 11:00, +1,1,3325,2026,1,1,,0,,,5,19,13,5/19/26 12:00, +1,1,3326,2026,1,1,,0,,,5,19,14,5/19/26 13:00, +1,1,3327,2026,1,1,,0,,,5,19,15,5/19/26 14:00, +1,1,3328,2026,1,1,,0,,,5,19,16,5/19/26 15:00, +1,1,3329,2026,1,1,,0,,,5,19,17,5/19/26 16:00, +1,1,3330,2026,1,1,,0,,,5,19,18,5/19/26 17:00, +1,1,3331,2026,1,1,,0,,,5,19,19,5/19/26 18:00, +1,1,3332,2026,1,1,,0,,,5,19,20,5/19/26 19:00, +1,1,3333,2026,1,1,,0,,,5,19,21,5/19/26 20:00, +1,1,3334,2026,1,1,,0,,,5,19,22,5/19/26 21:00, +1,1,3335,2026,1,1,,0,,,5,19,23,5/19/26 22:00, +1,1,3336,2026,1,1,,0,,,5,19,24,5/19/26 23:00, +1,1,3337,2026,1,1,,0,,,5,20,1,5/20/26 0:00, +1,1,3338,2026,1,1,,0,,,5,20,2,5/20/26 1:00, +1,1,3339,2026,1,1,,0,,,5,20,3,5/20/26 2:00, +1,1,3340,2026,1,1,,0,,,5,20,4,5/20/26 3:00, +1,1,3341,2026,1,1,,0,,,5,20,5,5/20/26 4:00, +1,1,3342,2026,1,1,,0,,,5,20,6,5/20/26 5:00, +1,1,3343,2026,1,1,,0,,,5,20,7,5/20/26 6:00, +1,1,3344,2026,1,1,,0,,,5,20,8,5/20/26 7:00, +1,1,3345,2026,1,1,,0,,,5,20,9,5/20/26 8:00, +1,1,3346,2026,1,1,,0,,,5,20,10,5/20/26 9:00, +1,1,3347,2026,1,1,,0,,,5,20,11,5/20/26 10:00, +1,1,3348,2026,1,1,,0,,,5,20,12,5/20/26 11:00, +1,1,3349,2026,1,1,,0,,,5,20,13,5/20/26 12:00, +1,1,3350,2026,1,1,,0,,,5,20,14,5/20/26 13:00, +1,1,3351,2026,1,1,,0,,,5,20,15,5/20/26 14:00, +1,1,3352,2026,1,1,,0,,,5,20,16,5/20/26 15:00, +1,1,3353,2026,1,1,,0,,,5,20,17,5/20/26 16:00, +1,1,3354,2026,1,1,,0,,,5,20,18,5/20/26 17:00, +1,1,3355,2026,1,1,,0,,,5,20,19,5/20/26 18:00, +1,1,3356,2026,1,1,,0,,,5,20,20,5/20/26 19:00, +1,1,3357,2026,1,1,,0,,,5,20,21,5/20/26 20:00, +1,1,3358,2026,1,1,,0,,,5,20,22,5/20/26 21:00, +1,1,3359,2026,1,1,,0,,,5,20,23,5/20/26 22:00, +1,1,3360,2026,1,1,,0,,,5,20,24,5/20/26 23:00, +1,1,3361,2026,1,1,,0,,,5,21,1,5/21/26 0:00, +1,1,3362,2026,1,1,,0,,,5,21,2,5/21/26 1:00, +1,1,3363,2026,1,1,,0,,,5,21,3,5/21/26 2:00, +1,1,3364,2026,1,1,,0,,,5,21,4,5/21/26 3:00, +1,1,3365,2026,1,1,,0,,,5,21,5,5/21/26 4:00, +1,1,3366,2026,1,1,,0,,,5,21,6,5/21/26 5:00, +1,1,3367,2026,1,1,,0,,,5,21,7,5/21/26 6:00, +1,1,3368,2026,1,1,,0,,,5,21,8,5/21/26 7:00, +1,1,3369,2026,1,1,,0,,,5,21,9,5/21/26 8:00, +1,1,3370,2026,1,1,,0,,,5,21,10,5/21/26 9:00, +1,1,3371,2026,1,1,,0,,,5,21,11,5/21/26 10:00, +1,1,3372,2026,1,1,,0,,,5,21,12,5/21/26 11:00, +1,1,3373,2026,1,1,,0,,,5,21,13,5/21/26 12:00, +1,1,3374,2026,1,1,,0,,,5,21,14,5/21/26 13:00, +1,1,3375,2026,1,1,,0,,,5,21,15,5/21/26 14:00, +1,1,3376,2026,1,1,,0,,,5,21,16,5/21/26 15:00, +1,1,3377,2026,1,1,,0,,,5,21,17,5/21/26 16:00, +1,1,3378,2026,1,1,,0,,,5,21,18,5/21/26 17:00, +1,1,3379,2026,1,1,,0,,,5,21,19,5/21/26 18:00, +1,1,3380,2026,1,1,,0,,,5,21,20,5/21/26 19:00, +1,1,3381,2026,1,1,,0,,,5,21,21,5/21/26 20:00, +1,1,3382,2026,1,1,,0,,,5,21,22,5/21/26 21:00, +1,1,3383,2026,1,1,,0,,,5,21,23,5/21/26 22:00, +1,1,3384,2026,1,1,,0,,,5,21,24,5/21/26 23:00, +1,1,3385,2026,1,1,,0,,,5,22,1,5/22/26 0:00, +1,1,3386,2026,1,1,,0,,,5,22,2,5/22/26 1:00, +1,1,3387,2026,1,1,,0,,,5,22,3,5/22/26 2:00, +1,1,3388,2026,1,1,,0,,,5,22,4,5/22/26 3:00, +1,1,3389,2026,1,1,,0,,,5,22,5,5/22/26 4:00, +1,1,3390,2026,1,1,,0,,,5,22,6,5/22/26 5:00, +1,1,3391,2026,1,1,,0,,,5,22,7,5/22/26 6:00, +1,1,3392,2026,1,1,,0,,,5,22,8,5/22/26 7:00, +1,1,3393,2026,1,1,,0,,,5,22,9,5/22/26 8:00, +1,1,3394,2026,1,1,,0,,,5,22,10,5/22/26 9:00, +1,1,3395,2026,1,1,,0,,,5,22,11,5/22/26 10:00, +1,1,3396,2026,1,1,,0,,,5,22,12,5/22/26 11:00, +1,1,3397,2026,1,1,,0,,,5,22,13,5/22/26 12:00, +1,1,3398,2026,1,1,,0,,,5,22,14,5/22/26 13:00, +1,1,3399,2026,1,1,,0,,,5,22,15,5/22/26 14:00, +1,1,3400,2026,1,1,,0,,,5,22,16,5/22/26 15:00, +1,1,3401,2026,1,1,,0,,,5,22,17,5/22/26 16:00, +1,1,3402,2026,1,1,,0,,,5,22,18,5/22/26 17:00, +1,1,3403,2026,1,1,,0,,,5,22,19,5/22/26 18:00, +1,1,3404,2026,1,1,,0,,,5,22,20,5/22/26 19:00, +1,1,3405,2026,1,1,,0,,,5,22,21,5/22/26 20:00, +1,1,3406,2026,1,1,,0,,,5,22,22,5/22/26 21:00, +1,1,3407,2026,1,1,,0,,,5,22,23,5/22/26 22:00, +1,1,3408,2026,1,1,,0,,,5,22,24,5/22/26 23:00, +1,1,3409,2026,1,1,,0,,,5,23,1,5/23/26 0:00, +1,1,3410,2026,1,1,,0,,,5,23,2,5/23/26 1:00, +1,1,3411,2026,1,1,,0,,,5,23,3,5/23/26 2:00, +1,1,3412,2026,1,1,,0,,,5,23,4,5/23/26 3:00, +1,1,3413,2026,1,1,,0,,,5,23,5,5/23/26 4:00, +1,1,3414,2026,1,1,,0,,,5,23,6,5/23/26 5:00, +1,1,3415,2026,1,1,,0,,,5,23,7,5/23/26 6:00, +1,1,3416,2026,1,1,,0,,,5,23,8,5/23/26 7:00, +1,1,3417,2026,1,1,,0,,,5,23,9,5/23/26 8:00, +1,1,3418,2026,1,1,,0,,,5,23,10,5/23/26 9:00, +1,1,3419,2026,1,1,,0,,,5,23,11,5/23/26 10:00, +1,1,3420,2026,1,1,,0,,,5,23,12,5/23/26 11:00, +1,1,3421,2026,1,1,,0,,,5,23,13,5/23/26 12:00, +1,1,3422,2026,1,1,,0,,,5,23,14,5/23/26 13:00, +1,1,3423,2026,1,1,,0,,,5,23,15,5/23/26 14:00, +1,1,3424,2026,1,1,,0,,,5,23,16,5/23/26 15:00, +1,1,3425,2026,1,1,,0,,,5,23,17,5/23/26 16:00, +1,1,3426,2026,1,1,,0,,,5,23,18,5/23/26 17:00, +1,1,3427,2026,1,1,,0,,,5,23,19,5/23/26 18:00, +1,1,3428,2026,1,1,,0,,,5,23,20,5/23/26 19:00, +1,1,3429,2026,1,1,,0,,,5,23,21,5/23/26 20:00, +1,1,3430,2026,1,1,,0,,,5,23,22,5/23/26 21:00, +1,1,3431,2026,1,1,,0,,,5,23,23,5/23/26 22:00, +1,1,3432,2026,1,1,,0,,,5,23,24,5/23/26 23:00, +1,1,3433,2026,1,1,,0,,,5,24,1,5/24/26 0:00, +1,1,3434,2026,1,1,,0,,,5,24,2,5/24/26 1:00, +1,1,3435,2026,1,1,,0,,,5,24,3,5/24/26 2:00, +1,1,3436,2026,1,1,,0,,,5,24,4,5/24/26 3:00, +1,1,3437,2026,1,1,,0,,,5,24,5,5/24/26 4:00, +1,1,3438,2026,1,1,,0,,,5,24,6,5/24/26 5:00, +1,1,3439,2026,1,1,,0,,,5,24,7,5/24/26 6:00, +1,1,3440,2026,1,1,,0,,,5,24,8,5/24/26 7:00, +1,1,3441,2026,1,1,,0,,,5,24,9,5/24/26 8:00, +1,1,3442,2026,1,1,,0,,,5,24,10,5/24/26 9:00, +1,1,3443,2026,1,1,,0,,,5,24,11,5/24/26 10:00, +1,1,3444,2026,1,1,,0,,,5,24,12,5/24/26 11:00, +1,1,3445,2026,1,1,,0,,,5,24,13,5/24/26 12:00, +1,1,3446,2026,1,1,,0,,,5,24,14,5/24/26 13:00, +1,1,3447,2026,1,1,,0,,,5,24,15,5/24/26 14:00, +1,1,3448,2026,1,1,,0,,,5,24,16,5/24/26 15:00, +1,1,3449,2026,1,1,,0,,,5,24,17,5/24/26 16:00, +1,1,3450,2026,1,1,,0,,,5,24,18,5/24/26 17:00, +1,1,3451,2026,1,1,,0,,,5,24,19,5/24/26 18:00, +1,1,3452,2026,1,1,,0,,,5,24,20,5/24/26 19:00, +1,1,3453,2026,1,1,,0,,,5,24,21,5/24/26 20:00, +1,1,3454,2026,1,1,,0,,,5,24,22,5/24/26 21:00, +1,1,3455,2026,1,1,,0,,,5,24,23,5/24/26 22:00, +1,1,3456,2026,1,1,,0,,,5,24,24,5/24/26 23:00, +1,1,3457,2026,1,1,,0,,,5,25,1,5/25/26 0:00, +1,1,3458,2026,1,1,,0,,,5,25,2,5/25/26 1:00, +1,1,3459,2026,1,1,,0,,,5,25,3,5/25/26 2:00, +1,1,3460,2026,1,1,,0,,,5,25,4,5/25/26 3:00, +1,1,3461,2026,1,1,,0,,,5,25,5,5/25/26 4:00, +1,1,3462,2026,1,1,,0,,,5,25,6,5/25/26 5:00, +1,1,3463,2026,1,1,,0,,,5,25,7,5/25/26 6:00, +1,1,3464,2026,1,1,,0,,,5,25,8,5/25/26 7:00, +1,1,3465,2026,1,1,,0,,,5,25,9,5/25/26 8:00, +1,1,3466,2026,1,1,,0,,,5,25,10,5/25/26 9:00, +1,1,3467,2026,1,1,,0,,,5,25,11,5/25/26 10:00, +1,1,3468,2026,1,1,,0,,,5,25,12,5/25/26 11:00, +1,1,3469,2026,1,1,,0,,,5,25,13,5/25/26 12:00, +1,1,3470,2026,1,1,,0,,,5,25,14,5/25/26 13:00, +1,1,3471,2026,1,1,,0,,,5,25,15,5/25/26 14:00, +1,1,3472,2026,1,1,,0,,,5,25,16,5/25/26 15:00, +1,1,3473,2026,1,1,,0,,,5,25,17,5/25/26 16:00, +1,1,3474,2026,1,1,,0,,,5,25,18,5/25/26 17:00, +1,1,3475,2026,1,1,,0,,,5,25,19,5/25/26 18:00, +1,1,3476,2026,1,1,,0,,,5,25,20,5/25/26 19:00, +1,1,3477,2026,1,1,,0,,,5,25,21,5/25/26 20:00, +1,1,3478,2026,1,1,,0,,,5,25,22,5/25/26 21:00, +1,1,3479,2026,1,1,,0,,,5,25,23,5/25/26 22:00, +1,1,3480,2026,1,1,,0,,,5,25,24,5/25/26 23:00, +1,1,3481,2026,1,1,,0,,,5,26,1,5/26/26 0:00, +1,1,3482,2026,1,1,,0,,,5,26,2,5/26/26 1:00, +1,1,3483,2026,1,1,,0,,,5,26,3,5/26/26 2:00, +1,1,3484,2026,1,1,,0,,,5,26,4,5/26/26 3:00, +1,1,3485,2026,1,1,,0,,,5,26,5,5/26/26 4:00, +1,1,3486,2026,1,1,,0,,,5,26,6,5/26/26 5:00, +1,1,3487,2026,1,1,,0,,,5,26,7,5/26/26 6:00, +1,1,3488,2026,1,1,,0,,,5,26,8,5/26/26 7:00, +1,1,3489,2026,1,1,,0,,,5,26,9,5/26/26 8:00, +1,1,3490,2026,1,1,,0,,,5,26,10,5/26/26 9:00, +1,1,3491,2026,1,1,,0,,,5,26,11,5/26/26 10:00, +1,1,3492,2026,1,1,,0,,,5,26,12,5/26/26 11:00, +1,1,3493,2026,1,1,,0,,,5,26,13,5/26/26 12:00, +1,1,3494,2026,1,1,,0,,,5,26,14,5/26/26 13:00, +1,1,3495,2026,1,1,,0,,,5,26,15,5/26/26 14:00, +1,1,3496,2026,1,1,,0,,,5,26,16,5/26/26 15:00, +1,1,3497,2026,1,1,,0,,,5,26,17,5/26/26 16:00, +1,1,3498,2026,1,1,,0,,,5,26,18,5/26/26 17:00, +1,1,3499,2026,1,1,,0,,,5,26,19,5/26/26 18:00, +1,1,3500,2026,1,1,,0,,,5,26,20,5/26/26 19:00, +1,1,3501,2026,1,1,,0,,,5,26,21,5/26/26 20:00, +1,1,3502,2026,1,1,,0,,,5,26,22,5/26/26 21:00, +1,1,3503,2026,1,1,,0,,,5,26,23,5/26/26 22:00, +1,1,3504,2026,1,1,,0,,,5,26,24,5/26/26 23:00, +1,1,3505,2026,1,1,,0,,,5,27,1,5/27/26 0:00, +1,1,3506,2026,1,1,,0,,,5,27,2,5/27/26 1:00, +1,1,3507,2026,1,1,,0,,,5,27,3,5/27/26 2:00, +1,1,3508,2026,1,1,,0,,,5,27,4,5/27/26 3:00, +1,1,3509,2026,1,1,,0,,,5,27,5,5/27/26 4:00, +1,1,3510,2026,1,1,,0,,,5,27,6,5/27/26 5:00, +1,1,3511,2026,1,1,,0,,,5,27,7,5/27/26 6:00, +1,1,3512,2026,1,1,,0,,,5,27,8,5/27/26 7:00, +1,1,3513,2026,1,1,,0,,,5,27,9,5/27/26 8:00, +1,1,3514,2026,1,1,,0,,,5,27,10,5/27/26 9:00, +1,1,3515,2026,1,1,,0,,,5,27,11,5/27/26 10:00, +1,1,3516,2026,1,1,,0,,,5,27,12,5/27/26 11:00, +1,1,3517,2026,1,1,,0,,,5,27,13,5/27/26 12:00, +1,1,3518,2026,1,1,,0,,,5,27,14,5/27/26 13:00, +1,1,3519,2026,1,1,,0,,,5,27,15,5/27/26 14:00, +1,1,3520,2026,1,1,,0,,,5,27,16,5/27/26 15:00, +1,1,3521,2026,1,1,,0,,,5,27,17,5/27/26 16:00, +1,1,3522,2026,1,1,,0,,,5,27,18,5/27/26 17:00, +1,1,3523,2026,1,1,,0,,,5,27,19,5/27/26 18:00, +1,1,3524,2026,1,1,,0,,,5,27,20,5/27/26 19:00, +1,1,3525,2026,1,1,,0,,,5,27,21,5/27/26 20:00, +1,1,3526,2026,1,1,,0,,,5,27,22,5/27/26 21:00, +1,1,3527,2026,1,1,,0,,,5,27,23,5/27/26 22:00, +1,1,3528,2026,1,1,,0,,,5,27,24,5/27/26 23:00, +1,1,3529,2026,1,1,,0,,,5,28,1,5/28/26 0:00, +1,1,3530,2026,1,1,,0,,,5,28,2,5/28/26 1:00, +1,1,3531,2026,1,1,,0,,,5,28,3,5/28/26 2:00, +1,1,3532,2026,1,1,,0,,,5,28,4,5/28/26 3:00, +1,1,3533,2026,1,1,,0,,,5,28,5,5/28/26 4:00, +1,1,3534,2026,1,1,,0,,,5,28,6,5/28/26 5:00, +1,1,3535,2026,1,1,,0,,,5,28,7,5/28/26 6:00, +1,1,3536,2026,1,1,,0,,,5,28,8,5/28/26 7:00, +1,1,3537,2026,1,1,,0,,,5,28,9,5/28/26 8:00, +1,1,3538,2026,1,1,,0,,,5,28,10,5/28/26 9:00, +1,1,3539,2026,1,1,,0,,,5,28,11,5/28/26 10:00, +1,1,3540,2026,1,1,,0,,,5,28,12,5/28/26 11:00, +1,1,3541,2026,1,1,,0,,,5,28,13,5/28/26 12:00, +1,1,3542,2026,1,1,,0,,,5,28,14,5/28/26 13:00, +1,1,3543,2026,1,1,,0,,,5,28,15,5/28/26 14:00, +1,1,3544,2026,1,1,,0,,,5,28,16,5/28/26 15:00, +1,1,3545,2026,1,1,,0,,,5,28,17,5/28/26 16:00, +1,1,3546,2026,1,1,,0,,,5,28,18,5/28/26 17:00, +1,1,3547,2026,1,1,,0,,,5,28,19,5/28/26 18:00, +1,1,3548,2026,1,1,,0,,,5,28,20,5/28/26 19:00, +1,1,3549,2026,1,1,,0,,,5,28,21,5/28/26 20:00, +1,1,3550,2026,1,1,,0,,,5,28,22,5/28/26 21:00, +1,1,3551,2026,1,1,,0,,,5,28,23,5/28/26 22:00, +1,1,3552,2026,1,1,,0,,,5,28,24,5/28/26 23:00, +1,1,3553,2026,1,1,,0,,,5,29,1,5/29/26 0:00, +1,1,3554,2026,1,1,,0,,,5,29,2,5/29/26 1:00, +1,1,3555,2026,1,1,,0,,,5,29,3,5/29/26 2:00, +1,1,3556,2026,1,1,,0,,,5,29,4,5/29/26 3:00, +1,1,3557,2026,1,1,,0,,,5,29,5,5/29/26 4:00, +1,1,3558,2026,1,1,,0,,,5,29,6,5/29/26 5:00, +1,1,3559,2026,1,1,,0,,,5,29,7,5/29/26 6:00, +1,1,3560,2026,1,1,,0,,,5,29,8,5/29/26 7:00, +1,1,3561,2026,1,1,,0,,,5,29,9,5/29/26 8:00, +1,1,3562,2026,1,1,,0,,,5,29,10,5/29/26 9:00, +1,1,3563,2026,1,1,,0,,,5,29,11,5/29/26 10:00, +1,1,3564,2026,1,1,,0,,,5,29,12,5/29/26 11:00, +1,1,3565,2026,1,1,,0,,,5,29,13,5/29/26 12:00, +1,1,3566,2026,1,1,,0,,,5,29,14,5/29/26 13:00, +1,1,3567,2026,1,1,,0,,,5,29,15,5/29/26 14:00, +1,1,3568,2026,1,1,,0,,,5,29,16,5/29/26 15:00, +1,1,3569,2026,1,1,,0,,,5,29,17,5/29/26 16:00, +1,1,3570,2026,1,1,,0,,,5,29,18,5/29/26 17:00, +1,1,3571,2026,1,1,,0,,,5,29,19,5/29/26 18:00, +1,1,3572,2026,1,1,,0,,,5,29,20,5/29/26 19:00, +1,1,3573,2026,1,1,,0,,,5,29,21,5/29/26 20:00, +1,1,3574,2026,1,1,,0,,,5,29,22,5/29/26 21:00, +1,1,3575,2026,1,1,,0,,,5,29,23,5/29/26 22:00, +1,1,3576,2026,1,1,,0,,,5,29,24,5/29/26 23:00, +1,1,3577,2026,1,1,,0,,,5,30,1,5/30/26 0:00, +1,1,3578,2026,1,1,,0,,,5,30,2,5/30/26 1:00, +1,1,3579,2026,1,1,,0,,,5,30,3,5/30/26 2:00, +1,1,3580,2026,1,1,,0,,,5,30,4,5/30/26 3:00, +1,1,3581,2026,1,1,,0,,,5,30,5,5/30/26 4:00, +1,1,3582,2026,1,1,,0,,,5,30,6,5/30/26 5:00, +1,1,3583,2026,1,1,,0,,,5,30,7,5/30/26 6:00, +1,1,3584,2026,1,1,,0,,,5,30,8,5/30/26 7:00, +1,1,3585,2026,1,1,,0,,,5,30,9,5/30/26 8:00, +1,1,3586,2026,1,1,,0,,,5,30,10,5/30/26 9:00, +1,1,3587,2026,1,1,,0,,,5,30,11,5/30/26 10:00, +1,1,3588,2026,1,1,,0,,,5,30,12,5/30/26 11:00, +1,1,3589,2026,1,1,,0,,,5,30,13,5/30/26 12:00, +1,1,3590,2026,1,1,,0,,,5,30,14,5/30/26 13:00, +1,1,3591,2026,1,1,,0,,,5,30,15,5/30/26 14:00, +1,1,3592,2026,1,1,,0,,,5,30,16,5/30/26 15:00, +1,1,3593,2026,1,1,,0,,,5,30,17,5/30/26 16:00, +1,1,3594,2026,1,1,,0,,,5,30,18,5/30/26 17:00, +1,1,3595,2026,1,1,,0,,,5,30,19,5/30/26 18:00, +1,1,3596,2026,1,1,,0,,,5,30,20,5/30/26 19:00, +1,1,3597,2026,1,1,,0,,,5,30,21,5/30/26 20:00, +1,1,3598,2026,1,1,,0,,,5,30,22,5/30/26 21:00, +1,1,3599,2026,1,1,,0,,,5,30,23,5/30/26 22:00, +1,1,3600,2026,1,1,,0,,,5,30,24,5/30/26 23:00, +1,1,3601,2026,1,1,,0,,,5,31,1,5/31/26 0:00, +1,1,3602,2026,1,1,,0,,,5,31,2,5/31/26 1:00, +1,1,3603,2026,1,1,,0,,,5,31,3,5/31/26 2:00, +1,1,3604,2026,1,1,,0,,,5,31,4,5/31/26 3:00, +1,1,3605,2026,1,1,,0,,,5,31,5,5/31/26 4:00, +1,1,3606,2026,1,1,,0,,,5,31,6,5/31/26 5:00, +1,1,3607,2026,1,1,,0,,,5,31,7,5/31/26 6:00, +1,1,3608,2026,1,1,,0,,,5,31,8,5/31/26 7:00, +1,1,3609,2026,1,1,,0,,,5,31,9,5/31/26 8:00, +1,1,3610,2026,1,1,,0,,,5,31,10,5/31/26 9:00, +1,1,3611,2026,1,1,,0,,,5,31,11,5/31/26 10:00, +1,1,3612,2026,1,1,,0,,,5,31,12,5/31/26 11:00, +1,1,3613,2026,1,1,,0,,,5,31,13,5/31/26 12:00, +1,1,3614,2026,1,1,,0,,,5,31,14,5/31/26 13:00, +1,1,3615,2026,1,1,,0,,,5,31,15,5/31/26 14:00, +1,1,3616,2026,1,1,,0,,,5,31,16,5/31/26 15:00, +1,1,3617,2026,1,1,,0,,,5,31,17,5/31/26 16:00, +1,1,3618,2026,1,1,,0,,,5,31,18,5/31/26 17:00, +1,1,3619,2026,1,1,,0,,,5,31,19,5/31/26 18:00, +1,1,3620,2026,1,1,,0,,,5,31,20,5/31/26 19:00, +1,1,3621,2026,1,1,,0,,,5,31,21,5/31/26 20:00, +1,1,3622,2026,1,1,,0,,,5,31,22,5/31/26 21:00, +1,1,3623,2026,1,1,,0,,,5,31,23,5/31/26 22:00, +1,1,3624,2026,1,1,,0,,,5,31,24,5/31/26 23:00, +1,1,3625,2026,1,1,,0,,,6,1,1,6/1/26 0:00, +1,1,3626,2026,1,1,,0,,,6,1,2,6/1/26 1:00, +1,1,3627,2026,1,1,,0,,,6,1,3,6/1/26 2:00, +1,1,3628,2026,1,1,,0,,,6,1,4,6/1/26 3:00, +1,1,3629,2026,1,1,,0,,,6,1,5,6/1/26 4:00, +1,1,3630,2026,1,1,,0,,,6,1,6,6/1/26 5:00, +1,1,3631,2026,1,1,,0,,,6,1,7,6/1/26 6:00, +1,1,3632,2026,1,1,,0,,,6,1,8,6/1/26 7:00, +1,1,3633,2026,1,1,,0,,,6,1,9,6/1/26 8:00, +1,1,3634,2026,1,1,,0,,,6,1,10,6/1/26 9:00, +1,1,3635,2026,1,1,,0,,,6,1,11,6/1/26 10:00, +1,1,3636,2026,1,1,,0,,,6,1,12,6/1/26 11:00, +1,1,3637,2026,1,1,,0,,,6,1,13,6/1/26 12:00, +1,1,3638,2026,1,1,,0,,,6,1,14,6/1/26 13:00, +1,1,3639,2026,1,1,,0,,,6,1,15,6/1/26 14:00, +1,1,3640,2026,1,1,,0,,,6,1,16,6/1/26 15:00, +1,1,3641,2026,1,1,,0,,,6,1,17,6/1/26 16:00, +1,1,3642,2026,1,1,,0,,,6,1,18,6/1/26 17:00, +1,1,3643,2026,1,1,,0,,,6,1,19,6/1/26 18:00, +1,1,3644,2026,1,1,,0,,,6,1,20,6/1/26 19:00, +1,1,3645,2026,1,1,,0,,,6,1,21,6/1/26 20:00, +1,1,3646,2026,1,1,,0,,,6,1,22,6/1/26 21:00, +1,1,3647,2026,1,1,,0,,,6,1,23,6/1/26 22:00, +1,1,3648,2026,1,1,,0,,,6,1,24,6/1/26 23:00, +1,1,3649,2026,1,1,,0,,,6,2,1,6/2/26 0:00, +1,1,3650,2026,1,1,,0,,,6,2,2,6/2/26 1:00, +1,1,3651,2026,1,1,,0,,,6,2,3,6/2/26 2:00, +1,1,3652,2026,1,1,,0,,,6,2,4,6/2/26 3:00, +1,1,3653,2026,1,1,,0,,,6,2,5,6/2/26 4:00, +1,1,3654,2026,1,1,,0,,,6,2,6,6/2/26 5:00, +1,1,3655,2026,1,1,,0,,,6,2,7,6/2/26 6:00, +1,1,3656,2026,1,1,,0,,,6,2,8,6/2/26 7:00, +1,1,3657,2026,1,1,,0,,,6,2,9,6/2/26 8:00, +1,1,3658,2026,1,1,,0,,,6,2,10,6/2/26 9:00, +1,1,3659,2026,1,1,,0,,,6,2,11,6/2/26 10:00, +1,1,3660,2026,1,1,,0,,,6,2,12,6/2/26 11:00, +1,1,3661,2026,1,1,,0,,,6,2,13,6/2/26 12:00, +1,1,3662,2026,1,1,,0,,,6,2,14,6/2/26 13:00, +1,1,3663,2026,1,1,,0,,,6,2,15,6/2/26 14:00, +1,1,3664,2026,1,1,,0,,,6,2,16,6/2/26 15:00, +1,1,3665,2026,1,1,,0,,,6,2,17,6/2/26 16:00, +1,1,3666,2026,1,1,,0,,,6,2,18,6/2/26 17:00, +1,1,3667,2026,1,1,,0,,,6,2,19,6/2/26 18:00, +1,1,3668,2026,1,1,,0,,,6,2,20,6/2/26 19:00, +1,1,3669,2026,1,1,,0,,,6,2,21,6/2/26 20:00, +1,1,3670,2026,1,1,,0,,,6,2,22,6/2/26 21:00, +1,1,3671,2026,1,1,,0,,,6,2,23,6/2/26 22:00, +1,1,3672,2026,1,1,,0,,,6,2,24,6/2/26 23:00, +1,1,3673,2026,1,1,,0,,,6,3,1,6/3/26 0:00, +1,1,3674,2026,1,1,,0,,,6,3,2,6/3/26 1:00, +1,1,3675,2026,1,1,,0,,,6,3,3,6/3/26 2:00, +1,1,3676,2026,1,1,,0,,,6,3,4,6/3/26 3:00, +1,1,3677,2026,1,1,,0,,,6,3,5,6/3/26 4:00, +1,1,3678,2026,1,1,,0,,,6,3,6,6/3/26 5:00, +1,1,3679,2026,1,1,,0,,,6,3,7,6/3/26 6:00, +1,1,3680,2026,1,1,,0,,,6,3,8,6/3/26 7:00, +1,1,3681,2026,1,1,,0,,,6,3,9,6/3/26 8:00, +1,1,3682,2026,1,1,,0,,,6,3,10,6/3/26 9:00, +1,1,3683,2026,1,1,,0,,,6,3,11,6/3/26 10:00, +1,1,3684,2026,1,1,,0,,,6,3,12,6/3/26 11:00, +1,1,3685,2026,1,1,,0,,,6,3,13,6/3/26 12:00, +1,1,3686,2026,1,1,,0,,,6,3,14,6/3/26 13:00, +1,1,3687,2026,1,1,,0,,,6,3,15,6/3/26 14:00, +1,1,3688,2026,1,1,,0,,,6,3,16,6/3/26 15:00, +1,1,3689,2026,1,1,,0,,,6,3,17,6/3/26 16:00, +1,1,3690,2026,1,1,,0,,,6,3,18,6/3/26 17:00, +1,1,3691,2026,1,1,,0,,,6,3,19,6/3/26 18:00, +1,1,3692,2026,1,1,,0,,,6,3,20,6/3/26 19:00, +1,1,3693,2026,1,1,,0,,,6,3,21,6/3/26 20:00, +1,1,3694,2026,1,1,,0,,,6,3,22,6/3/26 21:00, +1,1,3695,2026,1,1,,0,,,6,3,23,6/3/26 22:00, +1,1,3696,2026,1,1,,0,,,6,3,24,6/3/26 23:00, +1,1,3697,2026,1,1,,0,,,6,4,1,6/4/26 0:00, +1,1,3698,2026,1,1,,0,,,6,4,2,6/4/26 1:00, +1,1,3699,2026,1,1,,0,,,6,4,3,6/4/26 2:00, +1,1,3700,2026,1,1,,0,,,6,4,4,6/4/26 3:00, +1,1,3701,2026,1,1,,0,,,6,4,5,6/4/26 4:00, +1,1,3702,2026,1,1,,0,,,6,4,6,6/4/26 5:00, +1,1,3703,2026,1,1,,0,,,6,4,7,6/4/26 6:00, +1,1,3704,2026,1,1,,0,,,6,4,8,6/4/26 7:00, +1,1,3705,2026,1,1,,0,,,6,4,9,6/4/26 8:00, +1,1,3706,2026,1,1,,0,,,6,4,10,6/4/26 9:00, +1,1,3707,2026,1,1,,0,,,6,4,11,6/4/26 10:00, +1,1,3708,2026,1,1,,0,,,6,4,12,6/4/26 11:00, +1,1,3709,2026,1,1,,0,,,6,4,13,6/4/26 12:00, +1,1,3710,2026,1,1,,0,,,6,4,14,6/4/26 13:00, +1,1,3711,2026,1,1,,0,,,6,4,15,6/4/26 14:00, +1,1,3712,2026,1,1,,0,,,6,4,16,6/4/26 15:00, +1,1,3713,2026,1,1,,0,,,6,4,17,6/4/26 16:00, +1,1,3714,2026,1,1,,0,,,6,4,18,6/4/26 17:00, +1,1,3715,2026,1,1,,0,,,6,4,19,6/4/26 18:00, +1,1,3716,2026,1,1,,0,,,6,4,20,6/4/26 19:00, +1,1,3717,2026,1,1,,0,,,6,4,21,6/4/26 20:00, +1,1,3718,2026,1,1,,0,,,6,4,22,6/4/26 21:00, +1,1,3719,2026,1,1,,0,,,6,4,23,6/4/26 22:00, +1,1,3720,2026,1,1,,0,,,6,4,24,6/4/26 23:00, +1,1,3721,2026,1,1,,0,,,6,5,1,6/5/26 0:00, +1,1,3722,2026,1,1,,0,,,6,5,2,6/5/26 1:00, +1,1,3723,2026,1,1,,0,,,6,5,3,6/5/26 2:00, +1,1,3724,2026,1,1,,0,,,6,5,4,6/5/26 3:00, +1,1,3725,2026,1,1,,0,,,6,5,5,6/5/26 4:00, +1,1,3726,2026,1,1,,0,,,6,5,6,6/5/26 5:00, +1,1,3727,2026,1,1,,0,,,6,5,7,6/5/26 6:00, +1,1,3728,2026,1,1,,0,,,6,5,8,6/5/26 7:00, +1,1,3729,2026,1,1,,0,,,6,5,9,6/5/26 8:00, +1,1,3730,2026,1,1,,0,,,6,5,10,6/5/26 9:00, +1,1,3731,2026,1,1,,0,,,6,5,11,6/5/26 10:00, +1,1,3732,2026,1,1,,0,,,6,5,12,6/5/26 11:00, +1,1,3733,2026,1,1,,0,,,6,5,13,6/5/26 12:00, +1,1,3734,2026,1,1,,0,,,6,5,14,6/5/26 13:00, +1,1,3735,2026,1,1,,0,,,6,5,15,6/5/26 14:00, +1,1,3736,2026,1,1,,0,,,6,5,16,6/5/26 15:00, +1,1,3737,2026,1,1,,0,,,6,5,17,6/5/26 16:00, +1,1,3738,2026,1,1,,0,,,6,5,18,6/5/26 17:00, +1,1,3739,2026,1,1,,0,,,6,5,19,6/5/26 18:00, +1,1,3740,2026,1,1,,0,,,6,5,20,6/5/26 19:00, +1,1,3741,2026,1,1,,0,,,6,5,21,6/5/26 20:00, +1,1,3742,2026,1,1,,0,,,6,5,22,6/5/26 21:00, +1,1,3743,2026,1,1,,0,,,6,5,23,6/5/26 22:00, +1,1,3744,2026,1,1,,0,,,6,5,24,6/5/26 23:00, +1,1,3745,2026,1,1,,0,,,6,6,1,6/6/26 0:00, +1,1,3746,2026,1,1,,0,,,6,6,2,6/6/26 1:00, +1,1,3747,2026,1,1,,0,,,6,6,3,6/6/26 2:00, +1,1,3748,2026,1,1,,0,,,6,6,4,6/6/26 3:00, +1,1,3749,2026,1,1,,0,,,6,6,5,6/6/26 4:00, +1,1,3750,2026,1,1,,0,,,6,6,6,6/6/26 5:00, +1,1,3751,2026,1,1,,0,,,6,6,7,6/6/26 6:00, +1,1,3752,2026,1,1,,0,,,6,6,8,6/6/26 7:00, +1,1,3753,2026,1,1,,0,,,6,6,9,6/6/26 8:00, +1,1,3754,2026,1,1,,0,,,6,6,10,6/6/26 9:00, +1,1,3755,2026,1,1,,0,,,6,6,11,6/6/26 10:00, +1,1,3756,2026,1,1,,0,,,6,6,12,6/6/26 11:00, +1,1,3757,2026,1,1,,0,,,6,6,13,6/6/26 12:00, +1,1,3758,2026,1,1,,0,,,6,6,14,6/6/26 13:00, +1,1,3759,2026,1,1,,0,,,6,6,15,6/6/26 14:00, +1,1,3760,2026,1,1,,0,,,6,6,16,6/6/26 15:00, +1,1,3761,2026,1,1,,0,,,6,6,17,6/6/26 16:00, +1,1,3762,2026,1,1,,0,,,6,6,18,6/6/26 17:00, +1,1,3763,2026,1,1,,0,,,6,6,19,6/6/26 18:00, +1,1,3764,2026,1,1,,0,,,6,6,20,6/6/26 19:00, +1,1,3765,2026,1,1,,0,,,6,6,21,6/6/26 20:00, +1,1,3766,2026,1,1,,0,,,6,6,22,6/6/26 21:00, +1,1,3767,2026,1,1,,0,,,6,6,23,6/6/26 22:00, +1,1,3768,2026,1,1,,0,,,6,6,24,6/6/26 23:00, +1,1,3769,2026,1,1,,0,,,6,7,1,6/7/26 0:00, +1,1,3770,2026,1,1,,0,,,6,7,2,6/7/26 1:00, +1,1,3771,2026,1,1,,0,,,6,7,3,6/7/26 2:00, +1,1,3772,2026,1,1,,0,,,6,7,4,6/7/26 3:00, +1,1,3773,2026,1,1,,0,,,6,7,5,6/7/26 4:00, +1,1,3774,2026,1,1,,0,,,6,7,6,6/7/26 5:00, +1,1,3775,2026,1,1,,0,,,6,7,7,6/7/26 6:00, +1,1,3776,2026,1,1,,0,,,6,7,8,6/7/26 7:00, +1,1,3777,2026,1,1,,0,,,6,7,9,6/7/26 8:00, +1,1,3778,2026,1,1,,0,,,6,7,10,6/7/26 9:00, +1,1,3779,2026,1,1,,0,,,6,7,11,6/7/26 10:00, +1,1,3780,2026,1,1,,0,,,6,7,12,6/7/26 11:00, +1,1,3781,2026,1,1,,0,,,6,7,13,6/7/26 12:00, +1,1,3782,2026,1,1,,0,,,6,7,14,6/7/26 13:00, +1,1,3783,2026,1,1,,0,,,6,7,15,6/7/26 14:00, +1,1,3784,2026,1,1,,0,,,6,7,16,6/7/26 15:00, +1,1,3785,2026,1,1,,0,,,6,7,17,6/7/26 16:00, +1,1,3786,2026,1,1,,0,,,6,7,18,6/7/26 17:00, +1,1,3787,2026,1,1,,0,,,6,7,19,6/7/26 18:00, +1,1,3788,2026,1,1,,0,,,6,7,20,6/7/26 19:00, +1,1,3789,2026,1,1,,0,,,6,7,21,6/7/26 20:00, +1,1,3790,2026,1,1,,0,,,6,7,22,6/7/26 21:00, +1,1,3791,2026,1,1,,0,,,6,7,23,6/7/26 22:00, +1,1,3792,2026,1,1,,0,,,6,7,24,6/7/26 23:00, +1,1,3793,2026,1,1,,0,,,6,8,1,6/8/26 0:00, +1,1,3794,2026,1,1,,0,,,6,8,2,6/8/26 1:00, +1,1,3795,2026,1,1,,0,,,6,8,3,6/8/26 2:00, +1,1,3796,2026,1,1,,0,,,6,8,4,6/8/26 3:00, +1,1,3797,2026,1,1,,0,,,6,8,5,6/8/26 4:00, +1,1,3798,2026,1,1,,0,,,6,8,6,6/8/26 5:00, +1,1,3799,2026,1,1,,0,,,6,8,7,6/8/26 6:00, +1,1,3800,2026,1,1,,0,,,6,8,8,6/8/26 7:00, +1,1,3801,2026,1,1,,0,,,6,8,9,6/8/26 8:00, +1,1,3802,2026,1,1,,0,,,6,8,10,6/8/26 9:00, +1,1,3803,2026,1,1,,0,,,6,8,11,6/8/26 10:00, +1,1,3804,2026,1,1,,0,,,6,8,12,6/8/26 11:00, +1,1,3805,2026,1,1,,0,,,6,8,13,6/8/26 12:00, +1,1,3806,2026,1,1,,0,,,6,8,14,6/8/26 13:00, +1,1,3807,2026,1,1,,0,,,6,8,15,6/8/26 14:00, +1,1,3808,2026,1,1,,0,,,6,8,16,6/8/26 15:00, +1,1,3809,2026,1,1,,0,,,6,8,17,6/8/26 16:00, +1,1,3810,2026,1,1,,0,,,6,8,18,6/8/26 17:00, +1,1,3811,2026,1,1,,0,,,6,8,19,6/8/26 18:00, +1,1,3812,2026,1,1,,0,,,6,8,20,6/8/26 19:00, +1,1,3813,2026,1,1,,0,,,6,8,21,6/8/26 20:00, +1,1,3814,2026,1,1,,0,,,6,8,22,6/8/26 21:00, +1,1,3815,2026,1,1,,0,,,6,8,23,6/8/26 22:00, +1,1,3816,2026,1,1,,0,,,6,8,24,6/8/26 23:00, +1,1,3817,2026,1,1,,0,,,6,9,1,6/9/26 0:00, +1,1,3818,2026,1,1,,0,,,6,9,2,6/9/26 1:00, +1,1,3819,2026,1,1,,0,,,6,9,3,6/9/26 2:00, +1,1,3820,2026,1,1,,0,,,6,9,4,6/9/26 3:00, +1,1,3821,2026,1,1,,0,,,6,9,5,6/9/26 4:00, +1,1,3822,2026,1,1,,0,,,6,9,6,6/9/26 5:00, +1,1,3823,2026,1,1,,0,,,6,9,7,6/9/26 6:00, +1,1,3824,2026,1,1,,0,,,6,9,8,6/9/26 7:00, +1,1,3825,2026,1,1,,0,,,6,9,9,6/9/26 8:00, +1,1,3826,2026,1,1,,0,,,6,9,10,6/9/26 9:00, +1,1,3827,2026,1,1,,0,,,6,9,11,6/9/26 10:00, +1,1,3828,2026,1,1,,0,,,6,9,12,6/9/26 11:00, +1,1,3829,2026,1,1,,0,,,6,9,13,6/9/26 12:00, +1,1,3830,2026,1,1,,0,,,6,9,14,6/9/26 13:00, +1,1,3831,2026,1,1,,0,,,6,9,15,6/9/26 14:00, +1,1,3832,2026,1,1,,0,,,6,9,16,6/9/26 15:00, +1,1,3833,2026,1,1,,0,,,6,9,17,6/9/26 16:00, +1,1,3834,2026,1,1,,0,,,6,9,18,6/9/26 17:00, +1,1,3835,2026,1,1,,0,,,6,9,19,6/9/26 18:00, +1,1,3836,2026,1,1,,0,,,6,9,20,6/9/26 19:00, +1,1,3837,2026,1,1,,0,,,6,9,21,6/9/26 20:00, +1,1,3838,2026,1,1,,0,,,6,9,22,6/9/26 21:00, +1,1,3839,2026,1,1,,0,,,6,9,23,6/9/26 22:00, +1,1,3840,2026,1,1,,0,,,6,9,24,6/9/26 23:00, +1,1,3841,2026,1,1,,0,,,6,10,1,6/10/26 0:00, +1,1,3842,2026,1,1,,0,,,6,10,2,6/10/26 1:00, +1,1,3843,2026,1,1,,0,,,6,10,3,6/10/26 2:00, +1,1,3844,2026,1,1,,0,,,6,10,4,6/10/26 3:00, +1,1,3845,2026,1,1,,0,,,6,10,5,6/10/26 4:00, +1,1,3846,2026,1,1,,0,,,6,10,6,6/10/26 5:00, +1,1,3847,2026,1,1,,0,,,6,10,7,6/10/26 6:00, +1,1,3848,2026,1,1,,0,,,6,10,8,6/10/26 7:00, +1,1,3849,2026,1,1,,0,,,6,10,9,6/10/26 8:00, +1,1,3850,2026,1,1,,0,,,6,10,10,6/10/26 9:00, +1,1,3851,2026,1,1,,0,,,6,10,11,6/10/26 10:00, +1,1,3852,2026,1,1,,0,,,6,10,12,6/10/26 11:00, +1,1,3853,2026,1,1,,0,,,6,10,13,6/10/26 12:00, +1,1,3854,2026,1,1,,0,,,6,10,14,6/10/26 13:00, +1,1,3855,2026,1,1,,0,,,6,10,15,6/10/26 14:00, +1,1,3856,2026,1,1,,0,,,6,10,16,6/10/26 15:00, +1,1,3857,2026,1,1,,0,,,6,10,17,6/10/26 16:00, +1,1,3858,2026,1,1,,0,,,6,10,18,6/10/26 17:00, +1,1,3859,2026,1,1,,0,,,6,10,19,6/10/26 18:00, +1,1,3860,2026,1,1,,0,,,6,10,20,6/10/26 19:00, +1,1,3861,2026,1,1,,0,,,6,10,21,6/10/26 20:00, +1,1,3862,2026,1,1,,0,,,6,10,22,6/10/26 21:00, +1,1,3863,2026,1,1,,0,,,6,10,23,6/10/26 22:00, +1,1,3864,2026,1,1,,0,,,6,10,24,6/10/26 23:00, +1,1,3865,2026,1,1,,0,,,6,11,1,6/11/26 0:00, +1,1,3866,2026,1,1,,0,,,6,11,2,6/11/26 1:00, +1,1,3867,2026,1,1,,0,,,6,11,3,6/11/26 2:00, +1,1,3868,2026,1,1,,0,,,6,11,4,6/11/26 3:00, +1,1,3869,2026,1,1,,0,,,6,11,5,6/11/26 4:00, +1,1,3870,2026,1,1,,0,,,6,11,6,6/11/26 5:00, +1,1,3871,2026,1,1,,0,,,6,11,7,6/11/26 6:00, +1,1,3872,2026,1,1,,0,,,6,11,8,6/11/26 7:00, +1,1,3873,2026,1,1,,0,,,6,11,9,6/11/26 8:00, +1,1,3874,2026,1,1,,0,,,6,11,10,6/11/26 9:00, +1,1,3875,2026,1,1,,0,,,6,11,11,6/11/26 10:00, +1,1,3876,2026,1,1,,0,,,6,11,12,6/11/26 11:00, +1,1,3877,2026,1,1,,0,,,6,11,13,6/11/26 12:00, +1,1,3878,2026,1,1,,0,,,6,11,14,6/11/26 13:00, +1,1,3879,2026,1,1,,0,,,6,11,15,6/11/26 14:00, +1,1,3880,2026,1,1,,0,,,6,11,16,6/11/26 15:00, +1,1,3881,2026,1,1,,0,,,6,11,17,6/11/26 16:00, +1,1,3882,2026,1,1,,0,,,6,11,18,6/11/26 17:00, +1,1,3883,2026,1,1,,0,,,6,11,19,6/11/26 18:00, +1,1,3884,2026,1,1,,0,,,6,11,20,6/11/26 19:00, +1,1,3885,2026,1,1,,0,,,6,11,21,6/11/26 20:00, +1,1,3886,2026,1,1,,0,,,6,11,22,6/11/26 21:00, +1,1,3887,2026,1,1,,0,,,6,11,23,6/11/26 22:00, +1,1,3888,2026,1,1,,0,,,6,11,24,6/11/26 23:00, +1,1,3889,2026,1,1,,0,,,6,12,1,6/12/26 0:00, +1,1,3890,2026,1,1,,0,,,6,12,2,6/12/26 1:00, +1,1,3891,2026,1,1,,0,,,6,12,3,6/12/26 2:00, +1,1,3892,2026,1,1,,0,,,6,12,4,6/12/26 3:00, +1,1,3893,2026,1,1,,0,,,6,12,5,6/12/26 4:00, +1,1,3894,2026,1,1,,0,,,6,12,6,6/12/26 5:00, +1,1,3895,2026,1,1,,0,,,6,12,7,6/12/26 6:00, +1,1,3896,2026,1,1,,0,,,6,12,8,6/12/26 7:00, +1,1,3897,2026,1,1,,0,,,6,12,9,6/12/26 8:00, +1,1,3898,2026,1,1,,0,,,6,12,10,6/12/26 9:00, +1,1,3899,2026,1,1,,0,,,6,12,11,6/12/26 10:00, +1,1,3900,2026,1,1,,0,,,6,12,12,6/12/26 11:00, +1,1,3901,2026,1,1,,0,,,6,12,13,6/12/26 12:00, +1,1,3902,2026,1,1,,0,,,6,12,14,6/12/26 13:00, +1,1,3903,2026,1,1,,0,,,6,12,15,6/12/26 14:00, +1,1,3904,2026,1,1,,0,,,6,12,16,6/12/26 15:00, +1,1,3905,2026,1,1,,0,,,6,12,17,6/12/26 16:00, +1,1,3906,2026,1,1,,0,,,6,12,18,6/12/26 17:00, +1,1,3907,2026,1,1,,0,,,6,12,19,6/12/26 18:00, +1,1,3908,2026,1,1,,0,,,6,12,20,6/12/26 19:00, +1,1,3909,2026,1,1,,0,,,6,12,21,6/12/26 20:00, +1,1,3910,2026,1,1,,0,,,6,12,22,6/12/26 21:00, +1,1,3911,2026,1,1,,0,,,6,12,23,6/12/26 22:00, +1,1,3912,2026,1,1,,0,,,6,12,24,6/12/26 23:00, +1,1,3913,2026,1,1,,0,,,6,13,1,6/13/26 0:00, +1,1,3914,2026,1,1,,0,,,6,13,2,6/13/26 1:00, +1,1,3915,2026,1,1,,0,,,6,13,3,6/13/26 2:00, +1,1,3916,2026,1,1,,0,,,6,13,4,6/13/26 3:00, +1,1,3917,2026,1,1,,0,,,6,13,5,6/13/26 4:00, +1,1,3918,2026,1,1,,0,,,6,13,6,6/13/26 5:00, +1,1,3919,2026,1,1,,0,,,6,13,7,6/13/26 6:00, +1,1,3920,2026,1,1,,0,,,6,13,8,6/13/26 7:00, +1,1,3921,2026,1,1,,0,,,6,13,9,6/13/26 8:00, +1,1,3922,2026,1,1,,0,,,6,13,10,6/13/26 9:00, +1,1,3923,2026,1,1,,0,,,6,13,11,6/13/26 10:00, +1,1,3924,2026,1,1,,0,,,6,13,12,6/13/26 11:00, +1,1,3925,2026,1,1,,0,,,6,13,13,6/13/26 12:00, +1,1,3926,2026,1,1,,0,,,6,13,14,6/13/26 13:00, +1,1,3927,2026,1,1,,0,,,6,13,15,6/13/26 14:00, +1,1,3928,2026,1,1,,0,,,6,13,16,6/13/26 15:00, +1,1,3929,2026,1,1,,0,,,6,13,17,6/13/26 16:00, +1,1,3930,2026,1,1,,0,,,6,13,18,6/13/26 17:00, +1,1,3931,2026,1,1,,0,,,6,13,19,6/13/26 18:00, +1,1,3932,2026,1,1,,0,,,6,13,20,6/13/26 19:00, +1,1,3933,2026,1,1,,0,,,6,13,21,6/13/26 20:00, +1,1,3934,2026,1,1,,0,,,6,13,22,6/13/26 21:00, +1,1,3935,2026,1,1,,0,,,6,13,23,6/13/26 22:00, +1,1,3936,2026,1,1,,0,,,6,13,24,6/13/26 23:00, +1,1,3937,2026,1,1,,0,,,6,14,1,6/14/26 0:00, +1,1,3938,2026,1,1,,0,,,6,14,2,6/14/26 1:00, +1,1,3939,2026,1,1,,0,,,6,14,3,6/14/26 2:00, +1,1,3940,2026,1,1,,0,,,6,14,4,6/14/26 3:00, +1,1,3941,2026,1,1,,0,,,6,14,5,6/14/26 4:00, +1,1,3942,2026,1,1,,0,,,6,14,6,6/14/26 5:00, +1,1,3943,2026,1,1,,0,,,6,14,7,6/14/26 6:00, +1,1,3944,2026,1,1,,0,,,6,14,8,6/14/26 7:00, +1,1,3945,2026,1,1,,0,,,6,14,9,6/14/26 8:00, +1,1,3946,2026,1,1,,0,,,6,14,10,6/14/26 9:00, +1,1,3947,2026,1,1,,0,,,6,14,11,6/14/26 10:00, +1,1,3948,2026,1,1,,0,,,6,14,12,6/14/26 11:00, +1,1,3949,2026,1,1,,0,,,6,14,13,6/14/26 12:00, +1,1,3950,2026,1,1,,0,,,6,14,14,6/14/26 13:00, +1,1,3951,2026,1,1,,0,,,6,14,15,6/14/26 14:00, +1,1,3952,2026,1,1,,0,,,6,14,16,6/14/26 15:00, +1,1,3953,2026,1,1,,0,,,6,14,17,6/14/26 16:00, +1,1,3954,2026,1,1,,0,,,6,14,18,6/14/26 17:00, +1,1,3955,2026,1,1,,0,,,6,14,19,6/14/26 18:00, +1,1,3956,2026,1,1,,0,,,6,14,20,6/14/26 19:00, +1,1,3957,2026,1,1,,0,,,6,14,21,6/14/26 20:00, +1,1,3958,2026,1,1,,0,,,6,14,22,6/14/26 21:00, +1,1,3959,2026,1,1,,0,,,6,14,23,6/14/26 22:00, +1,1,3960,2026,1,1,,0,,,6,14,24,6/14/26 23:00, +1,1,3961,2026,1,1,,0,,,6,15,1,6/15/26 0:00, +1,1,3962,2026,1,1,,0,,,6,15,2,6/15/26 1:00, +1,1,3963,2026,1,1,,0,,,6,15,3,6/15/26 2:00, +1,1,3964,2026,1,1,,0,,,6,15,4,6/15/26 3:00, +1,1,3965,2026,1,1,,0,,,6,15,5,6/15/26 4:00, +1,1,3966,2026,1,1,,0,,,6,15,6,6/15/26 5:00, +1,1,3967,2026,1,1,,0,,,6,15,7,6/15/26 6:00, +1,1,3968,2026,1,1,,0,,,6,15,8,6/15/26 7:00, +1,1,3969,2026,1,1,,0,,,6,15,9,6/15/26 8:00, +1,1,3970,2026,1,1,,0,,,6,15,10,6/15/26 9:00, +1,1,3971,2026,1,1,,0,,,6,15,11,6/15/26 10:00, +1,1,3972,2026,1,1,,0,,,6,15,12,6/15/26 11:00, +1,1,3973,2026,1,1,,0,,,6,15,13,6/15/26 12:00, +1,1,3974,2026,1,1,,0,,,6,15,14,6/15/26 13:00, +1,1,3975,2026,1,1,,0,,,6,15,15,6/15/26 14:00, +1,1,3976,2026,1,1,,0,,,6,15,16,6/15/26 15:00, +1,1,3977,2026,1,1,,0,,,6,15,17,6/15/26 16:00, +1,1,3978,2026,1,1,,0,,,6,15,18,6/15/26 17:00, +1,1,3979,2026,1,1,,0,,,6,15,19,6/15/26 18:00, +1,1,3980,2026,1,1,,0,,,6,15,20,6/15/26 19:00, +1,1,3981,2026,1,1,,0,,,6,15,21,6/15/26 20:00, +1,1,3982,2026,1,1,,0,,,6,15,22,6/15/26 21:00, +1,1,3983,2026,1,1,,0,,,6,15,23,6/15/26 22:00, +1,1,3984,2026,1,1,,0,,,6,15,24,6/15/26 23:00, +1,1,3985,2026,1,1,,0,,,6,16,1,6/16/26 0:00, +1,1,3986,2026,1,1,,0,,,6,16,2,6/16/26 1:00, +1,1,3987,2026,1,1,,0,,,6,16,3,6/16/26 2:00, +1,1,3988,2026,1,1,,0,,,6,16,4,6/16/26 3:00, +1,1,3989,2026,1,1,,0,,,6,16,5,6/16/26 4:00, +1,1,3990,2026,1,1,,0,,,6,16,6,6/16/26 5:00, +1,1,3991,2026,1,1,,0,,,6,16,7,6/16/26 6:00, +1,1,3992,2026,1,1,,0,,,6,16,8,6/16/26 7:00, +1,1,3993,2026,1,1,,0,,,6,16,9,6/16/26 8:00, +1,1,3994,2026,1,1,,0,,,6,16,10,6/16/26 9:00, +1,1,3995,2026,1,1,,0,,,6,16,11,6/16/26 10:00, +1,1,3996,2026,1,1,,0,,,6,16,12,6/16/26 11:00, +1,1,3997,2026,1,1,,0,,,6,16,13,6/16/26 12:00, +1,1,3998,2026,1,1,,0,,,6,16,14,6/16/26 13:00, +1,1,3999,2026,1,1,,0,,,6,16,15,6/16/26 14:00, +1,1,4000,2026,1,1,,0,,,6,16,16,6/16/26 15:00, +1,1,4001,2026,1,1,,0,,,6,16,17,6/16/26 16:00, +1,1,4002,2026,1,1,,0,,,6,16,18,6/16/26 17:00, +1,1,4003,2026,1,1,,0,,,6,16,19,6/16/26 18:00, +1,1,4004,2026,1,1,,0,,,6,16,20,6/16/26 19:00, +1,1,4005,2026,1,1,,0,,,6,16,21,6/16/26 20:00, +1,1,4006,2026,1,1,,0,,,6,16,22,6/16/26 21:00, +1,1,4007,2026,1,1,,0,,,6,16,23,6/16/26 22:00, +1,1,4008,2026,1,1,,0,,,6,16,24,6/16/26 23:00, +1,1,4009,2026,1,1,,0,,,6,17,1,6/17/26 0:00, +1,1,4010,2026,1,1,,0,,,6,17,2,6/17/26 1:00, +1,1,4011,2026,1,1,,0,,,6,17,3,6/17/26 2:00, +1,1,4012,2026,1,1,,0,,,6,17,4,6/17/26 3:00, +1,1,4013,2026,1,1,,0,,,6,17,5,6/17/26 4:00, +1,1,4014,2026,1,1,,0,,,6,17,6,6/17/26 5:00, +1,1,4015,2026,1,1,,0,,,6,17,7,6/17/26 6:00, +1,1,4016,2026,1,1,,0,,,6,17,8,6/17/26 7:00, +1,1,4017,2026,1,1,,0,,,6,17,9,6/17/26 8:00, +1,1,4018,2026,1,1,,0,,,6,17,10,6/17/26 9:00, +1,1,4019,2026,1,1,,0,,,6,17,11,6/17/26 10:00, +1,1,4020,2026,1,1,,0,,,6,17,12,6/17/26 11:00, +1,1,4021,2026,1,1,,0,,,6,17,13,6/17/26 12:00, +1,1,4022,2026,1,1,,0,,,6,17,14,6/17/26 13:00, +1,1,4023,2026,1,1,,0,,,6,17,15,6/17/26 14:00, +1,1,4024,2026,1,1,,0,,,6,17,16,6/17/26 15:00, +1,1,4025,2026,1,1,,0,,,6,17,17,6/17/26 16:00, +1,1,4026,2026,1,1,,0,,,6,17,18,6/17/26 17:00, +1,1,4027,2026,1,1,,0,,,6,17,19,6/17/26 18:00, +1,1,4028,2026,1,1,,0,,,6,17,20,6/17/26 19:00, +1,1,4029,2026,1,1,,0,,,6,17,21,6/17/26 20:00, +1,1,4030,2026,1,1,,0,,,6,17,22,6/17/26 21:00, +1,1,4031,2026,1,1,,0,,,6,17,23,6/17/26 22:00, +1,1,4032,2026,1,1,,0,,,6,17,24,6/17/26 23:00, +1,1,4033,2026,1,1,,0,,,6,18,1,6/18/26 0:00, +1,1,4034,2026,1,1,,0,,,6,18,2,6/18/26 1:00, +1,1,4035,2026,1,1,,0,,,6,18,3,6/18/26 2:00, +1,1,4036,2026,1,1,,0,,,6,18,4,6/18/26 3:00, +1,1,4037,2026,1,1,,0,,,6,18,5,6/18/26 4:00, +1,1,4038,2026,1,1,,0,,,6,18,6,6/18/26 5:00, +1,1,4039,2026,1,1,,0,,,6,18,7,6/18/26 6:00, +1,1,4040,2026,1,1,,0,,,6,18,8,6/18/26 7:00, +1,1,4041,2026,1,1,,0,,,6,18,9,6/18/26 8:00, +1,1,4042,2026,1,1,,0,,,6,18,10,6/18/26 9:00, +1,1,4043,2026,1,1,,0,,,6,18,11,6/18/26 10:00, +1,1,4044,2026,1,1,,0,,,6,18,12,6/18/26 11:00, +1,1,4045,2026,1,1,,0,,,6,18,13,6/18/26 12:00, +1,1,4046,2026,1,1,,0,,,6,18,14,6/18/26 13:00, +1,1,4047,2026,1,1,,0,,,6,18,15,6/18/26 14:00, +1,1,4048,2026,1,1,,0,,,6,18,16,6/18/26 15:00, +1,1,4049,2026,1,1,,0,,,6,18,17,6/18/26 16:00, +1,1,4050,2026,1,1,,0,,,6,18,18,6/18/26 17:00, +1,1,4051,2026,1,1,,0,,,6,18,19,6/18/26 18:00, +1,1,4052,2026,1,1,,0,,,6,18,20,6/18/26 19:00, +1,1,4053,2026,1,1,,0,,,6,18,21,6/18/26 20:00, +1,1,4054,2026,1,1,,0,,,6,18,22,6/18/26 21:00, +1,1,4055,2026,1,1,,0,,,6,18,23,6/18/26 22:00, +1,1,4056,2026,1,1,,0,,,6,18,24,6/18/26 23:00, +1,1,4057,2026,1,1,,0,,,6,19,1,6/19/26 0:00, +1,1,4058,2026,1,1,,0,,,6,19,2,6/19/26 1:00, +1,1,4059,2026,1,1,,0,,,6,19,3,6/19/26 2:00, +1,1,4060,2026,1,1,,0,,,6,19,4,6/19/26 3:00, +1,1,4061,2026,1,1,,0,,,6,19,5,6/19/26 4:00, +1,1,4062,2026,1,1,,0,,,6,19,6,6/19/26 5:00, +1,1,4063,2026,1,1,,0,,,6,19,7,6/19/26 6:00, +1,1,4064,2026,1,1,,0,,,6,19,8,6/19/26 7:00, +1,1,4065,2026,1,1,,0,,,6,19,9,6/19/26 8:00, +1,1,4066,2026,1,1,,0,,,6,19,10,6/19/26 9:00, +1,1,4067,2026,1,1,,0,,,6,19,11,6/19/26 10:00, +1,1,4068,2026,1,1,,0,,,6,19,12,6/19/26 11:00, +1,1,4069,2026,1,1,,0,,,6,19,13,6/19/26 12:00, +1,1,4070,2026,1,1,,0,,,6,19,14,6/19/26 13:00, +1,1,4071,2026,1,1,,0,,,6,19,15,6/19/26 14:00, +1,1,4072,2026,1,1,,0,,,6,19,16,6/19/26 15:00, +1,1,4073,2026,1,1,,0,,,6,19,17,6/19/26 16:00, +1,1,4074,2026,1,1,,0,,,6,19,18,6/19/26 17:00, +1,1,4075,2026,1,1,,0,,,6,19,19,6/19/26 18:00, +1,1,4076,2026,1,1,,0,,,6,19,20,6/19/26 19:00, +1,1,4077,2026,1,1,,0,,,6,19,21,6/19/26 20:00, +1,1,4078,2026,1,1,,0,,,6,19,22,6/19/26 21:00, +1,1,4079,2026,1,1,,0,,,6,19,23,6/19/26 22:00, +1,1,4080,2026,1,1,,0,,,6,19,24,6/19/26 23:00, +1,1,4081,2026,1,1,,0,,,6,20,1,6/20/26 0:00, +1,1,4082,2026,1,1,,0,,,6,20,2,6/20/26 1:00, +1,1,4083,2026,1,1,,0,,,6,20,3,6/20/26 2:00, +1,1,4084,2026,1,1,,0,,,6,20,4,6/20/26 3:00, +1,1,4085,2026,1,1,,0,,,6,20,5,6/20/26 4:00, +1,1,4086,2026,1,1,,0,,,6,20,6,6/20/26 5:00, +1,1,4087,2026,1,1,,0,,,6,20,7,6/20/26 6:00, +1,1,4088,2026,1,1,,0,,,6,20,8,6/20/26 7:00, +1,1,4089,2026,1,1,,0,,,6,20,9,6/20/26 8:00, +1,1,4090,2026,1,1,,0,,,6,20,10,6/20/26 9:00, +1,1,4091,2026,1,1,,0,,,6,20,11,6/20/26 10:00, +1,1,4092,2026,1,1,,0,,,6,20,12,6/20/26 11:00, +1,1,4093,2026,1,1,,0,,,6,20,13,6/20/26 12:00, +1,1,4094,2026,1,1,,0,,,6,20,14,6/20/26 13:00, +1,1,4095,2026,1,1,,0,,,6,20,15,6/20/26 14:00, +1,1,4096,2026,1,1,,0,,,6,20,16,6/20/26 15:00, +1,1,4097,2026,1,1,,0,,,6,20,17,6/20/26 16:00, +1,1,4098,2026,1,1,,0,,,6,20,18,6/20/26 17:00, +1,1,4099,2026,1,1,,0,,,6,20,19,6/20/26 18:00, +1,1,4100,2026,1,1,,0,,,6,20,20,6/20/26 19:00, +1,1,4101,2026,1,1,,0,,,6,20,21,6/20/26 20:00, +1,1,4102,2026,1,1,,0,,,6,20,22,6/20/26 21:00, +1,1,4103,2026,1,1,,0,,,6,20,23,6/20/26 22:00, +1,1,4104,2026,1,1,,0,,,6,20,24,6/20/26 23:00, +1,1,4105,2026,1,1,,0,,,6,21,1,6/21/26 0:00, +1,1,4106,2026,1,1,,0,,,6,21,2,6/21/26 1:00, +1,1,4107,2026,1,1,,0,,,6,21,3,6/21/26 2:00, +1,1,4108,2026,1,1,,0,,,6,21,4,6/21/26 3:00, +1,1,4109,2026,1,1,,0,,,6,21,5,6/21/26 4:00, +1,1,4110,2026,1,1,,0,,,6,21,6,6/21/26 5:00, +1,1,4111,2026,1,1,,0,,,6,21,7,6/21/26 6:00, +1,1,4112,2026,1,1,,0,,,6,21,8,6/21/26 7:00, +1,1,4113,2026,1,1,,0,,,6,21,9,6/21/26 8:00, +1,1,4114,2026,1,1,,0,,,6,21,10,6/21/26 9:00, +1,1,4115,2026,1,1,,0,,,6,21,11,6/21/26 10:00, +1,1,4116,2026,1,1,,0,,,6,21,12,6/21/26 11:00, +1,1,4117,2026,1,1,,0,,,6,21,13,6/21/26 12:00, +1,1,4118,2026,1,1,,0,,,6,21,14,6/21/26 13:00, +1,1,4119,2026,1,1,,0,,,6,21,15,6/21/26 14:00, +1,1,4120,2026,1,1,,0,,,6,21,16,6/21/26 15:00, +1,1,4121,2026,1,1,,0,,,6,21,17,6/21/26 16:00, +1,1,4122,2026,1,1,,0,,,6,21,18,6/21/26 17:00, +1,1,4123,2026,1,1,,0,,,6,21,19,6/21/26 18:00, +1,1,4124,2026,1,1,,0,,,6,21,20,6/21/26 19:00, +1,1,4125,2026,1,1,,0,,,6,21,21,6/21/26 20:00, +1,1,4126,2026,1,1,,0,,,6,21,22,6/21/26 21:00, +1,1,4127,2026,1,1,,0,,,6,21,23,6/21/26 22:00, +1,1,4128,2026,1,1,,0,,,6,21,24,6/21/26 23:00, +1,1,4129,2026,1,1,,0,,,6,22,1,6/22/26 0:00, +1,1,4130,2026,1,1,,0,,,6,22,2,6/22/26 1:00, +1,1,4131,2026,1,1,,0,,,6,22,3,6/22/26 2:00, +1,1,4132,2026,1,1,,0,,,6,22,4,6/22/26 3:00, +1,1,4133,2026,1,1,,0,,,6,22,5,6/22/26 4:00, +1,1,4134,2026,1,1,,0,,,6,22,6,6/22/26 5:00, +1,1,4135,2026,1,1,,0,,,6,22,7,6/22/26 6:00, +1,1,4136,2026,1,1,,0,,,6,22,8,6/22/26 7:00, +1,1,4137,2026,1,1,,0,,,6,22,9,6/22/26 8:00, +1,1,4138,2026,1,1,,0,,,6,22,10,6/22/26 9:00, +1,1,4139,2026,1,1,,0,,,6,22,11,6/22/26 10:00, +1,1,4140,2026,1,1,,0,,,6,22,12,6/22/26 11:00, +1,1,4141,2026,1,1,,0,,,6,22,13,6/22/26 12:00, +1,1,4142,2026,1,1,,0,,,6,22,14,6/22/26 13:00, +1,1,4143,2026,1,1,,0,,,6,22,15,6/22/26 14:00, +1,1,4144,2026,1,1,,0,,,6,22,16,6/22/26 15:00, +1,1,4145,2026,1,1,,0,,,6,22,17,6/22/26 16:00, +1,1,4146,2026,1,1,,0,,,6,22,18,6/22/26 17:00, +1,1,4147,2026,1,1,,0,,,6,22,19,6/22/26 18:00, +1,1,4148,2026,1,1,,0,,,6,22,20,6/22/26 19:00, +1,1,4149,2026,1,1,,0,,,6,22,21,6/22/26 20:00, +1,1,4150,2026,1,1,,0,,,6,22,22,6/22/26 21:00, +1,1,4151,2026,1,1,,0,,,6,22,23,6/22/26 22:00, +1,1,4152,2026,1,1,,0,,,6,22,24,6/22/26 23:00, +1,1,4153,2026,1,1,,0,,,6,23,1,6/23/26 0:00, +1,1,4154,2026,1,1,,0,,,6,23,2,6/23/26 1:00, +1,1,4155,2026,1,1,,0,,,6,23,3,6/23/26 2:00, +1,1,4156,2026,1,1,,0,,,6,23,4,6/23/26 3:00, +1,1,4157,2026,1,1,,0,,,6,23,5,6/23/26 4:00, +1,1,4158,2026,1,1,,0,,,6,23,6,6/23/26 5:00, +1,1,4159,2026,1,1,,0,,,6,23,7,6/23/26 6:00, +1,1,4160,2026,1,1,,0,,,6,23,8,6/23/26 7:00, +1,1,4161,2026,1,1,,0,,,6,23,9,6/23/26 8:00, +1,1,4162,2026,1,1,,0,,,6,23,10,6/23/26 9:00, +1,1,4163,2026,1,1,,0,,,6,23,11,6/23/26 10:00, +1,1,4164,2026,1,1,,0,,,6,23,12,6/23/26 11:00, +1,1,4165,2026,1,1,,0,,,6,23,13,6/23/26 12:00, +1,1,4166,2026,1,1,,0,,,6,23,14,6/23/26 13:00, +1,1,4167,2026,1,1,,0,,,6,23,15,6/23/26 14:00, +1,1,4168,2026,1,1,,0,,,6,23,16,6/23/26 15:00, +1,1,4169,2026,1,1,,0,,,6,23,17,6/23/26 16:00, +1,1,4170,2026,1,1,,0,,,6,23,18,6/23/26 17:00, +1,1,4171,2026,1,1,,0,,,6,23,19,6/23/26 18:00, +1,1,4172,2026,1,1,,0,,,6,23,20,6/23/26 19:00, +1,1,4173,2026,1,1,,0,,,6,23,21,6/23/26 20:00, +1,1,4174,2026,1,1,,0,,,6,23,22,6/23/26 21:00, +1,1,4175,2026,1,1,,0,,,6,23,23,6/23/26 22:00, +1,1,4176,2026,1,1,,0,,,6,23,24,6/23/26 23:00, +1,1,4177,2026,1,1,,0,,,6,24,1,6/24/26 0:00, +1,1,4178,2026,1,1,,0,,,6,24,2,6/24/26 1:00, +1,1,4179,2026,1,1,,0,,,6,24,3,6/24/26 2:00, +1,1,4180,2026,1,1,,0,,,6,24,4,6/24/26 3:00, +1,1,4181,2026,1,1,,0,,,6,24,5,6/24/26 4:00, +1,1,4182,2026,1,1,,0,,,6,24,6,6/24/26 5:00, +1,1,4183,2026,1,1,,0,,,6,24,7,6/24/26 6:00, +1,1,4184,2026,1,1,,0,,,6,24,8,6/24/26 7:00, +1,1,4185,2026,1,1,,0,,,6,24,9,6/24/26 8:00, +1,1,4186,2026,1,1,,0,,,6,24,10,6/24/26 9:00, +1,1,4187,2026,1,1,,0,,,6,24,11,6/24/26 10:00, +1,1,4188,2026,1,1,,0,,,6,24,12,6/24/26 11:00, +1,1,4189,2026,1,1,,0,,,6,24,13,6/24/26 12:00, +1,1,4190,2026,1,1,,0,,,6,24,14,6/24/26 13:00, +1,1,4191,2026,1,1,,0,,,6,24,15,6/24/26 14:00, +1,1,4192,2026,1,1,,0,,,6,24,16,6/24/26 15:00, +1,1,4193,2026,1,1,,0,,,6,24,17,6/24/26 16:00, +1,1,4194,2026,1,1,,0,,,6,24,18,6/24/26 17:00, +1,1,4195,2026,1,1,,0,,,6,24,19,6/24/26 18:00, +1,1,4196,2026,1,1,,0,,,6,24,20,6/24/26 19:00, +1,1,4197,2026,1,1,,0,,,6,24,21,6/24/26 20:00, +1,1,4198,2026,1,1,,0,,,6,24,22,6/24/26 21:00, +1,1,4199,2026,1,1,,0,,,6,24,23,6/24/26 22:00, +1,1,4200,2026,1,1,,0,,,6,24,24,6/24/26 23:00, +1,1,4201,2026,1,1,,0,,,6,25,1,6/25/26 0:00, +1,1,4202,2026,1,1,,0,,,6,25,2,6/25/26 1:00, +1,1,4203,2026,1,1,,0,,,6,25,3,6/25/26 2:00, +1,1,4204,2026,1,1,,0,,,6,25,4,6/25/26 3:00, +1,1,4205,2026,1,1,,0,,,6,25,5,6/25/26 4:00, +1,1,4206,2026,1,1,,0,,,6,25,6,6/25/26 5:00, +1,1,4207,2026,1,1,,0,,,6,25,7,6/25/26 6:00, +1,1,4208,2026,1,1,,0,,,6,25,8,6/25/26 7:00, +1,1,4209,2026,1,1,,0,,,6,25,9,6/25/26 8:00, +1,1,4210,2026,1,1,,0,,,6,25,10,6/25/26 9:00, +1,1,4211,2026,1,1,,0,,,6,25,11,6/25/26 10:00, +1,1,4212,2026,1,1,,0,,,6,25,12,6/25/26 11:00, +1,1,4213,2026,1,1,,0,,,6,25,13,6/25/26 12:00, +1,1,4214,2026,1,1,,0,,,6,25,14,6/25/26 13:00, +1,1,4215,2026,1,1,,0,,,6,25,15,6/25/26 14:00, +1,1,4216,2026,1,1,,0,,,6,25,16,6/25/26 15:00, +1,1,4217,2026,1,1,,0,,,6,25,17,6/25/26 16:00, +1,1,4218,2026,1,1,,0,,,6,25,18,6/25/26 17:00, +1,1,4219,2026,1,1,,0,,,6,25,19,6/25/26 18:00, +1,1,4220,2026,1,1,,0,,,6,25,20,6/25/26 19:00, +1,1,4221,2026,1,1,,0,,,6,25,21,6/25/26 20:00, +1,1,4222,2026,1,1,,0,,,6,25,22,6/25/26 21:00, +1,1,4223,2026,1,1,,0,,,6,25,23,6/25/26 22:00, +1,1,4224,2026,1,1,,0,,,6,25,24,6/25/26 23:00, +1,1,4225,2026,1,1,,0,,,6,26,1,6/26/26 0:00, +1,1,4226,2026,1,1,,0,,,6,26,2,6/26/26 1:00, +1,1,4227,2026,1,1,,0,,,6,26,3,6/26/26 2:00, +1,1,4228,2026,1,1,,0,,,6,26,4,6/26/26 3:00, +1,1,4229,2026,1,1,,0,,,6,26,5,6/26/26 4:00, +1,1,4230,2026,1,1,,0,,,6,26,6,6/26/26 5:00, +1,1,4231,2026,1,1,,0,,,6,26,7,6/26/26 6:00, +1,1,4232,2026,1,1,,0,,,6,26,8,6/26/26 7:00, +1,1,4233,2026,1,1,,0,,,6,26,9,6/26/26 8:00, +1,1,4234,2026,1,1,,0,,,6,26,10,6/26/26 9:00, +1,1,4235,2026,1,1,,0,,,6,26,11,6/26/26 10:00, +1,1,4236,2026,1,1,,0,,,6,26,12,6/26/26 11:00, +1,1,4237,2026,1,1,,0,,,6,26,13,6/26/26 12:00, +1,1,4238,2026,1,1,,0,,,6,26,14,6/26/26 13:00, +1,1,4239,2026,1,1,,0,,,6,26,15,6/26/26 14:00, +1,1,4240,2026,1,1,,0,,,6,26,16,6/26/26 15:00, +1,1,4241,2026,1,1,,0,,,6,26,17,6/26/26 16:00, +1,1,4242,2026,1,1,,0,,,6,26,18,6/26/26 17:00, +1,1,4243,2026,1,1,,0,,,6,26,19,6/26/26 18:00, +1,1,4244,2026,1,1,,0,,,6,26,20,6/26/26 19:00, +1,1,4245,2026,1,1,,0,,,6,26,21,6/26/26 20:00, +1,1,4246,2026,1,1,,0,,,6,26,22,6/26/26 21:00, +1,1,4247,2026,1,1,,0,,,6,26,23,6/26/26 22:00, +1,1,4248,2026,1,1,,0,,,6,26,24,6/26/26 23:00, +1,1,4249,2026,1,1,,0,,,6,27,1,6/27/26 0:00, +1,1,4250,2026,1,1,,0,,,6,27,2,6/27/26 1:00, +1,1,4251,2026,1,1,,0,,,6,27,3,6/27/26 2:00, +1,1,4252,2026,1,1,,0,,,6,27,4,6/27/26 3:00, +1,1,4253,2026,1,1,,0,,,6,27,5,6/27/26 4:00, +1,1,4254,2026,1,1,,0,,,6,27,6,6/27/26 5:00, +1,1,4255,2026,1,1,,0,,,6,27,7,6/27/26 6:00, +1,1,4256,2026,1,1,,0,,,6,27,8,6/27/26 7:00, +1,1,4257,2026,1,1,,0,,,6,27,9,6/27/26 8:00, +1,1,4258,2026,1,1,,0,,,6,27,10,6/27/26 9:00, +1,1,4259,2026,1,1,,0,,,6,27,11,6/27/26 10:00, +1,1,4260,2026,1,1,,0,,,6,27,12,6/27/26 11:00, +1,1,4261,2026,1,1,,0,,,6,27,13,6/27/26 12:00, +1,1,4262,2026,1,1,,0,,,6,27,14,6/27/26 13:00, +1,1,4263,2026,1,1,,0,,,6,27,15,6/27/26 14:00, +1,1,4264,2026,1,1,,0,,,6,27,16,6/27/26 15:00, +1,1,4265,2026,1,1,,0,,,6,27,17,6/27/26 16:00, +1,1,4266,2026,1,1,,0,,,6,27,18,6/27/26 17:00, +1,1,4267,2026,1,1,,0,,,6,27,19,6/27/26 18:00, +1,1,4268,2026,1,1,,0,,,6,27,20,6/27/26 19:00, +1,1,4269,2026,1,1,,0,,,6,27,21,6/27/26 20:00, +1,1,4270,2026,1,1,,0,,,6,27,22,6/27/26 21:00, +1,1,4271,2026,1,1,,0,,,6,27,23,6/27/26 22:00, +1,1,4272,2026,1,1,,0,,,6,27,24,6/27/26 23:00, +1,1,4273,2026,1,1,,0,,,6,28,1,6/28/26 0:00, +1,1,4274,2026,1,1,,0,,,6,28,2,6/28/26 1:00, +1,1,4275,2026,1,1,,0,,,6,28,3,6/28/26 2:00, +1,1,4276,2026,1,1,,0,,,6,28,4,6/28/26 3:00, +1,1,4277,2026,1,1,,0,,,6,28,5,6/28/26 4:00, +1,1,4278,2026,1,1,,0,,,6,28,6,6/28/26 5:00, +1,1,4279,2026,1,1,,0,,,6,28,7,6/28/26 6:00, +1,1,4280,2026,1,1,,0,,,6,28,8,6/28/26 7:00, +1,1,4281,2026,1,1,,0,,,6,28,9,6/28/26 8:00, +1,1,4282,2026,1,1,,0,,,6,28,10,6/28/26 9:00, +1,1,4283,2026,1,1,,0,,,6,28,11,6/28/26 10:00, +1,1,4284,2026,1,1,,0,,,6,28,12,6/28/26 11:00, +1,1,4285,2026,1,1,,0,,,6,28,13,6/28/26 12:00, +1,1,4286,2026,1,1,,0,,,6,28,14,6/28/26 13:00, +1,1,4287,2026,1,1,,0,,,6,28,15,6/28/26 14:00, +1,1,4288,2026,1,1,,0,,,6,28,16,6/28/26 15:00, +1,1,4289,2026,1,1,,0,,,6,28,17,6/28/26 16:00, +1,1,4290,2026,1,1,,0,,,6,28,18,6/28/26 17:00, +1,1,4291,2026,1,1,,0,,,6,28,19,6/28/26 18:00, +1,1,4292,2026,1,1,,0,,,6,28,20,6/28/26 19:00, +1,1,4293,2026,1,1,,0,,,6,28,21,6/28/26 20:00, +1,1,4294,2026,1,1,,0,,,6,28,22,6/28/26 21:00, +1,1,4295,2026,1,1,,0,,,6,28,23,6/28/26 22:00, +1,1,4296,2026,1,1,,0,,,6,28,24,6/28/26 23:00, +1,1,4297,2026,1,1,,0,,,6,29,1,6/29/26 0:00, +1,1,4298,2026,1,1,,0,,,6,29,2,6/29/26 1:00, +1,1,4299,2026,1,1,,0,,,6,29,3,6/29/26 2:00, +1,1,4300,2026,1,1,,0,,,6,29,4,6/29/26 3:00, +1,1,4301,2026,1,1,,0,,,6,29,5,6/29/26 4:00, +1,1,4302,2026,1,1,,0,,,6,29,6,6/29/26 5:00, +1,1,4303,2026,1,1,,0,,,6,29,7,6/29/26 6:00, +1,1,4304,2026,1,1,,0,,,6,29,8,6/29/26 7:00, +1,1,4305,2026,1,1,,0,,,6,29,9,6/29/26 8:00, +1,1,4306,2026,1,1,,0,,,6,29,10,6/29/26 9:00, +1,1,4307,2026,1,1,,0,,,6,29,11,6/29/26 10:00, +1,1,4308,2026,1,1,,0,,,6,29,12,6/29/26 11:00, +1,1,4309,2026,1,1,,0,,,6,29,13,6/29/26 12:00, +1,1,4310,2026,1,1,,0,,,6,29,14,6/29/26 13:00, +1,1,4311,2026,1,1,,0,,,6,29,15,6/29/26 14:00, +1,1,4312,2026,1,1,,0,,,6,29,16,6/29/26 15:00, +1,1,4313,2026,1,1,,0,,,6,29,17,6/29/26 16:00, +1,1,4314,2026,1,1,,0,,,6,29,18,6/29/26 17:00, +1,1,4315,2026,1,1,,0,,,6,29,19,6/29/26 18:00, +1,1,4316,2026,1,1,,0,,,6,29,20,6/29/26 19:00, +1,1,4317,2026,1,1,,0,,,6,29,21,6/29/26 20:00, +1,1,4318,2026,1,1,,0,,,6,29,22,6/29/26 21:00, +1,1,4319,2026,1,1,,0,,,6,29,23,6/29/26 22:00, +1,1,4320,2026,1,1,,0,,,6,29,24,6/29/26 23:00, +1,1,4321,2026,1,1,,0,,,6,30,1,6/30/26 0:00, +1,1,4322,2026,1,1,,0,,,6,30,2,6/30/26 1:00, +1,1,4323,2026,1,1,,0,,,6,30,3,6/30/26 2:00, +1,1,4324,2026,1,1,,0,,,6,30,4,6/30/26 3:00, +1,1,4325,2026,1,1,,0,,,6,30,5,6/30/26 4:00, +1,1,4326,2026,1,1,,0,,,6,30,6,6/30/26 5:00, +1,1,4327,2026,1,1,,0,,,6,30,7,6/30/26 6:00, +1,1,4328,2026,1,1,,0,,,6,30,8,6/30/26 7:00, +1,1,4329,2026,1,1,,0,,,6,30,9,6/30/26 8:00, +1,1,4330,2026,1,1,,0,,,6,30,10,6/30/26 9:00, +1,1,4331,2026,1,1,,0,,,6,30,11,6/30/26 10:00, +1,1,4332,2026,1,1,,0,,,6,30,12,6/30/26 11:00, +1,1,4333,2026,1,1,,0,,,6,30,13,6/30/26 12:00, +1,1,4334,2026,1,1,,0,,,6,30,14,6/30/26 13:00, +1,1,4335,2026,1,1,,0,,,6,30,15,6/30/26 14:00, +1,1,4336,2026,1,1,,0,,,6,30,16,6/30/26 15:00, +1,1,4337,2026,1,1,,0,,,6,30,17,6/30/26 16:00, +1,1,4338,2026,1,1,,0,,,6,30,18,6/30/26 17:00, +1,1,4339,2026,1,1,,0,,,6,30,19,6/30/26 18:00, +1,1,4340,2026,1,1,,0,,,6,30,20,6/30/26 19:00, +1,1,4341,2026,1,1,,0,,,6,30,21,6/30/26 20:00, +1,1,4342,2026,1,1,,0,,,6,30,22,6/30/26 21:00, +1,1,4343,2026,1,1,,0,,,6,30,23,6/30/26 22:00, +1,1,4344,2026,1,1,,0,,,6,30,24,6/30/26 23:00, +1,1,4345,2026,1,1,,0,,,7,1,1,7/1/26 0:00, +1,1,4346,2026,1,1,,0,,,7,1,2,7/1/26 1:00, +1,1,4347,2026,1,1,,0,,,7,1,3,7/1/26 2:00, +1,1,4348,2026,1,1,,0,,,7,1,4,7/1/26 3:00, +1,1,4349,2026,1,1,,0,,,7,1,5,7/1/26 4:00, +1,1,4350,2026,1,1,,0,,,7,1,6,7/1/26 5:00, +1,1,4351,2026,1,1,,0,,,7,1,7,7/1/26 6:00, +1,1,4352,2026,1,1,,0,,,7,1,8,7/1/26 7:00, +1,1,4353,2026,1,1,,0,,,7,1,9,7/1/26 8:00, +1,1,4354,2026,1,1,,0,,,7,1,10,7/1/26 9:00, +1,1,4355,2026,1,1,,0,,,7,1,11,7/1/26 10:00, +1,1,4356,2026,1,1,,0,,,7,1,12,7/1/26 11:00, +1,1,4357,2026,1,1,,0,,,7,1,13,7/1/26 12:00, +1,1,4358,2026,1,1,,0,,,7,1,14,7/1/26 13:00, +1,1,4359,2026,1,1,,0,,,7,1,15,7/1/26 14:00, +1,1,4360,2026,1,1,,0,,,7,1,16,7/1/26 15:00, +1,1,4361,2026,1,1,,0,,,7,1,17,7/1/26 16:00, +1,1,4362,2026,1,1,,0,,,7,1,18,7/1/26 17:00, +1,1,4363,2026,1,1,,0,,,7,1,19,7/1/26 18:00, +1,1,4364,2026,1,1,,0,,,7,1,20,7/1/26 19:00, +1,1,4365,2026,1,1,,0,,,7,1,21,7/1/26 20:00, +1,1,4366,2026,1,1,,0,,,7,1,22,7/1/26 21:00, +1,1,4367,2026,1,1,,0,,,7,1,23,7/1/26 22:00, +1,1,4368,2026,1,1,,0,,,7,1,24,7/1/26 23:00, +1,1,4369,2026,1,1,,0,,,7,2,1,7/2/26 0:00, +1,1,4370,2026,1,1,,0,,,7,2,2,7/2/26 1:00, +1,1,4371,2026,1,1,,0,,,7,2,3,7/2/26 2:00, +1,1,4372,2026,1,1,,0,,,7,2,4,7/2/26 3:00, +1,1,4373,2026,1,1,,0,,,7,2,5,7/2/26 4:00, +1,1,4374,2026,1,1,,0,,,7,2,6,7/2/26 5:00, +1,1,4375,2026,1,1,,0,,,7,2,7,7/2/26 6:00, +1,1,4376,2026,1,1,,0,,,7,2,8,7/2/26 7:00, +1,1,4377,2026,1,1,,0,,,7,2,9,7/2/26 8:00, +1,1,4378,2026,1,1,,0,,,7,2,10,7/2/26 9:00, +1,1,4379,2026,1,1,,0,,,7,2,11,7/2/26 10:00, +1,1,4380,2026,1,1,,0,,,7,2,12,7/2/26 11:00, +1,1,4381,2026,1,1,,0,,,7,2,13,7/2/26 12:00, +1,1,4382,2026,1,1,,0,,,7,2,14,7/2/26 13:00, +1,1,4383,2026,1,1,,0,,,7,2,15,7/2/26 14:00, +1,1,4384,2026,1,1,,0,,,7,2,16,7/2/26 15:00, +1,1,4385,2026,1,1,,0,,,7,2,17,7/2/26 16:00, +1,1,4386,2026,1,1,,0,,,7,2,18,7/2/26 17:00, +1,1,4387,2026,1,1,,0,,,7,2,19,7/2/26 18:00, +1,1,4388,2026,1,1,,0,,,7,2,20,7/2/26 19:00, +1,1,4389,2026,1,1,,0,,,7,2,21,7/2/26 20:00, +1,1,4390,2026,1,1,,0,,,7,2,22,7/2/26 21:00, +1,1,4391,2026,1,1,,0,,,7,2,23,7/2/26 22:00, +1,1,4392,2026,1,1,,0,,,7,2,24,7/2/26 23:00, +1,1,4393,2026,1,1,,0,,,7,3,1,7/3/26 0:00, +1,1,4394,2026,1,1,,0,,,7,3,2,7/3/26 1:00, +1,1,4395,2026,1,1,,0,,,7,3,3,7/3/26 2:00, +1,1,4396,2026,1,1,,0,,,7,3,4,7/3/26 3:00, +1,1,4397,2026,1,1,,0,,,7,3,5,7/3/26 4:00, +1,1,4398,2026,1,1,,0,,,7,3,6,7/3/26 5:00, +1,1,4399,2026,1,1,,0,,,7,3,7,7/3/26 6:00, +1,1,4400,2026,1,1,,0,,,7,3,8,7/3/26 7:00, +1,1,4401,2026,1,1,,0,,,7,3,9,7/3/26 8:00, +1,1,4402,2026,1,1,,0,,,7,3,10,7/3/26 9:00, +1,1,4403,2026,1,1,,0,,,7,3,11,7/3/26 10:00, +1,1,4404,2026,1,1,,0,,,7,3,12,7/3/26 11:00, +1,1,4405,2026,1,1,,0,,,7,3,13,7/3/26 12:00, +1,1,4406,2026,1,1,,0,,,7,3,14,7/3/26 13:00, +1,1,4407,2026,1,1,,0,,,7,3,15,7/3/26 14:00, +1,1,4408,2026,1,1,,0,,,7,3,16,7/3/26 15:00, +1,1,4409,2026,1,1,,0,,,7,3,17,7/3/26 16:00, +1,1,4410,2026,1,1,,0,,,7,3,18,7/3/26 17:00, +1,1,4411,2026,1,1,,0,,,7,3,19,7/3/26 18:00, +1,1,4412,2026,1,1,,0,,,7,3,20,7/3/26 19:00, +1,1,4413,2026,1,1,,0,,,7,3,21,7/3/26 20:00, +1,1,4414,2026,1,1,,0,,,7,3,22,7/3/26 21:00, +1,1,4415,2026,1,1,,0,,,7,3,23,7/3/26 22:00, +1,1,4416,2026,1,1,,0,,,7,3,24,7/3/26 23:00, +1,1,4417,2026,1,1,,0,,,7,4,1,7/4/26 0:00, +1,1,4418,2026,1,1,,0,,,7,4,2,7/4/26 1:00, +1,1,4419,2026,1,1,,0,,,7,4,3,7/4/26 2:00, +1,1,4420,2026,1,1,,0,,,7,4,4,7/4/26 3:00, +1,1,4421,2026,1,1,,0,,,7,4,5,7/4/26 4:00, +1,1,4422,2026,1,1,,0,,,7,4,6,7/4/26 5:00, +1,1,4423,2026,1,1,,0,,,7,4,7,7/4/26 6:00, +1,1,4424,2026,1,1,,0,,,7,4,8,7/4/26 7:00, +1,1,4425,2026,1,1,,0,,,7,4,9,7/4/26 8:00, +1,1,4426,2026,1,1,,0,,,7,4,10,7/4/26 9:00, +1,1,4427,2026,1,1,,0,,,7,4,11,7/4/26 10:00, +1,1,4428,2026,1,1,,0,,,7,4,12,7/4/26 11:00, +1,1,4429,2026,1,1,,0,,,7,4,13,7/4/26 12:00, +1,1,4430,2026,1,1,,0,,,7,4,14,7/4/26 13:00, +1,1,4431,2026,1,1,,0,,,7,4,15,7/4/26 14:00, +1,1,4432,2026,1,1,,0,,,7,4,16,7/4/26 15:00, +1,1,4433,2026,1,1,,0,,,7,4,17,7/4/26 16:00, +1,1,4434,2026,1,1,,0,,,7,4,18,7/4/26 17:00, +1,1,4435,2026,1,1,,0,,,7,4,19,7/4/26 18:00, +1,1,4436,2026,1,1,,0,,,7,4,20,7/4/26 19:00, +1,1,4437,2026,1,1,,0,,,7,4,21,7/4/26 20:00, +1,1,4438,2026,1,1,,0,,,7,4,22,7/4/26 21:00, +1,1,4439,2026,1,1,,0,,,7,4,23,7/4/26 22:00, +1,1,4440,2026,1,1,,0,,,7,4,24,7/4/26 23:00, +1,1,4441,2026,1,1,,0,,,7,5,1,7/5/26 0:00, +1,1,4442,2026,1,1,,0,,,7,5,2,7/5/26 1:00, +1,1,4443,2026,1,1,,0,,,7,5,3,7/5/26 2:00, +1,1,4444,2026,1,1,,0,,,7,5,4,7/5/26 3:00, +1,1,4445,2026,1,1,,0,,,7,5,5,7/5/26 4:00, +1,1,4446,2026,1,1,,0,,,7,5,6,7/5/26 5:00, +1,1,4447,2026,1,1,,0,,,7,5,7,7/5/26 6:00, +1,1,4448,2026,1,1,,0,,,7,5,8,7/5/26 7:00, +1,1,4449,2026,1,1,,0,,,7,5,9,7/5/26 8:00, +1,1,4450,2026,1,1,,0,,,7,5,10,7/5/26 9:00, +1,1,4451,2026,1,1,,0,,,7,5,11,7/5/26 10:00, +1,1,4452,2026,1,1,,0,,,7,5,12,7/5/26 11:00, +1,1,4453,2026,1,1,,0,,,7,5,13,7/5/26 12:00, +1,1,4454,2026,1,1,,0,,,7,5,14,7/5/26 13:00, +1,1,4455,2026,1,1,,0,,,7,5,15,7/5/26 14:00, +1,1,4456,2026,1,1,,0,,,7,5,16,7/5/26 15:00, +1,1,4457,2026,1,1,,0,,,7,5,17,7/5/26 16:00, +1,1,4458,2026,1,1,,0,,,7,5,18,7/5/26 17:00, +1,1,4459,2026,1,1,,0,,,7,5,19,7/5/26 18:00, +1,1,4460,2026,1,1,,0,,,7,5,20,7/5/26 19:00, +1,1,4461,2026,1,1,,0,,,7,5,21,7/5/26 20:00, +1,1,4462,2026,1,1,,0,,,7,5,22,7/5/26 21:00, +1,1,4463,2026,1,1,,0,,,7,5,23,7/5/26 22:00, +1,1,4464,2026,1,1,,0,,,7,5,24,7/5/26 23:00, +1,1,4465,2026,1,1,,0,,,7,6,1,7/6/26 0:00, +1,1,4466,2026,1,1,,0,,,7,6,2,7/6/26 1:00, +1,1,4467,2026,1,1,,0,,,7,6,3,7/6/26 2:00, +1,1,4468,2026,1,1,,0,,,7,6,4,7/6/26 3:00, +1,1,4469,2026,1,1,,0,,,7,6,5,7/6/26 4:00, +1,1,4470,2026,1,1,,0,,,7,6,6,7/6/26 5:00, +1,1,4471,2026,1,1,,0,,,7,6,7,7/6/26 6:00, +1,1,4472,2026,1,1,,0,,,7,6,8,7/6/26 7:00, +1,1,4473,2026,1,1,,0,,,7,6,9,7/6/26 8:00, +1,1,4474,2026,1,1,,0,,,7,6,10,7/6/26 9:00, +1,1,4475,2026,1,1,,0,,,7,6,11,7/6/26 10:00, +1,1,4476,2026,1,1,,0,,,7,6,12,7/6/26 11:00, +1,1,4477,2026,1,1,,0,,,7,6,13,7/6/26 12:00, +1,1,4478,2026,1,1,,0,,,7,6,14,7/6/26 13:00, +1,1,4479,2026,1,1,,0,,,7,6,15,7/6/26 14:00, +1,1,4480,2026,1,1,,0,,,7,6,16,7/6/26 15:00, +1,1,4481,2026,1,1,,0,,,7,6,17,7/6/26 16:00, +1,1,4482,2026,1,1,,0,,,7,6,18,7/6/26 17:00, +1,1,4483,2026,1,1,,0,,,7,6,19,7/6/26 18:00, +1,1,4484,2026,1,1,,0,,,7,6,20,7/6/26 19:00, +1,1,4485,2026,1,1,,0,,,7,6,21,7/6/26 20:00, +1,1,4486,2026,1,1,,0,,,7,6,22,7/6/26 21:00, +1,1,4487,2026,1,1,,0,,,7,6,23,7/6/26 22:00, +1,1,4488,2026,1,1,,0,,,7,6,24,7/6/26 23:00, +1,1,4489,2026,1,1,,0,,,7,7,1,7/7/26 0:00, +1,1,4490,2026,1,1,,0,,,7,7,2,7/7/26 1:00, +1,1,4491,2026,1,1,,0,,,7,7,3,7/7/26 2:00, +1,1,4492,2026,1,1,,0,,,7,7,4,7/7/26 3:00, +1,1,4493,2026,1,1,,0,,,7,7,5,7/7/26 4:00, +1,1,4494,2026,1,1,,0,,,7,7,6,7/7/26 5:00, +1,1,4495,2026,1,1,,0,,,7,7,7,7/7/26 6:00, +1,1,4496,2026,1,1,,0,,,7,7,8,7/7/26 7:00, +1,1,4497,2026,1,1,,0,,,7,7,9,7/7/26 8:00, +1,1,4498,2026,1,1,,0,,,7,7,10,7/7/26 9:00, +1,1,4499,2026,1,1,,0,,,7,7,11,7/7/26 10:00, +1,1,4500,2026,1,1,,0,,,7,7,12,7/7/26 11:00, +1,1,4501,2026,1,1,,0,,,7,7,13,7/7/26 12:00, +1,1,4502,2026,1,1,,0,,,7,7,14,7/7/26 13:00, +1,1,4503,2026,1,1,,0,,,7,7,15,7/7/26 14:00, +1,1,4504,2026,1,1,,0,,,7,7,16,7/7/26 15:00, +1,1,4505,2026,1,1,,0,,,7,7,17,7/7/26 16:00, +1,1,4506,2026,1,1,,0,,,7,7,18,7/7/26 17:00, +1,1,4507,2026,1,1,,0,,,7,7,19,7/7/26 18:00, +1,1,4508,2026,1,1,,0,,,7,7,20,7/7/26 19:00, +1,1,4509,2026,1,1,,0,,,7,7,21,7/7/26 20:00, +1,1,4510,2026,1,1,,0,,,7,7,22,7/7/26 21:00, +1,1,4511,2026,1,1,,0,,,7,7,23,7/7/26 22:00, +1,1,4512,2026,1,1,,0,,,7,7,24,7/7/26 23:00, +1,1,4513,2026,1,1,,0,,,7,8,1,7/8/26 0:00, +1,1,4514,2026,1,1,,0,,,7,8,2,7/8/26 1:00, +1,1,4515,2026,1,1,,0,,,7,8,3,7/8/26 2:00, +1,1,4516,2026,1,1,,0,,,7,8,4,7/8/26 3:00, +1,1,4517,2026,1,1,,0,,,7,8,5,7/8/26 4:00, +1,1,4518,2026,1,1,,0,,,7,8,6,7/8/26 5:00, +1,1,4519,2026,1,1,,0,,,7,8,7,7/8/26 6:00, +1,1,4520,2026,1,1,,0,,,7,8,8,7/8/26 7:00, +1,1,4521,2026,1,1,,0,,,7,8,9,7/8/26 8:00, +1,1,4522,2026,1,1,,0,,,7,8,10,7/8/26 9:00, +1,1,4523,2026,1,1,,0,,,7,8,11,7/8/26 10:00, +1,1,4524,2026,1,1,,0,,,7,8,12,7/8/26 11:00, +1,1,4525,2026,1,1,,0,,,7,8,13,7/8/26 12:00, +1,1,4526,2026,1,1,,0,,,7,8,14,7/8/26 13:00, +1,1,4527,2026,1,1,,0,,,7,8,15,7/8/26 14:00, +1,1,4528,2026,1,1,,0,,,7,8,16,7/8/26 15:00, +1,1,4529,2026,1,1,,0,,,7,8,17,7/8/26 16:00, +1,1,4530,2026,1,1,,0,,,7,8,18,7/8/26 17:00, +1,1,4531,2026,1,1,,0,,,7,8,19,7/8/26 18:00, +1,1,4532,2026,1,1,,0,,,7,8,20,7/8/26 19:00, +1,1,4533,2026,1,1,,0,,,7,8,21,7/8/26 20:00, +1,1,4534,2026,1,1,,0,,,7,8,22,7/8/26 21:00, +1,1,4535,2026,1,1,,0,,,7,8,23,7/8/26 22:00, +1,1,4536,2026,1,1,,0,,,7,8,24,7/8/26 23:00, +1,1,4537,2026,1,1,,0,,,7,9,1,7/9/26 0:00, +1,1,4538,2026,1,1,,0,,,7,9,2,7/9/26 1:00, +1,1,4539,2026,1,1,,0,,,7,9,3,7/9/26 2:00, +1,1,4540,2026,1,1,,0,,,7,9,4,7/9/26 3:00, +1,1,4541,2026,1,1,,0,,,7,9,5,7/9/26 4:00, +1,1,4542,2026,1,1,,0,,,7,9,6,7/9/26 5:00, +1,1,4543,2026,1,1,,0,,,7,9,7,7/9/26 6:00, +1,1,4544,2026,1,1,,0,,,7,9,8,7/9/26 7:00, +1,1,4545,2026,1,1,,0,,,7,9,9,7/9/26 8:00, +1,1,4546,2026,1,1,,0,,,7,9,10,7/9/26 9:00, +1,1,4547,2026,1,1,,0,,,7,9,11,7/9/26 10:00, +1,1,4548,2026,1,1,,0,,,7,9,12,7/9/26 11:00, +1,1,4549,2026,1,1,,0,,,7,9,13,7/9/26 12:00, +1,1,4550,2026,1,1,,0,,,7,9,14,7/9/26 13:00, +1,1,4551,2026,1,1,,0,,,7,9,15,7/9/26 14:00, +1,1,4552,2026,1,1,,0,,,7,9,16,7/9/26 15:00, +1,1,4553,2026,1,1,,0,,,7,9,17,7/9/26 16:00, +1,1,4554,2026,1,1,,0,,,7,9,18,7/9/26 17:00, +1,1,4555,2026,1,1,,0,,,7,9,19,7/9/26 18:00, +1,1,4556,2026,1,1,,0,,,7,9,20,7/9/26 19:00, +1,1,4557,2026,1,1,,0,,,7,9,21,7/9/26 20:00, +1,1,4558,2026,1,1,,0,,,7,9,22,7/9/26 21:00, +1,1,4559,2026,1,1,,0,,,7,9,23,7/9/26 22:00, +1,1,4560,2026,1,1,,0,,,7,9,24,7/9/26 23:00, +1,1,4561,2026,1,1,,0,,,7,10,1,7/10/26 0:00, +1,1,4562,2026,1,1,,0,,,7,10,2,7/10/26 1:00, +1,1,4563,2026,1,1,,0,,,7,10,3,7/10/26 2:00, +1,1,4564,2026,1,1,,0,,,7,10,4,7/10/26 3:00, +1,1,4565,2026,1,1,,0,,,7,10,5,7/10/26 4:00, +1,1,4566,2026,1,1,,0,,,7,10,6,7/10/26 5:00, +1,1,4567,2026,1,1,,0,,,7,10,7,7/10/26 6:00, +1,1,4568,2026,1,1,,0,,,7,10,8,7/10/26 7:00, +1,1,4569,2026,1,1,,0,,,7,10,9,7/10/26 8:00, +1,1,4570,2026,1,1,,0,,,7,10,10,7/10/26 9:00, +1,1,4571,2026,1,1,,0,,,7,10,11,7/10/26 10:00, +1,1,4572,2026,1,1,,0,,,7,10,12,7/10/26 11:00, +1,1,4573,2026,1,1,,0,,,7,10,13,7/10/26 12:00, +1,1,4574,2026,1,1,,0,,,7,10,14,7/10/26 13:00, +1,1,4575,2026,1,1,,0,,,7,10,15,7/10/26 14:00, +1,1,4576,2026,1,1,,0,,,7,10,16,7/10/26 15:00, +1,1,4577,2026,1,1,,0,,,7,10,17,7/10/26 16:00, +1,1,4578,2026,1,1,,0,,,7,10,18,7/10/26 17:00, +1,1,4579,2026,1,1,,0,,,7,10,19,7/10/26 18:00, +1,1,4580,2026,1,1,,0,,,7,10,20,7/10/26 19:00, +1,1,4581,2026,1,1,,0,,,7,10,21,7/10/26 20:00, +1,1,4582,2026,1,1,,0,,,7,10,22,7/10/26 21:00, +1,1,4583,2026,1,1,,0,,,7,10,23,7/10/26 22:00, +1,1,4584,2026,1,1,,0,,,7,10,24,7/10/26 23:00, +1,1,4585,2026,1,1,,0,,,7,11,1,7/11/26 0:00, +1,1,4586,2026,1,1,,0,,,7,11,2,7/11/26 1:00, +1,1,4587,2026,1,1,,0,,,7,11,3,7/11/26 2:00, +1,1,4588,2026,1,1,,0,,,7,11,4,7/11/26 3:00, +1,1,4589,2026,1,1,,0,,,7,11,5,7/11/26 4:00, +1,1,4590,2026,1,1,,0,,,7,11,6,7/11/26 5:00, +1,1,4591,2026,1,1,,0,,,7,11,7,7/11/26 6:00, +1,1,4592,2026,1,1,,0,,,7,11,8,7/11/26 7:00, +1,1,4593,2026,1,1,,0,,,7,11,9,7/11/26 8:00, +1,1,4594,2026,1,1,,0,,,7,11,10,7/11/26 9:00, +1,1,4595,2026,1,1,,0,,,7,11,11,7/11/26 10:00, +1,1,4596,2026,1,1,,0,,,7,11,12,7/11/26 11:00, +1,1,4597,2026,1,1,,0,,,7,11,13,7/11/26 12:00, +1,1,4598,2026,1,1,,0,,,7,11,14,7/11/26 13:00, +1,1,4599,2026,1,1,,0,,,7,11,15,7/11/26 14:00, +1,1,4600,2026,1,1,,0,,,7,11,16,7/11/26 15:00, +1,1,4601,2026,1,1,,0,,,7,11,17,7/11/26 16:00, +1,1,4602,2026,1,1,,0,,,7,11,18,7/11/26 17:00, +1,1,4603,2026,1,1,,0,,,7,11,19,7/11/26 18:00, +1,1,4604,2026,1,1,,0,,,7,11,20,7/11/26 19:00, +1,1,4605,2026,1,1,,0,,,7,11,21,7/11/26 20:00, +1,1,4606,2026,1,1,,0,,,7,11,22,7/11/26 21:00, +1,1,4607,2026,1,1,,0,,,7,11,23,7/11/26 22:00, +1,1,4608,2026,1,1,,0,,,7,11,24,7/11/26 23:00, +1,1,4609,2026,1,1,,0,,,7,12,1,7/12/26 0:00, +1,1,4610,2026,1,1,,0,,,7,12,2,7/12/26 1:00, +1,1,4611,2026,1,1,,0,,,7,12,3,7/12/26 2:00, +1,1,4612,2026,1,1,,0,,,7,12,4,7/12/26 3:00, +1,1,4613,2026,1,1,,0,,,7,12,5,7/12/26 4:00, +1,1,4614,2026,1,1,,0,,,7,12,6,7/12/26 5:00, +1,1,4615,2026,1,1,,0,,,7,12,7,7/12/26 6:00, +1,1,4616,2026,1,1,,0,,,7,12,8,7/12/26 7:00, +1,1,4617,2026,1,1,,0,,,7,12,9,7/12/26 8:00, +1,1,4618,2026,1,1,,0,,,7,12,10,7/12/26 9:00, +1,1,4619,2026,1,1,,0,,,7,12,11,7/12/26 10:00, +1,1,4620,2026,1,1,,0,,,7,12,12,7/12/26 11:00, +1,1,4621,2026,1,1,,0,,,7,12,13,7/12/26 12:00, +1,1,4622,2026,1,1,,0,,,7,12,14,7/12/26 13:00, +1,1,4623,2026,1,1,,0,,,7,12,15,7/12/26 14:00, +1,1,4624,2026,1,1,,0,,,7,12,16,7/12/26 15:00, +1,1,4625,2026,1,1,,0,,,7,12,17,7/12/26 16:00, +1,1,4626,2026,1,1,,0,,,7,12,18,7/12/26 17:00, +1,1,4627,2026,1,1,,0,,,7,12,19,7/12/26 18:00, +1,1,4628,2026,1,1,,0,,,7,12,20,7/12/26 19:00, +1,1,4629,2026,1,1,,0,,,7,12,21,7/12/26 20:00, +1,1,4630,2026,1,1,,0,,,7,12,22,7/12/26 21:00, +1,1,4631,2026,1,1,,0,,,7,12,23,7/12/26 22:00, +1,1,4632,2026,1,1,,0,,,7,12,24,7/12/26 23:00, +1,1,4633,2026,1,1,,0,,,7,13,1,7/13/26 0:00, +1,1,4634,2026,1,1,,0,,,7,13,2,7/13/26 1:00, +1,1,4635,2026,1,1,,0,,,7,13,3,7/13/26 2:00, +1,1,4636,2026,1,1,,0,,,7,13,4,7/13/26 3:00, +1,1,4637,2026,1,1,,0,,,7,13,5,7/13/26 4:00, +1,1,4638,2026,1,1,,0,,,7,13,6,7/13/26 5:00, +1,1,4639,2026,1,1,,0,,,7,13,7,7/13/26 6:00, +1,1,4640,2026,1,1,,0,,,7,13,8,7/13/26 7:00, +1,1,4641,2026,1,1,,0,,,7,13,9,7/13/26 8:00, +1,1,4642,2026,1,1,,0,,,7,13,10,7/13/26 9:00, +1,1,4643,2026,1,1,,0,,,7,13,11,7/13/26 10:00, +1,1,4644,2026,1,1,,0,,,7,13,12,7/13/26 11:00, +1,1,4645,2026,1,1,,0,,,7,13,13,7/13/26 12:00, +1,1,4646,2026,1,1,,0,,,7,13,14,7/13/26 13:00, +1,1,4647,2026,1,1,,0,,,7,13,15,7/13/26 14:00, +1,1,4648,2026,1,1,,0,,,7,13,16,7/13/26 15:00, +1,1,4649,2026,1,1,,0,,,7,13,17,7/13/26 16:00, +1,1,4650,2026,1,1,,0,,,7,13,18,7/13/26 17:00, +1,1,4651,2026,1,1,,0,,,7,13,19,7/13/26 18:00, +1,1,4652,2026,1,1,,0,,,7,13,20,7/13/26 19:00, +1,1,4653,2026,1,1,,0,,,7,13,21,7/13/26 20:00, +1,1,4654,2026,1,1,,0,,,7,13,22,7/13/26 21:00, +1,1,4655,2026,1,1,,0,,,7,13,23,7/13/26 22:00, +1,1,4656,2026,1,1,,0,,,7,13,24,7/13/26 23:00, +1,1,4657,2026,1,1,,0,,,7,14,1,7/14/26 0:00, +1,1,4658,2026,1,1,,0,,,7,14,2,7/14/26 1:00, +1,1,4659,2026,1,1,,0,,,7,14,3,7/14/26 2:00, +1,1,4660,2026,1,1,,0,,,7,14,4,7/14/26 3:00, +1,1,4661,2026,1,1,,0,,,7,14,5,7/14/26 4:00, +1,1,4662,2026,1,1,,0,,,7,14,6,7/14/26 5:00, +1,1,4663,2026,1,1,,0,,,7,14,7,7/14/26 6:00, +1,1,4664,2026,1,1,,0,,,7,14,8,7/14/26 7:00, +1,1,4665,2026,1,1,,0,,,7,14,9,7/14/26 8:00, +1,1,4666,2026,1,1,,0,,,7,14,10,7/14/26 9:00, +1,1,4667,2026,1,1,,0,,,7,14,11,7/14/26 10:00, +1,1,4668,2026,1,1,,0,,,7,14,12,7/14/26 11:00, +1,1,4669,2026,1,1,,0,,,7,14,13,7/14/26 12:00, +1,1,4670,2026,1,1,,0,,,7,14,14,7/14/26 13:00, +1,1,4671,2026,1,1,,0,,,7,14,15,7/14/26 14:00, +1,1,4672,2026,1,1,,0,,,7,14,16,7/14/26 15:00, +1,1,4673,2026,1,1,,0,,,7,14,17,7/14/26 16:00, +1,1,4674,2026,1,1,,0,,,7,14,18,7/14/26 17:00, +1,1,4675,2026,1,1,,0,,,7,14,19,7/14/26 18:00, +1,1,4676,2026,1,1,,0,,,7,14,20,7/14/26 19:00, +1,1,4677,2026,1,1,,0,,,7,14,21,7/14/26 20:00, +1,1,4678,2026,1,1,,0,,,7,14,22,7/14/26 21:00, +1,1,4679,2026,1,1,,0,,,7,14,23,7/14/26 22:00, +1,1,4680,2026,1,1,,0,,,7,14,24,7/14/26 23:00, +1,1,4681,2026,1,1,,0,,,7,15,1,7/15/26 0:00, +1,1,4682,2026,1,1,,0,,,7,15,2,7/15/26 1:00, +1,1,4683,2026,1,1,,0,,,7,15,3,7/15/26 2:00, +1,1,4684,2026,1,1,,0,,,7,15,4,7/15/26 3:00, +1,1,4685,2026,1,1,,0,,,7,15,5,7/15/26 4:00, +1,1,4686,2026,1,1,,0,,,7,15,6,7/15/26 5:00, +1,1,4687,2026,1,1,,0,,,7,15,7,7/15/26 6:00, +1,1,4688,2026,1,1,,0,,,7,15,8,7/15/26 7:00, +1,1,4689,2026,1,1,,0,,,7,15,9,7/15/26 8:00, +1,1,4690,2026,1,1,,0,,,7,15,10,7/15/26 9:00, +1,1,4691,2026,1,1,,0,,,7,15,11,7/15/26 10:00, +1,1,4692,2026,1,1,,0,,,7,15,12,7/15/26 11:00, +1,1,4693,2026,1,1,,0,,,7,15,13,7/15/26 12:00, +1,1,4694,2026,1,1,,0,,,7,15,14,7/15/26 13:00, +1,1,4695,2026,1,1,,0,,,7,15,15,7/15/26 14:00, +1,1,4696,2026,1,1,,0,,,7,15,16,7/15/26 15:00, +1,1,4697,2026,1,1,,0,,,7,15,17,7/15/26 16:00, +1,1,4698,2026,1,1,,0,,,7,15,18,7/15/26 17:00, +1,1,4699,2026,1,1,,0,,,7,15,19,7/15/26 18:00, +1,1,4700,2026,1,1,,0,,,7,15,20,7/15/26 19:00, +1,1,4701,2026,1,1,,0,,,7,15,21,7/15/26 20:00, +1,1,4702,2026,1,1,,0,,,7,15,22,7/15/26 21:00, +1,1,4703,2026,1,1,,0,,,7,15,23,7/15/26 22:00, +1,1,4704,2026,1,1,,0,,,7,15,24,7/15/26 23:00, +1,1,4705,2026,1,1,,0,,,7,16,1,7/16/26 0:00, +1,1,4706,2026,1,1,,0,,,7,16,2,7/16/26 1:00, +1,1,4707,2026,1,1,,0,,,7,16,3,7/16/26 2:00, +1,1,4708,2026,1,1,,0,,,7,16,4,7/16/26 3:00, +1,1,4709,2026,1,1,,0,,,7,16,5,7/16/26 4:00, +1,1,4710,2026,1,1,,0,,,7,16,6,7/16/26 5:00, +1,1,4711,2026,1,1,,0,,,7,16,7,7/16/26 6:00, +1,1,4712,2026,1,1,,0,,,7,16,8,7/16/26 7:00, +1,1,4713,2026,1,1,,0,,,7,16,9,7/16/26 8:00, +1,1,4714,2026,1,1,,0,,,7,16,10,7/16/26 9:00, +1,1,4715,2026,1,1,,0,,,7,16,11,7/16/26 10:00, +1,1,4716,2026,1,1,,0,,,7,16,12,7/16/26 11:00, +1,1,4717,2026,1,1,,0,,,7,16,13,7/16/26 12:00, +1,1,4718,2026,1,1,,0,,,7,16,14,7/16/26 13:00, +1,1,4719,2026,1,1,,0,,,7,16,15,7/16/26 14:00, +1,1,4720,2026,1,1,,0,,,7,16,16,7/16/26 15:00, +1,1,4721,2026,1,1,,0,,,7,16,17,7/16/26 16:00, +1,1,4722,2026,1,1,,0,,,7,16,18,7/16/26 17:00, +1,1,4723,2026,1,1,,0,,,7,16,19,7/16/26 18:00, +1,1,4724,2026,1,1,,0,,,7,16,20,7/16/26 19:00, +1,1,4725,2026,1,1,,0,,,7,16,21,7/16/26 20:00, +1,1,4726,2026,1,1,,0,,,7,16,22,7/16/26 21:00, +1,1,4727,2026,1,1,,0,,,7,16,23,7/16/26 22:00, +1,1,4728,2026,1,1,,0,,,7,16,24,7/16/26 23:00, +1,1,4729,2026,1,1,,0,,,7,17,1,7/17/26 0:00, +1,1,4730,2026,1,1,,0,,,7,17,2,7/17/26 1:00, +1,1,4731,2026,1,1,,0,,,7,17,3,7/17/26 2:00, +1,1,4732,2026,1,1,,0,,,7,17,4,7/17/26 3:00, +1,1,4733,2026,1,1,,0,,,7,17,5,7/17/26 4:00, +1,1,4734,2026,1,1,,0,,,7,17,6,7/17/26 5:00, +1,1,4735,2026,1,1,,0,,,7,17,7,7/17/26 6:00, +1,1,4736,2026,1,1,,0,,,7,17,8,7/17/26 7:00, +1,1,4737,2026,1,1,,0,,,7,17,9,7/17/26 8:00, +1,1,4738,2026,1,1,,0,,,7,17,10,7/17/26 9:00, +1,1,4739,2026,1,1,,0,,,7,17,11,7/17/26 10:00, +1,1,4740,2026,1,1,,0,,,7,17,12,7/17/26 11:00, +1,1,4741,2026,1,1,,0,,,7,17,13,7/17/26 12:00, +1,1,4742,2026,1,1,,0,,,7,17,14,7/17/26 13:00, +1,1,4743,2026,1,1,,0,,,7,17,15,7/17/26 14:00, +1,1,4744,2026,1,1,,0,,,7,17,16,7/17/26 15:00, +1,1,4745,2026,1,1,,0,,,7,17,17,7/17/26 16:00, +1,1,4746,2026,1,1,,0,,,7,17,18,7/17/26 17:00, +1,1,4747,2026,1,1,,0,,,7,17,19,7/17/26 18:00, +1,1,4748,2026,1,1,,0,,,7,17,20,7/17/26 19:00, +1,1,4749,2026,1,1,,0,,,7,17,21,7/17/26 20:00, +1,1,4750,2026,1,1,,0,,,7,17,22,7/17/26 21:00, +1,1,4751,2026,1,1,,0,,,7,17,23,7/17/26 22:00, +1,1,4752,2026,1,1,,0,,,7,17,24,7/17/26 23:00, +1,1,4753,2026,1,1,,0,,,7,18,1,7/18/26 0:00, +1,1,4754,2026,1,1,,0,,,7,18,2,7/18/26 1:00, +1,1,4755,2026,1,1,,0,,,7,18,3,7/18/26 2:00, +1,1,4756,2026,1,1,,0,,,7,18,4,7/18/26 3:00, +1,1,4757,2026,1,1,,0,,,7,18,5,7/18/26 4:00, +1,1,4758,2026,1,1,,0,,,7,18,6,7/18/26 5:00, +1,1,4759,2026,1,1,,0,,,7,18,7,7/18/26 6:00, +1,1,4760,2026,1,1,,0,,,7,18,8,7/18/26 7:00, +1,1,4761,2026,1,1,,0,,,7,18,9,7/18/26 8:00, +1,1,4762,2026,1,1,,0,,,7,18,10,7/18/26 9:00, +1,1,4763,2026,1,1,,0,,,7,18,11,7/18/26 10:00, +1,1,4764,2026,1,1,,0,,,7,18,12,7/18/26 11:00, +1,1,4765,2026,1,1,,0,,,7,18,13,7/18/26 12:00, +1,1,4766,2026,1,1,,0,,,7,18,14,7/18/26 13:00, +1,1,4767,2026,1,1,,0,,,7,18,15,7/18/26 14:00, +1,1,4768,2026,1,1,,0,,,7,18,16,7/18/26 15:00, +1,1,4769,2026,1,1,,0,,,7,18,17,7/18/26 16:00, +1,1,4770,2026,1,1,,0,,,7,18,18,7/18/26 17:00, +1,1,4771,2026,1,1,,0,,,7,18,19,7/18/26 18:00, +1,1,4772,2026,1,1,,0,,,7,18,20,7/18/26 19:00, +1,1,4773,2026,1,1,,0,,,7,18,21,7/18/26 20:00, +1,1,4774,2026,1,1,,0,,,7,18,22,7/18/26 21:00, +1,1,4775,2026,1,1,,0,,,7,18,23,7/18/26 22:00, +1,1,4776,2026,1,1,,0,,,7,18,24,7/18/26 23:00, +1,1,4777,2026,1,1,,0,,,7,19,1,7/19/26 0:00, +1,1,4778,2026,1,1,,0,,,7,19,2,7/19/26 1:00, +1,1,4779,2026,1,1,,0,,,7,19,3,7/19/26 2:00, +1,1,4780,2026,1,1,,0,,,7,19,4,7/19/26 3:00, +1,1,4781,2026,1,1,,0,,,7,19,5,7/19/26 4:00, +1,1,4782,2026,1,1,,0,,,7,19,6,7/19/26 5:00, +1,1,4783,2026,1,1,,0,,,7,19,7,7/19/26 6:00, +1,1,4784,2026,1,1,,0,,,7,19,8,7/19/26 7:00, +1,1,4785,2026,1,1,,0,,,7,19,9,7/19/26 8:00, +1,1,4786,2026,1,1,,0,,,7,19,10,7/19/26 9:00, +1,1,4787,2026,1,1,,0,,,7,19,11,7/19/26 10:00, +1,1,4788,2026,1,1,,0,,,7,19,12,7/19/26 11:00, +1,1,4789,2026,1,1,,0,,,7,19,13,7/19/26 12:00, +1,1,4790,2026,1,1,,0,,,7,19,14,7/19/26 13:00, +1,1,4791,2026,1,1,,0,,,7,19,15,7/19/26 14:00, +1,1,4792,2026,1,1,,0,,,7,19,16,7/19/26 15:00, +1,1,4793,2026,1,1,,0,,,7,19,17,7/19/26 16:00, +1,1,4794,2026,1,1,,0,,,7,19,18,7/19/26 17:00, +1,1,4795,2026,1,1,,0,,,7,19,19,7/19/26 18:00, +1,1,4796,2026,1,1,,0,,,7,19,20,7/19/26 19:00, +1,1,4797,2026,1,1,,0,,,7,19,21,7/19/26 20:00, +1,1,4798,2026,1,1,,0,,,7,19,22,7/19/26 21:00, +1,1,4799,2026,1,1,,0,,,7,19,23,7/19/26 22:00, +1,1,4800,2026,1,1,,0,,,7,19,24,7/19/26 23:00, +1,1,4801,2026,1,1,,0,,,7,20,1,7/20/26 0:00, +1,1,4802,2026,1,1,,0,,,7,20,2,7/20/26 1:00, +1,1,4803,2026,1,1,,0,,,7,20,3,7/20/26 2:00, +1,1,4804,2026,1,1,,0,,,7,20,4,7/20/26 3:00, +1,1,4805,2026,1,1,,0,,,7,20,5,7/20/26 4:00, +1,1,4806,2026,1,1,,0,,,7,20,6,7/20/26 5:00, +1,1,4807,2026,1,1,,0,,,7,20,7,7/20/26 6:00, +1,1,4808,2026,1,1,,0,,,7,20,8,7/20/26 7:00, +1,1,4809,2026,1,1,,0,,,7,20,9,7/20/26 8:00, +1,1,4810,2026,1,1,,0,,,7,20,10,7/20/26 9:00, +1,1,4811,2026,1,1,,0,,,7,20,11,7/20/26 10:00, +1,1,4812,2026,1,1,,0,,,7,20,12,7/20/26 11:00, +1,1,4813,2026,1,1,,0,,,7,20,13,7/20/26 12:00, +1,1,4814,2026,1,1,,0,,,7,20,14,7/20/26 13:00, +1,1,4815,2026,1,1,,0,,,7,20,15,7/20/26 14:00, +1,1,4816,2026,1,1,,0,,,7,20,16,7/20/26 15:00, +1,1,4817,2026,1,1,,0,,,7,20,17,7/20/26 16:00, +1,1,4818,2026,1,1,,0,,,7,20,18,7/20/26 17:00, +1,1,4819,2026,1,1,,0,,,7,20,19,7/20/26 18:00, +1,1,4820,2026,1,1,,0,,,7,20,20,7/20/26 19:00, +1,1,4821,2026,1,1,,0,,,7,20,21,7/20/26 20:00, +1,1,4822,2026,1,1,,0,,,7,20,22,7/20/26 21:00, +1,1,4823,2026,1,1,,0,,,7,20,23,7/20/26 22:00, +1,1,4824,2026,1,1,,0,,,7,20,24,7/20/26 23:00, +1,1,4825,2026,1,1,,0,,,7,21,1,7/21/26 0:00, +1,1,4826,2026,1,1,,0,,,7,21,2,7/21/26 1:00, +1,1,4827,2026,1,1,,0,,,7,21,3,7/21/26 2:00, +1,1,4828,2026,1,1,,0,,,7,21,4,7/21/26 3:00, +1,1,4829,2026,1,1,,0,,,7,21,5,7/21/26 4:00, +1,1,4830,2026,1,1,,0,,,7,21,6,7/21/26 5:00, +1,1,4831,2026,1,1,,0,,,7,21,7,7/21/26 6:00, +1,1,4832,2026,1,1,,0,,,7,21,8,7/21/26 7:00, +1,1,4833,2026,1,1,,0,,,7,21,9,7/21/26 8:00, +1,1,4834,2026,1,1,,0,,,7,21,10,7/21/26 9:00, +1,1,4835,2026,1,1,,0,,,7,21,11,7/21/26 10:00, +1,1,4836,2026,1,1,,0,,,7,21,12,7/21/26 11:00, +1,1,4837,2026,1,1,,0,,,7,21,13,7/21/26 12:00, +1,1,4838,2026,1,1,,0,,,7,21,14,7/21/26 13:00, +1,1,4839,2026,1,1,,0,,,7,21,15,7/21/26 14:00, +1,1,4840,2026,1,1,,0,,,7,21,16,7/21/26 15:00, +1,1,4841,2026,1,1,,0,,,7,21,17,7/21/26 16:00, +1,1,4842,2026,1,1,,0,,,7,21,18,7/21/26 17:00, +1,1,4843,2026,1,1,,0,,,7,21,19,7/21/26 18:00, +1,1,4844,2026,1,1,,0,,,7,21,20,7/21/26 19:00, +1,1,4845,2026,1,1,,0,,,7,21,21,7/21/26 20:00, +1,1,4846,2026,1,1,,0,,,7,21,22,7/21/26 21:00, +1,1,4847,2026,1,1,,0,,,7,21,23,7/21/26 22:00, +1,1,4848,2026,1,1,,0,,,7,21,24,7/21/26 23:00, +1,1,4849,2026,1,1,,0,,,7,22,1,7/22/26 0:00, +1,1,4850,2026,1,1,,0,,,7,22,2,7/22/26 1:00, +1,1,4851,2026,1,1,,0,,,7,22,3,7/22/26 2:00, +1,1,4852,2026,1,1,,0,,,7,22,4,7/22/26 3:00, +1,1,4853,2026,1,1,,0,,,7,22,5,7/22/26 4:00, +1,1,4854,2026,1,1,,0,,,7,22,6,7/22/26 5:00, +1,1,4855,2026,1,1,,0,,,7,22,7,7/22/26 6:00, +1,1,4856,2026,1,1,,0,,,7,22,8,7/22/26 7:00, +1,1,4857,2026,1,1,,0,,,7,22,9,7/22/26 8:00, +1,1,4858,2026,1,1,,0,,,7,22,10,7/22/26 9:00, +1,1,4859,2026,1,1,,0,,,7,22,11,7/22/26 10:00, +1,1,4860,2026,1,1,,0,,,7,22,12,7/22/26 11:00, +1,1,4861,2026,1,1,,0,,,7,22,13,7/22/26 12:00, +1,1,4862,2026,1,1,,0,,,7,22,14,7/22/26 13:00, +1,1,4863,2026,1,1,,0,,,7,22,15,7/22/26 14:00, +1,1,4864,2026,1,1,,0,,,7,22,16,7/22/26 15:00, +1,1,4865,2026,1,1,,0,,,7,22,17,7/22/26 16:00, +1,1,4866,2026,1,1,,0,,,7,22,18,7/22/26 17:00, +1,1,4867,2026,1,1,,0,,,7,22,19,7/22/26 18:00, +1,1,4868,2026,1,1,,0,,,7,22,20,7/22/26 19:00, +1,1,4869,2026,1,1,,0,,,7,22,21,7/22/26 20:00, +1,1,4870,2026,1,1,,0,,,7,22,22,7/22/26 21:00, +1,1,4871,2026,1,1,,0,,,7,22,23,7/22/26 22:00, +1,1,4872,2026,1,1,,0,,,7,22,24,7/22/26 23:00, +1,1,4873,2026,1,1,,0,,,7,23,1,7/23/26 0:00, +1,1,4874,2026,1,1,,0,,,7,23,2,7/23/26 1:00, +1,1,4875,2026,1,1,,0,,,7,23,3,7/23/26 2:00, +1,1,4876,2026,1,1,,0,,,7,23,4,7/23/26 3:00, +1,1,4877,2026,1,1,,0,,,7,23,5,7/23/26 4:00, +1,1,4878,2026,1,1,,0,,,7,23,6,7/23/26 5:00, +1,1,4879,2026,1,1,,0,,,7,23,7,7/23/26 6:00, +1,1,4880,2026,1,1,,0,,,7,23,8,7/23/26 7:00, +1,1,4881,2026,1,1,,0,,,7,23,9,7/23/26 8:00, +1,1,4882,2026,1,1,,0,,,7,23,10,7/23/26 9:00, +1,1,4883,2026,1,1,,0,,,7,23,11,7/23/26 10:00, +1,1,4884,2026,1,1,,0,,,7,23,12,7/23/26 11:00, +1,1,4885,2026,1,1,,0,,,7,23,13,7/23/26 12:00, +1,1,4886,2026,1,1,,0,,,7,23,14,7/23/26 13:00, +1,1,4887,2026,1,1,,0,,,7,23,15,7/23/26 14:00, +1,1,4888,2026,1,1,,0,,,7,23,16,7/23/26 15:00, +1,1,4889,2026,1,1,,0,,,7,23,17,7/23/26 16:00, +1,1,4890,2026,1,1,,0,,,7,23,18,7/23/26 17:00, +1,1,4891,2026,1,1,,0,,,7,23,19,7/23/26 18:00, +1,1,4892,2026,1,1,,0,,,7,23,20,7/23/26 19:00, +1,1,4893,2026,1,1,,0,,,7,23,21,7/23/26 20:00, +1,1,4894,2026,1,1,,0,,,7,23,22,7/23/26 21:00, +1,1,4895,2026,1,1,,0,,,7,23,23,7/23/26 22:00, +1,1,4896,2026,1,1,,0,,,7,23,24,7/23/26 23:00, +1,1,4897,2026,1,1,,0,,,7,24,1,7/24/26 0:00, +1,1,4898,2026,1,1,,0,,,7,24,2,7/24/26 1:00, +1,1,4899,2026,1,1,,0,,,7,24,3,7/24/26 2:00, +1,1,4900,2026,1,1,,0,,,7,24,4,7/24/26 3:00, +1,1,4901,2026,1,1,,0,,,7,24,5,7/24/26 4:00, +1,1,4902,2026,1,1,,0,,,7,24,6,7/24/26 5:00, +1,1,4903,2026,1,1,,0,,,7,24,7,7/24/26 6:00, +1,1,4904,2026,1,1,,0,,,7,24,8,7/24/26 7:00, +1,1,4905,2026,1,1,,0,,,7,24,9,7/24/26 8:00, +1,1,4906,2026,1,1,,0,,,7,24,10,7/24/26 9:00, +1,1,4907,2026,1,1,,0,,,7,24,11,7/24/26 10:00, +1,1,4908,2026,1,1,,0,,,7,24,12,7/24/26 11:00, +1,1,4909,2026,1,1,,0,,,7,24,13,7/24/26 12:00, +1,1,4910,2026,1,1,,0,,,7,24,14,7/24/26 13:00, +1,1,4911,2026,1,1,,0,,,7,24,15,7/24/26 14:00, +1,1,4912,2026,1,1,,0,,,7,24,16,7/24/26 15:00, +1,1,4913,2026,1,1,,0,,,7,24,17,7/24/26 16:00, +1,1,4914,2026,1,1,,0,,,7,24,18,7/24/26 17:00, +1,1,4915,2026,1,1,,0,,,7,24,19,7/24/26 18:00, +1,1,4916,2026,1,1,,0,,,7,24,20,7/24/26 19:00, +1,1,4917,2026,1,1,,0,,,7,24,21,7/24/26 20:00, +1,1,4918,2026,1,1,,0,,,7,24,22,7/24/26 21:00, +1,1,4919,2026,1,1,,0,,,7,24,23,7/24/26 22:00, +1,1,4920,2026,1,1,,0,,,7,24,24,7/24/26 23:00, +1,1,4921,2026,1,1,,0,,,7,25,1,7/25/26 0:00, +1,1,4922,2026,1,1,,0,,,7,25,2,7/25/26 1:00, +1,1,4923,2026,1,1,,0,,,7,25,3,7/25/26 2:00, +1,1,4924,2026,1,1,,0,,,7,25,4,7/25/26 3:00, +1,1,4925,2026,1,1,,0,,,7,25,5,7/25/26 4:00, +1,1,4926,2026,1,1,,0,,,7,25,6,7/25/26 5:00, +1,1,4927,2026,1,1,,0,,,7,25,7,7/25/26 6:00, +1,1,4928,2026,1,1,,0,,,7,25,8,7/25/26 7:00, +1,1,4929,2026,1,1,,0,,,7,25,9,7/25/26 8:00, +1,1,4930,2026,1,1,,0,,,7,25,10,7/25/26 9:00, +1,1,4931,2026,1,1,,0,,,7,25,11,7/25/26 10:00, +1,1,4932,2026,1,1,,0,,,7,25,12,7/25/26 11:00, +1,1,4933,2026,1,1,,0,,,7,25,13,7/25/26 12:00, +1,1,4934,2026,1,1,,0,,,7,25,14,7/25/26 13:00, +1,1,4935,2026,1,1,,0,,,7,25,15,7/25/26 14:00, +1,1,4936,2026,1,1,,0,,,7,25,16,7/25/26 15:00, +1,1,4937,2026,1,1,,0,,,7,25,17,7/25/26 16:00, +1,1,4938,2026,1,1,,0,,,7,25,18,7/25/26 17:00, +1,1,4939,2026,1,1,,0,,,7,25,19,7/25/26 18:00, +1,1,4940,2026,1,1,,0,,,7,25,20,7/25/26 19:00, +1,1,4941,2026,1,1,,0,,,7,25,21,7/25/26 20:00, +1,1,4942,2026,1,1,,0,,,7,25,22,7/25/26 21:00, +1,1,4943,2026,1,1,,0,,,7,25,23,7/25/26 22:00, +1,1,4944,2026,1,1,,0,,,7,25,24,7/25/26 23:00, +1,1,4945,2026,1,1,,0,,,7,26,1,7/26/26 0:00, +1,1,4946,2026,1,1,,0,,,7,26,2,7/26/26 1:00, +1,1,4947,2026,1,1,,0,,,7,26,3,7/26/26 2:00, +1,1,4948,2026,1,1,,0,,,7,26,4,7/26/26 3:00, +1,1,4949,2026,1,1,,0,,,7,26,5,7/26/26 4:00, +1,1,4950,2026,1,1,,0,,,7,26,6,7/26/26 5:00, +1,1,4951,2026,1,1,,0,,,7,26,7,7/26/26 6:00, +1,1,4952,2026,1,1,,0,,,7,26,8,7/26/26 7:00, +1,1,4953,2026,1,1,,0,,,7,26,9,7/26/26 8:00, +1,1,4954,2026,1,1,,0,,,7,26,10,7/26/26 9:00, +1,1,4955,2026,1,1,,0,,,7,26,11,7/26/26 10:00, +1,1,4956,2026,1,1,,0,,,7,26,12,7/26/26 11:00, +1,1,4957,2026,1,1,,0,,,7,26,13,7/26/26 12:00, +1,1,4958,2026,1,1,,0,,,7,26,14,7/26/26 13:00, +1,1,4959,2026,1,1,,0,,,7,26,15,7/26/26 14:00, +1,1,4960,2026,1,1,,0,,,7,26,16,7/26/26 15:00, +1,1,4961,2026,1,1,,0,,,7,26,17,7/26/26 16:00, +1,1,4962,2026,1,1,,0,,,7,26,18,7/26/26 17:00, +1,1,4963,2026,1,1,,0,,,7,26,19,7/26/26 18:00, +1,1,4964,2026,1,1,,0,,,7,26,20,7/26/26 19:00, +1,1,4965,2026,1,1,,0,,,7,26,21,7/26/26 20:00, +1,1,4966,2026,1,1,,0,,,7,26,22,7/26/26 21:00, +1,1,4967,2026,1,1,,0,,,7,26,23,7/26/26 22:00, +1,1,4968,2026,1,1,,0,,,7,26,24,7/26/26 23:00, +1,1,4969,2026,1,1,,0,,,7,27,1,7/27/26 0:00, +1,1,4970,2026,1,1,,0,,,7,27,2,7/27/26 1:00, +1,1,4971,2026,1,1,,0,,,7,27,3,7/27/26 2:00, +1,1,4972,2026,1,1,,0,,,7,27,4,7/27/26 3:00, +1,1,4973,2026,1,1,,0,,,7,27,5,7/27/26 4:00, +1,1,4974,2026,1,1,,0,,,7,27,6,7/27/26 5:00, +1,1,4975,2026,1,1,,0,,,7,27,7,7/27/26 6:00, +1,1,4976,2026,1,1,,0,,,7,27,8,7/27/26 7:00, +1,1,4977,2026,1,1,,0,,,7,27,9,7/27/26 8:00, +1,1,4978,2026,1,1,,0,,,7,27,10,7/27/26 9:00, +1,1,4979,2026,1,1,,0,,,7,27,11,7/27/26 10:00, +1,1,4980,2026,1,1,,0,,,7,27,12,7/27/26 11:00, +1,1,4981,2026,1,1,,0,,,7,27,13,7/27/26 12:00, +1,1,4982,2026,1,1,,0,,,7,27,14,7/27/26 13:00, +1,1,4983,2026,1,1,,0,,,7,27,15,7/27/26 14:00, +1,1,4984,2026,1,1,,0,,,7,27,16,7/27/26 15:00, +1,1,4985,2026,1,1,,0,,,7,27,17,7/27/26 16:00, +1,1,4986,2026,1,1,,0,,,7,27,18,7/27/26 17:00, +1,1,4987,2026,1,1,,0,,,7,27,19,7/27/26 18:00, +1,1,4988,2026,1,1,,0,,,7,27,20,7/27/26 19:00, +1,1,4989,2026,1,1,,0,,,7,27,21,7/27/26 20:00, +1,1,4990,2026,1,1,,0,,,7,27,22,7/27/26 21:00, +1,1,4991,2026,1,1,,0,,,7,27,23,7/27/26 22:00, +1,1,4992,2026,1,1,,0,,,7,27,24,7/27/26 23:00, +1,1,4993,2026,1,1,,0,,,7,28,1,7/28/26 0:00, +1,1,4994,2026,1,1,,0,,,7,28,2,7/28/26 1:00, +1,1,4995,2026,1,1,,0,,,7,28,3,7/28/26 2:00, +1,1,4996,2026,1,1,,0,,,7,28,4,7/28/26 3:00, +1,1,4997,2026,1,1,,0,,,7,28,5,7/28/26 4:00, +1,1,4998,2026,1,1,,0,,,7,28,6,7/28/26 5:00, +1,1,4999,2026,1,1,,0,,,7,28,7,7/28/26 6:00, +1,1,5000,2026,1,1,,0,,,7,28,8,7/28/26 7:00, +1,1,5001,2026,1,1,,0,,,7,28,9,7/28/26 8:00, +1,1,5002,2026,1,1,,0,,,7,28,10,7/28/26 9:00, +1,1,5003,2026,1,1,,0,,,7,28,11,7/28/26 10:00, +1,1,5004,2026,1,1,,0,,,7,28,12,7/28/26 11:00, +1,1,5005,2026,1,1,,0,,,7,28,13,7/28/26 12:00, +1,1,5006,2026,1,1,,0,,,7,28,14,7/28/26 13:00, +1,1,5007,2026,1,1,,0,,,7,28,15,7/28/26 14:00, +1,1,5008,2026,1,1,,0,,,7,28,16,7/28/26 15:00, +1,1,5009,2026,1,1,,0,,,7,28,17,7/28/26 16:00, +1,1,5010,2026,1,1,,0,,,7,28,18,7/28/26 17:00, +1,1,5011,2026,1,1,,0,,,7,28,19,7/28/26 18:00, +1,1,5012,2026,1,1,,0,,,7,28,20,7/28/26 19:00, +1,1,5013,2026,1,1,,0,,,7,28,21,7/28/26 20:00, +1,1,5014,2026,1,1,,0,,,7,28,22,7/28/26 21:00, +1,1,5015,2026,1,1,,0,,,7,28,23,7/28/26 22:00, +1,1,5016,2026,1,1,,0,,,7,28,24,7/28/26 23:00, +1,1,5017,2026,1,1,,0,,,7,29,1,7/29/26 0:00, +1,1,5018,2026,1,1,,0,,,7,29,2,7/29/26 1:00, +1,1,5019,2026,1,1,,0,,,7,29,3,7/29/26 2:00, +1,1,5020,2026,1,1,,0,,,7,29,4,7/29/26 3:00, +1,1,5021,2026,1,1,,0,,,7,29,5,7/29/26 4:00, +1,1,5022,2026,1,1,,0,,,7,29,6,7/29/26 5:00, +1,1,5023,2026,1,1,,0,,,7,29,7,7/29/26 6:00, +1,1,5024,2026,1,1,,0,,,7,29,8,7/29/26 7:00, +1,1,5025,2026,1,1,,0,,,7,29,9,7/29/26 8:00, +1,1,5026,2026,1,1,,0,,,7,29,10,7/29/26 9:00, +1,1,5027,2026,1,1,,0,,,7,29,11,7/29/26 10:00, +1,1,5028,2026,1,1,,0,,,7,29,12,7/29/26 11:00, +1,1,5029,2026,1,1,,0,,,7,29,13,7/29/26 12:00, +1,1,5030,2026,1,1,,0,,,7,29,14,7/29/26 13:00, +1,1,5031,2026,1,1,,0,,,7,29,15,7/29/26 14:00, +1,1,5032,2026,1,1,,0,,,7,29,16,7/29/26 15:00, +1,1,5033,2026,1,1,,0,,,7,29,17,7/29/26 16:00, +1,1,5034,2026,1,1,,0,,,7,29,18,7/29/26 17:00, +1,1,5035,2026,1,1,,0,,,7,29,19,7/29/26 18:00, +1,1,5036,2026,1,1,,0,,,7,29,20,7/29/26 19:00, +1,1,5037,2026,1,1,,0,,,7,29,21,7/29/26 20:00, +1,1,5038,2026,1,1,,0,,,7,29,22,7/29/26 21:00, +1,1,5039,2026,1,1,,0,,,7,29,23,7/29/26 22:00, +1,1,5040,2026,1,1,,0,,,7,29,24,7/29/26 23:00, +1,1,5041,2026,1,1,,0,,,7,30,1,7/30/26 0:00, +1,1,5042,2026,1,1,,0,,,7,30,2,7/30/26 1:00, +1,1,5043,2026,1,1,,0,,,7,30,3,7/30/26 2:00, +1,1,5044,2026,1,1,,0,,,7,30,4,7/30/26 3:00, +1,1,5045,2026,1,1,,0,,,7,30,5,7/30/26 4:00, +1,1,5046,2026,1,1,,0,,,7,30,6,7/30/26 5:00, +1,1,5047,2026,1,1,,0,,,7,30,7,7/30/26 6:00, +1,1,5048,2026,1,1,,0,,,7,30,8,7/30/26 7:00, +1,1,5049,2026,1,1,,0,,,7,30,9,7/30/26 8:00, +1,1,5050,2026,1,1,,0,,,7,30,10,7/30/26 9:00, +1,1,5051,2026,1,1,,0,,,7,30,11,7/30/26 10:00, +1,1,5052,2026,1,1,,0,,,7,30,12,7/30/26 11:00, +1,1,5053,2026,1,1,,0,,,7,30,13,7/30/26 12:00, +1,1,5054,2026,1,1,,0,,,7,30,14,7/30/26 13:00, +1,1,5055,2026,1,1,,0,,,7,30,15,7/30/26 14:00, +1,1,5056,2026,1,1,,0,,,7,30,16,7/30/26 15:00, +1,1,5057,2026,1,1,,0,,,7,30,17,7/30/26 16:00, +1,1,5058,2026,1,1,,0,,,7,30,18,7/30/26 17:00, +1,1,5059,2026,1,1,,0,,,7,30,19,7/30/26 18:00, +1,1,5060,2026,1,1,,0,,,7,30,20,7/30/26 19:00, +1,1,5061,2026,1,1,,0,,,7,30,21,7/30/26 20:00, +1,1,5062,2026,1,1,,0,,,7,30,22,7/30/26 21:00, +1,1,5063,2026,1,1,,0,,,7,30,23,7/30/26 22:00, +1,1,5064,2026,1,1,,0,,,7,30,24,7/30/26 23:00, +1,1,5065,2026,1,1,,0,,,7,31,1,7/31/26 0:00, +1,1,5066,2026,1,1,,0,,,7,31,2,7/31/26 1:00, +1,1,5067,2026,1,1,,0,,,7,31,3,7/31/26 2:00, +1,1,5068,2026,1,1,,0,,,7,31,4,7/31/26 3:00, +1,1,5069,2026,1,1,,0,,,7,31,5,7/31/26 4:00, +1,1,5070,2026,1,1,,0,,,7,31,6,7/31/26 5:00, +1,1,5071,2026,1,1,,0,,,7,31,7,7/31/26 6:00, +1,1,5072,2026,1,1,,0,,,7,31,8,7/31/26 7:00, +1,1,5073,2026,1,1,,0,,,7,31,9,7/31/26 8:00, +1,1,5074,2026,1,1,,0,,,7,31,10,7/31/26 9:00, +1,1,5075,2026,1,1,,0,,,7,31,11,7/31/26 10:00, +1,1,5076,2026,1,1,,0,,,7,31,12,7/31/26 11:00, +1,1,5077,2026,1,1,,0,,,7,31,13,7/31/26 12:00, +1,1,5078,2026,1,1,,0,,,7,31,14,7/31/26 13:00, +1,1,5079,2026,1,1,,0,,,7,31,15,7/31/26 14:00, +1,1,5080,2026,1,1,,0,,,7,31,16,7/31/26 15:00, +1,1,5081,2026,1,1,,0,,,7,31,17,7/31/26 16:00, +1,1,5082,2026,1,1,,0,,,7,31,18,7/31/26 17:00, +1,1,5083,2026,1,1,,0,,,7,31,19,7/31/26 18:00, +1,1,5084,2026,1,1,,0,,,7,31,20,7/31/26 19:00, +1,1,5085,2026,1,1,,0,,,7,31,21,7/31/26 20:00, +1,1,5086,2026,1,1,,0,,,7,31,22,7/31/26 21:00, +1,1,5087,2026,1,1,,0,,,7,31,23,7/31/26 22:00, +1,1,5088,2026,1,1,,0,,,7,31,24,7/31/26 23:00, +1,1,5089,2026,1,1,,0,,,8,1,1,8/1/26 0:00, +1,1,5090,2026,1,1,,0,,,8,1,2,8/1/26 1:00, +1,1,5091,2026,1,1,,0,,,8,1,3,8/1/26 2:00, +1,1,5092,2026,1,1,,0,,,8,1,4,8/1/26 3:00, +1,1,5093,2026,1,1,,0,,,8,1,5,8/1/26 4:00, +1,1,5094,2026,1,1,,0,,,8,1,6,8/1/26 5:00, +1,1,5095,2026,1,1,,0,,,8,1,7,8/1/26 6:00, +1,1,5096,2026,1,1,,0,,,8,1,8,8/1/26 7:00, +1,1,5097,2026,1,1,,0,,,8,1,9,8/1/26 8:00, +1,1,5098,2026,1,1,,0,,,8,1,10,8/1/26 9:00, +1,1,5099,2026,1,1,,0,,,8,1,11,8/1/26 10:00, +1,1,5100,2026,1,1,,0,,,8,1,12,8/1/26 11:00, +1,1,5101,2026,1,1,,0,,,8,1,13,8/1/26 12:00, +1,1,5102,2026,1,1,,0,,,8,1,14,8/1/26 13:00, +1,1,5103,2026,1,1,,0,,,8,1,15,8/1/26 14:00, +1,1,5104,2026,1,1,,0,,,8,1,16,8/1/26 15:00, +1,1,5105,2026,1,1,,0,,,8,1,17,8/1/26 16:00, +1,1,5106,2026,1,1,,0,,,8,1,18,8/1/26 17:00, +1,1,5107,2026,1,1,,0,,,8,1,19,8/1/26 18:00, +1,1,5108,2026,1,1,,0,,,8,1,20,8/1/26 19:00, +1,1,5109,2026,1,1,,0,,,8,1,21,8/1/26 20:00, +1,1,5110,2026,1,1,,0,,,8,1,22,8/1/26 21:00, +1,1,5111,2026,1,1,,0,,,8,1,23,8/1/26 22:00, +1,1,5112,2026,1,1,,0,,,8,1,24,8/1/26 23:00, +1,1,5113,2026,1,1,,0,,,8,2,1,8/2/26 0:00, +1,1,5114,2026,1,1,,0,,,8,2,2,8/2/26 1:00, +1,1,5115,2026,1,1,,0,,,8,2,3,8/2/26 2:00, +1,1,5116,2026,1,1,,0,,,8,2,4,8/2/26 3:00, +1,1,5117,2026,1,1,,0,,,8,2,5,8/2/26 4:00, +1,1,5118,2026,1,1,,0,,,8,2,6,8/2/26 5:00, +1,1,5119,2026,1,1,,0,,,8,2,7,8/2/26 6:00, +1,1,5120,2026,1,1,,0,,,8,2,8,8/2/26 7:00, +1,1,5121,2026,1,1,,0,,,8,2,9,8/2/26 8:00, +1,1,5122,2026,1,1,,0,,,8,2,10,8/2/26 9:00, +1,1,5123,2026,1,1,,0,,,8,2,11,8/2/26 10:00, +1,1,5124,2026,1,1,,0,,,8,2,12,8/2/26 11:00, +1,1,5125,2026,1,1,,0,,,8,2,13,8/2/26 12:00, +1,1,5126,2026,1,1,,0,,,8,2,14,8/2/26 13:00, +1,1,5127,2026,1,1,,0,,,8,2,15,8/2/26 14:00, +1,1,5128,2026,1,1,,0,,,8,2,16,8/2/26 15:00, +1,1,5129,2026,1,1,,0,,,8,2,17,8/2/26 16:00, +1,1,5130,2026,1,1,,0,,,8,2,18,8/2/26 17:00, +1,1,5131,2026,1,1,,0,,,8,2,19,8/2/26 18:00, +1,1,5132,2026,1,1,,0,,,8,2,20,8/2/26 19:00, +1,1,5133,2026,1,1,,0,,,8,2,21,8/2/26 20:00, +1,1,5134,2026,1,1,,0,,,8,2,22,8/2/26 21:00, +1,1,5135,2026,1,1,,0,,,8,2,23,8/2/26 22:00, +1,1,5136,2026,1,1,,0,,,8,2,24,8/2/26 23:00, +1,1,5137,2026,1,1,,0,,,8,3,1,8/3/26 0:00, +1,1,5138,2026,1,1,,0,,,8,3,2,8/3/26 1:00, +1,1,5139,2026,1,1,,0,,,8,3,3,8/3/26 2:00, +1,1,5140,2026,1,1,,0,,,8,3,4,8/3/26 3:00, +1,1,5141,2026,1,1,,0,,,8,3,5,8/3/26 4:00, +1,1,5142,2026,1,1,,0,,,8,3,6,8/3/26 5:00, +1,1,5143,2026,1,1,,0,,,8,3,7,8/3/26 6:00, +1,1,5144,2026,1,1,,0,,,8,3,8,8/3/26 7:00, +1,1,5145,2026,1,1,,0,,,8,3,9,8/3/26 8:00, +1,1,5146,2026,1,1,,0,,,8,3,10,8/3/26 9:00, +1,1,5147,2026,1,1,,0,,,8,3,11,8/3/26 10:00, +1,1,5148,2026,1,1,,0,,,8,3,12,8/3/26 11:00, +1,1,5149,2026,1,1,,0,,,8,3,13,8/3/26 12:00, +1,1,5150,2026,1,1,,0,,,8,3,14,8/3/26 13:00, +1,1,5151,2026,1,1,,0,,,8,3,15,8/3/26 14:00, +1,1,5152,2026,1,1,,0,,,8,3,16,8/3/26 15:00, +1,1,5153,2026,1,1,,0,,,8,3,17,8/3/26 16:00, +1,1,5154,2026,1,1,,0,,,8,3,18,8/3/26 17:00, +1,1,5155,2026,1,1,,0,,,8,3,19,8/3/26 18:00, +1,1,5156,2026,1,1,,0,,,8,3,20,8/3/26 19:00, +1,1,5157,2026,1,1,,0,,,8,3,21,8/3/26 20:00, +1,1,5158,2026,1,1,,0,,,8,3,22,8/3/26 21:00, +1,1,5159,2026,1,1,,0,,,8,3,23,8/3/26 22:00, +1,1,5160,2026,1,1,,0,,,8,3,24,8/3/26 23:00, +1,1,5161,2026,1,1,,0,,,8,4,1,8/4/26 0:00, +1,1,5162,2026,1,1,,0,,,8,4,2,8/4/26 1:00, +1,1,5163,2026,1,1,,0,,,8,4,3,8/4/26 2:00, +1,1,5164,2026,1,1,,0,,,8,4,4,8/4/26 3:00, +1,1,5165,2026,1,1,,0,,,8,4,5,8/4/26 4:00, +1,1,5166,2026,1,1,,0,,,8,4,6,8/4/26 5:00, +1,1,5167,2026,1,1,,0,,,8,4,7,8/4/26 6:00, +1,1,5168,2026,1,1,,0,,,8,4,8,8/4/26 7:00, +1,1,5169,2026,1,1,,0,,,8,4,9,8/4/26 8:00, +1,1,5170,2026,1,1,,0,,,8,4,10,8/4/26 9:00, +1,1,5171,2026,1,1,,0,,,8,4,11,8/4/26 10:00, +1,1,5172,2026,1,1,,0,,,8,4,12,8/4/26 11:00, +1,1,5173,2026,1,1,,0,,,8,4,13,8/4/26 12:00, +1,1,5174,2026,1,1,,0,,,8,4,14,8/4/26 13:00, +1,1,5175,2026,1,1,,0,,,8,4,15,8/4/26 14:00, +1,1,5176,2026,1,1,,0,,,8,4,16,8/4/26 15:00, +1,1,5177,2026,1,1,,0,,,8,4,17,8/4/26 16:00, +1,1,5178,2026,1,1,,0,,,8,4,18,8/4/26 17:00, +1,1,5179,2026,1,1,,0,,,8,4,19,8/4/26 18:00, +1,1,5180,2026,1,1,,0,,,8,4,20,8/4/26 19:00, +1,1,5181,2026,1,1,,0,,,8,4,21,8/4/26 20:00, +1,1,5182,2026,1,1,,0,,,8,4,22,8/4/26 21:00, +1,1,5183,2026,1,1,,0,,,8,4,23,8/4/26 22:00, +1,1,5184,2026,1,1,,0,,,8,4,24,8/4/26 23:00, +1,1,5185,2026,1,1,,0,,,8,5,1,8/5/26 0:00, +1,1,5186,2026,1,1,,0,,,8,5,2,8/5/26 1:00, +1,1,5187,2026,1,1,,0,,,8,5,3,8/5/26 2:00, +1,1,5188,2026,1,1,,0,,,8,5,4,8/5/26 3:00, +1,1,5189,2026,1,1,,0,,,8,5,5,8/5/26 4:00, +1,1,5190,2026,1,1,,0,,,8,5,6,8/5/26 5:00, +1,1,5191,2026,1,1,,0,,,8,5,7,8/5/26 6:00, +1,1,5192,2026,1,1,,0,,,8,5,8,8/5/26 7:00, +1,1,5193,2026,1,1,,0,,,8,5,9,8/5/26 8:00, +1,1,5194,2026,1,1,,0,,,8,5,10,8/5/26 9:00, +1,1,5195,2026,1,1,,0,,,8,5,11,8/5/26 10:00, +1,1,5196,2026,1,1,,0,,,8,5,12,8/5/26 11:00, +1,1,5197,2026,1,1,,0,,,8,5,13,8/5/26 12:00, +1,1,5198,2026,1,1,,0,,,8,5,14,8/5/26 13:00, +1,1,5199,2026,1,1,,0,,,8,5,15,8/5/26 14:00, +1,1,5200,2026,1,1,,0,,,8,5,16,8/5/26 15:00, +1,1,5201,2026,1,1,,0,,,8,5,17,8/5/26 16:00, +1,1,5202,2026,1,1,,0,,,8,5,18,8/5/26 17:00, +1,1,5203,2026,1,1,,0,,,8,5,19,8/5/26 18:00, +1,1,5204,2026,1,1,,0,,,8,5,20,8/5/26 19:00, +1,1,5205,2026,1,1,,0,,,8,5,21,8/5/26 20:00, +1,1,5206,2026,1,1,,0,,,8,5,22,8/5/26 21:00, +1,1,5207,2026,1,1,,0,,,8,5,23,8/5/26 22:00, +1,1,5208,2026,1,1,,0,,,8,5,24,8/5/26 23:00, +1,1,5209,2026,1,1,,0,,,8,6,1,8/6/26 0:00, +1,1,5210,2026,1,1,,0,,,8,6,2,8/6/26 1:00, +1,1,5211,2026,1,1,,0,,,8,6,3,8/6/26 2:00, +1,1,5212,2026,1,1,,0,,,8,6,4,8/6/26 3:00, +1,1,5213,2026,1,1,,0,,,8,6,5,8/6/26 4:00, +1,1,5214,2026,1,1,,0,,,8,6,6,8/6/26 5:00, +1,1,5215,2026,1,1,,0,,,8,6,7,8/6/26 6:00, +1,1,5216,2026,1,1,,0,,,8,6,8,8/6/26 7:00, +1,1,5217,2026,1,1,,0,,,8,6,9,8/6/26 8:00, +1,1,5218,2026,1,1,,0,,,8,6,10,8/6/26 9:00, +1,1,5219,2026,1,1,,0,,,8,6,11,8/6/26 10:00, +1,1,5220,2026,1,1,,0,,,8,6,12,8/6/26 11:00, +1,1,5221,2026,1,1,,0,,,8,6,13,8/6/26 12:00, +1,1,5222,2026,1,1,,0,,,8,6,14,8/6/26 13:00, +1,1,5223,2026,1,1,,0,,,8,6,15,8/6/26 14:00, +1,1,5224,2026,1,1,,0,,,8,6,16,8/6/26 15:00, +1,1,5225,2026,1,1,,0,,,8,6,17,8/6/26 16:00, +1,1,5226,2026,1,1,,0,,,8,6,18,8/6/26 17:00, +1,1,5227,2026,1,1,,0,,,8,6,19,8/6/26 18:00, +1,1,5228,2026,1,1,,0,,,8,6,20,8/6/26 19:00, +1,1,5229,2026,1,1,,0,,,8,6,21,8/6/26 20:00, +1,1,5230,2026,1,1,,0,,,8,6,22,8/6/26 21:00, +1,1,5231,2026,1,1,,0,,,8,6,23,8/6/26 22:00, +1,1,5232,2026,1,1,,0,,,8,6,24,8/6/26 23:00, +1,1,5233,2026,1,1,,0,,,8,7,1,8/7/26 0:00, +1,1,5234,2026,1,1,,0,,,8,7,2,8/7/26 1:00, +1,1,5235,2026,1,1,,0,,,8,7,3,8/7/26 2:00, +1,1,5236,2026,1,1,,0,,,8,7,4,8/7/26 3:00, +1,1,5237,2026,1,1,,0,,,8,7,5,8/7/26 4:00, +1,1,5238,2026,1,1,,0,,,8,7,6,8/7/26 5:00, +1,1,5239,2026,1,1,,0,,,8,7,7,8/7/26 6:00, +1,1,5240,2026,1,1,,0,,,8,7,8,8/7/26 7:00, +1,1,5241,2026,1,1,,0,,,8,7,9,8/7/26 8:00, +1,1,5242,2026,1,1,,0,,,8,7,10,8/7/26 9:00, +1,1,5243,2026,1,1,,0,,,8,7,11,8/7/26 10:00, +1,1,5244,2026,1,1,,0,,,8,7,12,8/7/26 11:00, +1,1,5245,2026,1,1,,0,,,8,7,13,8/7/26 12:00, +1,1,5246,2026,1,1,,0,,,8,7,14,8/7/26 13:00, +1,1,5247,2026,1,1,,0,,,8,7,15,8/7/26 14:00, +1,1,5248,2026,1,1,,0,,,8,7,16,8/7/26 15:00, +1,1,5249,2026,1,1,,0,,,8,7,17,8/7/26 16:00, +1,1,5250,2026,1,1,,0,,,8,7,18,8/7/26 17:00, +1,1,5251,2026,1,1,,0,,,8,7,19,8/7/26 18:00, +1,1,5252,2026,1,1,,0,,,8,7,20,8/7/26 19:00, +1,1,5253,2026,1,1,,0,,,8,7,21,8/7/26 20:00, +1,1,5254,2026,1,1,,0,,,8,7,22,8/7/26 21:00, +1,1,5255,2026,1,1,,0,,,8,7,23,8/7/26 22:00, +1,1,5256,2026,1,1,,0,,,8,7,24,8/7/26 23:00, +1,1,5257,2026,1,1,,0,,,8,8,1,8/8/26 0:00, +1,1,5258,2026,1,1,,0,,,8,8,2,8/8/26 1:00, +1,1,5259,2026,1,1,,0,,,8,8,3,8/8/26 2:00, +1,1,5260,2026,1,1,,0,,,8,8,4,8/8/26 3:00, +1,1,5261,2026,1,1,,0,,,8,8,5,8/8/26 4:00, +1,1,5262,2026,1,1,,0,,,8,8,6,8/8/26 5:00, +1,1,5263,2026,1,1,,0,,,8,8,7,8/8/26 6:00, +1,1,5264,2026,1,1,,0,,,8,8,8,8/8/26 7:00, +1,1,5265,2026,1,1,,0,,,8,8,9,8/8/26 8:00, +1,1,5266,2026,1,1,,0,,,8,8,10,8/8/26 9:00, +1,1,5267,2026,1,1,,0,,,8,8,11,8/8/26 10:00, +1,1,5268,2026,1,1,,0,,,8,8,12,8/8/26 11:00, +1,1,5269,2026,1,1,,0,,,8,8,13,8/8/26 12:00, +1,1,5270,2026,1,1,,0,,,8,8,14,8/8/26 13:00, +1,1,5271,2026,1,1,,0,,,8,8,15,8/8/26 14:00, +1,1,5272,2026,1,1,,0,,,8,8,16,8/8/26 15:00, +1,1,5273,2026,1,1,,0,,,8,8,17,8/8/26 16:00, +1,1,5274,2026,1,1,,0,,,8,8,18,8/8/26 17:00, +1,1,5275,2026,1,1,,0,,,8,8,19,8/8/26 18:00, +1,1,5276,2026,1,1,,0,,,8,8,20,8/8/26 19:00, +1,1,5277,2026,1,1,,0,,,8,8,21,8/8/26 20:00, +1,1,5278,2026,1,1,,0,,,8,8,22,8/8/26 21:00, +1,1,5279,2026,1,1,,0,,,8,8,23,8/8/26 22:00, +1,1,5280,2026,1,1,,0,,,8,8,24,8/8/26 23:00, +1,1,5281,2026,1,1,,0,,,8,9,1,8/9/26 0:00, +1,1,5282,2026,1,1,,0,,,8,9,2,8/9/26 1:00, +1,1,5283,2026,1,1,,0,,,8,9,3,8/9/26 2:00, +1,1,5284,2026,1,1,,0,,,8,9,4,8/9/26 3:00, +1,1,5285,2026,1,1,,0,,,8,9,5,8/9/26 4:00, +1,1,5286,2026,1,1,,0,,,8,9,6,8/9/26 5:00, +1,1,5287,2026,1,1,,0,,,8,9,7,8/9/26 6:00, +1,1,5288,2026,1,1,,0,,,8,9,8,8/9/26 7:00, +1,1,5289,2026,1,1,,0,,,8,9,9,8/9/26 8:00, +1,1,5290,2026,1,1,,0,,,8,9,10,8/9/26 9:00, +1,1,5291,2026,1,1,,0,,,8,9,11,8/9/26 10:00, +1,1,5292,2026,1,1,,0,,,8,9,12,8/9/26 11:00, +1,1,5293,2026,1,1,,0,,,8,9,13,8/9/26 12:00, +1,1,5294,2026,1,1,,0,,,8,9,14,8/9/26 13:00, +1,1,5295,2026,1,1,,0,,,8,9,15,8/9/26 14:00, +1,1,5296,2026,1,1,,0,,,8,9,16,8/9/26 15:00, +1,1,5297,2026,1,1,,0,,,8,9,17,8/9/26 16:00, +1,1,5298,2026,1,1,,0,,,8,9,18,8/9/26 17:00, +1,1,5299,2026,1,1,,0,,,8,9,19,8/9/26 18:00, +1,1,5300,2026,1,1,,0,,,8,9,20,8/9/26 19:00, +1,1,5301,2026,1,1,,0,,,8,9,21,8/9/26 20:00, +1,1,5302,2026,1,1,,0,,,8,9,22,8/9/26 21:00, +1,1,5303,2026,1,1,,0,,,8,9,23,8/9/26 22:00, +1,1,5304,2026,1,1,,0,,,8,9,24,8/9/26 23:00, +1,1,5305,2026,1,1,,0,,,8,10,1,8/10/26 0:00, +1,1,5306,2026,1,1,,0,,,8,10,2,8/10/26 1:00, +1,1,5307,2026,1,1,,0,,,8,10,3,8/10/26 2:00, +1,1,5308,2026,1,1,,0,,,8,10,4,8/10/26 3:00, +1,1,5309,2026,1,1,,0,,,8,10,5,8/10/26 4:00, +1,1,5310,2026,1,1,,0,,,8,10,6,8/10/26 5:00, +1,1,5311,2026,1,1,,0,,,8,10,7,8/10/26 6:00, +1,1,5312,2026,1,1,,0,,,8,10,8,8/10/26 7:00, +1,1,5313,2026,1,1,,0,,,8,10,9,8/10/26 8:00, +1,1,5314,2026,1,1,,0,,,8,10,10,8/10/26 9:00, +1,1,5315,2026,1,1,,0,,,8,10,11,8/10/26 10:00, +1,1,5316,2026,1,1,,0,,,8,10,12,8/10/26 11:00, +1,1,5317,2026,1,1,,0,,,8,10,13,8/10/26 12:00, +1,1,5318,2026,1,1,,0,,,8,10,14,8/10/26 13:00, +1,1,5319,2026,1,1,,0,,,8,10,15,8/10/26 14:00, +1,1,5320,2026,1,1,,0,,,8,10,16,8/10/26 15:00, +1,1,5321,2026,1,1,,0,,,8,10,17,8/10/26 16:00, +1,1,5322,2026,1,1,,0,,,8,10,18,8/10/26 17:00, +1,1,5323,2026,1,1,,0,,,8,10,19,8/10/26 18:00, +1,1,5324,2026,1,1,,0,,,8,10,20,8/10/26 19:00, +1,1,5325,2026,1,1,,0,,,8,10,21,8/10/26 20:00, +1,1,5326,2026,1,1,,0,,,8,10,22,8/10/26 21:00, +1,1,5327,2026,1,1,,0,,,8,10,23,8/10/26 22:00, +1,1,5328,2026,1,1,,0,,,8,10,24,8/10/26 23:00, +1,1,5329,2026,1,1,,0,,,8,11,1,8/11/26 0:00, +1,1,5330,2026,1,1,,0,,,8,11,2,8/11/26 1:00, +1,1,5331,2026,1,1,,0,,,8,11,3,8/11/26 2:00, +1,1,5332,2026,1,1,,0,,,8,11,4,8/11/26 3:00, +1,1,5333,2026,1,1,,0,,,8,11,5,8/11/26 4:00, +1,1,5334,2026,1,1,,0,,,8,11,6,8/11/26 5:00, +1,1,5335,2026,1,1,,0,,,8,11,7,8/11/26 6:00, +1,1,5336,2026,1,1,,0,,,8,11,8,8/11/26 7:00, +1,1,5337,2026,1,1,,0,,,8,11,9,8/11/26 8:00, +1,1,5338,2026,1,1,,0,,,8,11,10,8/11/26 9:00, +1,1,5339,2026,1,1,,0,,,8,11,11,8/11/26 10:00, +1,1,5340,2026,1,1,,0,,,8,11,12,8/11/26 11:00, +1,1,5341,2026,1,1,,0,,,8,11,13,8/11/26 12:00, +1,1,5342,2026,1,1,,0,,,8,11,14,8/11/26 13:00, +1,1,5343,2026,1,1,,0,,,8,11,15,8/11/26 14:00, +1,1,5344,2026,1,1,,0,,,8,11,16,8/11/26 15:00, +1,1,5345,2026,1,1,,0,,,8,11,17,8/11/26 16:00, +1,1,5346,2026,1,1,,0,,,8,11,18,8/11/26 17:00, +1,1,5347,2026,1,1,,0,,,8,11,19,8/11/26 18:00, +1,1,5348,2026,1,1,,0,,,8,11,20,8/11/26 19:00, +1,1,5349,2026,1,1,,0,,,8,11,21,8/11/26 20:00, +1,1,5350,2026,1,1,,0,,,8,11,22,8/11/26 21:00, +1,1,5351,2026,1,1,,0,,,8,11,23,8/11/26 22:00, +1,1,5352,2026,1,1,,0,,,8,11,24,8/11/26 23:00, +1,1,5353,2026,1,1,,0,,,8,12,1,8/12/26 0:00, +1,1,5354,2026,1,1,,0,,,8,12,2,8/12/26 1:00, +1,1,5355,2026,1,1,,0,,,8,12,3,8/12/26 2:00, +1,1,5356,2026,1,1,,0,,,8,12,4,8/12/26 3:00, +1,1,5357,2026,1,1,,0,,,8,12,5,8/12/26 4:00, +1,1,5358,2026,1,1,,0,,,8,12,6,8/12/26 5:00, +1,1,5359,2026,1,1,,0,,,8,12,7,8/12/26 6:00, +1,1,5360,2026,1,1,,0,,,8,12,8,8/12/26 7:00, +1,1,5361,2026,1,1,,0,,,8,12,9,8/12/26 8:00, +1,1,5362,2026,1,1,,0,,,8,12,10,8/12/26 9:00, +1,1,5363,2026,1,1,,0,,,8,12,11,8/12/26 10:00, +1,1,5364,2026,1,1,,0,,,8,12,12,8/12/26 11:00, +1,1,5365,2026,1,1,,0,,,8,12,13,8/12/26 12:00, +1,1,5366,2026,1,1,,0,,,8,12,14,8/12/26 13:00, +1,1,5367,2026,1,1,,0,,,8,12,15,8/12/26 14:00, +1,1,5368,2026,1,1,,0,,,8,12,16,8/12/26 15:00, +1,1,5369,2026,1,1,,0,,,8,12,17,8/12/26 16:00, +1,1,5370,2026,1,1,,0,,,8,12,18,8/12/26 17:00, +1,1,5371,2026,1,1,,0,,,8,12,19,8/12/26 18:00, +1,1,5372,2026,1,1,,0,,,8,12,20,8/12/26 19:00, +1,1,5373,2026,1,1,,0,,,8,12,21,8/12/26 20:00, +1,1,5374,2026,1,1,,0,,,8,12,22,8/12/26 21:00, +1,1,5375,2026,1,1,,0,,,8,12,23,8/12/26 22:00, +1,1,5376,2026,1,1,,0,,,8,12,24,8/12/26 23:00, +1,1,5377,2026,1,1,,0,,,8,13,1,8/13/26 0:00, +1,1,5378,2026,1,1,,0,,,8,13,2,8/13/26 1:00, +1,1,5379,2026,1,1,,0,,,8,13,3,8/13/26 2:00, +1,1,5380,2026,1,1,,0,,,8,13,4,8/13/26 3:00, +1,1,5381,2026,1,1,,0,,,8,13,5,8/13/26 4:00, +1,1,5382,2026,1,1,,0,,,8,13,6,8/13/26 5:00, +1,1,5383,2026,1,1,,0,,,8,13,7,8/13/26 6:00, +1,1,5384,2026,1,1,,0,,,8,13,8,8/13/26 7:00, +1,1,5385,2026,1,1,,0,,,8,13,9,8/13/26 8:00, +1,1,5386,2026,1,1,,0,,,8,13,10,8/13/26 9:00, +1,1,5387,2026,1,1,,0,,,8,13,11,8/13/26 10:00, +1,1,5388,2026,1,1,,0,,,8,13,12,8/13/26 11:00, +1,1,5389,2026,1,1,,0,,,8,13,13,8/13/26 12:00, +1,1,5390,2026,1,1,,0,,,8,13,14,8/13/26 13:00, +1,1,5391,2026,1,1,,0,,,8,13,15,8/13/26 14:00, +1,1,5392,2026,1,1,,0,,,8,13,16,8/13/26 15:00, +1,1,5393,2026,1,1,,0,,,8,13,17,8/13/26 16:00, +1,1,5394,2026,1,1,,0,,,8,13,18,8/13/26 17:00, +1,1,5395,2026,1,1,,0,,,8,13,19,8/13/26 18:00, +1,1,5396,2026,1,1,,0,,,8,13,20,8/13/26 19:00, +1,1,5397,2026,1,1,,0,,,8,13,21,8/13/26 20:00, +1,1,5398,2026,1,1,,0,,,8,13,22,8/13/26 21:00, +1,1,5399,2026,1,1,,0,,,8,13,23,8/13/26 22:00, +1,1,5400,2026,1,1,,0,,,8,13,24,8/13/26 23:00, +1,1,5401,2026,1,1,,0,,,8,14,1,8/14/26 0:00, +1,1,5402,2026,1,1,,0,,,8,14,2,8/14/26 1:00, +1,1,5403,2026,1,1,,0,,,8,14,3,8/14/26 2:00, +1,1,5404,2026,1,1,,0,,,8,14,4,8/14/26 3:00, +1,1,5405,2026,1,1,,0,,,8,14,5,8/14/26 4:00, +1,1,5406,2026,1,1,,0,,,8,14,6,8/14/26 5:00, +1,1,5407,2026,1,1,,0,,,8,14,7,8/14/26 6:00, +1,1,5408,2026,1,1,,0,,,8,14,8,8/14/26 7:00, +1,1,5409,2026,1,1,,0,,,8,14,9,8/14/26 8:00, +1,1,5410,2026,1,1,,0,,,8,14,10,8/14/26 9:00, +1,1,5411,2026,1,1,,0,,,8,14,11,8/14/26 10:00, +1,1,5412,2026,1,1,,0,,,8,14,12,8/14/26 11:00, +1,1,5413,2026,1,1,,0,,,8,14,13,8/14/26 12:00, +1,1,5414,2026,1,1,,0,,,8,14,14,8/14/26 13:00, +1,1,5415,2026,1,1,,0,,,8,14,15,8/14/26 14:00, +1,1,5416,2026,1,1,,0,,,8,14,16,8/14/26 15:00, +1,1,5417,2026,1,1,,0,,,8,14,17,8/14/26 16:00, +1,1,5418,2026,1,1,,0,,,8,14,18,8/14/26 17:00, +1,1,5419,2026,1,1,,0,,,8,14,19,8/14/26 18:00, +1,1,5420,2026,1,1,,0,,,8,14,20,8/14/26 19:00, +1,1,5421,2026,1,1,,0,,,8,14,21,8/14/26 20:00, +1,1,5422,2026,1,1,,0,,,8,14,22,8/14/26 21:00, +1,1,5423,2026,1,1,,0,,,8,14,23,8/14/26 22:00, +1,1,5424,2026,1,1,,0,,,8,14,24,8/14/26 23:00, +1,1,5425,2026,1,1,,0,,,8,15,1,8/15/26 0:00, +1,1,5426,2026,1,1,,0,,,8,15,2,8/15/26 1:00, +1,1,5427,2026,1,1,,0,,,8,15,3,8/15/26 2:00, +1,1,5428,2026,1,1,,0,,,8,15,4,8/15/26 3:00, +1,1,5429,2026,1,1,,0,,,8,15,5,8/15/26 4:00, +1,1,5430,2026,1,1,,0,,,8,15,6,8/15/26 5:00, +1,1,5431,2026,1,1,,0,,,8,15,7,8/15/26 6:00, +1,1,5432,2026,1,1,,0,,,8,15,8,8/15/26 7:00, +1,1,5433,2026,1,1,,0,,,8,15,9,8/15/26 8:00, +1,1,5434,2026,1,1,,0,,,8,15,10,8/15/26 9:00, +1,1,5435,2026,1,1,,0,,,8,15,11,8/15/26 10:00, +1,1,5436,2026,1,1,,0,,,8,15,12,8/15/26 11:00, +1,1,5437,2026,1,1,,0,,,8,15,13,8/15/26 12:00, +1,1,5438,2026,1,1,,0,,,8,15,14,8/15/26 13:00, +1,1,5439,2026,1,1,,0,,,8,15,15,8/15/26 14:00, +1,1,5440,2026,1,1,,0,,,8,15,16,8/15/26 15:00, +1,1,5441,2026,1,1,,0,,,8,15,17,8/15/26 16:00, +1,1,5442,2026,1,1,,0,,,8,15,18,8/15/26 17:00, +1,1,5443,2026,1,1,,0,,,8,15,19,8/15/26 18:00, +1,1,5444,2026,1,1,,0,,,8,15,20,8/15/26 19:00, +1,1,5445,2026,1,1,,0,,,8,15,21,8/15/26 20:00, +1,1,5446,2026,1,1,,0,,,8,15,22,8/15/26 21:00, +1,1,5447,2026,1,1,,0,,,8,15,23,8/15/26 22:00, +1,1,5448,2026,1,1,,0,,,8,15,24,8/15/26 23:00, +1,1,5449,2026,1,1,,0,,,8,16,1,8/16/26 0:00, +1,1,5450,2026,1,1,,0,,,8,16,2,8/16/26 1:00, +1,1,5451,2026,1,1,,0,,,8,16,3,8/16/26 2:00, +1,1,5452,2026,1,1,,0,,,8,16,4,8/16/26 3:00, +1,1,5453,2026,1,1,,0,,,8,16,5,8/16/26 4:00, +1,1,5454,2026,1,1,,0,,,8,16,6,8/16/26 5:00, +1,1,5455,2026,1,1,,0,,,8,16,7,8/16/26 6:00, +1,1,5456,2026,1,1,,0,,,8,16,8,8/16/26 7:00, +1,1,5457,2026,1,1,,0,,,8,16,9,8/16/26 8:00, +1,1,5458,2026,1,1,,0,,,8,16,10,8/16/26 9:00, +1,1,5459,2026,1,1,,0,,,8,16,11,8/16/26 10:00, +1,1,5460,2026,1,1,,0,,,8,16,12,8/16/26 11:00, +1,1,5461,2026,1,1,,0,,,8,16,13,8/16/26 12:00, +1,1,5462,2026,1,1,,0,,,8,16,14,8/16/26 13:00, +1,1,5463,2026,1,1,,0,,,8,16,15,8/16/26 14:00, +1,1,5464,2026,1,1,,0,,,8,16,16,8/16/26 15:00, +1,1,5465,2026,1,1,,0,,,8,16,17,8/16/26 16:00, +1,1,5466,2026,1,1,,0,,,8,16,18,8/16/26 17:00, +1,1,5467,2026,1,1,,0,,,8,16,19,8/16/26 18:00, +1,1,5468,2026,1,1,,0,,,8,16,20,8/16/26 19:00, +1,1,5469,2026,1,1,,0,,,8,16,21,8/16/26 20:00, +1,1,5470,2026,1,1,,0,,,8,16,22,8/16/26 21:00, +1,1,5471,2026,1,1,,0,,,8,16,23,8/16/26 22:00, +1,1,5472,2026,1,1,,0,,,8,16,24,8/16/26 23:00, +1,1,5473,2026,1,1,,0,,,8,17,1,8/17/26 0:00, +1,1,5474,2026,1,1,,0,,,8,17,2,8/17/26 1:00, +1,1,5475,2026,1,1,,0,,,8,17,3,8/17/26 2:00, +1,1,5476,2026,1,1,,0,,,8,17,4,8/17/26 3:00, +1,1,5477,2026,1,1,,0,,,8,17,5,8/17/26 4:00, +1,1,5478,2026,1,1,,0,,,8,17,6,8/17/26 5:00, +1,1,5479,2026,1,1,,0,,,8,17,7,8/17/26 6:00, +1,1,5480,2026,1,1,,0,,,8,17,8,8/17/26 7:00, +1,1,5481,2026,1,1,,0,,,8,17,9,8/17/26 8:00, +1,1,5482,2026,1,1,,0,,,8,17,10,8/17/26 9:00, +1,1,5483,2026,1,1,,0,,,8,17,11,8/17/26 10:00, +1,1,5484,2026,1,1,,0,,,8,17,12,8/17/26 11:00, +1,1,5485,2026,1,1,,0,,,8,17,13,8/17/26 12:00, +1,1,5486,2026,1,1,,0,,,8,17,14,8/17/26 13:00, +1,1,5487,2026,1,1,,0,,,8,17,15,8/17/26 14:00, +1,1,5488,2026,1,1,,0,,,8,17,16,8/17/26 15:00, +1,1,5489,2026,1,1,,0,,,8,17,17,8/17/26 16:00, +1,1,5490,2026,1,1,,0,,,8,17,18,8/17/26 17:00, +1,1,5491,2026,1,1,,0,,,8,17,19,8/17/26 18:00, +1,1,5492,2026,1,1,,0,,,8,17,20,8/17/26 19:00, +1,1,5493,2026,1,1,,0,,,8,17,21,8/17/26 20:00, +1,1,5494,2026,1,1,,0,,,8,17,22,8/17/26 21:00, +1,1,5495,2026,1,1,,0,,,8,17,23,8/17/26 22:00, +1,1,5496,2026,1,1,,0,,,8,17,24,8/17/26 23:00, +1,1,5497,2026,1,1,,0,,,8,18,1,8/18/26 0:00, +1,1,5498,2026,1,1,,0,,,8,18,2,8/18/26 1:00, +1,1,5499,2026,1,1,,0,,,8,18,3,8/18/26 2:00, +1,1,5500,2026,1,1,,0,,,8,18,4,8/18/26 3:00, +1,1,5501,2026,1,1,,0,,,8,18,5,8/18/26 4:00, +1,1,5502,2026,1,1,,0,,,8,18,6,8/18/26 5:00, +1,1,5503,2026,1,1,,0,,,8,18,7,8/18/26 6:00, +1,1,5504,2026,1,1,,0,,,8,18,8,8/18/26 7:00, +1,1,5505,2026,1,1,,0,,,8,18,9,8/18/26 8:00, +1,1,5506,2026,1,1,,0,,,8,18,10,8/18/26 9:00, +1,1,5507,2026,1,1,,0,,,8,18,11,8/18/26 10:00, +1,1,5508,2026,1,1,,0,,,8,18,12,8/18/26 11:00, +1,1,5509,2026,1,1,,0,,,8,18,13,8/18/26 12:00, +1,1,5510,2026,1,1,,0,,,8,18,14,8/18/26 13:00, +1,1,5511,2026,1,1,,0,,,8,18,15,8/18/26 14:00, +1,1,5512,2026,1,1,,0,,,8,18,16,8/18/26 15:00, +1,1,5513,2026,1,1,,0,,,8,18,17,8/18/26 16:00, +1,1,5514,2026,1,1,,0,,,8,18,18,8/18/26 17:00, +1,1,5515,2026,1,1,,0,,,8,18,19,8/18/26 18:00, +1,1,5516,2026,1,1,,0,,,8,18,20,8/18/26 19:00, +1,1,5517,2026,1,1,,0,,,8,18,21,8/18/26 20:00, +1,1,5518,2026,1,1,,0,,,8,18,22,8/18/26 21:00, +1,1,5519,2026,1,1,,0,,,8,18,23,8/18/26 22:00, +1,1,5520,2026,1,1,,0,,,8,18,24,8/18/26 23:00, +1,1,5521,2026,1,1,,0,,,8,19,1,8/19/26 0:00, +1,1,5522,2026,1,1,,0,,,8,19,2,8/19/26 1:00, +1,1,5523,2026,1,1,,0,,,8,19,3,8/19/26 2:00, +1,1,5524,2026,1,1,,0,,,8,19,4,8/19/26 3:00, +1,1,5525,2026,1,1,,0,,,8,19,5,8/19/26 4:00, +1,1,5526,2026,1,1,,0,,,8,19,6,8/19/26 5:00, +1,1,5527,2026,1,1,,0,,,8,19,7,8/19/26 6:00, +1,1,5528,2026,1,1,,0,,,8,19,8,8/19/26 7:00, +1,1,5529,2026,1,1,,0,,,8,19,9,8/19/26 8:00, +1,1,5530,2026,1,1,,0,,,8,19,10,8/19/26 9:00, +1,1,5531,2026,1,1,,0,,,8,19,11,8/19/26 10:00, +1,1,5532,2026,1,1,,0,,,8,19,12,8/19/26 11:00, +1,1,5533,2026,1,1,,0,,,8,19,13,8/19/26 12:00, +1,1,5534,2026,1,1,,0,,,8,19,14,8/19/26 13:00, +1,1,5535,2026,1,1,,0,,,8,19,15,8/19/26 14:00, +1,1,5536,2026,1,1,,0,,,8,19,16,8/19/26 15:00, +1,1,5537,2026,1,1,,0,,,8,19,17,8/19/26 16:00, +1,1,5538,2026,1,1,,0,,,8,19,18,8/19/26 17:00, +1,1,5539,2026,1,1,,0,,,8,19,19,8/19/26 18:00, +1,1,5540,2026,1,1,,0,,,8,19,20,8/19/26 19:00, +1,1,5541,2026,1,1,,0,,,8,19,21,8/19/26 20:00, +1,1,5542,2026,1,1,,0,,,8,19,22,8/19/26 21:00, +1,1,5543,2026,1,1,,0,,,8,19,23,8/19/26 22:00, +1,1,5544,2026,1,1,,0,,,8,19,24,8/19/26 23:00, +1,1,5545,2026,1,1,,0,,,8,20,1,8/20/26 0:00, +1,1,5546,2026,1,1,,0,,,8,20,2,8/20/26 1:00, +1,1,5547,2026,1,1,,0,,,8,20,3,8/20/26 2:00, +1,1,5548,2026,1,1,,0,,,8,20,4,8/20/26 3:00, +1,1,5549,2026,1,1,,0,,,8,20,5,8/20/26 4:00, +1,1,5550,2026,1,1,,0,,,8,20,6,8/20/26 5:00, +1,1,5551,2026,1,1,,0,,,8,20,7,8/20/26 6:00, +1,1,5552,2026,1,1,,0,,,8,20,8,8/20/26 7:00, +1,1,5553,2026,1,1,,0,,,8,20,9,8/20/26 8:00, +1,1,5554,2026,1,1,,0,,,8,20,10,8/20/26 9:00, +1,1,5555,2026,1,1,,0,,,8,20,11,8/20/26 10:00, +1,1,5556,2026,1,1,,0,,,8,20,12,8/20/26 11:00, +1,1,5557,2026,1,1,,0,,,8,20,13,8/20/26 12:00, +1,1,5558,2026,1,1,,0,,,8,20,14,8/20/26 13:00, +1,1,5559,2026,1,1,,0,,,8,20,15,8/20/26 14:00, +1,1,5560,2026,1,1,,0,,,8,20,16,8/20/26 15:00, +1,1,5561,2026,1,1,,0,,,8,20,17,8/20/26 16:00, +1,1,5562,2026,1,1,,0,,,8,20,18,8/20/26 17:00, +1,1,5563,2026,1,1,,0,,,8,20,19,8/20/26 18:00, +1,1,5564,2026,1,1,,0,,,8,20,20,8/20/26 19:00, +1,1,5565,2026,1,1,,0,,,8,20,21,8/20/26 20:00, +1,1,5566,2026,1,1,,0,,,8,20,22,8/20/26 21:00, +1,1,5567,2026,1,1,,0,,,8,20,23,8/20/26 22:00, +1,1,5568,2026,1,1,,0,,,8,20,24,8/20/26 23:00, +1,1,5569,2026,1,1,,0,,,8,21,1,8/21/26 0:00, +1,1,5570,2026,1,1,,0,,,8,21,2,8/21/26 1:00, +1,1,5571,2026,1,1,,0,,,8,21,3,8/21/26 2:00, +1,1,5572,2026,1,1,,0,,,8,21,4,8/21/26 3:00, +1,1,5573,2026,1,1,,0,,,8,21,5,8/21/26 4:00, +1,1,5574,2026,1,1,,0,,,8,21,6,8/21/26 5:00, +1,1,5575,2026,1,1,,0,,,8,21,7,8/21/26 6:00, +1,1,5576,2026,1,1,,0,,,8,21,8,8/21/26 7:00, +1,1,5577,2026,1,1,,0,,,8,21,9,8/21/26 8:00, +1,1,5578,2026,1,1,,0,,,8,21,10,8/21/26 9:00, +1,1,5579,2026,1,1,,0,,,8,21,11,8/21/26 10:00, +1,1,5580,2026,1,1,,0,,,8,21,12,8/21/26 11:00, +1,1,5581,2026,1,1,,0,,,8,21,13,8/21/26 12:00, +1,1,5582,2026,1,1,,0,,,8,21,14,8/21/26 13:00, +1,1,5583,2026,1,1,,0,,,8,21,15,8/21/26 14:00, +1,1,5584,2026,1,1,,0,,,8,21,16,8/21/26 15:00, +1,1,5585,2026,1,1,,0,,,8,21,17,8/21/26 16:00, +1,1,5586,2026,1,1,,0,,,8,21,18,8/21/26 17:00, +1,1,5587,2026,1,1,,0,,,8,21,19,8/21/26 18:00, +1,1,5588,2026,1,1,,0,,,8,21,20,8/21/26 19:00, +1,1,5589,2026,1,1,,0,,,8,21,21,8/21/26 20:00, +1,1,5590,2026,1,1,,0,,,8,21,22,8/21/26 21:00, +1,1,5591,2026,1,1,,0,,,8,21,23,8/21/26 22:00, +1,1,5592,2026,1,1,,0,,,8,21,24,8/21/26 23:00, +1,1,5593,2026,1,1,,0,,,8,22,1,8/22/26 0:00, +1,1,5594,2026,1,1,,0,,,8,22,2,8/22/26 1:00, +1,1,5595,2026,1,1,,0,,,8,22,3,8/22/26 2:00, +1,1,5596,2026,1,1,,0,,,8,22,4,8/22/26 3:00, +1,1,5597,2026,1,1,,0,,,8,22,5,8/22/26 4:00, +1,1,5598,2026,1,1,,0,,,8,22,6,8/22/26 5:00, +1,1,5599,2026,1,1,,0,,,8,22,7,8/22/26 6:00, +1,1,5600,2026,1,1,,0,,,8,22,8,8/22/26 7:00, +1,1,5601,2026,1,1,,0,,,8,22,9,8/22/26 8:00, +1,1,5602,2026,1,1,,0,,,8,22,10,8/22/26 9:00, +1,1,5603,2026,1,1,,0,,,8,22,11,8/22/26 10:00, +1,1,5604,2026,1,1,,0,,,8,22,12,8/22/26 11:00, +1,1,5605,2026,1,1,,0,,,8,22,13,8/22/26 12:00, +1,1,5606,2026,1,1,,0,,,8,22,14,8/22/26 13:00, +1,1,5607,2026,1,1,,0,,,8,22,15,8/22/26 14:00, +1,1,5608,2026,1,1,,0,,,8,22,16,8/22/26 15:00, +1,1,5609,2026,1,1,,0,,,8,22,17,8/22/26 16:00, +1,1,5610,2026,1,1,,0,,,8,22,18,8/22/26 17:00, +1,1,5611,2026,1,1,,0,,,8,22,19,8/22/26 18:00, +1,1,5612,2026,1,1,,0,,,8,22,20,8/22/26 19:00, +1,1,5613,2026,1,1,,0,,,8,22,21,8/22/26 20:00, +1,1,5614,2026,1,1,,0,,,8,22,22,8/22/26 21:00, +1,1,5615,2026,1,1,,0,,,8,22,23,8/22/26 22:00, +1,1,5616,2026,1,1,,0,,,8,22,24,8/22/26 23:00, +1,1,5617,2026,1,1,,0,,,8,23,1,8/23/26 0:00, +1,1,5618,2026,1,1,,0,,,8,23,2,8/23/26 1:00, +1,1,5619,2026,1,1,,0,,,8,23,3,8/23/26 2:00, +1,1,5620,2026,1,1,,0,,,8,23,4,8/23/26 3:00, +1,1,5621,2026,1,1,,0,,,8,23,5,8/23/26 4:00, +1,1,5622,2026,1,1,,0,,,8,23,6,8/23/26 5:00, +1,1,5623,2026,1,1,,0,,,8,23,7,8/23/26 6:00, +1,1,5624,2026,1,1,,0,,,8,23,8,8/23/26 7:00, +1,1,5625,2026,1,1,,0,,,8,23,9,8/23/26 8:00, +1,1,5626,2026,1,1,,0,,,8,23,10,8/23/26 9:00, +1,1,5627,2026,1,1,,0,,,8,23,11,8/23/26 10:00, +1,1,5628,2026,1,1,,0,,,8,23,12,8/23/26 11:00, +1,1,5629,2026,1,1,,0,,,8,23,13,8/23/26 12:00, +1,1,5630,2026,1,1,,0,,,8,23,14,8/23/26 13:00, +1,1,5631,2026,1,1,,0,,,8,23,15,8/23/26 14:00, +1,1,5632,2026,1,1,,0,,,8,23,16,8/23/26 15:00, +1,1,5633,2026,1,1,,0,,,8,23,17,8/23/26 16:00, +1,1,5634,2026,1,1,,0,,,8,23,18,8/23/26 17:00, +1,1,5635,2026,1,1,,0,,,8,23,19,8/23/26 18:00, +1,1,5636,2026,1,1,,0,,,8,23,20,8/23/26 19:00, +1,1,5637,2026,1,1,,0,,,8,23,21,8/23/26 20:00, +1,1,5638,2026,1,1,,0,,,8,23,22,8/23/26 21:00, +1,1,5639,2026,1,1,,0,,,8,23,23,8/23/26 22:00, +1,1,5640,2026,1,1,,0,,,8,23,24,8/23/26 23:00, +1,1,5641,2026,1,1,,0,,,8,24,1,8/24/26 0:00, +1,1,5642,2026,1,1,,0,,,8,24,2,8/24/26 1:00, +1,1,5643,2026,1,1,,0,,,8,24,3,8/24/26 2:00, +1,1,5644,2026,1,1,,0,,,8,24,4,8/24/26 3:00, +1,1,5645,2026,1,1,,0,,,8,24,5,8/24/26 4:00, +1,1,5646,2026,1,1,,0,,,8,24,6,8/24/26 5:00, +1,1,5647,2026,1,1,,0,,,8,24,7,8/24/26 6:00, +1,1,5648,2026,1,1,,0,,,8,24,8,8/24/26 7:00, +1,1,5649,2026,1,1,,0,,,8,24,9,8/24/26 8:00, +1,1,5650,2026,1,1,,0,,,8,24,10,8/24/26 9:00, +1,1,5651,2026,1,1,,0,,,8,24,11,8/24/26 10:00, +1,1,5652,2026,1,1,,0,,,8,24,12,8/24/26 11:00, +1,1,5653,2026,1,1,,0,,,8,24,13,8/24/26 12:00, +1,1,5654,2026,1,1,,0,,,8,24,14,8/24/26 13:00, +1,1,5655,2026,1,1,,0,,,8,24,15,8/24/26 14:00, +1,1,5656,2026,1,1,,0,,,8,24,16,8/24/26 15:00, +1,1,5657,2026,1,1,,0,,,8,24,17,8/24/26 16:00, +1,1,5658,2026,1,1,,0,,,8,24,18,8/24/26 17:00, +1,1,5659,2026,1,1,,0,,,8,24,19,8/24/26 18:00, +1,1,5660,2026,1,1,,0,,,8,24,20,8/24/26 19:00, +1,1,5661,2026,1,1,,0,,,8,24,21,8/24/26 20:00, +1,1,5662,2026,1,1,,0,,,8,24,22,8/24/26 21:00, +1,1,5663,2026,1,1,,0,,,8,24,23,8/24/26 22:00, +1,1,5664,2026,1,1,,0,,,8,24,24,8/24/26 23:00, +1,1,5665,2026,1,1,,0,,,8,25,1,8/25/26 0:00, +1,1,5666,2026,1,1,,0,,,8,25,2,8/25/26 1:00, +1,1,5667,2026,1,1,,0,,,8,25,3,8/25/26 2:00, +1,1,5668,2026,1,1,,0,,,8,25,4,8/25/26 3:00, +1,1,5669,2026,1,1,,0,,,8,25,5,8/25/26 4:00, +1,1,5670,2026,1,1,,0,,,8,25,6,8/25/26 5:00, +1,1,5671,2026,1,1,,0,,,8,25,7,8/25/26 6:00, +1,1,5672,2026,1,1,,0,,,8,25,8,8/25/26 7:00, +1,1,5673,2026,1,1,,0,,,8,25,9,8/25/26 8:00, +1,1,5674,2026,1,1,,0,,,8,25,10,8/25/26 9:00, +1,1,5675,2026,1,1,,0,,,8,25,11,8/25/26 10:00, +1,1,5676,2026,1,1,,0,,,8,25,12,8/25/26 11:00, +1,1,5677,2026,1,1,,0,,,8,25,13,8/25/26 12:00, +1,1,5678,2026,1,1,,0,,,8,25,14,8/25/26 13:00, +1,1,5679,2026,1,1,,0,,,8,25,15,8/25/26 14:00, +1,1,5680,2026,1,1,,0,,,8,25,16,8/25/26 15:00, +1,1,5681,2026,1,1,,0,,,8,25,17,8/25/26 16:00, +1,1,5682,2026,1,1,,0,,,8,25,18,8/25/26 17:00, +1,1,5683,2026,1,1,,0,,,8,25,19,8/25/26 18:00, +1,1,5684,2026,1,1,,0,,,8,25,20,8/25/26 19:00, +1,1,5685,2026,1,1,,0,,,8,25,21,8/25/26 20:00, +1,1,5686,2026,1,1,,0,,,8,25,22,8/25/26 21:00, +1,1,5687,2026,1,1,,0,,,8,25,23,8/25/26 22:00, +1,1,5688,2026,1,1,,0,,,8,25,24,8/25/26 23:00, +1,1,5689,2026,1,1,,0,,,8,26,1,8/26/26 0:00, +1,1,5690,2026,1,1,,0,,,8,26,2,8/26/26 1:00, +1,1,5691,2026,1,1,,0,,,8,26,3,8/26/26 2:00, +1,1,5692,2026,1,1,,0,,,8,26,4,8/26/26 3:00, +1,1,5693,2026,1,1,,0,,,8,26,5,8/26/26 4:00, +1,1,5694,2026,1,1,,0,,,8,26,6,8/26/26 5:00, +1,1,5695,2026,1,1,,0,,,8,26,7,8/26/26 6:00, +1,1,5696,2026,1,1,,0,,,8,26,8,8/26/26 7:00, +1,1,5697,2026,1,1,,0,,,8,26,9,8/26/26 8:00, +1,1,5698,2026,1,1,,0,,,8,26,10,8/26/26 9:00, +1,1,5699,2026,1,1,,0,,,8,26,11,8/26/26 10:00, +1,1,5700,2026,1,1,,0,,,8,26,12,8/26/26 11:00, +1,1,5701,2026,1,1,,0,,,8,26,13,8/26/26 12:00, +1,1,5702,2026,1,1,,0,,,8,26,14,8/26/26 13:00, +1,1,5703,2026,1,1,,0,,,8,26,15,8/26/26 14:00, +1,1,5704,2026,1,1,,0,,,8,26,16,8/26/26 15:00, +1,1,5705,2026,1,1,,0,,,8,26,17,8/26/26 16:00, +1,1,5706,2026,1,1,,0,,,8,26,18,8/26/26 17:00, +1,1,5707,2026,1,1,,0,,,8,26,19,8/26/26 18:00, +1,1,5708,2026,1,1,,0,,,8,26,20,8/26/26 19:00, +1,1,5709,2026,1,1,,0,,,8,26,21,8/26/26 20:00, +1,1,5710,2026,1,1,,0,,,8,26,22,8/26/26 21:00, +1,1,5711,2026,1,1,,0,,,8,26,23,8/26/26 22:00, +1,1,5712,2026,1,1,,0,,,8,26,24,8/26/26 23:00, +1,1,5713,2026,1,1,,0,,,8,27,1,8/27/26 0:00, +1,1,5714,2026,1,1,,0,,,8,27,2,8/27/26 1:00, +1,1,5715,2026,1,1,,0,,,8,27,3,8/27/26 2:00, +1,1,5716,2026,1,1,,0,,,8,27,4,8/27/26 3:00, +1,1,5717,2026,1,1,,0,,,8,27,5,8/27/26 4:00, +1,1,5718,2026,1,1,,0,,,8,27,6,8/27/26 5:00, +1,1,5719,2026,1,1,,0,,,8,27,7,8/27/26 6:00, +1,1,5720,2026,1,1,,0,,,8,27,8,8/27/26 7:00, +1,1,5721,2026,1,1,,0,,,8,27,9,8/27/26 8:00, +1,1,5722,2026,1,1,,0,,,8,27,10,8/27/26 9:00, +1,1,5723,2026,1,1,,0,,,8,27,11,8/27/26 10:00, +1,1,5724,2026,1,1,,0,,,8,27,12,8/27/26 11:00, +1,1,5725,2026,1,1,,0,,,8,27,13,8/27/26 12:00, +1,1,5726,2026,1,1,,0,,,8,27,14,8/27/26 13:00, +1,1,5727,2026,1,1,,0,,,8,27,15,8/27/26 14:00, +1,1,5728,2026,1,1,,0,,,8,27,16,8/27/26 15:00, +1,1,5729,2026,1,1,,0,,,8,27,17,8/27/26 16:00, +1,1,5730,2026,1,1,,0,,,8,27,18,8/27/26 17:00, +1,1,5731,2026,1,1,,0,,,8,27,19,8/27/26 18:00, +1,1,5732,2026,1,1,,0,,,8,27,20,8/27/26 19:00, +1,1,5733,2026,1,1,,0,,,8,27,21,8/27/26 20:00, +1,1,5734,2026,1,1,,0,,,8,27,22,8/27/26 21:00, +1,1,5735,2026,1,1,,0,,,8,27,23,8/27/26 22:00, +1,1,5736,2026,1,1,,0,,,8,27,24,8/27/26 23:00, +1,1,5737,2026,1,1,,0,,,8,28,1,8/28/26 0:00, +1,1,5738,2026,1,1,,0,,,8,28,2,8/28/26 1:00, +1,1,5739,2026,1,1,,0,,,8,28,3,8/28/26 2:00, +1,1,5740,2026,1,1,,0,,,8,28,4,8/28/26 3:00, +1,1,5741,2026,1,1,,0,,,8,28,5,8/28/26 4:00, +1,1,5742,2026,1,1,,0,,,8,28,6,8/28/26 5:00, +1,1,5743,2026,1,1,,0,,,8,28,7,8/28/26 6:00, +1,1,5744,2026,1,1,,0,,,8,28,8,8/28/26 7:00, +1,1,5745,2026,1,1,,0,,,8,28,9,8/28/26 8:00, +1,1,5746,2026,1,1,,0,,,8,28,10,8/28/26 9:00, +1,1,5747,2026,1,1,,0,,,8,28,11,8/28/26 10:00, +1,1,5748,2026,1,1,,0,,,8,28,12,8/28/26 11:00, +1,1,5749,2026,1,1,,0,,,8,28,13,8/28/26 12:00, +1,1,5750,2026,1,1,,0,,,8,28,14,8/28/26 13:00, +1,1,5751,2026,1,1,,0,,,8,28,15,8/28/26 14:00, +1,1,5752,2026,1,1,,0,,,8,28,16,8/28/26 15:00, +1,1,5753,2026,1,1,,0,,,8,28,17,8/28/26 16:00, +1,1,5754,2026,1,1,,0,,,8,28,18,8/28/26 17:00, +1,1,5755,2026,1,1,,0,,,8,28,19,8/28/26 18:00, +1,1,5756,2026,1,1,,0,,,8,28,20,8/28/26 19:00, +1,1,5757,2026,1,1,,0,,,8,28,21,8/28/26 20:00, +1,1,5758,2026,1,1,,0,,,8,28,22,8/28/26 21:00, +1,1,5759,2026,1,1,,0,,,8,28,23,8/28/26 22:00, +1,1,5760,2026,1,1,,0,,,8,28,24,8/28/26 23:00, +1,1,5761,2026,1,1,,0,,,8,29,1,8/29/26 0:00, +1,1,5762,2026,1,1,,0,,,8,29,2,8/29/26 1:00, +1,1,5763,2026,1,1,,0,,,8,29,3,8/29/26 2:00, +1,1,5764,2026,1,1,,0,,,8,29,4,8/29/26 3:00, +1,1,5765,2026,1,1,,0,,,8,29,5,8/29/26 4:00, +1,1,5766,2026,1,1,,0,,,8,29,6,8/29/26 5:00, +1,1,5767,2026,1,1,,0,,,8,29,7,8/29/26 6:00, +1,1,5768,2026,1,1,,0,,,8,29,8,8/29/26 7:00, +1,1,5769,2026,1,1,,0,,,8,29,9,8/29/26 8:00, +1,1,5770,2026,1,1,,0,,,8,29,10,8/29/26 9:00, +1,1,5771,2026,1,1,,0,,,8,29,11,8/29/26 10:00, +1,1,5772,2026,1,1,,0,,,8,29,12,8/29/26 11:00, +1,1,5773,2026,1,1,,0,,,8,29,13,8/29/26 12:00, +1,1,5774,2026,1,1,,0,,,8,29,14,8/29/26 13:00, +1,1,5775,2026,1,1,,0,,,8,29,15,8/29/26 14:00, +1,1,5776,2026,1,1,,0,,,8,29,16,8/29/26 15:00, +1,1,5777,2026,1,1,,0,,,8,29,17,8/29/26 16:00, +1,1,5778,2026,1,1,,0,,,8,29,18,8/29/26 17:00, +1,1,5779,2026,1,1,,0,,,8,29,19,8/29/26 18:00, +1,1,5780,2026,1,1,,0,,,8,29,20,8/29/26 19:00, +1,1,5781,2026,1,1,,0,,,8,29,21,8/29/26 20:00, +1,1,5782,2026,1,1,,0,,,8,29,22,8/29/26 21:00, +1,1,5783,2026,1,1,,0,,,8,29,23,8/29/26 22:00, +1,1,5784,2026,1,1,,0,,,8,29,24,8/29/26 23:00, +1,1,5785,2026,1,1,,0,,,8,30,1,8/30/26 0:00, +1,1,5786,2026,1,1,,0,,,8,30,2,8/30/26 1:00, +1,1,5787,2026,1,1,,0,,,8,30,3,8/30/26 2:00, +1,1,5788,2026,1,1,,0,,,8,30,4,8/30/26 3:00, +1,1,5789,2026,1,1,,0,,,8,30,5,8/30/26 4:00, +1,1,5790,2026,1,1,,0,,,8,30,6,8/30/26 5:00, +1,1,5791,2026,1,1,,0,,,8,30,7,8/30/26 6:00, +1,1,5792,2026,1,1,,0,,,8,30,8,8/30/26 7:00, +1,1,5793,2026,1,1,,0,,,8,30,9,8/30/26 8:00, +1,1,5794,2026,1,1,,0,,,8,30,10,8/30/26 9:00, +1,1,5795,2026,1,1,,0,,,8,30,11,8/30/26 10:00, +1,1,5796,2026,1,1,,0,,,8,30,12,8/30/26 11:00, +1,1,5797,2026,1,1,,0,,,8,30,13,8/30/26 12:00, +1,1,5798,2026,1,1,,0,,,8,30,14,8/30/26 13:00, +1,1,5799,2026,1,1,,0,,,8,30,15,8/30/26 14:00, +1,1,5800,2026,1,1,,0,,,8,30,16,8/30/26 15:00, +1,1,5801,2026,1,1,,0,,,8,30,17,8/30/26 16:00, +1,1,5802,2026,1,1,,0,,,8,30,18,8/30/26 17:00, +1,1,5803,2026,1,1,,0,,,8,30,19,8/30/26 18:00, +1,1,5804,2026,1,1,,0,,,8,30,20,8/30/26 19:00, +1,1,5805,2026,1,1,,0,,,8,30,21,8/30/26 20:00, +1,1,5806,2026,1,1,,0,,,8,30,22,8/30/26 21:00, +1,1,5807,2026,1,1,,0,,,8,30,23,8/30/26 22:00, +1,1,5808,2026,1,1,,0,,,8,30,24,8/30/26 23:00, +1,1,5809,2026,1,1,,0,,,8,31,1,8/31/26 0:00, +1,1,5810,2026,1,1,,0,,,8,31,2,8/31/26 1:00, +1,1,5811,2026,1,1,,0,,,8,31,3,8/31/26 2:00, +1,1,5812,2026,1,1,,0,,,8,31,4,8/31/26 3:00, +1,1,5813,2026,1,1,,0,,,8,31,5,8/31/26 4:00, +1,1,5814,2026,1,1,,0,,,8,31,6,8/31/26 5:00, +1,1,5815,2026,1,1,,0,,,8,31,7,8/31/26 6:00, +1,1,5816,2026,1,1,,0,,,8,31,8,8/31/26 7:00, +1,1,5817,2026,1,1,,0,,,8,31,9,8/31/26 8:00, +1,1,5818,2026,1,1,,0,,,8,31,10,8/31/26 9:00, +1,1,5819,2026,1,1,,0,,,8,31,11,8/31/26 10:00, +1,1,5820,2026,1,1,,0,,,8,31,12,8/31/26 11:00, +1,1,5821,2026,1,1,,0,,,8,31,13,8/31/26 12:00, +1,1,5822,2026,1,1,,0,,,8,31,14,8/31/26 13:00, +1,1,5823,2026,1,1,,0,,,8,31,15,8/31/26 14:00, +1,1,5824,2026,1,1,,0,,,8,31,16,8/31/26 15:00, +1,1,5825,2026,1,1,,0,,,8,31,17,8/31/26 16:00, +1,1,5826,2026,1,1,,0,,,8,31,18,8/31/26 17:00, +1,1,5827,2026,1,1,,0,,,8,31,19,8/31/26 18:00, +1,1,5828,2026,1,1,,0,,,8,31,20,8/31/26 19:00, +1,1,5829,2026,1,1,,0,,,8,31,21,8/31/26 20:00, +1,1,5830,2026,1,1,,0,,,8,31,22,8/31/26 21:00, +1,1,5831,2026,1,1,,0,,,8,31,23,8/31/26 22:00, +1,1,5832,2026,1,1,,0,,,8,31,24,8/31/26 23:00, +1,1,5833,2026,1,1,,0,,,9,1,1,9/1/26 0:00, +1,1,5834,2026,1,1,,0,,,9,1,2,9/1/26 1:00, +1,1,5835,2026,1,1,,0,,,9,1,3,9/1/26 2:00, +1,1,5836,2026,1,1,,0,,,9,1,4,9/1/26 3:00, +1,1,5837,2026,1,1,,0,,,9,1,5,9/1/26 4:00, +1,1,5838,2026,1,1,,0,,,9,1,6,9/1/26 5:00, +1,1,5839,2026,1,1,,0,,,9,1,7,9/1/26 6:00, +1,1,5840,2026,1,1,,0,,,9,1,8,9/1/26 7:00, +1,1,5841,2026,1,1,,0,,,9,1,9,9/1/26 8:00, +1,1,5842,2026,1,1,,0,,,9,1,10,9/1/26 9:00, +1,1,5843,2026,1,1,,0,,,9,1,11,9/1/26 10:00, +1,1,5844,2026,1,1,,0,,,9,1,12,9/1/26 11:00, +1,1,5845,2026,1,1,,0,,,9,1,13,9/1/26 12:00, +1,1,5846,2026,1,1,,0,,,9,1,14,9/1/26 13:00, +1,1,5847,2026,1,1,,0,,,9,1,15,9/1/26 14:00, +1,1,5848,2026,1,1,,0,,,9,1,16,9/1/26 15:00, +1,1,5849,2026,1,1,,0,,,9,1,17,9/1/26 16:00, +1,1,5850,2026,1,1,,0,,,9,1,18,9/1/26 17:00, +1,1,5851,2026,1,1,,0,,,9,1,19,9/1/26 18:00, +1,1,5852,2026,1,1,,0,,,9,1,20,9/1/26 19:00, +1,1,5853,2026,1,1,,0,,,9,1,21,9/1/26 20:00, +1,1,5854,2026,1,1,,0,,,9,1,22,9/1/26 21:00, +1,1,5855,2026,1,1,,0,,,9,1,23,9/1/26 22:00, +1,1,5856,2026,1,1,,0,,,9,1,24,9/1/26 23:00, +1,1,5857,2026,1,1,,0,,,9,2,1,9/2/26 0:00, +1,1,5858,2026,1,1,,0,,,9,2,2,9/2/26 1:00, +1,1,5859,2026,1,1,,0,,,9,2,3,9/2/26 2:00, +1,1,5860,2026,1,1,,0,,,9,2,4,9/2/26 3:00, +1,1,5861,2026,1,1,,0,,,9,2,5,9/2/26 4:00, +1,1,5862,2026,1,1,,0,,,9,2,6,9/2/26 5:00, +1,1,5863,2026,1,1,,0,,,9,2,7,9/2/26 6:00, +1,1,5864,2026,1,1,,0,,,9,2,8,9/2/26 7:00, +1,1,5865,2026,1,1,,0,,,9,2,9,9/2/26 8:00, +1,1,5866,2026,1,1,,0,,,9,2,10,9/2/26 9:00, +1,1,5867,2026,1,1,,0,,,9,2,11,9/2/26 10:00, +1,1,5868,2026,1,1,,0,,,9,2,12,9/2/26 11:00, +1,1,5869,2026,1,1,,0,,,9,2,13,9/2/26 12:00, +1,1,5870,2026,1,1,,0,,,9,2,14,9/2/26 13:00, +1,1,5871,2026,1,1,,0,,,9,2,15,9/2/26 14:00, +1,1,5872,2026,1,1,,0,,,9,2,16,9/2/26 15:00, +1,1,5873,2026,1,1,,0,,,9,2,17,9/2/26 16:00, +1,1,5874,2026,1,1,,0,,,9,2,18,9/2/26 17:00, +1,1,5875,2026,1,1,,0,,,9,2,19,9/2/26 18:00, +1,1,5876,2026,1,1,,0,,,9,2,20,9/2/26 19:00, +1,1,5877,2026,1,1,,0,,,9,2,21,9/2/26 20:00, +1,1,5878,2026,1,1,,0,,,9,2,22,9/2/26 21:00, +1,1,5879,2026,1,1,,0,,,9,2,23,9/2/26 22:00, +1,1,5880,2026,1,1,,0,,,9,2,24,9/2/26 23:00, +1,1,5881,2026,1,1,,0,,,9,3,1,9/3/26 0:00, +1,1,5882,2026,1,1,,0,,,9,3,2,9/3/26 1:00, +1,1,5883,2026,1,1,,0,,,9,3,3,9/3/26 2:00, +1,1,5884,2026,1,1,,0,,,9,3,4,9/3/26 3:00, +1,1,5885,2026,1,1,,0,,,9,3,5,9/3/26 4:00, +1,1,5886,2026,1,1,,0,,,9,3,6,9/3/26 5:00, +1,1,5887,2026,1,1,,0,,,9,3,7,9/3/26 6:00, +1,1,5888,2026,1,1,,0,,,9,3,8,9/3/26 7:00, +1,1,5889,2026,1,1,,0,,,9,3,9,9/3/26 8:00, +1,1,5890,2026,1,1,,0,,,9,3,10,9/3/26 9:00, +1,1,5891,2026,1,1,,0,,,9,3,11,9/3/26 10:00, +1,1,5892,2026,1,1,,0,,,9,3,12,9/3/26 11:00, +1,1,5893,2026,1,1,,0,,,9,3,13,9/3/26 12:00, +1,1,5894,2026,1,1,,0,,,9,3,14,9/3/26 13:00, +1,1,5895,2026,1,1,,0,,,9,3,15,9/3/26 14:00, +1,1,5896,2026,1,1,,0,,,9,3,16,9/3/26 15:00, +1,1,5897,2026,1,1,,0,,,9,3,17,9/3/26 16:00, +1,1,5898,2026,1,1,,0,,,9,3,18,9/3/26 17:00, +1,1,5899,2026,1,1,,0,,,9,3,19,9/3/26 18:00, +1,1,5900,2026,1,1,,0,,,9,3,20,9/3/26 19:00, +1,1,5901,2026,1,1,,0,,,9,3,21,9/3/26 20:00, +1,1,5902,2026,1,1,,0,,,9,3,22,9/3/26 21:00, +1,1,5903,2026,1,1,,0,,,9,3,23,9/3/26 22:00, +1,1,5904,2026,1,1,,0,,,9,3,24,9/3/26 23:00, +1,1,5905,2026,1,1,,0,,,9,4,1,9/4/26 0:00, +1,1,5906,2026,1,1,,0,,,9,4,2,9/4/26 1:00, +1,1,5907,2026,1,1,,0,,,9,4,3,9/4/26 2:00, +1,1,5908,2026,1,1,,0,,,9,4,4,9/4/26 3:00, +1,1,5909,2026,1,1,,0,,,9,4,5,9/4/26 4:00, +1,1,5910,2026,1,1,,0,,,9,4,6,9/4/26 5:00, +1,1,5911,2026,1,1,,0,,,9,4,7,9/4/26 6:00, +1,1,5912,2026,1,1,,0,,,9,4,8,9/4/26 7:00, +1,1,5913,2026,1,1,,0,,,9,4,9,9/4/26 8:00, +1,1,5914,2026,1,1,,0,,,9,4,10,9/4/26 9:00, +1,1,5915,2026,1,1,,0,,,9,4,11,9/4/26 10:00, +1,1,5916,2026,1,1,,0,,,9,4,12,9/4/26 11:00, +1,1,5917,2026,1,1,,0,,,9,4,13,9/4/26 12:00, +1,1,5918,2026,1,1,,0,,,9,4,14,9/4/26 13:00, +1,1,5919,2026,1,1,,0,,,9,4,15,9/4/26 14:00, +1,1,5920,2026,1,1,,0,,,9,4,16,9/4/26 15:00, +1,1,5921,2026,1,1,,0,,,9,4,17,9/4/26 16:00, +1,1,5922,2026,1,1,,0,,,9,4,18,9/4/26 17:00, +1,1,5923,2026,1,1,,0,,,9,4,19,9/4/26 18:00, +1,1,5924,2026,1,1,,0,,,9,4,20,9/4/26 19:00, +1,1,5925,2026,1,1,,0,,,9,4,21,9/4/26 20:00, +1,1,5926,2026,1,1,,0,,,9,4,22,9/4/26 21:00, +1,1,5927,2026,1,1,,0,,,9,4,23,9/4/26 22:00, +1,1,5928,2026,1,1,,0,,,9,4,24,9/4/26 23:00, +1,1,5929,2026,1,1,,0,,,9,5,1,9/5/26 0:00, +1,1,5930,2026,1,1,,0,,,9,5,2,9/5/26 1:00, +1,1,5931,2026,1,1,,0,,,9,5,3,9/5/26 2:00, +1,1,5932,2026,1,1,,0,,,9,5,4,9/5/26 3:00, +1,1,5933,2026,1,1,,0,,,9,5,5,9/5/26 4:00, +1,1,5934,2026,1,1,,0,,,9,5,6,9/5/26 5:00, +1,1,5935,2026,1,1,,0,,,9,5,7,9/5/26 6:00, +1,1,5936,2026,1,1,,0,,,9,5,8,9/5/26 7:00, +1,1,5937,2026,1,1,,0,,,9,5,9,9/5/26 8:00, +1,1,5938,2026,1,1,,0,,,9,5,10,9/5/26 9:00, +1,1,5939,2026,1,1,,0,,,9,5,11,9/5/26 10:00, +1,1,5940,2026,1,1,,0,,,9,5,12,9/5/26 11:00, +1,1,5941,2026,1,1,,0,,,9,5,13,9/5/26 12:00, +1,1,5942,2026,1,1,,0,,,9,5,14,9/5/26 13:00, +1,1,5943,2026,1,1,,0,,,9,5,15,9/5/26 14:00, +1,1,5944,2026,1,1,,0,,,9,5,16,9/5/26 15:00, +1,1,5945,2026,1,1,,0,,,9,5,17,9/5/26 16:00, +1,1,5946,2026,1,1,,0,,,9,5,18,9/5/26 17:00, +1,1,5947,2026,1,1,,0,,,9,5,19,9/5/26 18:00, +1,1,5948,2026,1,1,,0,,,9,5,20,9/5/26 19:00, +1,1,5949,2026,1,1,,0,,,9,5,21,9/5/26 20:00, +1,1,5950,2026,1,1,,0,,,9,5,22,9/5/26 21:00, +1,1,5951,2026,1,1,,0,,,9,5,23,9/5/26 22:00, +1,1,5952,2026,1,1,,0,,,9,5,24,9/5/26 23:00, +1,1,5953,2026,1,1,,0,,,9,6,1,9/6/26 0:00, +1,1,5954,2026,1,1,,0,,,9,6,2,9/6/26 1:00, +1,1,5955,2026,1,1,,0,,,9,6,3,9/6/26 2:00, +1,1,5956,2026,1,1,,0,,,9,6,4,9/6/26 3:00, +1,1,5957,2026,1,1,,0,,,9,6,5,9/6/26 4:00, +1,1,5958,2026,1,1,,0,,,9,6,6,9/6/26 5:00, +1,1,5959,2026,1,1,,0,,,9,6,7,9/6/26 6:00, +1,1,5960,2026,1,1,,0,,,9,6,8,9/6/26 7:00, +1,1,5961,2026,1,1,,0,,,9,6,9,9/6/26 8:00, +1,1,5962,2026,1,1,,0,,,9,6,10,9/6/26 9:00, +1,1,5963,2026,1,1,,0,,,9,6,11,9/6/26 10:00, +1,1,5964,2026,1,1,,0,,,9,6,12,9/6/26 11:00, +1,1,5965,2026,1,1,,0,,,9,6,13,9/6/26 12:00, +1,1,5966,2026,1,1,,0,,,9,6,14,9/6/26 13:00, +1,1,5967,2026,1,1,,0,,,9,6,15,9/6/26 14:00, +1,1,5968,2026,1,1,,0,,,9,6,16,9/6/26 15:00, +1,1,5969,2026,1,1,,0,,,9,6,17,9/6/26 16:00, +1,1,5970,2026,1,1,,0,,,9,6,18,9/6/26 17:00, +1,1,5971,2026,1,1,,0,,,9,6,19,9/6/26 18:00, +1,1,5972,2026,1,1,,0,,,9,6,20,9/6/26 19:00, +1,1,5973,2026,1,1,,0,,,9,6,21,9/6/26 20:00, +1,1,5974,2026,1,1,,0,,,9,6,22,9/6/26 21:00, +1,1,5975,2026,1,1,,0,,,9,6,23,9/6/26 22:00, +1,1,5976,2026,1,1,,0,,,9,6,24,9/6/26 23:00, +1,1,5977,2026,1,1,,0,,,9,7,1,9/7/26 0:00, +1,1,5978,2026,1,1,,0,,,9,7,2,9/7/26 1:00, +1,1,5979,2026,1,1,,0,,,9,7,3,9/7/26 2:00, +1,1,5980,2026,1,1,,0,,,9,7,4,9/7/26 3:00, +1,1,5981,2026,1,1,,0,,,9,7,5,9/7/26 4:00, +1,1,5982,2026,1,1,,0,,,9,7,6,9/7/26 5:00, +1,1,5983,2026,1,1,,0,,,9,7,7,9/7/26 6:00, +1,1,5984,2026,1,1,,0,,,9,7,8,9/7/26 7:00, +1,1,5985,2026,1,1,,0,,,9,7,9,9/7/26 8:00, +1,1,5986,2026,1,1,,0,,,9,7,10,9/7/26 9:00, +1,1,5987,2026,1,1,,0,,,9,7,11,9/7/26 10:00, +1,1,5988,2026,1,1,,0,,,9,7,12,9/7/26 11:00, +1,1,5989,2026,1,1,,0,,,9,7,13,9/7/26 12:00, +1,1,5990,2026,1,1,,0,,,9,7,14,9/7/26 13:00, +1,1,5991,2026,1,1,,0,,,9,7,15,9/7/26 14:00, +1,1,5992,2026,1,1,,0,,,9,7,16,9/7/26 15:00, +1,1,5993,2026,1,1,,0,,,9,7,17,9/7/26 16:00, +1,1,5994,2026,1,1,,0,,,9,7,18,9/7/26 17:00, +1,1,5995,2026,1,1,,0,,,9,7,19,9/7/26 18:00, +1,1,5996,2026,1,1,,0,,,9,7,20,9/7/26 19:00, +1,1,5997,2026,1,1,,0,,,9,7,21,9/7/26 20:00, +1,1,5998,2026,1,1,,0,,,9,7,22,9/7/26 21:00, +1,1,5999,2026,1,1,,0,,,9,7,23,9/7/26 22:00, +1,1,6000,2026,1,1,,0,,,9,7,24,9/7/26 23:00, +1,1,6001,2026,1,1,,0,,,9,8,1,9/8/26 0:00, +1,1,6002,2026,1,1,,0,,,9,8,2,9/8/26 1:00, +1,1,6003,2026,1,1,,0,,,9,8,3,9/8/26 2:00, +1,1,6004,2026,1,1,,0,,,9,8,4,9/8/26 3:00, +1,1,6005,2026,1,1,,0,,,9,8,5,9/8/26 4:00, +1,1,6006,2026,1,1,,0,,,9,8,6,9/8/26 5:00, +1,1,6007,2026,1,1,,0,,,9,8,7,9/8/26 6:00, +1,1,6008,2026,1,1,,0,,,9,8,8,9/8/26 7:00, +1,1,6009,2026,1,1,,0,,,9,8,9,9/8/26 8:00, +1,1,6010,2026,1,1,,0,,,9,8,10,9/8/26 9:00, +1,1,6011,2026,1,1,,0,,,9,8,11,9/8/26 10:00, +1,1,6012,2026,1,1,,0,,,9,8,12,9/8/26 11:00, +1,1,6013,2026,1,1,,0,,,9,8,13,9/8/26 12:00, +1,1,6014,2026,1,1,,0,,,9,8,14,9/8/26 13:00, +1,1,6015,2026,1,1,,0,,,9,8,15,9/8/26 14:00, +1,1,6016,2026,1,1,,0,,,9,8,16,9/8/26 15:00, +1,1,6017,2026,1,1,,0,,,9,8,17,9/8/26 16:00, +1,1,6018,2026,1,1,,0,,,9,8,18,9/8/26 17:00, +1,1,6019,2026,1,1,,0,,,9,8,19,9/8/26 18:00, +1,1,6020,2026,1,1,,0,,,9,8,20,9/8/26 19:00, +1,1,6021,2026,1,1,,0,,,9,8,21,9/8/26 20:00, +1,1,6022,2026,1,1,,0,,,9,8,22,9/8/26 21:00, +1,1,6023,2026,1,1,,0,,,9,8,23,9/8/26 22:00, +1,1,6024,2026,1,1,,0,,,9,8,24,9/8/26 23:00, +1,1,6025,2026,1,1,,0,,,9,9,1,9/9/26 0:00, +1,1,6026,2026,1,1,,0,,,9,9,2,9/9/26 1:00, +1,1,6027,2026,1,1,,0,,,9,9,3,9/9/26 2:00, +1,1,6028,2026,1,1,,0,,,9,9,4,9/9/26 3:00, +1,1,6029,2026,1,1,,0,,,9,9,5,9/9/26 4:00, +1,1,6030,2026,1,1,,0,,,9,9,6,9/9/26 5:00, +1,1,6031,2026,1,1,,0,,,9,9,7,9/9/26 6:00, +1,1,6032,2026,1,1,,0,,,9,9,8,9/9/26 7:00, +1,1,6033,2026,1,1,,0,,,9,9,9,9/9/26 8:00, +1,1,6034,2026,1,1,,0,,,9,9,10,9/9/26 9:00, +1,1,6035,2026,1,1,,0,,,9,9,11,9/9/26 10:00, +1,1,6036,2026,1,1,,0,,,9,9,12,9/9/26 11:00, +1,1,6037,2026,1,1,,0,,,9,9,13,9/9/26 12:00, +1,1,6038,2026,1,1,,0,,,9,9,14,9/9/26 13:00, +1,1,6039,2026,1,1,,0,,,9,9,15,9/9/26 14:00, +1,1,6040,2026,1,1,,0,,,9,9,16,9/9/26 15:00, +1,1,6041,2026,1,1,,0,,,9,9,17,9/9/26 16:00, +1,1,6042,2026,1,1,,0,,,9,9,18,9/9/26 17:00, +1,1,6043,2026,1,1,,0,,,9,9,19,9/9/26 18:00, +1,1,6044,2026,1,1,,0,,,9,9,20,9/9/26 19:00, +1,1,6045,2026,1,1,,0,,,9,9,21,9/9/26 20:00, +1,1,6046,2026,1,1,,0,,,9,9,22,9/9/26 21:00, +1,1,6047,2026,1,1,,0,,,9,9,23,9/9/26 22:00, +1,1,6048,2026,1,1,,0,,,9,9,24,9/9/26 23:00, +1,1,6049,2026,1,1,,0,,,9,10,1,9/10/26 0:00, +1,1,6050,2026,1,1,,0,,,9,10,2,9/10/26 1:00, +1,1,6051,2026,1,1,,0,,,9,10,3,9/10/26 2:00, +1,1,6052,2026,1,1,,0,,,9,10,4,9/10/26 3:00, +1,1,6053,2026,1,1,,0,,,9,10,5,9/10/26 4:00, +1,1,6054,2026,1,1,,0,,,9,10,6,9/10/26 5:00, +1,1,6055,2026,1,1,,0,,,9,10,7,9/10/26 6:00, +1,1,6056,2026,1,1,,0,,,9,10,8,9/10/26 7:00, +1,1,6057,2026,1,1,,0,,,9,10,9,9/10/26 8:00, +1,1,6058,2026,1,1,,0,,,9,10,10,9/10/26 9:00, +1,1,6059,2026,1,1,,0,,,9,10,11,9/10/26 10:00, +1,1,6060,2026,1,1,,0,,,9,10,12,9/10/26 11:00, +1,1,6061,2026,1,1,,0,,,9,10,13,9/10/26 12:00, +1,1,6062,2026,1,1,,0,,,9,10,14,9/10/26 13:00, +1,1,6063,2026,1,1,,0,,,9,10,15,9/10/26 14:00, +1,1,6064,2026,1,1,,0,,,9,10,16,9/10/26 15:00, +1,1,6065,2026,1,1,,0,,,9,10,17,9/10/26 16:00, +1,1,6066,2026,1,1,,0,,,9,10,18,9/10/26 17:00, +1,1,6067,2026,1,1,,0,,,9,10,19,9/10/26 18:00, +1,1,6068,2026,1,1,,0,,,9,10,20,9/10/26 19:00, +1,1,6069,2026,1,1,,0,,,9,10,21,9/10/26 20:00, +1,1,6070,2026,1,1,,0,,,9,10,22,9/10/26 21:00, +1,1,6071,2026,1,1,,0,,,9,10,23,9/10/26 22:00, +1,1,6072,2026,1,1,,0,,,9,10,24,9/10/26 23:00, +1,1,6073,2026,1,1,,0,,,9,11,1,9/11/26 0:00, +1,1,6074,2026,1,1,,0,,,9,11,2,9/11/26 1:00, +1,1,6075,2026,1,1,,0,,,9,11,3,9/11/26 2:00, +1,1,6076,2026,1,1,,0,,,9,11,4,9/11/26 3:00, +1,1,6077,2026,1,1,,0,,,9,11,5,9/11/26 4:00, +1,1,6078,2026,1,1,,0,,,9,11,6,9/11/26 5:00, +1,1,6079,2026,1,1,,0,,,9,11,7,9/11/26 6:00, +1,1,6080,2026,1,1,,0,,,9,11,8,9/11/26 7:00, +1,1,6081,2026,1,1,,0,,,9,11,9,9/11/26 8:00, +1,1,6082,2026,1,1,,0,,,9,11,10,9/11/26 9:00, +1,1,6083,2026,1,1,,0,,,9,11,11,9/11/26 10:00, +1,1,6084,2026,1,1,,0,,,9,11,12,9/11/26 11:00, +1,1,6085,2026,1,1,,0,,,9,11,13,9/11/26 12:00, +1,1,6086,2026,1,1,,0,,,9,11,14,9/11/26 13:00, +1,1,6087,2026,1,1,,0,,,9,11,15,9/11/26 14:00, +1,1,6088,2026,1,1,,0,,,9,11,16,9/11/26 15:00, +1,1,6089,2026,1,1,,0,,,9,11,17,9/11/26 16:00, +1,1,6090,2026,1,1,,0,,,9,11,18,9/11/26 17:00, +1,1,6091,2026,1,1,,0,,,9,11,19,9/11/26 18:00, +1,1,6092,2026,1,1,,0,,,9,11,20,9/11/26 19:00, +1,1,6093,2026,1,1,,0,,,9,11,21,9/11/26 20:00, +1,1,6094,2026,1,1,,0,,,9,11,22,9/11/26 21:00, +1,1,6095,2026,1,1,,0,,,9,11,23,9/11/26 22:00, +1,1,6096,2026,1,1,,0,,,9,11,24,9/11/26 23:00, +1,1,6097,2026,1,1,,0,,,9,12,1,9/12/26 0:00, +1,1,6098,2026,1,1,,0,,,9,12,2,9/12/26 1:00, +1,1,6099,2026,1,1,,0,,,9,12,3,9/12/26 2:00, +1,1,6100,2026,1,1,,0,,,9,12,4,9/12/26 3:00, +1,1,6101,2026,1,1,,0,,,9,12,5,9/12/26 4:00, +1,1,6102,2026,1,1,,0,,,9,12,6,9/12/26 5:00, +1,1,6103,2026,1,1,,0,,,9,12,7,9/12/26 6:00, +1,1,6104,2026,1,1,,0,,,9,12,8,9/12/26 7:00, +1,1,6105,2026,1,1,,0,,,9,12,9,9/12/26 8:00, +1,1,6106,2026,1,1,,0,,,9,12,10,9/12/26 9:00, +1,1,6107,2026,1,1,,0,,,9,12,11,9/12/26 10:00, +1,1,6108,2026,1,1,,0,,,9,12,12,9/12/26 11:00, +1,1,6109,2026,1,1,,0,,,9,12,13,9/12/26 12:00, +1,1,6110,2026,1,1,,0,,,9,12,14,9/12/26 13:00, +1,1,6111,2026,1,1,,0,,,9,12,15,9/12/26 14:00, +1,1,6112,2026,1,1,,0,,,9,12,16,9/12/26 15:00, +1,1,6113,2026,1,1,,0,,,9,12,17,9/12/26 16:00, +1,1,6114,2026,1,1,,0,,,9,12,18,9/12/26 17:00, +1,1,6115,2026,1,1,,0,,,9,12,19,9/12/26 18:00, +1,1,6116,2026,1,1,,0,,,9,12,20,9/12/26 19:00, +1,1,6117,2026,1,1,,0,,,9,12,21,9/12/26 20:00, +1,1,6118,2026,1,1,,0,,,9,12,22,9/12/26 21:00, +1,1,6119,2026,1,1,,0,,,9,12,23,9/12/26 22:00, +1,1,6120,2026,1,1,,0,,,9,12,24,9/12/26 23:00, +1,1,6121,2026,1,1,,0,,,9,13,1,9/13/26 0:00, +1,1,6122,2026,1,1,,0,,,9,13,2,9/13/26 1:00, +1,1,6123,2026,1,1,,0,,,9,13,3,9/13/26 2:00, +1,1,6124,2026,1,1,,0,,,9,13,4,9/13/26 3:00, +1,1,6125,2026,1,1,,0,,,9,13,5,9/13/26 4:00, +1,1,6126,2026,1,1,,0,,,9,13,6,9/13/26 5:00, +1,1,6127,2026,1,1,,0,,,9,13,7,9/13/26 6:00, +1,1,6128,2026,1,1,,0,,,9,13,8,9/13/26 7:00, +1,1,6129,2026,1,1,,0,,,9,13,9,9/13/26 8:00, +1,1,6130,2026,1,1,,0,,,9,13,10,9/13/26 9:00, +1,1,6131,2026,1,1,,0,,,9,13,11,9/13/26 10:00, +1,1,6132,2026,1,1,,0,,,9,13,12,9/13/26 11:00, +1,1,6133,2026,1,1,,0,,,9,13,13,9/13/26 12:00, +1,1,6134,2026,1,1,,0,,,9,13,14,9/13/26 13:00, +1,1,6135,2026,1,1,,0,,,9,13,15,9/13/26 14:00, +1,1,6136,2026,1,1,,0,,,9,13,16,9/13/26 15:00, +1,1,6137,2026,1,1,,0,,,9,13,17,9/13/26 16:00, +1,1,6138,2026,1,1,,0,,,9,13,18,9/13/26 17:00, +1,1,6139,2026,1,1,,0,,,9,13,19,9/13/26 18:00, +1,1,6140,2026,1,1,,0,,,9,13,20,9/13/26 19:00, +1,1,6141,2026,1,1,,0,,,9,13,21,9/13/26 20:00, +1,1,6142,2026,1,1,,0,,,9,13,22,9/13/26 21:00, +1,1,6143,2026,1,1,,0,,,9,13,23,9/13/26 22:00, +1,1,6144,2026,1,1,,0,,,9,13,24,9/13/26 23:00, +1,1,6145,2026,1,1,,0,,,9,14,1,9/14/26 0:00, +1,1,6146,2026,1,1,,0,,,9,14,2,9/14/26 1:00, +1,1,6147,2026,1,1,,0,,,9,14,3,9/14/26 2:00, +1,1,6148,2026,1,1,,0,,,9,14,4,9/14/26 3:00, +1,1,6149,2026,1,1,,0,,,9,14,5,9/14/26 4:00, +1,1,6150,2026,1,1,,0,,,9,14,6,9/14/26 5:00, +1,1,6151,2026,1,1,,0,,,9,14,7,9/14/26 6:00, +1,1,6152,2026,1,1,,0,,,9,14,8,9/14/26 7:00, +1,1,6153,2026,1,1,,0,,,9,14,9,9/14/26 8:00, +1,1,6154,2026,1,1,,0,,,9,14,10,9/14/26 9:00, +1,1,6155,2026,1,1,,0,,,9,14,11,9/14/26 10:00, +1,1,6156,2026,1,1,,0,,,9,14,12,9/14/26 11:00, +1,1,6157,2026,1,1,,0,,,9,14,13,9/14/26 12:00, +1,1,6158,2026,1,1,,0,,,9,14,14,9/14/26 13:00, +1,1,6159,2026,1,1,,0,,,9,14,15,9/14/26 14:00, +1,1,6160,2026,1,1,,0,,,9,14,16,9/14/26 15:00, +1,1,6161,2026,1,1,,0,,,9,14,17,9/14/26 16:00, +1,1,6162,2026,1,1,,0,,,9,14,18,9/14/26 17:00, +1,1,6163,2026,1,1,,0,,,9,14,19,9/14/26 18:00, +1,1,6164,2026,1,1,,0,,,9,14,20,9/14/26 19:00, +1,1,6165,2026,1,1,,0,,,9,14,21,9/14/26 20:00, +1,1,6166,2026,1,1,,0,,,9,14,22,9/14/26 21:00, +1,1,6167,2026,1,1,,0,,,9,14,23,9/14/26 22:00, +1,1,6168,2026,1,1,,0,,,9,14,24,9/14/26 23:00, +1,1,6169,2026,1,1,,0,,,9,15,1,9/15/26 0:00, +1,1,6170,2026,1,1,,0,,,9,15,2,9/15/26 1:00, +1,1,6171,2026,1,1,,0,,,9,15,3,9/15/26 2:00, +1,1,6172,2026,1,1,,0,,,9,15,4,9/15/26 3:00, +1,1,6173,2026,1,1,,0,,,9,15,5,9/15/26 4:00, +1,1,6174,2026,1,1,,0,,,9,15,6,9/15/26 5:00, +1,1,6175,2026,1,1,,0,,,9,15,7,9/15/26 6:00, +1,1,6176,2026,1,1,,0,,,9,15,8,9/15/26 7:00, +1,1,6177,2026,1,1,,0,,,9,15,9,9/15/26 8:00, +1,1,6178,2026,1,1,,0,,,9,15,10,9/15/26 9:00, +1,1,6179,2026,1,1,,0,,,9,15,11,9/15/26 10:00, +1,1,6180,2026,1,1,,0,,,9,15,12,9/15/26 11:00, +1,1,6181,2026,1,1,,0,,,9,15,13,9/15/26 12:00, +1,1,6182,2026,1,1,,0,,,9,15,14,9/15/26 13:00, +1,1,6183,2026,1,1,,0,,,9,15,15,9/15/26 14:00, +1,1,6184,2026,1,1,,0,,,9,15,16,9/15/26 15:00, +1,1,6185,2026,1,1,,0,,,9,15,17,9/15/26 16:00, +1,1,6186,2026,1,1,,0,,,9,15,18,9/15/26 17:00, +1,1,6187,2026,1,1,,0,,,9,15,19,9/15/26 18:00, +1,1,6188,2026,1,1,,0,,,9,15,20,9/15/26 19:00, +1,1,6189,2026,1,1,,0,,,9,15,21,9/15/26 20:00, +1,1,6190,2026,1,1,,0,,,9,15,22,9/15/26 21:00, +1,1,6191,2026,1,1,,0,,,9,15,23,9/15/26 22:00, +1,1,6192,2026,1,1,,0,,,9,15,24,9/15/26 23:00, +1,1,6193,2026,1,1,,0,,,9,16,1,9/16/26 0:00, +1,1,6194,2026,1,1,,0,,,9,16,2,9/16/26 1:00, +1,1,6195,2026,1,1,,0,,,9,16,3,9/16/26 2:00, +1,1,6196,2026,1,1,,0,,,9,16,4,9/16/26 3:00, +1,1,6197,2026,1,1,,0,,,9,16,5,9/16/26 4:00, +1,1,6198,2026,1,1,,0,,,9,16,6,9/16/26 5:00, +1,1,6199,2026,1,1,,0,,,9,16,7,9/16/26 6:00, +1,1,6200,2026,1,1,,0,,,9,16,8,9/16/26 7:00, +1,1,6201,2026,1,1,,0,,,9,16,9,9/16/26 8:00, +1,1,6202,2026,1,1,,0,,,9,16,10,9/16/26 9:00, +1,1,6203,2026,1,1,,0,,,9,16,11,9/16/26 10:00, +1,1,6204,2026,1,1,,0,,,9,16,12,9/16/26 11:00, +1,1,6205,2026,1,1,,0,,,9,16,13,9/16/26 12:00, +1,1,6206,2026,1,1,,0,,,9,16,14,9/16/26 13:00, +1,1,6207,2026,1,1,,0,,,9,16,15,9/16/26 14:00, +1,1,6208,2026,1,1,,0,,,9,16,16,9/16/26 15:00, +1,1,6209,2026,1,1,,0,,,9,16,17,9/16/26 16:00, +1,1,6210,2026,1,1,,0,,,9,16,18,9/16/26 17:00, +1,1,6211,2026,1,1,,0,,,9,16,19,9/16/26 18:00, +1,1,6212,2026,1,1,,0,,,9,16,20,9/16/26 19:00, +1,1,6213,2026,1,1,,0,,,9,16,21,9/16/26 20:00, +1,1,6214,2026,1,1,,0,,,9,16,22,9/16/26 21:00, +1,1,6215,2026,1,1,,0,,,9,16,23,9/16/26 22:00, +1,1,6216,2026,1,1,,0,,,9,16,24,9/16/26 23:00, +1,1,6217,2026,1,1,,0,,,9,17,1,9/17/26 0:00, +1,1,6218,2026,1,1,,0,,,9,17,2,9/17/26 1:00, +1,1,6219,2026,1,1,,0,,,9,17,3,9/17/26 2:00, +1,1,6220,2026,1,1,,0,,,9,17,4,9/17/26 3:00, +1,1,6221,2026,1,1,,0,,,9,17,5,9/17/26 4:00, +1,1,6222,2026,1,1,,0,,,9,17,6,9/17/26 5:00, +1,1,6223,2026,1,1,,0,,,9,17,7,9/17/26 6:00, +1,1,6224,2026,1,1,,0,,,9,17,8,9/17/26 7:00, +1,1,6225,2026,1,1,,0,,,9,17,9,9/17/26 8:00, +1,1,6226,2026,1,1,,0,,,9,17,10,9/17/26 9:00, +1,1,6227,2026,1,1,,0,,,9,17,11,9/17/26 10:00, +1,1,6228,2026,1,1,,0,,,9,17,12,9/17/26 11:00, +1,1,6229,2026,1,1,,0,,,9,17,13,9/17/26 12:00, +1,1,6230,2026,1,1,,0,,,9,17,14,9/17/26 13:00, +1,1,6231,2026,1,1,,0,,,9,17,15,9/17/26 14:00, +1,1,6232,2026,1,1,,0,,,9,17,16,9/17/26 15:00, +1,1,6233,2026,1,1,,0,,,9,17,17,9/17/26 16:00, +1,1,6234,2026,1,1,,0,,,9,17,18,9/17/26 17:00, +1,1,6235,2026,1,1,,0,,,9,17,19,9/17/26 18:00, +1,1,6236,2026,1,1,,0,,,9,17,20,9/17/26 19:00, +1,1,6237,2026,1,1,,0,,,9,17,21,9/17/26 20:00, +1,1,6238,2026,1,1,,0,,,9,17,22,9/17/26 21:00, +1,1,6239,2026,1,1,,0,,,9,17,23,9/17/26 22:00, +1,1,6240,2026,1,1,,0,,,9,17,24,9/17/26 23:00, +1,1,6241,2026,1,1,,0,,,9,18,1,9/18/26 0:00, +1,1,6242,2026,1,1,,0,,,9,18,2,9/18/26 1:00, +1,1,6243,2026,1,1,,0,,,9,18,3,9/18/26 2:00, +1,1,6244,2026,1,1,,0,,,9,18,4,9/18/26 3:00, +1,1,6245,2026,1,1,,0,,,9,18,5,9/18/26 4:00, +1,1,6246,2026,1,1,,0,,,9,18,6,9/18/26 5:00, +1,1,6247,2026,1,1,,0,,,9,18,7,9/18/26 6:00, +1,1,6248,2026,1,1,,0,,,9,18,8,9/18/26 7:00, +1,1,6249,2026,1,1,,0,,,9,18,9,9/18/26 8:00, +1,1,6250,2026,1,1,,0,,,9,18,10,9/18/26 9:00, +1,1,6251,2026,1,1,,0,,,9,18,11,9/18/26 10:00, +1,1,6252,2026,1,1,,0,,,9,18,12,9/18/26 11:00, +1,1,6253,2026,1,1,,0,,,9,18,13,9/18/26 12:00, +1,1,6254,2026,1,1,,0,,,9,18,14,9/18/26 13:00, +1,1,6255,2026,1,1,,0,,,9,18,15,9/18/26 14:00, +1,1,6256,2026,1,1,,0,,,9,18,16,9/18/26 15:00, +1,1,6257,2026,1,1,,0,,,9,18,17,9/18/26 16:00, +1,1,6258,2026,1,1,,0,,,9,18,18,9/18/26 17:00, +1,1,6259,2026,1,1,,0,,,9,18,19,9/18/26 18:00, +1,1,6260,2026,1,1,,0,,,9,18,20,9/18/26 19:00, +1,1,6261,2026,1,1,,0,,,9,18,21,9/18/26 20:00, +1,1,6262,2026,1,1,,0,,,9,18,22,9/18/26 21:00, +1,1,6263,2026,1,1,,0,,,9,18,23,9/18/26 22:00, +1,1,6264,2026,1,1,,0,,,9,18,24,9/18/26 23:00, +1,1,6265,2026,1,1,,0,,,9,19,1,9/19/26 0:00, +1,1,6266,2026,1,1,,0,,,9,19,2,9/19/26 1:00, +1,1,6267,2026,1,1,,0,,,9,19,3,9/19/26 2:00, +1,1,6268,2026,1,1,,0,,,9,19,4,9/19/26 3:00, +1,1,6269,2026,1,1,,0,,,9,19,5,9/19/26 4:00, +1,1,6270,2026,1,1,,0,,,9,19,6,9/19/26 5:00, +1,1,6271,2026,1,1,,0,,,9,19,7,9/19/26 6:00, +1,1,6272,2026,1,1,,0,,,9,19,8,9/19/26 7:00, +1,1,6273,2026,1,1,,0,,,9,19,9,9/19/26 8:00, +1,1,6274,2026,1,1,,0,,,9,19,10,9/19/26 9:00, +1,1,6275,2026,1,1,,0,,,9,19,11,9/19/26 10:00, +1,1,6276,2026,1,1,,0,,,9,19,12,9/19/26 11:00, +1,1,6277,2026,1,1,,0,,,9,19,13,9/19/26 12:00, +1,1,6278,2026,1,1,,0,,,9,19,14,9/19/26 13:00, +1,1,6279,2026,1,1,,0,,,9,19,15,9/19/26 14:00, +1,1,6280,2026,1,1,,0,,,9,19,16,9/19/26 15:00, +1,1,6281,2026,1,1,,0,,,9,19,17,9/19/26 16:00, +1,1,6282,2026,1,1,,0,,,9,19,18,9/19/26 17:00, +1,1,6283,2026,1,1,,0,,,9,19,19,9/19/26 18:00, +1,1,6284,2026,1,1,,0,,,9,19,20,9/19/26 19:00, +1,1,6285,2026,1,1,,0,,,9,19,21,9/19/26 20:00, +1,1,6286,2026,1,1,,0,,,9,19,22,9/19/26 21:00, +1,1,6287,2026,1,1,,0,,,9,19,23,9/19/26 22:00, +1,1,6288,2026,1,1,,0,,,9,19,24,9/19/26 23:00, +1,1,6289,2026,1,1,,0,,,9,20,1,9/20/26 0:00, +1,1,6290,2026,1,1,,0,,,9,20,2,9/20/26 1:00, +1,1,6291,2026,1,1,,0,,,9,20,3,9/20/26 2:00, +1,1,6292,2026,1,1,,0,,,9,20,4,9/20/26 3:00, +1,1,6293,2026,1,1,,0,,,9,20,5,9/20/26 4:00, +1,1,6294,2026,1,1,,0,,,9,20,6,9/20/26 5:00, +1,1,6295,2026,1,1,,0,,,9,20,7,9/20/26 6:00, +1,1,6296,2026,1,1,,0,,,9,20,8,9/20/26 7:00, +1,1,6297,2026,1,1,,0,,,9,20,9,9/20/26 8:00, +1,1,6298,2026,1,1,,0,,,9,20,10,9/20/26 9:00, +1,1,6299,2026,1,1,,0,,,9,20,11,9/20/26 10:00, +1,1,6300,2026,1,1,,0,,,9,20,12,9/20/26 11:00, +1,1,6301,2026,1,1,,0,,,9,20,13,9/20/26 12:00, +1,1,6302,2026,1,1,,0,,,9,20,14,9/20/26 13:00, +1,1,6303,2026,1,1,,0,,,9,20,15,9/20/26 14:00, +1,1,6304,2026,1,1,,0,,,9,20,16,9/20/26 15:00, +1,1,6305,2026,1,1,,0,,,9,20,17,9/20/26 16:00, +1,1,6306,2026,1,1,,0,,,9,20,18,9/20/26 17:00, +1,1,6307,2026,1,1,,0,,,9,20,19,9/20/26 18:00, +1,1,6308,2026,1,1,,0,,,9,20,20,9/20/26 19:00, +1,1,6309,2026,1,1,,0,,,9,20,21,9/20/26 20:00, +1,1,6310,2026,1,1,,0,,,9,20,22,9/20/26 21:00, +1,1,6311,2026,1,1,,0,,,9,20,23,9/20/26 22:00, +1,1,6312,2026,1,1,,0,,,9,20,24,9/20/26 23:00, +1,1,6313,2026,1,1,,0,,,9,21,1,9/21/26 0:00, +1,1,6314,2026,1,1,,0,,,9,21,2,9/21/26 1:00, +1,1,6315,2026,1,1,,0,,,9,21,3,9/21/26 2:00, +1,1,6316,2026,1,1,,0,,,9,21,4,9/21/26 3:00, +1,1,6317,2026,1,1,,0,,,9,21,5,9/21/26 4:00, +1,1,6318,2026,1,1,,0,,,9,21,6,9/21/26 5:00, +1,1,6319,2026,1,1,,0,,,9,21,7,9/21/26 6:00, +1,1,6320,2026,1,1,,0,,,9,21,8,9/21/26 7:00, +1,1,6321,2026,1,1,,0,,,9,21,9,9/21/26 8:00, +1,1,6322,2026,1,1,,0,,,9,21,10,9/21/26 9:00, +1,1,6323,2026,1,1,,0,,,9,21,11,9/21/26 10:00, +1,1,6324,2026,1,1,,0,,,9,21,12,9/21/26 11:00, +1,1,6325,2026,1,1,,0,,,9,21,13,9/21/26 12:00, +1,1,6326,2026,1,1,,0,,,9,21,14,9/21/26 13:00, +1,1,6327,2026,1,1,,0,,,9,21,15,9/21/26 14:00, +1,1,6328,2026,1,1,,0,,,9,21,16,9/21/26 15:00, +1,1,6329,2026,1,1,,0,,,9,21,17,9/21/26 16:00, +1,1,6330,2026,1,1,,0,,,9,21,18,9/21/26 17:00, +1,1,6331,2026,1,1,,0,,,9,21,19,9/21/26 18:00, +1,1,6332,2026,1,1,,0,,,9,21,20,9/21/26 19:00, +1,1,6333,2026,1,1,,0,,,9,21,21,9/21/26 20:00, +1,1,6334,2026,1,1,,0,,,9,21,22,9/21/26 21:00, +1,1,6335,2026,1,1,,0,,,9,21,23,9/21/26 22:00, +1,1,6336,2026,1,1,,0,,,9,21,24,9/21/26 23:00, +1,1,6337,2026,1,1,,0,,,9,22,1,9/22/26 0:00, +1,1,6338,2026,1,1,,0,,,9,22,2,9/22/26 1:00, +1,1,6339,2026,1,1,,0,,,9,22,3,9/22/26 2:00, +1,1,6340,2026,1,1,,0,,,9,22,4,9/22/26 3:00, +1,1,6341,2026,1,1,,0,,,9,22,5,9/22/26 4:00, +1,1,6342,2026,1,1,,0,,,9,22,6,9/22/26 5:00, +1,1,6343,2026,1,1,,0,,,9,22,7,9/22/26 6:00, +1,1,6344,2026,1,1,,0,,,9,22,8,9/22/26 7:00, +1,1,6345,2026,1,1,,0,,,9,22,9,9/22/26 8:00, +1,1,6346,2026,1,1,,0,,,9,22,10,9/22/26 9:00, +1,1,6347,2026,1,1,,0,,,9,22,11,9/22/26 10:00, +1,1,6348,2026,1,1,,0,,,9,22,12,9/22/26 11:00, +1,1,6349,2026,1,1,,0,,,9,22,13,9/22/26 12:00, +1,1,6350,2026,1,1,,0,,,9,22,14,9/22/26 13:00, +1,1,6351,2026,1,1,,0,,,9,22,15,9/22/26 14:00, +1,1,6352,2026,1,1,,0,,,9,22,16,9/22/26 15:00, +1,1,6353,2026,1,1,,0,,,9,22,17,9/22/26 16:00, +1,1,6354,2026,1,1,,0,,,9,22,18,9/22/26 17:00, +1,1,6355,2026,1,1,,0,,,9,22,19,9/22/26 18:00, +1,1,6356,2026,1,1,,0,,,9,22,20,9/22/26 19:00, +1,1,6357,2026,1,1,,0,,,9,22,21,9/22/26 20:00, +1,1,6358,2026,1,1,,0,,,9,22,22,9/22/26 21:00, +1,1,6359,2026,1,1,,0,,,9,22,23,9/22/26 22:00, +1,1,6360,2026,1,1,,0,,,9,22,24,9/22/26 23:00, +1,1,6361,2026,1,1,,0,,,9,23,1,9/23/26 0:00, +1,1,6362,2026,1,1,,0,,,9,23,2,9/23/26 1:00, +1,1,6363,2026,1,1,,0,,,9,23,3,9/23/26 2:00, +1,1,6364,2026,1,1,,0,,,9,23,4,9/23/26 3:00, +1,1,6365,2026,1,1,,0,,,9,23,5,9/23/26 4:00, +1,1,6366,2026,1,1,,0,,,9,23,6,9/23/26 5:00, +1,1,6367,2026,1,1,,0,,,9,23,7,9/23/26 6:00, +1,1,6368,2026,1,1,,0,,,9,23,8,9/23/26 7:00, +1,1,6369,2026,1,1,,0,,,9,23,9,9/23/26 8:00, +1,1,6370,2026,1,1,,0,,,9,23,10,9/23/26 9:00, +1,1,6371,2026,1,1,,0,,,9,23,11,9/23/26 10:00, +1,1,6372,2026,1,1,,0,,,9,23,12,9/23/26 11:00, +1,1,6373,2026,1,1,,0,,,9,23,13,9/23/26 12:00, +1,1,6374,2026,1,1,,0,,,9,23,14,9/23/26 13:00, +1,1,6375,2026,1,1,,0,,,9,23,15,9/23/26 14:00, +1,1,6376,2026,1,1,,0,,,9,23,16,9/23/26 15:00, +1,1,6377,2026,1,1,,0,,,9,23,17,9/23/26 16:00, +1,1,6378,2026,1,1,,0,,,9,23,18,9/23/26 17:00, +1,1,6379,2026,1,1,,0,,,9,23,19,9/23/26 18:00, +1,1,6380,2026,1,1,,0,,,9,23,20,9/23/26 19:00, +1,1,6381,2026,1,1,,0,,,9,23,21,9/23/26 20:00, +1,1,6382,2026,1,1,,0,,,9,23,22,9/23/26 21:00, +1,1,6383,2026,1,1,,0,,,9,23,23,9/23/26 22:00, +1,1,6384,2026,1,1,,0,,,9,23,24,9/23/26 23:00, +1,1,6385,2026,1,1,,0,,,9,24,1,9/24/26 0:00, +1,1,6386,2026,1,1,,0,,,9,24,2,9/24/26 1:00, +1,1,6387,2026,1,1,,0,,,9,24,3,9/24/26 2:00, +1,1,6388,2026,1,1,,0,,,9,24,4,9/24/26 3:00, +1,1,6389,2026,1,1,,0,,,9,24,5,9/24/26 4:00, +1,1,6390,2026,1,1,,0,,,9,24,6,9/24/26 5:00, +1,1,6391,2026,1,1,,0,,,9,24,7,9/24/26 6:00, +1,1,6392,2026,1,1,,0,,,9,24,8,9/24/26 7:00, +1,1,6393,2026,1,1,,0,,,9,24,9,9/24/26 8:00, +1,1,6394,2026,1,1,,0,,,9,24,10,9/24/26 9:00, +1,1,6395,2026,1,1,,0,,,9,24,11,9/24/26 10:00, +1,1,6396,2026,1,1,,0,,,9,24,12,9/24/26 11:00, +1,1,6397,2026,1,1,,0,,,9,24,13,9/24/26 12:00, +1,1,6398,2026,1,1,,0,,,9,24,14,9/24/26 13:00, +1,1,6399,2026,1,1,,0,,,9,24,15,9/24/26 14:00, +1,1,6400,2026,1,1,,0,,,9,24,16,9/24/26 15:00, +1,1,6401,2026,1,1,,0,,,9,24,17,9/24/26 16:00, +1,1,6402,2026,1,1,,0,,,9,24,18,9/24/26 17:00, +1,1,6403,2026,1,1,,0,,,9,24,19,9/24/26 18:00, +1,1,6404,2026,1,1,,0,,,9,24,20,9/24/26 19:00, +1,1,6405,2026,1,1,,0,,,9,24,21,9/24/26 20:00, +1,1,6406,2026,1,1,,0,,,9,24,22,9/24/26 21:00, +1,1,6407,2026,1,1,,0,,,9,24,23,9/24/26 22:00, +1,1,6408,2026,1,1,,0,,,9,24,24,9/24/26 23:00, +1,1,6409,2026,1,1,,0,,,9,25,1,9/25/26 0:00, +1,1,6410,2026,1,1,,0,,,9,25,2,9/25/26 1:00, +1,1,6411,2026,1,1,,0,,,9,25,3,9/25/26 2:00, +1,1,6412,2026,1,1,,0,,,9,25,4,9/25/26 3:00, +1,1,6413,2026,1,1,,0,,,9,25,5,9/25/26 4:00, +1,1,6414,2026,1,1,,0,,,9,25,6,9/25/26 5:00, +1,1,6415,2026,1,1,,0,,,9,25,7,9/25/26 6:00, +1,1,6416,2026,1,1,,0,,,9,25,8,9/25/26 7:00, +1,1,6417,2026,1,1,,0,,,9,25,9,9/25/26 8:00, +1,1,6418,2026,1,1,,0,,,9,25,10,9/25/26 9:00, +1,1,6419,2026,1,1,,0,,,9,25,11,9/25/26 10:00, +1,1,6420,2026,1,1,,0,,,9,25,12,9/25/26 11:00, +1,1,6421,2026,1,1,,0,,,9,25,13,9/25/26 12:00, +1,1,6422,2026,1,1,,0,,,9,25,14,9/25/26 13:00, +1,1,6423,2026,1,1,,0,,,9,25,15,9/25/26 14:00, +1,1,6424,2026,1,1,,0,,,9,25,16,9/25/26 15:00, +1,1,6425,2026,1,1,,0,,,9,25,17,9/25/26 16:00, +1,1,6426,2026,1,1,,0,,,9,25,18,9/25/26 17:00, +1,1,6427,2026,1,1,,0,,,9,25,19,9/25/26 18:00, +1,1,6428,2026,1,1,,0,,,9,25,20,9/25/26 19:00, +1,1,6429,2026,1,1,,0,,,9,25,21,9/25/26 20:00, +1,1,6430,2026,1,1,,0,,,9,25,22,9/25/26 21:00, +1,1,6431,2026,1,1,,0,,,9,25,23,9/25/26 22:00, +1,1,6432,2026,1,1,,0,,,9,25,24,9/25/26 23:00, +1,1,6433,2026,1,1,,0,,,9,26,1,9/26/26 0:00, +1,1,6434,2026,1,1,,0,,,9,26,2,9/26/26 1:00, +1,1,6435,2026,1,1,,0,,,9,26,3,9/26/26 2:00, +1,1,6436,2026,1,1,,0,,,9,26,4,9/26/26 3:00, +1,1,6437,2026,1,1,,0,,,9,26,5,9/26/26 4:00, +1,1,6438,2026,1,1,,0,,,9,26,6,9/26/26 5:00, +1,1,6439,2026,1,1,,0,,,9,26,7,9/26/26 6:00, +1,1,6440,2026,1,1,,0,,,9,26,8,9/26/26 7:00, +1,1,6441,2026,1,1,,0,,,9,26,9,9/26/26 8:00, +1,1,6442,2026,1,1,,0,,,9,26,10,9/26/26 9:00, +1,1,6443,2026,1,1,,0,,,9,26,11,9/26/26 10:00, +1,1,6444,2026,1,1,,0,,,9,26,12,9/26/26 11:00, +1,1,6445,2026,1,1,,0,,,9,26,13,9/26/26 12:00, +1,1,6446,2026,1,1,,0,,,9,26,14,9/26/26 13:00, +1,1,6447,2026,1,1,,0,,,9,26,15,9/26/26 14:00, +1,1,6448,2026,1,1,,0,,,9,26,16,9/26/26 15:00, +1,1,6449,2026,1,1,,0,,,9,26,17,9/26/26 16:00, +1,1,6450,2026,1,1,,0,,,9,26,18,9/26/26 17:00, +1,1,6451,2026,1,1,,0,,,9,26,19,9/26/26 18:00, +1,1,6452,2026,1,1,,0,,,9,26,20,9/26/26 19:00, +1,1,6453,2026,1,1,,0,,,9,26,21,9/26/26 20:00, +1,1,6454,2026,1,1,,0,,,9,26,22,9/26/26 21:00, +1,1,6455,2026,1,1,,0,,,9,26,23,9/26/26 22:00, +1,1,6456,2026,1,1,,0,,,9,26,24,9/26/26 23:00, +1,1,6457,2026,1,1,,0,,,9,27,1,9/27/26 0:00, +1,1,6458,2026,1,1,,0,,,9,27,2,9/27/26 1:00, +1,1,6459,2026,1,1,,0,,,9,27,3,9/27/26 2:00, +1,1,6460,2026,1,1,,0,,,9,27,4,9/27/26 3:00, +1,1,6461,2026,1,1,,0,,,9,27,5,9/27/26 4:00, +1,1,6462,2026,1,1,,0,,,9,27,6,9/27/26 5:00, +1,1,6463,2026,1,1,,0,,,9,27,7,9/27/26 6:00, +1,1,6464,2026,1,1,,0,,,9,27,8,9/27/26 7:00, +1,1,6465,2026,1,1,,0,,,9,27,9,9/27/26 8:00, +1,1,6466,2026,1,1,,0,,,9,27,10,9/27/26 9:00, +1,1,6467,2026,1,1,,0,,,9,27,11,9/27/26 10:00, +1,1,6468,2026,1,1,,0,,,9,27,12,9/27/26 11:00, +1,1,6469,2026,1,1,,0,,,9,27,13,9/27/26 12:00, +1,1,6470,2026,1,1,,0,,,9,27,14,9/27/26 13:00, +1,1,6471,2026,1,1,,0,,,9,27,15,9/27/26 14:00, +1,1,6472,2026,1,1,,0,,,9,27,16,9/27/26 15:00, +1,1,6473,2026,1,1,,0,,,9,27,17,9/27/26 16:00, +1,1,6474,2026,1,1,,0,,,9,27,18,9/27/26 17:00, +1,1,6475,2026,1,1,,0,,,9,27,19,9/27/26 18:00, +1,1,6476,2026,1,1,,0,,,9,27,20,9/27/26 19:00, +1,1,6477,2026,1,1,,0,,,9,27,21,9/27/26 20:00, +1,1,6478,2026,1,1,,0,,,9,27,22,9/27/26 21:00, +1,1,6479,2026,1,1,,0,,,9,27,23,9/27/26 22:00, +1,1,6480,2026,1,1,,0,,,9,27,24,9/27/26 23:00, +1,1,6481,2026,1,1,,0,,,9,28,1,9/28/26 0:00, +1,1,6482,2026,1,1,,0,,,9,28,2,9/28/26 1:00, +1,1,6483,2026,1,1,,0,,,9,28,3,9/28/26 2:00, +1,1,6484,2026,1,1,,0,,,9,28,4,9/28/26 3:00, +1,1,6485,2026,1,1,,0,,,9,28,5,9/28/26 4:00, +1,1,6486,2026,1,1,,0,,,9,28,6,9/28/26 5:00, +1,1,6487,2026,1,1,,0,,,9,28,7,9/28/26 6:00, +1,1,6488,2026,1,1,,0,,,9,28,8,9/28/26 7:00, +1,1,6489,2026,1,1,,0,,,9,28,9,9/28/26 8:00, +1,1,6490,2026,1,1,,0,,,9,28,10,9/28/26 9:00, +1,1,6491,2026,1,1,,0,,,9,28,11,9/28/26 10:00, +1,1,6492,2026,1,1,,0,,,9,28,12,9/28/26 11:00, +1,1,6493,2026,1,1,,0,,,9,28,13,9/28/26 12:00, +1,1,6494,2026,1,1,,0,,,9,28,14,9/28/26 13:00, +1,1,6495,2026,1,1,,0,,,9,28,15,9/28/26 14:00, +1,1,6496,2026,1,1,,0,,,9,28,16,9/28/26 15:00, +1,1,6497,2026,1,1,,0,,,9,28,17,9/28/26 16:00, +1,1,6498,2026,1,1,,0,,,9,28,18,9/28/26 17:00, +1,1,6499,2026,1,1,,0,,,9,28,19,9/28/26 18:00, +1,1,6500,2026,1,1,,0,,,9,28,20,9/28/26 19:00, +1,1,6501,2026,1,1,,0,,,9,28,21,9/28/26 20:00, +1,1,6502,2026,1,1,,0,,,9,28,22,9/28/26 21:00, +1,1,6503,2026,1,1,,0,,,9,28,23,9/28/26 22:00, +1,1,6504,2026,1,1,,0,,,9,28,24,9/28/26 23:00, +1,1,6505,2026,1,1,,0,,,9,29,1,9/29/26 0:00, +1,1,6506,2026,1,1,,0,,,9,29,2,9/29/26 1:00, +1,1,6507,2026,1,1,,0,,,9,29,3,9/29/26 2:00, +1,1,6508,2026,1,1,,0,,,9,29,4,9/29/26 3:00, +1,1,6509,2026,1,1,,0,,,9,29,5,9/29/26 4:00, +1,1,6510,2026,1,1,,0,,,9,29,6,9/29/26 5:00, +1,1,6511,2026,1,1,,0,,,9,29,7,9/29/26 6:00, +1,1,6512,2026,1,1,,0,,,9,29,8,9/29/26 7:00, +1,1,6513,2026,1,1,,0,,,9,29,9,9/29/26 8:00, +1,1,6514,2026,1,1,,0,,,9,29,10,9/29/26 9:00, +1,1,6515,2026,1,1,,0,,,9,29,11,9/29/26 10:00, +1,1,6516,2026,1,1,,0,,,9,29,12,9/29/26 11:00, +1,1,6517,2026,1,1,,0,,,9,29,13,9/29/26 12:00, +1,1,6518,2026,1,1,,0,,,9,29,14,9/29/26 13:00, +1,1,6519,2026,1,1,,0,,,9,29,15,9/29/26 14:00, +1,1,6520,2026,1,1,,0,,,9,29,16,9/29/26 15:00, +1,1,6521,2026,1,1,,0,,,9,29,17,9/29/26 16:00, +1,1,6522,2026,1,1,,0,,,9,29,18,9/29/26 17:00, +1,1,6523,2026,1,1,,0,,,9,29,19,9/29/26 18:00, +1,1,6524,2026,1,1,,0,,,9,29,20,9/29/26 19:00, +1,1,6525,2026,1,1,,0,,,9,29,21,9/29/26 20:00, +1,1,6526,2026,1,1,,0,,,9,29,22,9/29/26 21:00, +1,1,6527,2026,1,1,,0,,,9,29,23,9/29/26 22:00, +1,1,6528,2026,1,1,,0,,,9,29,24,9/29/26 23:00, +1,1,6529,2026,1,1,,0,,,9,30,1,9/30/26 0:00, +1,1,6530,2026,1,1,,0,,,9,30,2,9/30/26 1:00, +1,1,6531,2026,1,1,,0,,,9,30,3,9/30/26 2:00, +1,1,6532,2026,1,1,,0,,,9,30,4,9/30/26 3:00, +1,1,6533,2026,1,1,,0,,,9,30,5,9/30/26 4:00, +1,1,6534,2026,1,1,,0,,,9,30,6,9/30/26 5:00, +1,1,6535,2026,1,1,,0,,,9,30,7,9/30/26 6:00, +1,1,6536,2026,1,1,,0,,,9,30,8,9/30/26 7:00, +1,1,6537,2026,1,1,,0,,,9,30,9,9/30/26 8:00, +1,1,6538,2026,1,1,,0,,,9,30,10,9/30/26 9:00, +1,1,6539,2026,1,1,,0,,,9,30,11,9/30/26 10:00, +1,1,6540,2026,1,1,,0,,,9,30,12,9/30/26 11:00, +1,1,6541,2026,1,1,,0,,,9,30,13,9/30/26 12:00, +1,1,6542,2026,1,1,,0,,,9,30,14,9/30/26 13:00, +1,1,6543,2026,1,1,,0,,,9,30,15,9/30/26 14:00, +1,1,6544,2026,1,1,,0,,,9,30,16,9/30/26 15:00, +1,1,6545,2026,1,1,,0,,,9,30,17,9/30/26 16:00, +1,1,6546,2026,1,1,,0,,,9,30,18,9/30/26 17:00, +1,1,6547,2026,1,1,,0,,,9,30,19,9/30/26 18:00, +1,1,6548,2026,1,1,,0,,,9,30,20,9/30/26 19:00, +1,1,6549,2026,1,1,,0,,,9,30,21,9/30/26 20:00, +1,1,6550,2026,1,1,,0,,,9,30,22,9/30/26 21:00, +1,1,6551,2026,1,1,,0,,,9,30,23,9/30/26 22:00, +1,1,6552,2026,1,1,,0,,,9,30,24,9/30/26 23:00, +1,1,6553,2026,1,1,,0,,,10,1,1,10/1/26 0:00, +1,1,6554,2026,1,1,,0,,,10,1,2,10/1/26 1:00, +1,1,6555,2026,1,1,,0,,,10,1,3,10/1/26 2:00, +1,1,6556,2026,1,1,,0,,,10,1,4,10/1/26 3:00, +1,1,6557,2026,1,1,,0,,,10,1,5,10/1/26 4:00, +1,1,6558,2026,1,1,,0,,,10,1,6,10/1/26 5:00, +1,1,6559,2026,1,1,,0,,,10,1,7,10/1/26 6:00, +1,1,6560,2026,1,1,,0,,,10,1,8,10/1/26 7:00, +1,1,6561,2026,1,1,,0,,,10,1,9,10/1/26 8:00, +1,1,6562,2026,1,1,,0,,,10,1,10,10/1/26 9:00, +1,1,6563,2026,1,1,,0,,,10,1,11,10/1/26 10:00, +1,1,6564,2026,1,1,,0,,,10,1,12,10/1/26 11:00, +1,1,6565,2026,1,1,,0,,,10,1,13,10/1/26 12:00, +1,1,6566,2026,1,1,,0,,,10,1,14,10/1/26 13:00, +1,1,6567,2026,1,1,,0,,,10,1,15,10/1/26 14:00, +1,1,6568,2026,1,1,,0,,,10,1,16,10/1/26 15:00, +1,1,6569,2026,1,1,,0,,,10,1,17,10/1/26 16:00, +1,1,6570,2026,1,1,,0,,,10,1,18,10/1/26 17:00, +1,1,6571,2026,1,1,,0,,,10,1,19,10/1/26 18:00, +1,1,6572,2026,1,1,,0,,,10,1,20,10/1/26 19:00, +1,1,6573,2026,1,1,,0,,,10,1,21,10/1/26 20:00, +1,1,6574,2026,1,1,,0,,,10,1,22,10/1/26 21:00, +1,1,6575,2026,1,1,,0,,,10,1,23,10/1/26 22:00, +1,1,6576,2026,1,1,,0,,,10,1,24,10/1/26 23:00, +1,1,6577,2026,1,1,,0,,,10,2,1,10/2/26 0:00, +1,1,6578,2026,1,1,,0,,,10,2,2,10/2/26 1:00, +1,1,6579,2026,1,1,,0,,,10,2,3,10/2/26 2:00, +1,1,6580,2026,1,1,,0,,,10,2,4,10/2/26 3:00, +1,1,6581,2026,1,1,,0,,,10,2,5,10/2/26 4:00, +1,1,6582,2026,1,1,,0,,,10,2,6,10/2/26 5:00, +1,1,6583,2026,1,1,,0,,,10,2,7,10/2/26 6:00, +1,1,6584,2026,1,1,,0,,,10,2,8,10/2/26 7:00, +1,1,6585,2026,1,1,,0,,,10,2,9,10/2/26 8:00, +1,1,6586,2026,1,1,,0,,,10,2,10,10/2/26 9:00, +1,1,6587,2026,1,1,,0,,,10,2,11,10/2/26 10:00, +1,1,6588,2026,1,1,,0,,,10,2,12,10/2/26 11:00, +1,1,6589,2026,1,1,,0,,,10,2,13,10/2/26 12:00, +1,1,6590,2026,1,1,,0,,,10,2,14,10/2/26 13:00, +1,1,6591,2026,1,1,,0,,,10,2,15,10/2/26 14:00, +1,1,6592,2026,1,1,,0,,,10,2,16,10/2/26 15:00, +1,1,6593,2026,1,1,,0,,,10,2,17,10/2/26 16:00, +1,1,6594,2026,1,1,,0,,,10,2,18,10/2/26 17:00, +1,1,6595,2026,1,1,,0,,,10,2,19,10/2/26 18:00, +1,1,6596,2026,1,1,,0,,,10,2,20,10/2/26 19:00, +1,1,6597,2026,1,1,,0,,,10,2,21,10/2/26 20:00, +1,1,6598,2026,1,1,,0,,,10,2,22,10/2/26 21:00, +1,1,6599,2026,1,1,,0,,,10,2,23,10/2/26 22:00, +1,1,6600,2026,1,1,,0,,,10,2,24,10/2/26 23:00, +1,1,6601,2026,1,1,,0,,,10,3,1,10/3/26 0:00, +1,1,6602,2026,1,1,,0,,,10,3,2,10/3/26 1:00, +1,1,6603,2026,1,1,,0,,,10,3,3,10/3/26 2:00, +1,1,6604,2026,1,1,,0,,,10,3,4,10/3/26 3:00, +1,1,6605,2026,1,1,,0,,,10,3,5,10/3/26 4:00, +1,1,6606,2026,1,1,,0,,,10,3,6,10/3/26 5:00, +1,1,6607,2026,1,1,,0,,,10,3,7,10/3/26 6:00, +1,1,6608,2026,1,1,,0,,,10,3,8,10/3/26 7:00, +1,1,6609,2026,1,1,,0,,,10,3,9,10/3/26 8:00, +1,1,6610,2026,1,1,,0,,,10,3,10,10/3/26 9:00, +1,1,6611,2026,1,1,,0,,,10,3,11,10/3/26 10:00, +1,1,6612,2026,1,1,,0,,,10,3,12,10/3/26 11:00, +1,1,6613,2026,1,1,,0,,,10,3,13,10/3/26 12:00, +1,1,6614,2026,1,1,,0,,,10,3,14,10/3/26 13:00, +1,1,6615,2026,1,1,,0,,,10,3,15,10/3/26 14:00, +1,1,6616,2026,1,1,,0,,,10,3,16,10/3/26 15:00, +1,1,6617,2026,1,1,,0,,,10,3,17,10/3/26 16:00, +1,1,6618,2026,1,1,,0,,,10,3,18,10/3/26 17:00, +1,1,6619,2026,1,1,,0,,,10,3,19,10/3/26 18:00, +1,1,6620,2026,1,1,,0,,,10,3,20,10/3/26 19:00, +1,1,6621,2026,1,1,,0,,,10,3,21,10/3/26 20:00, +1,1,6622,2026,1,1,,0,,,10,3,22,10/3/26 21:00, +1,1,6623,2026,1,1,,0,,,10,3,23,10/3/26 22:00, +1,1,6624,2026,1,1,,0,,,10,3,24,10/3/26 23:00, +1,1,6625,2026,1,1,,0,,,10,4,1,10/4/26 0:00, +1,1,6626,2026,1,1,,0,,,10,4,2,10/4/26 1:00, +1,1,6627,2026,1,1,,0,,,10,4,3,10/4/26 2:00, +1,1,6628,2026,1,1,,0,,,10,4,4,10/4/26 3:00, +1,1,6629,2026,1,1,,0,,,10,4,5,10/4/26 4:00, +1,1,6630,2026,1,1,,0,,,10,4,6,10/4/26 5:00, +1,1,6631,2026,1,1,,0,,,10,4,7,10/4/26 6:00, +1,1,6632,2026,1,1,,0,,,10,4,8,10/4/26 7:00, +1,1,6633,2026,1,1,,0,,,10,4,9,10/4/26 8:00, +1,1,6634,2026,1,1,,0,,,10,4,10,10/4/26 9:00, +1,1,6635,2026,1,1,,0,,,10,4,11,10/4/26 10:00, +1,1,6636,2026,1,1,,0,,,10,4,12,10/4/26 11:00, +1,1,6637,2026,1,1,,0,,,10,4,13,10/4/26 12:00, +1,1,6638,2026,1,1,,0,,,10,4,14,10/4/26 13:00, +1,1,6639,2026,1,1,,0,,,10,4,15,10/4/26 14:00, +1,1,6640,2026,1,1,,0,,,10,4,16,10/4/26 15:00, +1,1,6641,2026,1,1,,0,,,10,4,17,10/4/26 16:00, +1,1,6642,2026,1,1,,0,,,10,4,18,10/4/26 17:00, +1,1,6643,2026,1,1,,0,,,10,4,19,10/4/26 18:00, +1,1,6644,2026,1,1,,0,,,10,4,20,10/4/26 19:00, +1,1,6645,2026,1,1,,0,,,10,4,21,10/4/26 20:00, +1,1,6646,2026,1,1,,0,,,10,4,22,10/4/26 21:00, +1,1,6647,2026,1,1,,0,,,10,4,23,10/4/26 22:00, +1,1,6648,2026,1,1,,0,,,10,4,24,10/4/26 23:00, +1,1,6649,2026,1,1,,0,,,10,5,1,10/5/26 0:00, +1,1,6650,2026,1,1,,0,,,10,5,2,10/5/26 1:00, +1,1,6651,2026,1,1,,0,,,10,5,3,10/5/26 2:00, +1,1,6652,2026,1,1,,0,,,10,5,4,10/5/26 3:00, +1,1,6653,2026,1,1,,0,,,10,5,5,10/5/26 4:00, +1,1,6654,2026,1,1,,0,,,10,5,6,10/5/26 5:00, +1,1,6655,2026,1,1,,0,,,10,5,7,10/5/26 6:00, +1,1,6656,2026,1,1,,0,,,10,5,8,10/5/26 7:00, +1,1,6657,2026,1,1,,0,,,10,5,9,10/5/26 8:00, +1,1,6658,2026,1,1,,0,,,10,5,10,10/5/26 9:00, +1,1,6659,2026,1,1,,0,,,10,5,11,10/5/26 10:00, +1,1,6660,2026,1,1,,0,,,10,5,12,10/5/26 11:00, +1,1,6661,2026,1,1,,0,,,10,5,13,10/5/26 12:00, +1,1,6662,2026,1,1,,0,,,10,5,14,10/5/26 13:00, +1,1,6663,2026,1,1,,0,,,10,5,15,10/5/26 14:00, +1,1,6664,2026,1,1,,0,,,10,5,16,10/5/26 15:00, +1,1,6665,2026,1,1,,0,,,10,5,17,10/5/26 16:00, +1,1,6666,2026,1,1,,0,,,10,5,18,10/5/26 17:00, +1,1,6667,2026,1,1,,0,,,10,5,19,10/5/26 18:00, +1,1,6668,2026,1,1,,0,,,10,5,20,10/5/26 19:00, +1,1,6669,2026,1,1,,0,,,10,5,21,10/5/26 20:00, +1,1,6670,2026,1,1,,0,,,10,5,22,10/5/26 21:00, +1,1,6671,2026,1,1,,0,,,10,5,23,10/5/26 22:00, +1,1,6672,2026,1,1,,0,,,10,5,24,10/5/26 23:00, +1,1,6673,2026,1,1,,0,,,10,6,1,10/6/26 0:00, +1,1,6674,2026,1,1,,0,,,10,6,2,10/6/26 1:00, +1,1,6675,2026,1,1,,0,,,10,6,3,10/6/26 2:00, +1,1,6676,2026,1,1,,0,,,10,6,4,10/6/26 3:00, +1,1,6677,2026,1,1,,0,,,10,6,5,10/6/26 4:00, +1,1,6678,2026,1,1,,0,,,10,6,6,10/6/26 5:00, +1,1,6679,2026,1,1,,0,,,10,6,7,10/6/26 6:00, +1,1,6680,2026,1,1,,0,,,10,6,8,10/6/26 7:00, +1,1,6681,2026,1,1,,0,,,10,6,9,10/6/26 8:00, +1,1,6682,2026,1,1,,0,,,10,6,10,10/6/26 9:00, +1,1,6683,2026,1,1,,0,,,10,6,11,10/6/26 10:00, +1,1,6684,2026,1,1,,0,,,10,6,12,10/6/26 11:00, +1,1,6685,2026,1,1,,0,,,10,6,13,10/6/26 12:00, +1,1,6686,2026,1,1,,0,,,10,6,14,10/6/26 13:00, +1,1,6687,2026,1,1,,0,,,10,6,15,10/6/26 14:00, +1,1,6688,2026,1,1,,0,,,10,6,16,10/6/26 15:00, +1,1,6689,2026,1,1,,0,,,10,6,17,10/6/26 16:00, +1,1,6690,2026,1,1,,0,,,10,6,18,10/6/26 17:00, +1,1,6691,2026,1,1,,0,,,10,6,19,10/6/26 18:00, +1,1,6692,2026,1,1,,0,,,10,6,20,10/6/26 19:00, +1,1,6693,2026,1,1,,0,,,10,6,21,10/6/26 20:00, +1,1,6694,2026,1,1,,0,,,10,6,22,10/6/26 21:00, +1,1,6695,2026,1,1,,0,,,10,6,23,10/6/26 22:00, +1,1,6696,2026,1,1,,0,,,10,6,24,10/6/26 23:00, +1,1,6697,2026,1,1,,0,,,10,7,1,10/7/26 0:00, +1,1,6698,2026,1,1,,0,,,10,7,2,10/7/26 1:00, +1,1,6699,2026,1,1,,0,,,10,7,3,10/7/26 2:00, +1,1,6700,2026,1,1,,0,,,10,7,4,10/7/26 3:00, +1,1,6701,2026,1,1,,0,,,10,7,5,10/7/26 4:00, +1,1,6702,2026,1,1,,0,,,10,7,6,10/7/26 5:00, +1,1,6703,2026,1,1,,0,,,10,7,7,10/7/26 6:00, +1,1,6704,2026,1,1,,0,,,10,7,8,10/7/26 7:00, +1,1,6705,2026,1,1,,0,,,10,7,9,10/7/26 8:00, +1,1,6706,2026,1,1,,0,,,10,7,10,10/7/26 9:00, +1,1,6707,2026,1,1,,0,,,10,7,11,10/7/26 10:00, +1,1,6708,2026,1,1,,0,,,10,7,12,10/7/26 11:00, +1,1,6709,2026,1,1,,0,,,10,7,13,10/7/26 12:00, +1,1,6710,2026,1,1,,0,,,10,7,14,10/7/26 13:00, +1,1,6711,2026,1,1,,0,,,10,7,15,10/7/26 14:00, +1,1,6712,2026,1,1,,0,,,10,7,16,10/7/26 15:00, +1,1,6713,2026,1,1,,0,,,10,7,17,10/7/26 16:00, +1,1,6714,2026,1,1,,0,,,10,7,18,10/7/26 17:00, +1,1,6715,2026,1,1,,0,,,10,7,19,10/7/26 18:00, +1,1,6716,2026,1,1,,0,,,10,7,20,10/7/26 19:00, +1,1,6717,2026,1,1,,0,,,10,7,21,10/7/26 20:00, +1,1,6718,2026,1,1,,0,,,10,7,22,10/7/26 21:00, +1,1,6719,2026,1,1,,0,,,10,7,23,10/7/26 22:00, +1,1,6720,2026,1,1,,0,,,10,7,24,10/7/26 23:00, +1,1,6721,2026,1,1,,0,,,10,8,1,10/8/26 0:00, +1,1,6722,2026,1,1,,0,,,10,8,2,10/8/26 1:00, +1,1,6723,2026,1,1,,0,,,10,8,3,10/8/26 2:00, +1,1,6724,2026,1,1,,0,,,10,8,4,10/8/26 3:00, +1,1,6725,2026,1,1,,0,,,10,8,5,10/8/26 4:00, +1,1,6726,2026,1,1,,0,,,10,8,6,10/8/26 5:00, +1,1,6727,2026,1,1,,0,,,10,8,7,10/8/26 6:00, +1,1,6728,2026,1,1,,0,,,10,8,8,10/8/26 7:00, +1,1,6729,2026,1,1,,0,,,10,8,9,10/8/26 8:00, +1,1,6730,2026,1,1,,0,,,10,8,10,10/8/26 9:00, +1,1,6731,2026,1,1,,0,,,10,8,11,10/8/26 10:00, +1,1,6732,2026,1,1,,0,,,10,8,12,10/8/26 11:00, +1,1,6733,2026,1,1,,0,,,10,8,13,10/8/26 12:00, +1,1,6734,2026,1,1,,0,,,10,8,14,10/8/26 13:00, +1,1,6735,2026,1,1,,0,,,10,8,15,10/8/26 14:00, +1,1,6736,2026,1,1,,0,,,10,8,16,10/8/26 15:00, +1,1,6737,2026,1,1,,0,,,10,8,17,10/8/26 16:00, +1,1,6738,2026,1,1,,0,,,10,8,18,10/8/26 17:00, +1,1,6739,2026,1,1,,0,,,10,8,19,10/8/26 18:00, +1,1,6740,2026,1,1,,0,,,10,8,20,10/8/26 19:00, +1,1,6741,2026,1,1,,0,,,10,8,21,10/8/26 20:00, +1,1,6742,2026,1,1,,0,,,10,8,22,10/8/26 21:00, +1,1,6743,2026,1,1,,0,,,10,8,23,10/8/26 22:00, +1,1,6744,2026,1,1,,0,,,10,8,24,10/8/26 23:00, +1,1,6745,2026,1,1,,0,,,10,9,1,10/9/26 0:00, +1,1,6746,2026,1,1,,0,,,10,9,2,10/9/26 1:00, +1,1,6747,2026,1,1,,0,,,10,9,3,10/9/26 2:00, +1,1,6748,2026,1,1,,0,,,10,9,4,10/9/26 3:00, +1,1,6749,2026,1,1,,0,,,10,9,5,10/9/26 4:00, +1,1,6750,2026,1,1,,0,,,10,9,6,10/9/26 5:00, +1,1,6751,2026,1,1,,0,,,10,9,7,10/9/26 6:00, +1,1,6752,2026,1,1,,0,,,10,9,8,10/9/26 7:00, +1,1,6753,2026,1,1,,0,,,10,9,9,10/9/26 8:00, +1,1,6754,2026,1,1,,0,,,10,9,10,10/9/26 9:00, +1,1,6755,2026,1,1,,0,,,10,9,11,10/9/26 10:00, +1,1,6756,2026,1,1,,0,,,10,9,12,10/9/26 11:00, +1,1,6757,2026,1,1,,0,,,10,9,13,10/9/26 12:00, +1,1,6758,2026,1,1,,0,,,10,9,14,10/9/26 13:00, +1,1,6759,2026,1,1,,0,,,10,9,15,10/9/26 14:00, +1,1,6760,2026,1,1,,0,,,10,9,16,10/9/26 15:00, +1,1,6761,2026,1,1,,0,,,10,9,17,10/9/26 16:00, +1,1,6762,2026,1,1,,0,,,10,9,18,10/9/26 17:00, +1,1,6763,2026,1,1,,0,,,10,9,19,10/9/26 18:00, +1,1,6764,2026,1,1,,0,,,10,9,20,10/9/26 19:00, +1,1,6765,2026,1,1,,0,,,10,9,21,10/9/26 20:00, +1,1,6766,2026,1,1,,0,,,10,9,22,10/9/26 21:00, +1,1,6767,2026,1,1,,0,,,10,9,23,10/9/26 22:00, +1,1,6768,2026,1,1,,0,,,10,9,24,10/9/26 23:00, +1,1,6769,2026,1,1,,0,,,10,10,1,10/10/26 0:00, +1,1,6770,2026,1,1,,0,,,10,10,2,10/10/26 1:00, +1,1,6771,2026,1,1,,0,,,10,10,3,10/10/26 2:00, +1,1,6772,2026,1,1,,0,,,10,10,4,10/10/26 3:00, +1,1,6773,2026,1,1,,0,,,10,10,5,10/10/26 4:00, +1,1,6774,2026,1,1,,0,,,10,10,6,10/10/26 5:00, +1,1,6775,2026,1,1,,0,,,10,10,7,10/10/26 6:00, +1,1,6776,2026,1,1,,0,,,10,10,8,10/10/26 7:00, +1,1,6777,2026,1,1,,0,,,10,10,9,10/10/26 8:00, +1,1,6778,2026,1,1,,0,,,10,10,10,10/10/26 9:00, +1,1,6779,2026,1,1,,0,,,10,10,11,10/10/26 10:00, +1,1,6780,2026,1,1,,0,,,10,10,12,10/10/26 11:00, +1,1,6781,2026,1,1,,0,,,10,10,13,10/10/26 12:00, +1,1,6782,2026,1,1,,0,,,10,10,14,10/10/26 13:00, +1,1,6783,2026,1,1,,0,,,10,10,15,10/10/26 14:00, +1,1,6784,2026,1,1,,0,,,10,10,16,10/10/26 15:00, +1,1,6785,2026,1,1,,0,,,10,10,17,10/10/26 16:00, +1,1,6786,2026,1,1,,0,,,10,10,18,10/10/26 17:00, +1,1,6787,2026,1,1,,0,,,10,10,19,10/10/26 18:00, +1,1,6788,2026,1,1,,0,,,10,10,20,10/10/26 19:00, +1,1,6789,2026,1,1,,0,,,10,10,21,10/10/26 20:00, +1,1,6790,2026,1,1,,0,,,10,10,22,10/10/26 21:00, +1,1,6791,2026,1,1,,0,,,10,10,23,10/10/26 22:00, +1,1,6792,2026,1,1,,0,,,10,10,24,10/10/26 23:00, +1,1,6793,2026,1,1,,0,,,10,11,1,10/11/26 0:00, +1,1,6794,2026,1,1,,0,,,10,11,2,10/11/26 1:00, +1,1,6795,2026,1,1,,0,,,10,11,3,10/11/26 2:00, +1,1,6796,2026,1,1,,0,,,10,11,4,10/11/26 3:00, +1,1,6797,2026,1,1,,0,,,10,11,5,10/11/26 4:00, +1,1,6798,2026,1,1,,0,,,10,11,6,10/11/26 5:00, +1,1,6799,2026,1,1,,0,,,10,11,7,10/11/26 6:00, +1,1,6800,2026,1,1,,0,,,10,11,8,10/11/26 7:00, +1,1,6801,2026,1,1,,0,,,10,11,9,10/11/26 8:00, +1,1,6802,2026,1,1,,0,,,10,11,10,10/11/26 9:00, +1,1,6803,2026,1,1,,0,,,10,11,11,10/11/26 10:00, +1,1,6804,2026,1,1,,0,,,10,11,12,10/11/26 11:00, +1,1,6805,2026,1,1,,0,,,10,11,13,10/11/26 12:00, +1,1,6806,2026,1,1,,0,,,10,11,14,10/11/26 13:00, +1,1,6807,2026,1,1,,0,,,10,11,15,10/11/26 14:00, +1,1,6808,2026,1,1,,0,,,10,11,16,10/11/26 15:00, +1,1,6809,2026,1,1,,0,,,10,11,17,10/11/26 16:00, +1,1,6810,2026,1,1,,0,,,10,11,18,10/11/26 17:00, +1,1,6811,2026,1,1,,0,,,10,11,19,10/11/26 18:00, +1,1,6812,2026,1,1,,0,,,10,11,20,10/11/26 19:00, +1,1,6813,2026,1,1,,0,,,10,11,21,10/11/26 20:00, +1,1,6814,2026,1,1,,0,,,10,11,22,10/11/26 21:00, +1,1,6815,2026,1,1,,0,,,10,11,23,10/11/26 22:00, +1,1,6816,2026,1,1,,0,,,10,11,24,10/11/26 23:00, +1,1,6817,2026,1,1,,0,,,10,12,1,10/12/26 0:00, +1,1,6818,2026,1,1,,0,,,10,12,2,10/12/26 1:00, +1,1,6819,2026,1,1,,0,,,10,12,3,10/12/26 2:00, +1,1,6820,2026,1,1,,0,,,10,12,4,10/12/26 3:00, +1,1,6821,2026,1,1,,0,,,10,12,5,10/12/26 4:00, +1,1,6822,2026,1,1,,0,,,10,12,6,10/12/26 5:00, +1,1,6823,2026,1,1,,0,,,10,12,7,10/12/26 6:00, +1,1,6824,2026,1,1,,0,,,10,12,8,10/12/26 7:00, +1,1,6825,2026,1,1,,0,,,10,12,9,10/12/26 8:00, +1,1,6826,2026,1,1,,0,,,10,12,10,10/12/26 9:00, +1,1,6827,2026,1,1,,0,,,10,12,11,10/12/26 10:00, +1,1,6828,2026,1,1,,0,,,10,12,12,10/12/26 11:00, +1,1,6829,2026,1,1,,0,,,10,12,13,10/12/26 12:00, +1,1,6830,2026,1,1,,0,,,10,12,14,10/12/26 13:00, +1,1,6831,2026,1,1,,0,,,10,12,15,10/12/26 14:00, +1,1,6832,2026,1,1,,0,,,10,12,16,10/12/26 15:00, +1,1,6833,2026,1,1,,0,,,10,12,17,10/12/26 16:00, +1,1,6834,2026,1,1,,0,,,10,12,18,10/12/26 17:00, +1,1,6835,2026,1,1,,0,,,10,12,19,10/12/26 18:00, +1,1,6836,2026,1,1,,0,,,10,12,20,10/12/26 19:00, +1,1,6837,2026,1,1,,0,,,10,12,21,10/12/26 20:00, +1,1,6838,2026,1,1,,0,,,10,12,22,10/12/26 21:00, +1,1,6839,2026,1,1,,0,,,10,12,23,10/12/26 22:00, +1,1,6840,2026,1,1,,0,,,10,12,24,10/12/26 23:00, +1,1,6841,2026,1,1,,0,,,10,13,1,10/13/26 0:00, +1,1,6842,2026,1,1,,0,,,10,13,2,10/13/26 1:00, +1,1,6843,2026,1,1,,0,,,10,13,3,10/13/26 2:00, +1,1,6844,2026,1,1,,0,,,10,13,4,10/13/26 3:00, +1,1,6845,2026,1,1,,0,,,10,13,5,10/13/26 4:00, +1,1,6846,2026,1,1,,0,,,10,13,6,10/13/26 5:00, +1,1,6847,2026,1,1,,0,,,10,13,7,10/13/26 6:00, +1,1,6848,2026,1,1,,0,,,10,13,8,10/13/26 7:00, +1,1,6849,2026,1,1,,0,,,10,13,9,10/13/26 8:00, +1,1,6850,2026,1,1,,0,,,10,13,10,10/13/26 9:00, +1,1,6851,2026,1,1,,0,,,10,13,11,10/13/26 10:00, +1,1,6852,2026,1,1,,0,,,10,13,12,10/13/26 11:00, +1,1,6853,2026,1,1,,0,,,10,13,13,10/13/26 12:00, +1,1,6854,2026,1,1,,0,,,10,13,14,10/13/26 13:00, +1,1,6855,2026,1,1,,0,,,10,13,15,10/13/26 14:00, +1,1,6856,2026,1,1,,0,,,10,13,16,10/13/26 15:00, +1,1,6857,2026,1,1,,0,,,10,13,17,10/13/26 16:00, +1,1,6858,2026,1,1,,0,,,10,13,18,10/13/26 17:00, +1,1,6859,2026,1,1,,0,,,10,13,19,10/13/26 18:00, +1,1,6860,2026,1,1,,0,,,10,13,20,10/13/26 19:00, +1,1,6861,2026,1,1,,0,,,10,13,21,10/13/26 20:00, +1,1,6862,2026,1,1,,0,,,10,13,22,10/13/26 21:00, +1,1,6863,2026,1,1,,0,,,10,13,23,10/13/26 22:00, +1,1,6864,2026,1,1,,0,,,10,13,24,10/13/26 23:00, +1,1,6865,2026,1,1,,0,,,10,14,1,10/14/26 0:00, +1,1,6866,2026,1,1,,0,,,10,14,2,10/14/26 1:00, +1,1,6867,2026,1,1,,0,,,10,14,3,10/14/26 2:00, +1,1,6868,2026,1,1,,0,,,10,14,4,10/14/26 3:00, +1,1,6869,2026,1,1,,0,,,10,14,5,10/14/26 4:00, +1,1,6870,2026,1,1,,0,,,10,14,6,10/14/26 5:00, +1,1,6871,2026,1,1,,0,,,10,14,7,10/14/26 6:00, +1,1,6872,2026,1,1,,0,,,10,14,8,10/14/26 7:00, +1,1,6873,2026,1,1,,0,,,10,14,9,10/14/26 8:00, +1,1,6874,2026,1,1,,0,,,10,14,10,10/14/26 9:00, +1,1,6875,2026,1,1,,0,,,10,14,11,10/14/26 10:00, +1,1,6876,2026,1,1,,0,,,10,14,12,10/14/26 11:00, +1,1,6877,2026,1,1,,0,,,10,14,13,10/14/26 12:00, +1,1,6878,2026,1,1,,0,,,10,14,14,10/14/26 13:00, +1,1,6879,2026,1,1,,0,,,10,14,15,10/14/26 14:00, +1,1,6880,2026,1,1,,0,,,10,14,16,10/14/26 15:00, +1,1,6881,2026,1,1,,0,,,10,14,17,10/14/26 16:00, +1,1,6882,2026,1,1,,0,,,10,14,18,10/14/26 17:00, +1,1,6883,2026,1,1,,0,,,10,14,19,10/14/26 18:00, +1,1,6884,2026,1,1,,0,,,10,14,20,10/14/26 19:00, +1,1,6885,2026,1,1,,0,,,10,14,21,10/14/26 20:00, +1,1,6886,2026,1,1,,0,,,10,14,22,10/14/26 21:00, +1,1,6887,2026,1,1,,0,,,10,14,23,10/14/26 22:00, +1,1,6888,2026,1,1,,0,,,10,14,24,10/14/26 23:00, +1,1,6889,2026,1,1,,0,,,10,15,1,10/15/26 0:00, +1,1,6890,2026,1,1,,0,,,10,15,2,10/15/26 1:00, +1,1,6891,2026,1,1,,0,,,10,15,3,10/15/26 2:00, +1,1,6892,2026,1,1,,0,,,10,15,4,10/15/26 3:00, +1,1,6893,2026,1,1,,0,,,10,15,5,10/15/26 4:00, +1,1,6894,2026,1,1,,0,,,10,15,6,10/15/26 5:00, +1,1,6895,2026,1,1,,0,,,10,15,7,10/15/26 6:00, +1,1,6896,2026,1,1,,0,,,10,15,8,10/15/26 7:00, +1,1,6897,2026,1,1,,0,,,10,15,9,10/15/26 8:00, +1,1,6898,2026,1,1,,0,,,10,15,10,10/15/26 9:00, +1,1,6899,2026,1,1,,0,,,10,15,11,10/15/26 10:00, +1,1,6900,2026,1,1,,0,,,10,15,12,10/15/26 11:00, +1,1,6901,2026,1,1,,0,,,10,15,13,10/15/26 12:00, +1,1,6902,2026,1,1,,0,,,10,15,14,10/15/26 13:00, +1,1,6903,2026,1,1,,0,,,10,15,15,10/15/26 14:00, +1,1,6904,2026,1,1,,0,,,10,15,16,10/15/26 15:00, +1,1,6905,2026,1,1,,0,,,10,15,17,10/15/26 16:00, +1,1,6906,2026,1,1,,0,,,10,15,18,10/15/26 17:00, +1,1,6907,2026,1,1,,0,,,10,15,19,10/15/26 18:00, +1,1,6908,2026,1,1,,0,,,10,15,20,10/15/26 19:00, +1,1,6909,2026,1,1,,0,,,10,15,21,10/15/26 20:00, +1,1,6910,2026,1,1,,0,,,10,15,22,10/15/26 21:00, +1,1,6911,2026,1,1,,0,,,10,15,23,10/15/26 22:00, +1,1,6912,2026,1,1,,0,,,10,15,24,10/15/26 23:00, +1,1,6913,2026,1,1,,0,,,10,16,1,10/16/26 0:00, +1,1,6914,2026,1,1,,0,,,10,16,2,10/16/26 1:00, +1,1,6915,2026,1,1,,0,,,10,16,3,10/16/26 2:00, +1,1,6916,2026,1,1,,0,,,10,16,4,10/16/26 3:00, +1,1,6917,2026,1,1,,0,,,10,16,5,10/16/26 4:00, +1,1,6918,2026,1,1,,0,,,10,16,6,10/16/26 5:00, +1,1,6919,2026,1,1,,0,,,10,16,7,10/16/26 6:00, +1,1,6920,2026,1,1,,0,,,10,16,8,10/16/26 7:00, +1,1,6921,2026,1,1,,0,,,10,16,9,10/16/26 8:00, +1,1,6922,2026,1,1,,0,,,10,16,10,10/16/26 9:00, +1,1,6923,2026,1,1,,0,,,10,16,11,10/16/26 10:00, +1,1,6924,2026,1,1,,0,,,10,16,12,10/16/26 11:00, +1,1,6925,2026,1,1,,0,,,10,16,13,10/16/26 12:00, +1,1,6926,2026,1,1,,0,,,10,16,14,10/16/26 13:00, +1,1,6927,2026,1,1,,0,,,10,16,15,10/16/26 14:00, +1,1,6928,2026,1,1,,0,,,10,16,16,10/16/26 15:00, +1,1,6929,2026,1,1,,0,,,10,16,17,10/16/26 16:00, +1,1,6930,2026,1,1,,0,,,10,16,18,10/16/26 17:00, +1,1,6931,2026,1,1,,0,,,10,16,19,10/16/26 18:00, +1,1,6932,2026,1,1,,0,,,10,16,20,10/16/26 19:00, +1,1,6933,2026,1,1,,0,,,10,16,21,10/16/26 20:00, +1,1,6934,2026,1,1,,0,,,10,16,22,10/16/26 21:00, +1,1,6935,2026,1,1,,0,,,10,16,23,10/16/26 22:00, +1,1,6936,2026,1,1,,0,,,10,16,24,10/16/26 23:00, +1,1,6937,2026,1,1,,0,,,10,17,1,10/17/26 0:00, +1,1,6938,2026,1,1,,0,,,10,17,2,10/17/26 1:00, +1,1,6939,2026,1,1,,0,,,10,17,3,10/17/26 2:00, +1,1,6940,2026,1,1,,0,,,10,17,4,10/17/26 3:00, +1,1,6941,2026,1,1,,0,,,10,17,5,10/17/26 4:00, +1,1,6942,2026,1,1,,0,,,10,17,6,10/17/26 5:00, +1,1,6943,2026,1,1,,0,,,10,17,7,10/17/26 6:00, +1,1,6944,2026,1,1,,0,,,10,17,8,10/17/26 7:00, +1,1,6945,2026,1,1,,0,,,10,17,9,10/17/26 8:00, +1,1,6946,2026,1,1,,0,,,10,17,10,10/17/26 9:00, +1,1,6947,2026,1,1,,0,,,10,17,11,10/17/26 10:00, +1,1,6948,2026,1,1,,0,,,10,17,12,10/17/26 11:00, +1,1,6949,2026,1,1,,0,,,10,17,13,10/17/26 12:00, +1,1,6950,2026,1,1,,0,,,10,17,14,10/17/26 13:00, +1,1,6951,2026,1,1,,0,,,10,17,15,10/17/26 14:00, +1,1,6952,2026,1,1,,0,,,10,17,16,10/17/26 15:00, +1,1,6953,2026,1,1,,0,,,10,17,17,10/17/26 16:00, +1,1,6954,2026,1,1,,0,,,10,17,18,10/17/26 17:00, +1,1,6955,2026,1,1,,0,,,10,17,19,10/17/26 18:00, +1,1,6956,2026,1,1,,0,,,10,17,20,10/17/26 19:00, +1,1,6957,2026,1,1,,0,,,10,17,21,10/17/26 20:00, +1,1,6958,2026,1,1,,0,,,10,17,22,10/17/26 21:00, +1,1,6959,2026,1,1,,0,,,10,17,23,10/17/26 22:00, +1,1,6960,2026,1,1,,0,,,10,17,24,10/17/26 23:00, +1,1,6961,2026,1,1,,0,,,10,18,1,10/18/26 0:00, +1,1,6962,2026,1,1,,0,,,10,18,2,10/18/26 1:00, +1,1,6963,2026,1,1,,0,,,10,18,3,10/18/26 2:00, +1,1,6964,2026,1,1,,0,,,10,18,4,10/18/26 3:00, +1,1,6965,2026,1,1,,0,,,10,18,5,10/18/26 4:00, +1,1,6966,2026,1,1,,0,,,10,18,6,10/18/26 5:00, +1,1,6967,2026,1,1,,0,,,10,18,7,10/18/26 6:00, +1,1,6968,2026,1,1,,0,,,10,18,8,10/18/26 7:00, +1,1,6969,2026,1,1,,0,,,10,18,9,10/18/26 8:00, +1,1,6970,2026,1,1,,0,,,10,18,10,10/18/26 9:00, +1,1,6971,2026,1,1,,0,,,10,18,11,10/18/26 10:00, +1,1,6972,2026,1,1,,0,,,10,18,12,10/18/26 11:00, +1,1,6973,2026,1,1,,0,,,10,18,13,10/18/26 12:00, +1,1,6974,2026,1,1,,0,,,10,18,14,10/18/26 13:00, +1,1,6975,2026,1,1,,0,,,10,18,15,10/18/26 14:00, +1,1,6976,2026,1,1,,0,,,10,18,16,10/18/26 15:00, +1,1,6977,2026,1,1,,0,,,10,18,17,10/18/26 16:00, +1,1,6978,2026,1,1,,0,,,10,18,18,10/18/26 17:00, +1,1,6979,2026,1,1,,0,,,10,18,19,10/18/26 18:00, +1,1,6980,2026,1,1,,0,,,10,18,20,10/18/26 19:00, +1,1,6981,2026,1,1,,0,,,10,18,21,10/18/26 20:00, +1,1,6982,2026,1,1,,0,,,10,18,22,10/18/26 21:00, +1,1,6983,2026,1,1,,0,,,10,18,23,10/18/26 22:00, +1,1,6984,2026,1,1,,0,,,10,18,24,10/18/26 23:00, +1,1,6985,2026,1,1,,0,,,10,19,1,10/19/26 0:00, +1,1,6986,2026,1,1,,0,,,10,19,2,10/19/26 1:00, +1,1,6987,2026,1,1,,0,,,10,19,3,10/19/26 2:00, +1,1,6988,2026,1,1,,0,,,10,19,4,10/19/26 3:00, +1,1,6989,2026,1,1,,0,,,10,19,5,10/19/26 4:00, +1,1,6990,2026,1,1,,0,,,10,19,6,10/19/26 5:00, +1,1,6991,2026,1,1,,0,,,10,19,7,10/19/26 6:00, +1,1,6992,2026,1,1,,0,,,10,19,8,10/19/26 7:00, +1,1,6993,2026,1,1,,0,,,10,19,9,10/19/26 8:00, +1,1,6994,2026,1,1,,0,,,10,19,10,10/19/26 9:00, +1,1,6995,2026,1,1,,0,,,10,19,11,10/19/26 10:00, +1,1,6996,2026,1,1,,0,,,10,19,12,10/19/26 11:00, +1,1,6997,2026,1,1,,0,,,10,19,13,10/19/26 12:00, +1,1,6998,2026,1,1,,0,,,10,19,14,10/19/26 13:00, +1,1,6999,2026,1,1,,0,,,10,19,15,10/19/26 14:00, +1,1,7000,2026,1,1,,0,,,10,19,16,10/19/26 15:00, +1,1,7001,2026,1,1,,0,,,10,19,17,10/19/26 16:00, +1,1,7002,2026,1,1,,0,,,10,19,18,10/19/26 17:00, +1,1,7003,2026,1,1,,0,,,10,19,19,10/19/26 18:00, +1,1,7004,2026,1,1,,0,,,10,19,20,10/19/26 19:00, +1,1,7005,2026,1,1,,0,,,10,19,21,10/19/26 20:00, +1,1,7006,2026,1,1,,0,,,10,19,22,10/19/26 21:00, +1,1,7007,2026,1,1,,0,,,10,19,23,10/19/26 22:00, +1,1,7008,2026,1,1,,0,,,10,19,24,10/19/26 23:00, +1,1,7009,2026,1,1,,0,,,10,20,1,10/20/26 0:00, +1,1,7010,2026,1,1,,0,,,10,20,2,10/20/26 1:00, +1,1,7011,2026,1,1,,0,,,10,20,3,10/20/26 2:00, +1,1,7012,2026,1,1,,0,,,10,20,4,10/20/26 3:00, +1,1,7013,2026,1,1,,0,,,10,20,5,10/20/26 4:00, +1,1,7014,2026,1,1,,0,,,10,20,6,10/20/26 5:00, +1,1,7015,2026,1,1,,0,,,10,20,7,10/20/26 6:00, +1,1,7016,2026,1,1,,0,,,10,20,8,10/20/26 7:00, +1,1,7017,2026,1,1,,0,,,10,20,9,10/20/26 8:00, +1,1,7018,2026,1,1,,0,,,10,20,10,10/20/26 9:00, +1,1,7019,2026,1,1,,0,,,10,20,11,10/20/26 10:00, +1,1,7020,2026,1,1,,0,,,10,20,12,10/20/26 11:00, +1,1,7021,2026,1,1,,0,,,10,20,13,10/20/26 12:00, +1,1,7022,2026,1,1,,0,,,10,20,14,10/20/26 13:00, +1,1,7023,2026,1,1,,0,,,10,20,15,10/20/26 14:00, +1,1,7024,2026,1,1,,0,,,10,20,16,10/20/26 15:00, +1,1,7025,2026,1,1,,0,,,10,20,17,10/20/26 16:00, +1,1,7026,2026,1,1,,0,,,10,20,18,10/20/26 17:00, +1,1,7027,2026,1,1,,0,,,10,20,19,10/20/26 18:00, +1,1,7028,2026,1,1,,0,,,10,20,20,10/20/26 19:00, +1,1,7029,2026,1,1,,0,,,10,20,21,10/20/26 20:00, +1,1,7030,2026,1,1,,0,,,10,20,22,10/20/26 21:00, +1,1,7031,2026,1,1,,0,,,10,20,23,10/20/26 22:00, +1,1,7032,2026,1,1,,0,,,10,20,24,10/20/26 23:00, +1,1,7033,2026,1,1,,0,,,10,21,1,10/21/26 0:00, +1,1,7034,2026,1,1,,0,,,10,21,2,10/21/26 1:00, +1,1,7035,2026,1,1,,0,,,10,21,3,10/21/26 2:00, +1,1,7036,2026,1,1,,0,,,10,21,4,10/21/26 3:00, +1,1,7037,2026,1,1,,0,,,10,21,5,10/21/26 4:00, +1,1,7038,2026,1,1,,0,,,10,21,6,10/21/26 5:00, +1,1,7039,2026,1,1,,0,,,10,21,7,10/21/26 6:00, +1,1,7040,2026,1,1,,0,,,10,21,8,10/21/26 7:00, +1,1,7041,2026,1,1,,0,,,10,21,9,10/21/26 8:00, +1,1,7042,2026,1,1,,0,,,10,21,10,10/21/26 9:00, +1,1,7043,2026,1,1,,0,,,10,21,11,10/21/26 10:00, +1,1,7044,2026,1,1,,0,,,10,21,12,10/21/26 11:00, +1,1,7045,2026,1,1,,0,,,10,21,13,10/21/26 12:00, +1,1,7046,2026,1,1,,0,,,10,21,14,10/21/26 13:00, +1,1,7047,2026,1,1,,0,,,10,21,15,10/21/26 14:00, +1,1,7048,2026,1,1,,0,,,10,21,16,10/21/26 15:00, +1,1,7049,2026,1,1,,0,,,10,21,17,10/21/26 16:00, +1,1,7050,2026,1,1,,0,,,10,21,18,10/21/26 17:00, +1,1,7051,2026,1,1,,0,,,10,21,19,10/21/26 18:00, +1,1,7052,2026,1,1,,0,,,10,21,20,10/21/26 19:00, +1,1,7053,2026,1,1,,0,,,10,21,21,10/21/26 20:00, +1,1,7054,2026,1,1,,0,,,10,21,22,10/21/26 21:00, +1,1,7055,2026,1,1,,0,,,10,21,23,10/21/26 22:00, +1,1,7056,2026,1,1,,0,,,10,21,24,10/21/26 23:00, +1,1,7057,2026,1,1,,0,,,10,22,1,10/22/26 0:00, +1,1,7058,2026,1,1,,0,,,10,22,2,10/22/26 1:00, +1,1,7059,2026,1,1,,0,,,10,22,3,10/22/26 2:00, +1,1,7060,2026,1,1,,0,,,10,22,4,10/22/26 3:00, +1,1,7061,2026,1,1,,0,,,10,22,5,10/22/26 4:00, +1,1,7062,2026,1,1,,0,,,10,22,6,10/22/26 5:00, +1,1,7063,2026,1,1,,0,,,10,22,7,10/22/26 6:00, +1,1,7064,2026,1,1,,0,,,10,22,8,10/22/26 7:00, +1,1,7065,2026,1,1,,0,,,10,22,9,10/22/26 8:00, +1,1,7066,2026,1,1,,0,,,10,22,10,10/22/26 9:00, +1,1,7067,2026,1,1,,0,,,10,22,11,10/22/26 10:00, +1,1,7068,2026,1,1,,0,,,10,22,12,10/22/26 11:00, +1,1,7069,2026,1,1,,0,,,10,22,13,10/22/26 12:00, +1,1,7070,2026,1,1,,0,,,10,22,14,10/22/26 13:00, +1,1,7071,2026,1,1,,0,,,10,22,15,10/22/26 14:00, +1,1,7072,2026,1,1,,0,,,10,22,16,10/22/26 15:00, +1,1,7073,2026,1,1,,0,,,10,22,17,10/22/26 16:00, +1,1,7074,2026,1,1,,0,,,10,22,18,10/22/26 17:00, +1,1,7075,2026,1,1,,0,,,10,22,19,10/22/26 18:00, +1,1,7076,2026,1,1,,0,,,10,22,20,10/22/26 19:00, +1,1,7077,2026,1,1,,0,,,10,22,21,10/22/26 20:00, +1,1,7078,2026,1,1,,0,,,10,22,22,10/22/26 21:00, +1,1,7079,2026,1,1,,0,,,10,22,23,10/22/26 22:00, +1,1,7080,2026,1,1,,0,,,10,22,24,10/22/26 23:00, +1,1,7081,2026,1,1,,0,,,10,23,1,10/23/26 0:00, +1,1,7082,2026,1,1,,0,,,10,23,2,10/23/26 1:00, +1,1,7083,2026,1,1,,0,,,10,23,3,10/23/26 2:00, +1,1,7084,2026,1,1,,0,,,10,23,4,10/23/26 3:00, +1,1,7085,2026,1,1,,0,,,10,23,5,10/23/26 4:00, +1,1,7086,2026,1,1,,0,,,10,23,6,10/23/26 5:00, +1,1,7087,2026,1,1,,0,,,10,23,7,10/23/26 6:00, +1,1,7088,2026,1,1,,0,,,10,23,8,10/23/26 7:00, +1,1,7089,2026,1,1,,0,,,10,23,9,10/23/26 8:00, +1,1,7090,2026,1,1,,0,,,10,23,10,10/23/26 9:00, +1,1,7091,2026,1,1,,0,,,10,23,11,10/23/26 10:00, +1,1,7092,2026,1,1,,0,,,10,23,12,10/23/26 11:00, +1,1,7093,2026,1,1,,0,,,10,23,13,10/23/26 12:00, +1,1,7094,2026,1,1,,0,,,10,23,14,10/23/26 13:00, +1,1,7095,2026,1,1,,0,,,10,23,15,10/23/26 14:00, +1,1,7096,2026,1,1,,0,,,10,23,16,10/23/26 15:00, +1,1,7097,2026,1,1,,0,,,10,23,17,10/23/26 16:00, +1,1,7098,2026,1,1,,0,,,10,23,18,10/23/26 17:00, +1,1,7099,2026,1,1,,0,,,10,23,19,10/23/26 18:00, +1,1,7100,2026,1,1,,0,,,10,23,20,10/23/26 19:00, +1,1,7101,2026,1,1,,0,,,10,23,21,10/23/26 20:00, +1,1,7102,2026,1,1,,0,,,10,23,22,10/23/26 21:00, +1,1,7103,2026,1,1,,0,,,10,23,23,10/23/26 22:00, +1,1,7104,2026,1,1,,0,,,10,23,24,10/23/26 23:00, +1,1,7105,2026,1,1,,0,,,10,24,1,10/24/26 0:00, +1,1,7106,2026,1,1,,0,,,10,24,2,10/24/26 1:00, +1,1,7107,2026,1,1,,0,,,10,24,3,10/24/26 2:00, +1,1,7108,2026,1,1,,0,,,10,24,4,10/24/26 3:00, +1,1,7109,2026,1,1,,0,,,10,24,5,10/24/26 4:00, +1,1,7110,2026,1,1,,0,,,10,24,6,10/24/26 5:00, +1,1,7111,2026,1,1,,0,,,10,24,7,10/24/26 6:00, +1,1,7112,2026,1,1,,0,,,10,24,8,10/24/26 7:00, +1,1,7113,2026,1,1,,0,,,10,24,9,10/24/26 8:00, +1,1,7114,2026,1,1,,0,,,10,24,10,10/24/26 9:00, +1,1,7115,2026,1,1,,0,,,10,24,11,10/24/26 10:00, +1,1,7116,2026,1,1,,0,,,10,24,12,10/24/26 11:00, +1,1,7117,2026,1,1,,0,,,10,24,13,10/24/26 12:00, +1,1,7118,2026,1,1,,0,,,10,24,14,10/24/26 13:00, +1,1,7119,2026,1,1,,0,,,10,24,15,10/24/26 14:00, +1,1,7120,2026,1,1,,0,,,10,24,16,10/24/26 15:00, +1,1,7121,2026,1,1,,0,,,10,24,17,10/24/26 16:00, +1,1,7122,2026,1,1,,0,,,10,24,18,10/24/26 17:00, +1,1,7123,2026,1,1,,0,,,10,24,19,10/24/26 18:00, +1,1,7124,2026,1,1,,0,,,10,24,20,10/24/26 19:00, +1,1,7125,2026,1,1,,0,,,10,24,21,10/24/26 20:00, +1,1,7126,2026,1,1,,0,,,10,24,22,10/24/26 21:00, +1,1,7127,2026,1,1,,0,,,10,24,23,10/24/26 22:00, +1,1,7128,2026,1,1,,0,,,10,24,24,10/24/26 23:00, +1,1,7129,2026,1,1,,0,,,10,25,1,10/25/26 0:00, +1,1,7130,2026,1,1,,0,,,10,25,2,10/25/26 1:00, +1,1,7131,2026,1,1,,0,,,10,25,3,10/25/26 2:00, +1,1,7132,2026,1,1,,0,,,10,25,4,10/25/26 3:00, +1,1,7133,2026,1,1,,0,,,10,25,5,10/25/26 4:00, +1,1,7134,2026,1,1,,0,,,10,25,6,10/25/26 5:00, +1,1,7135,2026,1,1,,0,,,10,25,7,10/25/26 6:00, +1,1,7136,2026,1,1,,0,,,10,25,8,10/25/26 7:00, +1,1,7137,2026,1,1,,0,,,10,25,9,10/25/26 8:00, +1,1,7138,2026,1,1,,0,,,10,25,10,10/25/26 9:00, +1,1,7139,2026,1,1,,0,,,10,25,11,10/25/26 10:00, +1,1,7140,2026,1,1,,0,,,10,25,12,10/25/26 11:00, +1,1,7141,2026,1,1,,0,,,10,25,13,10/25/26 12:00, +1,1,7142,2026,1,1,,0,,,10,25,14,10/25/26 13:00, +1,1,7143,2026,1,1,,0,,,10,25,15,10/25/26 14:00, +1,1,7144,2026,1,1,,0,,,10,25,16,10/25/26 15:00, +1,1,7145,2026,1,1,,0,,,10,25,17,10/25/26 16:00, +1,1,7146,2026,1,1,,0,,,10,25,18,10/25/26 17:00, +1,1,7147,2026,1,1,,0,,,10,25,19,10/25/26 18:00, +1,1,7148,2026,1,1,,0,,,10,25,20,10/25/26 19:00, +1,1,7149,2026,1,1,,0,,,10,25,21,10/25/26 20:00, +1,1,7150,2026,1,1,,0,,,10,25,22,10/25/26 21:00, +1,1,7151,2026,1,1,,0,,,10,25,23,10/25/26 22:00, +1,1,7152,2026,1,1,,0,,,10,25,24,10/25/26 23:00, +1,1,7153,2026,1,1,,0,,,10,26,1,10/26/26 0:00, +1,1,7154,2026,1,1,,0,,,10,26,2,10/26/26 1:00, +1,1,7155,2026,1,1,,0,,,10,26,3,10/26/26 2:00, +1,1,7156,2026,1,1,,0,,,10,26,4,10/26/26 3:00, +1,1,7157,2026,1,1,,0,,,10,26,5,10/26/26 4:00, +1,1,7158,2026,1,1,,0,,,10,26,6,10/26/26 5:00, +1,1,7159,2026,1,1,,0,,,10,26,7,10/26/26 6:00, +1,1,7160,2026,1,1,,0,,,10,26,8,10/26/26 7:00, +1,1,7161,2026,1,1,,0,,,10,26,9,10/26/26 8:00, +1,1,7162,2026,1,1,,0,,,10,26,10,10/26/26 9:00, +1,1,7163,2026,1,1,,0,,,10,26,11,10/26/26 10:00, +1,1,7164,2026,1,1,,0,,,10,26,12,10/26/26 11:00, +1,1,7165,2026,1,1,,0,,,10,26,13,10/26/26 12:00, +1,1,7166,2026,1,1,,0,,,10,26,14,10/26/26 13:00, +1,1,7167,2026,1,1,,0,,,10,26,15,10/26/26 14:00, +1,1,7168,2026,1,1,,0,,,10,26,16,10/26/26 15:00, +1,1,7169,2026,1,1,,0,,,10,26,17,10/26/26 16:00, +1,1,7170,2026,1,1,,0,,,10,26,18,10/26/26 17:00, +1,1,7171,2026,1,1,,0,,,10,26,19,10/26/26 18:00, +1,1,7172,2026,1,1,,0,,,10,26,20,10/26/26 19:00, +1,1,7173,2026,1,1,,0,,,10,26,21,10/26/26 20:00, +1,1,7174,2026,1,1,,0,,,10,26,22,10/26/26 21:00, +1,1,7175,2026,1,1,,0,,,10,26,23,10/26/26 22:00, +1,1,7176,2026,1,1,,0,,,10,26,24,10/26/26 23:00, +1,1,7177,2026,1,1,,0,,,10,27,1,10/27/26 0:00, +1,1,7178,2026,1,1,,0,,,10,27,2,10/27/26 1:00, +1,1,7179,2026,1,1,,0,,,10,27,3,10/27/26 2:00, +1,1,7180,2026,1,1,,0,,,10,27,4,10/27/26 3:00, +1,1,7181,2026,1,1,,0,,,10,27,5,10/27/26 4:00, +1,1,7182,2026,1,1,,0,,,10,27,6,10/27/26 5:00, +1,1,7183,2026,1,1,,0,,,10,27,7,10/27/26 6:00, +1,1,7184,2026,1,1,,0,,,10,27,8,10/27/26 7:00, +1,1,7185,2026,1,1,,0,,,10,27,9,10/27/26 8:00, +1,1,7186,2026,1,1,,0,,,10,27,10,10/27/26 9:00, +1,1,7187,2026,1,1,,0,,,10,27,11,10/27/26 10:00, +1,1,7188,2026,1,1,,0,,,10,27,12,10/27/26 11:00, +1,1,7189,2026,1,1,,0,,,10,27,13,10/27/26 12:00, +1,1,7190,2026,1,1,,0,,,10,27,14,10/27/26 13:00, +1,1,7191,2026,1,1,,0,,,10,27,15,10/27/26 14:00, +1,1,7192,2026,1,1,,0,,,10,27,16,10/27/26 15:00, +1,1,7193,2026,1,1,,0,,,10,27,17,10/27/26 16:00, +1,1,7194,2026,1,1,,0,,,10,27,18,10/27/26 17:00, +1,1,7195,2026,1,1,,0,,,10,27,19,10/27/26 18:00, +1,1,7196,2026,1,1,,0,,,10,27,20,10/27/26 19:00, +1,1,7197,2026,1,1,,0,,,10,27,21,10/27/26 20:00, +1,1,7198,2026,1,1,,0,,,10,27,22,10/27/26 21:00, +1,1,7199,2026,1,1,,0,,,10,27,23,10/27/26 22:00, +1,1,7200,2026,1,1,,0,,,10,27,24,10/27/26 23:00, +1,1,7201,2026,1,1,,0,,,10,28,1,10/28/26 0:00, +1,1,7202,2026,1,1,,0,,,10,28,2,10/28/26 1:00, +1,1,7203,2026,1,1,,0,,,10,28,3,10/28/26 2:00, +1,1,7204,2026,1,1,,0,,,10,28,4,10/28/26 3:00, +1,1,7205,2026,1,1,,0,,,10,28,5,10/28/26 4:00, +1,1,7206,2026,1,1,,0,,,10,28,6,10/28/26 5:00, +1,1,7207,2026,1,1,,0,,,10,28,7,10/28/26 6:00, +1,1,7208,2026,1,1,,0,,,10,28,8,10/28/26 7:00, +1,1,7209,2026,1,1,,0,,,10,28,9,10/28/26 8:00, +1,1,7210,2026,1,1,,0,,,10,28,10,10/28/26 9:00, +1,1,7211,2026,1,1,,0,,,10,28,11,10/28/26 10:00, +1,1,7212,2026,1,1,,0,,,10,28,12,10/28/26 11:00, +1,1,7213,2026,1,1,,0,,,10,28,13,10/28/26 12:00, +1,1,7214,2026,1,1,,0,,,10,28,14,10/28/26 13:00, +1,1,7215,2026,1,1,,0,,,10,28,15,10/28/26 14:00, +1,1,7216,2026,1,1,,0,,,10,28,16,10/28/26 15:00, +1,1,7217,2026,1,1,,0,,,10,28,17,10/28/26 16:00, +1,1,7218,2026,1,1,,0,,,10,28,18,10/28/26 17:00, +1,1,7219,2026,1,1,,0,,,10,28,19,10/28/26 18:00, +1,1,7220,2026,1,1,,0,,,10,28,20,10/28/26 19:00, +1,1,7221,2026,1,1,,0,,,10,28,21,10/28/26 20:00, +1,1,7222,2026,1,1,,0,,,10,28,22,10/28/26 21:00, +1,1,7223,2026,1,1,,0,,,10,28,23,10/28/26 22:00, +1,1,7224,2026,1,1,,0,,,10,28,24,10/28/26 23:00, +1,1,7225,2026,1,1,,0,,,10,29,1,10/29/26 0:00, +1,1,7226,2026,1,1,,0,,,10,29,2,10/29/26 1:00, +1,1,7227,2026,1,1,,0,,,10,29,3,10/29/26 2:00, +1,1,7228,2026,1,1,,0,,,10,29,4,10/29/26 3:00, +1,1,7229,2026,1,1,,0,,,10,29,5,10/29/26 4:00, +1,1,7230,2026,1,1,,0,,,10,29,6,10/29/26 5:00, +1,1,7231,2026,1,1,,0,,,10,29,7,10/29/26 6:00, +1,1,7232,2026,1,1,,0,,,10,29,8,10/29/26 7:00, +1,1,7233,2026,1,1,,0,,,10,29,9,10/29/26 8:00, +1,1,7234,2026,1,1,,0,,,10,29,10,10/29/26 9:00, +1,1,7235,2026,1,1,,0,,,10,29,11,10/29/26 10:00, +1,1,7236,2026,1,1,,0,,,10,29,12,10/29/26 11:00, +1,1,7237,2026,1,1,,0,,,10,29,13,10/29/26 12:00, +1,1,7238,2026,1,1,,0,,,10,29,14,10/29/26 13:00, +1,1,7239,2026,1,1,,0,,,10,29,15,10/29/26 14:00, +1,1,7240,2026,1,1,,0,,,10,29,16,10/29/26 15:00, +1,1,7241,2026,1,1,,0,,,10,29,17,10/29/26 16:00, +1,1,7242,2026,1,1,,0,,,10,29,18,10/29/26 17:00, +1,1,7243,2026,1,1,,0,,,10,29,19,10/29/26 18:00, +1,1,7244,2026,1,1,,0,,,10,29,20,10/29/26 19:00, +1,1,7245,2026,1,1,,0,,,10,29,21,10/29/26 20:00, +1,1,7246,2026,1,1,,0,,,10,29,22,10/29/26 21:00, +1,1,7247,2026,1,1,,0,,,10,29,23,10/29/26 22:00, +1,1,7248,2026,1,1,,0,,,10,29,24,10/29/26 23:00, +1,1,7249,2026,1,1,,0,,,10,30,1,10/30/26 0:00, +1,1,7250,2026,1,1,,0,,,10,30,2,10/30/26 1:00, +1,1,7251,2026,1,1,,0,,,10,30,3,10/30/26 2:00, +1,1,7252,2026,1,1,,0,,,10,30,4,10/30/26 3:00, +1,1,7253,2026,1,1,,0,,,10,30,5,10/30/26 4:00, +1,1,7254,2026,1,1,,0,,,10,30,6,10/30/26 5:00, +1,1,7255,2026,1,1,,0,,,10,30,7,10/30/26 6:00, +1,1,7256,2026,1,1,,0,,,10,30,8,10/30/26 7:00, +1,1,7257,2026,1,1,,0,,,10,30,9,10/30/26 8:00, +1,1,7258,2026,1,1,,0,,,10,30,10,10/30/26 9:00, +1,1,7259,2026,1,1,,0,,,10,30,11,10/30/26 10:00, +1,1,7260,2026,1,1,,0,,,10,30,12,10/30/26 11:00, +1,1,7261,2026,1,1,,0,,,10,30,13,10/30/26 12:00, +1,1,7262,2026,1,1,,0,,,10,30,14,10/30/26 13:00, +1,1,7263,2026,1,1,,0,,,10,30,15,10/30/26 14:00, +1,1,7264,2026,1,1,,0,,,10,30,16,10/30/26 15:00, +1,1,7265,2026,1,1,,0,,,10,30,17,10/30/26 16:00, +1,1,7266,2026,1,1,,0,,,10,30,18,10/30/26 17:00, +1,1,7267,2026,1,1,,0,,,10,30,19,10/30/26 18:00, +1,1,7268,2026,1,1,,0,,,10,30,20,10/30/26 19:00, +1,1,7269,2026,1,1,,0,,,10,30,21,10/30/26 20:00, +1,1,7270,2026,1,1,,0,,,10,30,22,10/30/26 21:00, +1,1,7271,2026,1,1,,0,,,10,30,23,10/30/26 22:00, +1,1,7272,2026,1,1,,0,,,10,30,24,10/30/26 23:00, +1,1,7273,2026,1,1,,0,,,10,31,1,10/31/26 0:00, +1,1,7274,2026,1,1,,0,,,10,31,2,10/31/26 1:00, +1,1,7275,2026,1,1,,0,,,10,31,3,10/31/26 2:00, +1,1,7276,2026,1,1,,0,,,10,31,4,10/31/26 3:00, +1,1,7277,2026,1,1,,0,,,10,31,5,10/31/26 4:00, +1,1,7278,2026,1,1,,0,,,10,31,6,10/31/26 5:00, +1,1,7279,2026,1,1,,0,,,10,31,7,10/31/26 6:00, +1,1,7280,2026,1,1,,0,,,10,31,8,10/31/26 7:00, +1,1,7281,2026,1,1,,0,,,10,31,9,10/31/26 8:00, +1,1,7282,2026,1,1,,0,,,10,31,10,10/31/26 9:00, +1,1,7283,2026,1,1,,0,,,10,31,11,10/31/26 10:00, +1,1,7284,2026,1,1,,0,,,10,31,12,10/31/26 11:00, +1,1,7285,2026,1,1,,0,,,10,31,13,10/31/26 12:00, +1,1,7286,2026,1,1,,0,,,10,31,14,10/31/26 13:00, +1,1,7287,2026,1,1,,0,,,10,31,15,10/31/26 14:00, +1,1,7288,2026,1,1,,0,,,10,31,16,10/31/26 15:00, +1,1,7289,2026,1,1,,0,,,10,31,17,10/31/26 16:00, +1,1,7290,2026,1,1,,0,,,10,31,18,10/31/26 17:00, +1,1,7291,2026,1,1,,0,,,10,31,19,10/31/26 18:00, +1,1,7292,2026,1,1,,0,,,10,31,20,10/31/26 19:00, +1,1,7293,2026,1,1,,0,,,10,31,21,10/31/26 20:00, +1,1,7294,2026,1,1,,0,,,10,31,22,10/31/26 21:00, +1,1,7295,2026,1,1,,0,,,10,31,23,10/31/26 22:00, +1,1,7296,2026,1,1,,0,,,10,31,24,10/31/26 23:00, +1,1,7297,2026,1,1,,0,,,11,1,1,11/1/26 0:00, +1,1,7298,2026,1,1,,0,,,11,1,2,11/1/26 1:00, +1,1,7299,2026,1,1,,0,,,11,1,3,11/1/26 2:00, +1,1,7300,2026,1,1,,0,,,11,1,4,11/1/26 3:00, +1,1,7301,2026,1,1,,0,,,11,1,5,11/1/26 4:00, +1,1,7302,2026,1,1,,0,,,11,1,6,11/1/26 5:00, +1,1,7303,2026,1,1,,0,,,11,1,7,11/1/26 6:00, +1,1,7304,2026,1,1,,0,,,11,1,8,11/1/26 7:00, +1,1,7305,2026,1,1,,0,,,11,1,9,11/1/26 8:00, +1,1,7306,2026,1,1,,0,,,11,1,10,11/1/26 9:00, +1,1,7307,2026,1,1,,0,,,11,1,11,11/1/26 10:00, +1,1,7308,2026,1,1,,0,,,11,1,12,11/1/26 11:00, +1,1,7309,2026,1,1,,0,,,11,1,13,11/1/26 12:00, +1,1,7310,2026,1,1,,0,,,11,1,14,11/1/26 13:00, +1,1,7311,2026,1,1,,0,,,11,1,15,11/1/26 14:00, +1,1,7312,2026,1,1,,0,,,11,1,16,11/1/26 15:00, +1,1,7313,2026,1,1,,0,,,11,1,17,11/1/26 16:00, +1,1,7314,2026,1,1,,0,,,11,1,18,11/1/26 17:00, +1,1,7315,2026,1,1,,0,,,11,1,19,11/1/26 18:00, +1,1,7316,2026,1,1,,0,,,11,1,20,11/1/26 19:00, +1,1,7317,2026,1,1,,0,,,11,1,21,11/1/26 20:00, +1,1,7318,2026,1,1,,0,,,11,1,22,11/1/26 21:00, +1,1,7319,2026,1,1,,0,,,11,1,23,11/1/26 22:00, +1,1,7320,2026,1,1,,0,,,11,1,24,11/1/26 23:00, +1,1,7321,2026,1,1,,0,,,11,2,1,11/2/26 0:00, +1,1,7322,2026,1,1,,0,,,11,2,2,11/2/26 1:00, +1,1,7323,2026,1,1,,0,,,11,2,3,11/2/26 2:00, +1,1,7324,2026,1,1,,0,,,11,2,4,11/2/26 3:00, +1,1,7325,2026,1,1,,0,,,11,2,5,11/2/26 4:00, +1,1,7326,2026,1,1,,0,,,11,2,6,11/2/26 5:00, +1,1,7327,2026,1,1,,0,,,11,2,7,11/2/26 6:00, +1,1,7328,2026,1,1,,0,,,11,2,8,11/2/26 7:00, +1,1,7329,2026,1,1,,0,,,11,2,9,11/2/26 8:00, +1,1,7330,2026,1,1,,0,,,11,2,10,11/2/26 9:00, +1,1,7331,2026,1,1,,0,,,11,2,11,11/2/26 10:00, +1,1,7332,2026,1,1,,0,,,11,2,12,11/2/26 11:00, +1,1,7333,2026,1,1,,0,,,11,2,13,11/2/26 12:00, +1,1,7334,2026,1,1,,0,,,11,2,14,11/2/26 13:00, +1,1,7335,2026,1,1,,0,,,11,2,15,11/2/26 14:00, +1,1,7336,2026,1,1,,0,,,11,2,16,11/2/26 15:00, +1,1,7337,2026,1,1,,0,,,11,2,17,11/2/26 16:00, +1,1,7338,2026,1,1,,0,,,11,2,18,11/2/26 17:00, +1,1,7339,2026,1,1,,0,,,11,2,19,11/2/26 18:00, +1,1,7340,2026,1,1,,0,,,11,2,20,11/2/26 19:00, +1,1,7341,2026,1,1,,0,,,11,2,21,11/2/26 20:00, +1,1,7342,2026,1,1,,0,,,11,2,22,11/2/26 21:00, +1,1,7343,2026,1,1,,0,,,11,2,23,11/2/26 22:00, +1,1,7344,2026,1,1,,0,,,11,2,24,11/2/26 23:00, +1,1,7345,2026,1,1,,0,,,11,3,1,11/3/26 0:00, +1,1,7346,2026,1,1,,0,,,11,3,2,11/3/26 1:00, +1,1,7347,2026,1,1,,0,,,11,3,3,11/3/26 2:00, +1,1,7348,2026,1,1,,0,,,11,3,4,11/3/26 3:00, +1,1,7349,2026,1,1,,0,,,11,3,5,11/3/26 4:00, +1,1,7350,2026,1,1,,0,,,11,3,6,11/3/26 5:00, +1,1,7351,2026,1,1,,0,,,11,3,7,11/3/26 6:00, +1,1,7352,2026,1,1,,0,,,11,3,8,11/3/26 7:00, +1,1,7353,2026,1,1,,0,,,11,3,9,11/3/26 8:00, +1,1,7354,2026,1,1,,0,,,11,3,10,11/3/26 9:00, +1,1,7355,2026,1,1,,0,,,11,3,11,11/3/26 10:00, +1,1,7356,2026,1,1,,0,,,11,3,12,11/3/26 11:00, +1,1,7357,2026,1,1,,0,,,11,3,13,11/3/26 12:00, +1,1,7358,2026,1,1,,0,,,11,3,14,11/3/26 13:00, +1,1,7359,2026,1,1,,0,,,11,3,15,11/3/26 14:00, +1,1,7360,2026,1,1,,0,,,11,3,16,11/3/26 15:00, +1,1,7361,2026,1,1,,0,,,11,3,17,11/3/26 16:00, +1,1,7362,2026,1,1,,0,,,11,3,18,11/3/26 17:00, +1,1,7363,2026,1,1,,0,,,11,3,19,11/3/26 18:00, +1,1,7364,2026,1,1,,0,,,11,3,20,11/3/26 19:00, +1,1,7365,2026,1,1,,0,,,11,3,21,11/3/26 20:00, +1,1,7366,2026,1,1,,0,,,11,3,22,11/3/26 21:00, +1,1,7367,2026,1,1,,0,,,11,3,23,11/3/26 22:00, +1,1,7368,2026,1,1,,0,,,11,3,24,11/3/26 23:00, +1,1,7369,2026,1,1,,0,,,11,4,1,11/4/26 0:00, +1,1,7370,2026,1,1,,0,,,11,4,2,11/4/26 1:00, +1,1,7371,2026,1,1,,0,,,11,4,3,11/4/26 2:00, +1,1,7372,2026,1,1,,0,,,11,4,4,11/4/26 3:00, +1,1,7373,2026,1,1,,0,,,11,4,5,11/4/26 4:00, +1,1,7374,2026,1,1,,0,,,11,4,6,11/4/26 5:00, +1,1,7375,2026,1,1,,0,,,11,4,7,11/4/26 6:00, +1,1,7376,2026,1,1,,0,,,11,4,8,11/4/26 7:00, +1,1,7377,2026,1,1,,0,,,11,4,9,11/4/26 8:00, +1,1,7378,2026,1,1,,0,,,11,4,10,11/4/26 9:00, +1,1,7379,2026,1,1,,0,,,11,4,11,11/4/26 10:00, +1,1,7380,2026,1,1,,0,,,11,4,12,11/4/26 11:00, +1,1,7381,2026,1,1,,0,,,11,4,13,11/4/26 12:00, +1,1,7382,2026,1,1,,0,,,11,4,14,11/4/26 13:00, +1,1,7383,2026,1,1,,0,,,11,4,15,11/4/26 14:00, +1,1,7384,2026,1,1,,0,,,11,4,16,11/4/26 15:00, +1,1,7385,2026,1,1,,0,,,11,4,17,11/4/26 16:00, +1,1,7386,2026,1,1,,0,,,11,4,18,11/4/26 17:00, +1,1,7387,2026,1,1,,0,,,11,4,19,11/4/26 18:00, +1,1,7388,2026,1,1,,0,,,11,4,20,11/4/26 19:00, +1,1,7389,2026,1,1,,0,,,11,4,21,11/4/26 20:00, +1,1,7390,2026,1,1,,0,,,11,4,22,11/4/26 21:00, +1,1,7391,2026,1,1,,0,,,11,4,23,11/4/26 22:00, +1,1,7392,2026,1,1,,0,,,11,4,24,11/4/26 23:00, +1,1,7393,2026,1,1,,0,,,11,5,1,11/5/26 0:00, +1,1,7394,2026,1,1,,0,,,11,5,2,11/5/26 1:00, +1,1,7395,2026,1,1,,0,,,11,5,3,11/5/26 2:00, +1,1,7396,2026,1,1,,0,,,11,5,4,11/5/26 3:00, +1,1,7397,2026,1,1,,0,,,11,5,5,11/5/26 4:00, +1,1,7398,2026,1,1,,0,,,11,5,6,11/5/26 5:00, +1,1,7399,2026,1,1,,0,,,11,5,7,11/5/26 6:00, +1,1,7400,2026,1,1,,0,,,11,5,8,11/5/26 7:00, +1,1,7401,2026,1,1,,0,,,11,5,9,11/5/26 8:00, +1,1,7402,2026,1,1,,0,,,11,5,10,11/5/26 9:00, +1,1,7403,2026,1,1,,0,,,11,5,11,11/5/26 10:00, +1,1,7404,2026,1,1,,0,,,11,5,12,11/5/26 11:00, +1,1,7405,2026,1,1,,0,,,11,5,13,11/5/26 12:00, +1,1,7406,2026,1,1,,0,,,11,5,14,11/5/26 13:00, +1,1,7407,2026,1,1,,0,,,11,5,15,11/5/26 14:00, +1,1,7408,2026,1,1,,0,,,11,5,16,11/5/26 15:00, +1,1,7409,2026,1,1,,0,,,11,5,17,11/5/26 16:00, +1,1,7410,2026,1,1,,0,,,11,5,18,11/5/26 17:00, +1,1,7411,2026,1,1,,0,,,11,5,19,11/5/26 18:00, +1,1,7412,2026,1,1,,0,,,11,5,20,11/5/26 19:00, +1,1,7413,2026,1,1,,0,,,11,5,21,11/5/26 20:00, +1,1,7414,2026,1,1,,0,,,11,5,22,11/5/26 21:00, +1,1,7415,2026,1,1,,0,,,11,5,23,11/5/26 22:00, +1,1,7416,2026,1,1,,0,,,11,5,24,11/5/26 23:00, +1,1,7417,2026,1,1,,0,,,11,6,1,11/6/26 0:00, +1,1,7418,2026,1,1,,0,,,11,6,2,11/6/26 1:00, +1,1,7419,2026,1,1,,0,,,11,6,3,11/6/26 2:00, +1,1,7420,2026,1,1,,0,,,11,6,4,11/6/26 3:00, +1,1,7421,2026,1,1,,0,,,11,6,5,11/6/26 4:00, +1,1,7422,2026,1,1,,0,,,11,6,6,11/6/26 5:00, +1,1,7423,2026,1,1,,0,,,11,6,7,11/6/26 6:00, +1,1,7424,2026,1,1,,0,,,11,6,8,11/6/26 7:00, +1,1,7425,2026,1,1,,0,,,11,6,9,11/6/26 8:00, +1,1,7426,2026,1,1,,0,,,11,6,10,11/6/26 9:00, +1,1,7427,2026,1,1,,0,,,11,6,11,11/6/26 10:00, +1,1,7428,2026,1,1,,0,,,11,6,12,11/6/26 11:00, +1,1,7429,2026,1,1,,0,,,11,6,13,11/6/26 12:00, +1,1,7430,2026,1,1,,0,,,11,6,14,11/6/26 13:00, +1,1,7431,2026,1,1,,0,,,11,6,15,11/6/26 14:00, +1,1,7432,2026,1,1,,0,,,11,6,16,11/6/26 15:00, +1,1,7433,2026,1,1,,0,,,11,6,17,11/6/26 16:00, +1,1,7434,2026,1,1,,0,,,11,6,18,11/6/26 17:00, +1,1,7435,2026,1,1,,0,,,11,6,19,11/6/26 18:00, +1,1,7436,2026,1,1,,0,,,11,6,20,11/6/26 19:00, +1,1,7437,2026,1,1,,0,,,11,6,21,11/6/26 20:00, +1,1,7438,2026,1,1,,0,,,11,6,22,11/6/26 21:00, +1,1,7439,2026,1,1,,0,,,11,6,23,11/6/26 22:00, +1,1,7440,2026,1,1,,0,,,11,6,24,11/6/26 23:00, +1,1,7441,2026,1,1,,0,,,11,7,1,11/7/26 0:00, +1,1,7442,2026,1,1,,0,,,11,7,2,11/7/26 1:00, +1,1,7443,2026,1,1,,0,,,11,7,3,11/7/26 2:00, +1,1,7444,2026,1,1,,0,,,11,7,4,11/7/26 3:00, +1,1,7445,2026,1,1,,0,,,11,7,5,11/7/26 4:00, +1,1,7446,2026,1,1,,0,,,11,7,6,11/7/26 5:00, +1,1,7447,2026,1,1,,0,,,11,7,7,11/7/26 6:00, +1,1,7448,2026,1,1,,0,,,11,7,8,11/7/26 7:00, +1,1,7449,2026,1,1,,0,,,11,7,9,11/7/26 8:00, +1,1,7450,2026,1,1,,0,,,11,7,10,11/7/26 9:00, +1,1,7451,2026,1,1,,0,,,11,7,11,11/7/26 10:00, +1,1,7452,2026,1,1,,0,,,11,7,12,11/7/26 11:00, +1,1,7453,2026,1,1,,0,,,11,7,13,11/7/26 12:00, +1,1,7454,2026,1,1,,0,,,11,7,14,11/7/26 13:00, +1,1,7455,2026,1,1,,0,,,11,7,15,11/7/26 14:00, +1,1,7456,2026,1,1,,0,,,11,7,16,11/7/26 15:00, +1,1,7457,2026,1,1,,0,,,11,7,17,11/7/26 16:00, +1,1,7458,2026,1,1,,0,,,11,7,18,11/7/26 17:00, +1,1,7459,2026,1,1,,0,,,11,7,19,11/7/26 18:00, +1,1,7460,2026,1,1,,0,,,11,7,20,11/7/26 19:00, +1,1,7461,2026,1,1,,0,,,11,7,21,11/7/26 20:00, +1,1,7462,2026,1,1,,0,,,11,7,22,11/7/26 21:00, +1,1,7463,2026,1,1,,0,,,11,7,23,11/7/26 22:00, +1,1,7464,2026,1,1,,0,,,11,7,24,11/7/26 23:00, +1,1,7465,2026,1,1,,0,,,11,8,1,11/8/26 0:00, +1,1,7466,2026,1,1,,0,,,11,8,2,11/8/26 1:00, +1,1,7467,2026,1,1,,0,,,11,8,3,11/8/26 2:00, +1,1,7468,2026,1,1,,0,,,11,8,4,11/8/26 3:00, +1,1,7469,2026,1,1,,0,,,11,8,5,11/8/26 4:00, +1,1,7470,2026,1,1,,0,,,11,8,6,11/8/26 5:00, +1,1,7471,2026,1,1,,0,,,11,8,7,11/8/26 6:00, +1,1,7472,2026,1,1,,0,,,11,8,8,11/8/26 7:00, +1,1,7473,2026,1,1,,0,,,11,8,9,11/8/26 8:00, +1,1,7474,2026,1,1,,0,,,11,8,10,11/8/26 9:00, +1,1,7475,2026,1,1,,0,,,11,8,11,11/8/26 10:00, +1,1,7476,2026,1,1,,0,,,11,8,12,11/8/26 11:00, +1,1,7477,2026,1,1,,0,,,11,8,13,11/8/26 12:00, +1,1,7478,2026,1,1,,0,,,11,8,14,11/8/26 13:00, +1,1,7479,2026,1,1,,0,,,11,8,15,11/8/26 14:00, +1,1,7480,2026,1,1,,0,,,11,8,16,11/8/26 15:00, +1,1,7481,2026,1,1,,0,,,11,8,17,11/8/26 16:00, +1,1,7482,2026,1,1,,0,,,11,8,18,11/8/26 17:00, +1,1,7483,2026,1,1,,0,,,11,8,19,11/8/26 18:00, +1,1,7484,2026,1,1,,0,,,11,8,20,11/8/26 19:00, +1,1,7485,2026,1,1,,0,,,11,8,21,11/8/26 20:00, +1,1,7486,2026,1,1,,0,,,11,8,22,11/8/26 21:00, +1,1,7487,2026,1,1,,0,,,11,8,23,11/8/26 22:00, +1,1,7488,2026,1,1,,0,,,11,8,24,11/8/26 23:00, +1,1,7489,2026,1,1,,0,,,11,9,1,11/9/26 0:00, +1,1,7490,2026,1,1,,0,,,11,9,2,11/9/26 1:00, +1,1,7491,2026,1,1,,0,,,11,9,3,11/9/26 2:00, +1,1,7492,2026,1,1,,0,,,11,9,4,11/9/26 3:00, +1,1,7493,2026,1,1,,0,,,11,9,5,11/9/26 4:00, +1,1,7494,2026,1,1,,0,,,11,9,6,11/9/26 5:00, +1,1,7495,2026,1,1,,0,,,11,9,7,11/9/26 6:00, +1,1,7496,2026,1,1,,0,,,11,9,8,11/9/26 7:00, +1,1,7497,2026,1,1,,0,,,11,9,9,11/9/26 8:00, +1,1,7498,2026,1,1,,0,,,11,9,10,11/9/26 9:00, +1,1,7499,2026,1,1,,0,,,11,9,11,11/9/26 10:00, +1,1,7500,2026,1,1,,0,,,11,9,12,11/9/26 11:00, +1,1,7501,2026,1,1,,0,,,11,9,13,11/9/26 12:00, +1,1,7502,2026,1,1,,0,,,11,9,14,11/9/26 13:00, +1,1,7503,2026,1,1,,0,,,11,9,15,11/9/26 14:00, +1,1,7504,2026,1,1,,0,,,11,9,16,11/9/26 15:00, +1,1,7505,2026,1,1,,0,,,11,9,17,11/9/26 16:00, +1,1,7506,2026,1,1,,0,,,11,9,18,11/9/26 17:00, +1,1,7507,2026,1,1,,0,,,11,9,19,11/9/26 18:00, +1,1,7508,2026,1,1,,0,,,11,9,20,11/9/26 19:00, +1,1,7509,2026,1,1,,0,,,11,9,21,11/9/26 20:00, +1,1,7510,2026,1,1,,0,,,11,9,22,11/9/26 21:00, +1,1,7511,2026,1,1,,0,,,11,9,23,11/9/26 22:00, +1,1,7512,2026,1,1,,0,,,11,9,24,11/9/26 23:00, +1,1,7513,2026,1,1,,0,,,11,10,1,11/10/26 0:00, +1,1,7514,2026,1,1,,0,,,11,10,2,11/10/26 1:00, +1,1,7515,2026,1,1,,0,,,11,10,3,11/10/26 2:00, +1,1,7516,2026,1,1,,0,,,11,10,4,11/10/26 3:00, +1,1,7517,2026,1,1,,0,,,11,10,5,11/10/26 4:00, +1,1,7518,2026,1,1,,0,,,11,10,6,11/10/26 5:00, +1,1,7519,2026,1,1,,0,,,11,10,7,11/10/26 6:00, +1,1,7520,2026,1,1,,0,,,11,10,8,11/10/26 7:00, +1,1,7521,2026,1,1,,0,,,11,10,9,11/10/26 8:00, +1,1,7522,2026,1,1,,0,,,11,10,10,11/10/26 9:00, +1,1,7523,2026,1,1,,0,,,11,10,11,11/10/26 10:00, +1,1,7524,2026,1,1,,0,,,11,10,12,11/10/26 11:00, +1,1,7525,2026,1,1,,0,,,11,10,13,11/10/26 12:00, +1,1,7526,2026,1,1,,0,,,11,10,14,11/10/26 13:00, +1,1,7527,2026,1,1,,0,,,11,10,15,11/10/26 14:00, +1,1,7528,2026,1,1,,0,,,11,10,16,11/10/26 15:00, +1,1,7529,2026,1,1,,0,,,11,10,17,11/10/26 16:00, +1,1,7530,2026,1,1,,0,,,11,10,18,11/10/26 17:00, +1,1,7531,2026,1,1,,0,,,11,10,19,11/10/26 18:00, +1,1,7532,2026,1,1,,0,,,11,10,20,11/10/26 19:00, +1,1,7533,2026,1,1,,0,,,11,10,21,11/10/26 20:00, +1,1,7534,2026,1,1,,0,,,11,10,22,11/10/26 21:00, +1,1,7535,2026,1,1,,0,,,11,10,23,11/10/26 22:00, +1,1,7536,2026,1,1,,0,,,11,10,24,11/10/26 23:00, +1,1,7537,2026,1,1,,0,,,11,11,1,11/11/26 0:00, +1,1,7538,2026,1,1,,0,,,11,11,2,11/11/26 1:00, +1,1,7539,2026,1,1,,0,,,11,11,3,11/11/26 2:00, +1,1,7540,2026,1,1,,0,,,11,11,4,11/11/26 3:00, +1,1,7541,2026,1,1,,0,,,11,11,5,11/11/26 4:00, +1,1,7542,2026,1,1,,0,,,11,11,6,11/11/26 5:00, +1,1,7543,2026,1,1,,0,,,11,11,7,11/11/26 6:00, +1,1,7544,2026,1,1,,0,,,11,11,8,11/11/26 7:00, +1,1,7545,2026,1,1,,0,,,11,11,9,11/11/26 8:00, +1,1,7546,2026,1,1,,0,,,11,11,10,11/11/26 9:00, +1,1,7547,2026,1,1,,0,,,11,11,11,11/11/26 10:00, +1,1,7548,2026,1,1,,0,,,11,11,12,11/11/26 11:00, +1,1,7549,2026,1,1,,0,,,11,11,13,11/11/26 12:00, +1,1,7550,2026,1,1,,0,,,11,11,14,11/11/26 13:00, +1,1,7551,2026,1,1,,0,,,11,11,15,11/11/26 14:00, +1,1,7552,2026,1,1,,0,,,11,11,16,11/11/26 15:00, +1,1,7553,2026,1,1,,0,,,11,11,17,11/11/26 16:00, +1,1,7554,2026,1,1,,0,,,11,11,18,11/11/26 17:00, +1,1,7555,2026,1,1,,0,,,11,11,19,11/11/26 18:00, +1,1,7556,2026,1,1,,0,,,11,11,20,11/11/26 19:00, +1,1,7557,2026,1,1,,0,,,11,11,21,11/11/26 20:00, +1,1,7558,2026,1,1,,0,,,11,11,22,11/11/26 21:00, +1,1,7559,2026,1,1,,0,,,11,11,23,11/11/26 22:00, +1,1,7560,2026,1,1,,0,,,11,11,24,11/11/26 23:00, +1,1,7561,2026,1,1,,0,,,11,12,1,11/12/26 0:00, +1,1,7562,2026,1,1,,0,,,11,12,2,11/12/26 1:00, +1,1,7563,2026,1,1,,0,,,11,12,3,11/12/26 2:00, +1,1,7564,2026,1,1,,0,,,11,12,4,11/12/26 3:00, +1,1,7565,2026,1,1,,0,,,11,12,5,11/12/26 4:00, +1,1,7566,2026,1,1,,0,,,11,12,6,11/12/26 5:00, +1,1,7567,2026,1,1,,0,,,11,12,7,11/12/26 6:00, +1,1,7568,2026,1,1,,0,,,11,12,8,11/12/26 7:00, +1,1,7569,2026,1,1,,0,,,11,12,9,11/12/26 8:00, +1,1,7570,2026,1,1,,0,,,11,12,10,11/12/26 9:00, +1,1,7571,2026,1,1,,0,,,11,12,11,11/12/26 10:00, +1,1,7572,2026,1,1,,0,,,11,12,12,11/12/26 11:00, +1,1,7573,2026,1,1,,0,,,11,12,13,11/12/26 12:00, +1,1,7574,2026,1,1,,0,,,11,12,14,11/12/26 13:00, +1,1,7575,2026,1,1,,0,,,11,12,15,11/12/26 14:00, +1,1,7576,2026,1,1,,0,,,11,12,16,11/12/26 15:00, +1,1,7577,2026,1,1,,0,,,11,12,17,11/12/26 16:00, +1,1,7578,2026,1,1,,0,,,11,12,18,11/12/26 17:00, +1,1,7579,2026,1,1,,0,,,11,12,19,11/12/26 18:00, +1,1,7580,2026,1,1,,0,,,11,12,20,11/12/26 19:00, +1,1,7581,2026,1,1,,0,,,11,12,21,11/12/26 20:00, +1,1,7582,2026,1,1,,0,,,11,12,22,11/12/26 21:00, +1,1,7583,2026,1,1,,0,,,11,12,23,11/12/26 22:00, +1,1,7584,2026,1,1,,0,,,11,12,24,11/12/26 23:00, +1,1,7585,2026,1,1,,0,,,11,13,1,11/13/26 0:00, +1,1,7586,2026,1,1,,0,,,11,13,2,11/13/26 1:00, +1,1,7587,2026,1,1,,0,,,11,13,3,11/13/26 2:00, +1,1,7588,2026,1,1,,0,,,11,13,4,11/13/26 3:00, +1,1,7589,2026,1,1,,0,,,11,13,5,11/13/26 4:00, +1,1,7590,2026,1,1,,0,,,11,13,6,11/13/26 5:00, +1,1,7591,2026,1,1,,0,,,11,13,7,11/13/26 6:00, +1,1,7592,2026,1,1,,0,,,11,13,8,11/13/26 7:00, +1,1,7593,2026,1,1,,0,,,11,13,9,11/13/26 8:00, +1,1,7594,2026,1,1,,0,,,11,13,10,11/13/26 9:00, +1,1,7595,2026,1,1,,0,,,11,13,11,11/13/26 10:00, +1,1,7596,2026,1,1,,0,,,11,13,12,11/13/26 11:00, +1,1,7597,2026,1,1,,0,,,11,13,13,11/13/26 12:00, +1,1,7598,2026,1,1,,0,,,11,13,14,11/13/26 13:00, +1,1,7599,2026,1,1,,0,,,11,13,15,11/13/26 14:00, +1,1,7600,2026,1,1,,0,,,11,13,16,11/13/26 15:00, +1,1,7601,2026,1,1,,0,,,11,13,17,11/13/26 16:00, +1,1,7602,2026,1,1,,0,,,11,13,18,11/13/26 17:00, +1,1,7603,2026,1,1,,0,,,11,13,19,11/13/26 18:00, +1,1,7604,2026,1,1,,0,,,11,13,20,11/13/26 19:00, +1,1,7605,2026,1,1,,0,,,11,13,21,11/13/26 20:00, +1,1,7606,2026,1,1,,0,,,11,13,22,11/13/26 21:00, +1,1,7607,2026,1,1,,0,,,11,13,23,11/13/26 22:00, +1,1,7608,2026,1,1,,0,,,11,13,24,11/13/26 23:00, +1,1,7609,2026,1,1,,0,,,11,14,1,11/14/26 0:00, +1,1,7610,2026,1,1,,0,,,11,14,2,11/14/26 1:00, +1,1,7611,2026,1,1,,0,,,11,14,3,11/14/26 2:00, +1,1,7612,2026,1,1,,0,,,11,14,4,11/14/26 3:00, +1,1,7613,2026,1,1,,0,,,11,14,5,11/14/26 4:00, +1,1,7614,2026,1,1,,0,,,11,14,6,11/14/26 5:00, +1,1,7615,2026,1,1,,0,,,11,14,7,11/14/26 6:00, +1,1,7616,2026,1,1,,0,,,11,14,8,11/14/26 7:00, +1,1,7617,2026,1,1,,0,,,11,14,9,11/14/26 8:00, +1,1,7618,2026,1,1,,0,,,11,14,10,11/14/26 9:00, +1,1,7619,2026,1,1,,0,,,11,14,11,11/14/26 10:00, +1,1,7620,2026,1,1,,0,,,11,14,12,11/14/26 11:00, +1,1,7621,2026,1,1,,0,,,11,14,13,11/14/26 12:00, +1,1,7622,2026,1,1,,0,,,11,14,14,11/14/26 13:00, +1,1,7623,2026,1,1,,0,,,11,14,15,11/14/26 14:00, +1,1,7624,2026,1,1,,0,,,11,14,16,11/14/26 15:00, +1,1,7625,2026,1,1,,0,,,11,14,17,11/14/26 16:00, +1,1,7626,2026,1,1,,0,,,11,14,18,11/14/26 17:00, +1,1,7627,2026,1,1,,0,,,11,14,19,11/14/26 18:00, +1,1,7628,2026,1,1,,0,,,11,14,20,11/14/26 19:00, +1,1,7629,2026,1,1,,0,,,11,14,21,11/14/26 20:00, +1,1,7630,2026,1,1,,0,,,11,14,22,11/14/26 21:00, +1,1,7631,2026,1,1,,0,,,11,14,23,11/14/26 22:00, +1,1,7632,2026,1,1,,0,,,11,14,24,11/14/26 23:00, +1,1,7633,2026,1,1,,0,,,11,15,1,11/15/26 0:00, +1,1,7634,2026,1,1,,0,,,11,15,2,11/15/26 1:00, +1,1,7635,2026,1,1,,0,,,11,15,3,11/15/26 2:00, +1,1,7636,2026,1,1,,0,,,11,15,4,11/15/26 3:00, +1,1,7637,2026,1,1,,0,,,11,15,5,11/15/26 4:00, +1,1,7638,2026,1,1,,0,,,11,15,6,11/15/26 5:00, +1,1,7639,2026,1,1,,0,,,11,15,7,11/15/26 6:00, +1,1,7640,2026,1,1,,0,,,11,15,8,11/15/26 7:00, +1,1,7641,2026,1,1,,0,,,11,15,9,11/15/26 8:00, +1,1,7642,2026,1,1,,0,,,11,15,10,11/15/26 9:00, +1,1,7643,2026,1,1,,0,,,11,15,11,11/15/26 10:00, +1,1,7644,2026,1,1,,0,,,11,15,12,11/15/26 11:00, +1,1,7645,2026,1,1,,0,,,11,15,13,11/15/26 12:00, +1,1,7646,2026,1,1,,0,,,11,15,14,11/15/26 13:00, +1,1,7647,2026,1,1,,0,,,11,15,15,11/15/26 14:00, +1,1,7648,2026,1,1,,0,,,11,15,16,11/15/26 15:00, +1,1,7649,2026,1,1,,0,,,11,15,17,11/15/26 16:00, +1,1,7650,2026,1,1,,0,,,11,15,18,11/15/26 17:00, +1,1,7651,2026,1,1,,0,,,11,15,19,11/15/26 18:00, +1,1,7652,2026,1,1,,0,,,11,15,20,11/15/26 19:00, +1,1,7653,2026,1,1,,0,,,11,15,21,11/15/26 20:00, +1,1,7654,2026,1,1,,0,,,11,15,22,11/15/26 21:00, +1,1,7655,2026,1,1,,0,,,11,15,23,11/15/26 22:00, +1,1,7656,2026,1,1,,0,,,11,15,24,11/15/26 23:00, +1,1,7657,2026,1,1,,0,,,11,16,1,11/16/26 0:00, +1,1,7658,2026,1,1,,0,,,11,16,2,11/16/26 1:00, +1,1,7659,2026,1,1,,0,,,11,16,3,11/16/26 2:00, +1,1,7660,2026,1,1,,0,,,11,16,4,11/16/26 3:00, +1,1,7661,2026,1,1,,0,,,11,16,5,11/16/26 4:00, +1,1,7662,2026,1,1,,0,,,11,16,6,11/16/26 5:00, +1,1,7663,2026,1,1,,0,,,11,16,7,11/16/26 6:00, +1,1,7664,2026,1,1,,0,,,11,16,8,11/16/26 7:00, +1,1,7665,2026,1,1,,0,,,11,16,9,11/16/26 8:00, +1,1,7666,2026,1,1,,0,,,11,16,10,11/16/26 9:00, +1,1,7667,2026,1,1,,0,,,11,16,11,11/16/26 10:00, +1,1,7668,2026,1,1,,0,,,11,16,12,11/16/26 11:00, +1,1,7669,2026,1,1,,0,,,11,16,13,11/16/26 12:00, +1,1,7670,2026,1,1,,0,,,11,16,14,11/16/26 13:00, +1,1,7671,2026,1,1,,0,,,11,16,15,11/16/26 14:00, +1,1,7672,2026,1,1,,0,,,11,16,16,11/16/26 15:00, +1,1,7673,2026,1,1,,0,,,11,16,17,11/16/26 16:00, +1,1,7674,2026,1,1,,0,,,11,16,18,11/16/26 17:00, +1,1,7675,2026,1,1,,0,,,11,16,19,11/16/26 18:00, +1,1,7676,2026,1,1,,0,,,11,16,20,11/16/26 19:00, +1,1,7677,2026,1,1,,0,,,11,16,21,11/16/26 20:00, +1,1,7678,2026,1,1,,0,,,11,16,22,11/16/26 21:00, +1,1,7679,2026,1,1,,0,,,11,16,23,11/16/26 22:00, +1,1,7680,2026,1,1,,0,,,11,16,24,11/16/26 23:00, +1,1,7681,2026,1,1,,0,,,11,17,1,11/17/26 0:00, +1,1,7682,2026,1,1,,0,,,11,17,2,11/17/26 1:00, +1,1,7683,2026,1,1,,0,,,11,17,3,11/17/26 2:00, +1,1,7684,2026,1,1,,0,,,11,17,4,11/17/26 3:00, +1,1,7685,2026,1,1,,0,,,11,17,5,11/17/26 4:00, +1,1,7686,2026,1,1,,0,,,11,17,6,11/17/26 5:00, +1,1,7687,2026,1,1,,0,,,11,17,7,11/17/26 6:00, +1,1,7688,2026,1,1,,0,,,11,17,8,11/17/26 7:00, +1,1,7689,2026,1,1,,0,,,11,17,9,11/17/26 8:00, +1,1,7690,2026,1,1,,0,,,11,17,10,11/17/26 9:00, +1,1,7691,2026,1,1,,0,,,11,17,11,11/17/26 10:00, +1,1,7692,2026,1,1,,0,,,11,17,12,11/17/26 11:00, +1,1,7693,2026,1,1,,0,,,11,17,13,11/17/26 12:00, +1,1,7694,2026,1,1,,0,,,11,17,14,11/17/26 13:00, +1,1,7695,2026,1,1,,0,,,11,17,15,11/17/26 14:00, +1,1,7696,2026,1,1,,0,,,11,17,16,11/17/26 15:00, +1,1,7697,2026,1,1,,0,,,11,17,17,11/17/26 16:00, +1,1,7698,2026,1,1,,0,,,11,17,18,11/17/26 17:00, +1,1,7699,2026,1,1,,0,,,11,17,19,11/17/26 18:00, +1,1,7700,2026,1,1,,0,,,11,17,20,11/17/26 19:00, +1,1,7701,2026,1,1,,0,,,11,17,21,11/17/26 20:00, +1,1,7702,2026,1,1,,0,,,11,17,22,11/17/26 21:00, +1,1,7703,2026,1,1,,0,,,11,17,23,11/17/26 22:00, +1,1,7704,2026,1,1,,0,,,11,17,24,11/17/26 23:00, +1,1,7705,2026,1,1,,0,,,11,18,1,11/18/26 0:00, +1,1,7706,2026,1,1,,0,,,11,18,2,11/18/26 1:00, +1,1,7707,2026,1,1,,0,,,11,18,3,11/18/26 2:00, +1,1,7708,2026,1,1,,0,,,11,18,4,11/18/26 3:00, +1,1,7709,2026,1,1,,0,,,11,18,5,11/18/26 4:00, +1,1,7710,2026,1,1,,0,,,11,18,6,11/18/26 5:00, +1,1,7711,2026,1,1,,0,,,11,18,7,11/18/26 6:00, +1,1,7712,2026,1,1,,0,,,11,18,8,11/18/26 7:00, +1,1,7713,2026,1,1,,0,,,11,18,9,11/18/26 8:00, +1,1,7714,2026,1,1,,0,,,11,18,10,11/18/26 9:00, +1,1,7715,2026,1,1,,0,,,11,18,11,11/18/26 10:00, +1,1,7716,2026,1,1,,0,,,11,18,12,11/18/26 11:00, +1,1,7717,2026,1,1,,0,,,11,18,13,11/18/26 12:00, +1,1,7718,2026,1,1,,0,,,11,18,14,11/18/26 13:00, +1,1,7719,2026,1,1,,0,,,11,18,15,11/18/26 14:00, +1,1,7720,2026,1,1,,0,,,11,18,16,11/18/26 15:00, +1,1,7721,2026,1,1,,0,,,11,18,17,11/18/26 16:00, +1,1,7722,2026,1,1,,0,,,11,18,18,11/18/26 17:00, +1,1,7723,2026,1,1,,0,,,11,18,19,11/18/26 18:00, +1,1,7724,2026,1,1,,0,,,11,18,20,11/18/26 19:00, +1,1,7725,2026,1,1,,0,,,11,18,21,11/18/26 20:00, +1,1,7726,2026,1,1,,0,,,11,18,22,11/18/26 21:00, +1,1,7727,2026,1,1,,0,,,11,18,23,11/18/26 22:00, +1,1,7728,2026,1,1,,0,,,11,18,24,11/18/26 23:00, +1,1,7729,2026,1,1,,0,,,11,19,1,11/19/26 0:00, +1,1,7730,2026,1,1,,0,,,11,19,2,11/19/26 1:00, +1,1,7731,2026,1,1,,0,,,11,19,3,11/19/26 2:00, +1,1,7732,2026,1,1,,0,,,11,19,4,11/19/26 3:00, +1,1,7733,2026,1,1,,0,,,11,19,5,11/19/26 4:00, +1,1,7734,2026,1,1,,0,,,11,19,6,11/19/26 5:00, +1,1,7735,2026,1,1,,0,,,11,19,7,11/19/26 6:00, +1,1,7736,2026,1,1,,0,,,11,19,8,11/19/26 7:00, +1,1,7737,2026,1,1,,0,,,11,19,9,11/19/26 8:00, +1,1,7738,2026,1,1,,0,,,11,19,10,11/19/26 9:00, +1,1,7739,2026,1,1,,0,,,11,19,11,11/19/26 10:00, +1,1,7740,2026,1,1,,0,,,11,19,12,11/19/26 11:00, +1,1,7741,2026,1,1,,0,,,11,19,13,11/19/26 12:00, +1,1,7742,2026,1,1,,0,,,11,19,14,11/19/26 13:00, +1,1,7743,2026,1,1,,0,,,11,19,15,11/19/26 14:00, +1,1,7744,2026,1,1,,0,,,11,19,16,11/19/26 15:00, +1,1,7745,2026,1,1,,0,,,11,19,17,11/19/26 16:00, +1,1,7746,2026,1,1,,0,,,11,19,18,11/19/26 17:00, +1,1,7747,2026,1,1,,0,,,11,19,19,11/19/26 18:00, +1,1,7748,2026,1,1,,0,,,11,19,20,11/19/26 19:00, +1,1,7749,2026,1,1,,0,,,11,19,21,11/19/26 20:00, +1,1,7750,2026,1,1,,0,,,11,19,22,11/19/26 21:00, +1,1,7751,2026,1,1,,0,,,11,19,23,11/19/26 22:00, +1,1,7752,2026,1,1,,0,,,11,19,24,11/19/26 23:00, +1,1,7753,2026,1,1,,0,,,11,20,1,11/20/26 0:00, +1,1,7754,2026,1,1,,0,,,11,20,2,11/20/26 1:00, +1,1,7755,2026,1,1,,0,,,11,20,3,11/20/26 2:00, +1,1,7756,2026,1,1,,0,,,11,20,4,11/20/26 3:00, +1,1,7757,2026,1,1,,0,,,11,20,5,11/20/26 4:00, +1,1,7758,2026,1,1,,0,,,11,20,6,11/20/26 5:00, +1,1,7759,2026,1,1,,0,,,11,20,7,11/20/26 6:00, +1,1,7760,2026,1,1,,0,,,11,20,8,11/20/26 7:00, +1,1,7761,2026,1,1,,0,,,11,20,9,11/20/26 8:00, +1,1,7762,2026,1,1,,0,,,11,20,10,11/20/26 9:00, +1,1,7763,2026,1,1,,0,,,11,20,11,11/20/26 10:00, +1,1,7764,2026,1,1,,0,,,11,20,12,11/20/26 11:00, +1,1,7765,2026,1,1,,0,,,11,20,13,11/20/26 12:00, +1,1,7766,2026,1,1,,0,,,11,20,14,11/20/26 13:00, +1,1,7767,2026,1,1,,0,,,11,20,15,11/20/26 14:00, +1,1,7768,2026,1,1,,0,,,11,20,16,11/20/26 15:00, +1,1,7769,2026,1,1,,0,,,11,20,17,11/20/26 16:00, +1,1,7770,2026,1,1,,0,,,11,20,18,11/20/26 17:00, +1,1,7771,2026,1,1,,0,,,11,20,19,11/20/26 18:00, +1,1,7772,2026,1,1,,0,,,11,20,20,11/20/26 19:00, +1,1,7773,2026,1,1,,0,,,11,20,21,11/20/26 20:00, +1,1,7774,2026,1,1,,0,,,11,20,22,11/20/26 21:00, +1,1,7775,2026,1,1,,0,,,11,20,23,11/20/26 22:00, +1,1,7776,2026,1,1,,0,,,11,20,24,11/20/26 23:00, +1,1,7777,2026,1,1,,0,,,11,21,1,11/21/26 0:00, +1,1,7778,2026,1,1,,0,,,11,21,2,11/21/26 1:00, +1,1,7779,2026,1,1,,0,,,11,21,3,11/21/26 2:00, +1,1,7780,2026,1,1,,0,,,11,21,4,11/21/26 3:00, +1,1,7781,2026,1,1,,0,,,11,21,5,11/21/26 4:00, +1,1,7782,2026,1,1,,0,,,11,21,6,11/21/26 5:00, +1,1,7783,2026,1,1,,0,,,11,21,7,11/21/26 6:00, +1,1,7784,2026,1,1,,0,,,11,21,8,11/21/26 7:00, +1,1,7785,2026,1,1,,0,,,11,21,9,11/21/26 8:00, +1,1,7786,2026,1,1,,0,,,11,21,10,11/21/26 9:00, +1,1,7787,2026,1,1,,0,,,11,21,11,11/21/26 10:00, +1,1,7788,2026,1,1,,0,,,11,21,12,11/21/26 11:00, +1,1,7789,2026,1,1,,0,,,11,21,13,11/21/26 12:00, +1,1,7790,2026,1,1,,0,,,11,21,14,11/21/26 13:00, +1,1,7791,2026,1,1,,0,,,11,21,15,11/21/26 14:00, +1,1,7792,2026,1,1,,0,,,11,21,16,11/21/26 15:00, +1,1,7793,2026,1,1,,0,,,11,21,17,11/21/26 16:00, +1,1,7794,2026,1,1,,0,,,11,21,18,11/21/26 17:00, +1,1,7795,2026,1,1,,0,,,11,21,19,11/21/26 18:00, +1,1,7796,2026,1,1,,0,,,11,21,20,11/21/26 19:00, +1,1,7797,2026,1,1,,0,,,11,21,21,11/21/26 20:00, +1,1,7798,2026,1,1,,0,,,11,21,22,11/21/26 21:00, +1,1,7799,2026,1,1,,0,,,11,21,23,11/21/26 22:00, +1,1,7800,2026,1,1,,0,,,11,21,24,11/21/26 23:00, +1,1,7801,2026,1,1,,0,,,11,22,1,11/22/26 0:00, +1,1,7802,2026,1,1,,0,,,11,22,2,11/22/26 1:00, +1,1,7803,2026,1,1,,0,,,11,22,3,11/22/26 2:00, +1,1,7804,2026,1,1,,0,,,11,22,4,11/22/26 3:00, +1,1,7805,2026,1,1,,0,,,11,22,5,11/22/26 4:00, +1,1,7806,2026,1,1,,0,,,11,22,6,11/22/26 5:00, +1,1,7807,2026,1,1,,0,,,11,22,7,11/22/26 6:00, +1,1,7808,2026,1,1,,0,,,11,22,8,11/22/26 7:00, +1,1,7809,2026,1,1,,0,,,11,22,9,11/22/26 8:00, +1,1,7810,2026,1,1,,0,,,11,22,10,11/22/26 9:00, +1,1,7811,2026,1,1,,0,,,11,22,11,11/22/26 10:00, +1,1,7812,2026,1,1,,0,,,11,22,12,11/22/26 11:00, +1,1,7813,2026,1,1,,0,,,11,22,13,11/22/26 12:00, +1,1,7814,2026,1,1,,0,,,11,22,14,11/22/26 13:00, +1,1,7815,2026,1,1,,0,,,11,22,15,11/22/26 14:00, +1,1,7816,2026,1,1,,0,,,11,22,16,11/22/26 15:00, +1,1,7817,2026,1,1,,0,,,11,22,17,11/22/26 16:00, +1,1,7818,2026,1,1,,0,,,11,22,18,11/22/26 17:00, +1,1,7819,2026,1,1,,0,,,11,22,19,11/22/26 18:00, +1,1,7820,2026,1,1,,0,,,11,22,20,11/22/26 19:00, +1,1,7821,2026,1,1,,0,,,11,22,21,11/22/26 20:00, +1,1,7822,2026,1,1,,0,,,11,22,22,11/22/26 21:00, +1,1,7823,2026,1,1,,0,,,11,22,23,11/22/26 22:00, +1,1,7824,2026,1,1,,0,,,11,22,24,11/22/26 23:00, +1,1,7825,2026,1,1,,0,,,11,23,1,11/23/26 0:00, +1,1,7826,2026,1,1,,0,,,11,23,2,11/23/26 1:00, +1,1,7827,2026,1,1,,0,,,11,23,3,11/23/26 2:00, +1,1,7828,2026,1,1,,0,,,11,23,4,11/23/26 3:00, +1,1,7829,2026,1,1,,0,,,11,23,5,11/23/26 4:00, +1,1,7830,2026,1,1,,0,,,11,23,6,11/23/26 5:00, +1,1,7831,2026,1,1,,0,,,11,23,7,11/23/26 6:00, +1,1,7832,2026,1,1,,0,,,11,23,8,11/23/26 7:00, +1,1,7833,2026,1,1,,0,,,11,23,9,11/23/26 8:00, +1,1,7834,2026,1,1,,0,,,11,23,10,11/23/26 9:00, +1,1,7835,2026,1,1,,0,,,11,23,11,11/23/26 10:00, +1,1,7836,2026,1,1,,0,,,11,23,12,11/23/26 11:00, +1,1,7837,2026,1,1,,0,,,11,23,13,11/23/26 12:00, +1,1,7838,2026,1,1,,0,,,11,23,14,11/23/26 13:00, +1,1,7839,2026,1,1,,0,,,11,23,15,11/23/26 14:00, +1,1,7840,2026,1,1,,0,,,11,23,16,11/23/26 15:00, +1,1,7841,2026,1,1,,0,,,11,23,17,11/23/26 16:00, +1,1,7842,2026,1,1,,0,,,11,23,18,11/23/26 17:00, +1,1,7843,2026,1,1,,0,,,11,23,19,11/23/26 18:00, +1,1,7844,2026,1,1,,0,,,11,23,20,11/23/26 19:00, +1,1,7845,2026,1,1,,0,,,11,23,21,11/23/26 20:00, +1,1,7846,2026,1,1,,0,,,11,23,22,11/23/26 21:00, +1,1,7847,2026,1,1,,0,,,11,23,23,11/23/26 22:00, +1,1,7848,2026,1,1,,0,,,11,23,24,11/23/26 23:00, +1,1,7849,2026,1,1,,0,,,11,24,1,11/24/26 0:00, +1,1,7850,2026,1,1,,0,,,11,24,2,11/24/26 1:00, +1,1,7851,2026,1,1,,0,,,11,24,3,11/24/26 2:00, +1,1,7852,2026,1,1,,0,,,11,24,4,11/24/26 3:00, +1,1,7853,2026,1,1,,0,,,11,24,5,11/24/26 4:00, +1,1,7854,2026,1,1,,0,,,11,24,6,11/24/26 5:00, +1,1,7855,2026,1,1,,0,,,11,24,7,11/24/26 6:00, +1,1,7856,2026,1,1,,0,,,11,24,8,11/24/26 7:00, +1,1,7857,2026,1,1,,0,,,11,24,9,11/24/26 8:00, +1,1,7858,2026,1,1,,0,,,11,24,10,11/24/26 9:00, +1,1,7859,2026,1,1,,0,,,11,24,11,11/24/26 10:00, +1,1,7860,2026,1,1,,0,,,11,24,12,11/24/26 11:00, +1,1,7861,2026,1,1,,0,,,11,24,13,11/24/26 12:00, +1,1,7862,2026,1,1,,0,,,11,24,14,11/24/26 13:00, +1,1,7863,2026,1,1,,0,,,11,24,15,11/24/26 14:00, +1,1,7864,2026,1,1,,0,,,11,24,16,11/24/26 15:00, +1,1,7865,2026,1,1,,0,,,11,24,17,11/24/26 16:00, +1,1,7866,2026,1,1,,0,,,11,24,18,11/24/26 17:00, +1,1,7867,2026,1,1,,0,,,11,24,19,11/24/26 18:00, +1,1,7868,2026,1,1,,0,,,11,24,20,11/24/26 19:00, +1,1,7869,2026,1,1,,0,,,11,24,21,11/24/26 20:00, +1,1,7870,2026,1,1,,0,,,11,24,22,11/24/26 21:00, +1,1,7871,2026,1,1,,0,,,11,24,23,11/24/26 22:00, +1,1,7872,2026,1,1,,0,,,11,24,24,11/24/26 23:00, +1,1,7873,2026,1,1,,0,,,11,25,1,11/25/26 0:00, +1,1,7874,2026,1,1,,0,,,11,25,2,11/25/26 1:00, +1,1,7875,2026,1,1,,0,,,11,25,3,11/25/26 2:00, +1,1,7876,2026,1,1,,0,,,11,25,4,11/25/26 3:00, +1,1,7877,2026,1,1,,0,,,11,25,5,11/25/26 4:00, +1,1,7878,2026,1,1,,0,,,11,25,6,11/25/26 5:00, +1,1,7879,2026,1,1,,0,,,11,25,7,11/25/26 6:00, +1,1,7880,2026,1,1,,0,,,11,25,8,11/25/26 7:00, +1,1,7881,2026,1,1,,0,,,11,25,9,11/25/26 8:00, +1,1,7882,2026,1,1,,0,,,11,25,10,11/25/26 9:00, +1,1,7883,2026,1,1,,0,,,11,25,11,11/25/26 10:00, +1,1,7884,2026,1,1,,0,,,11,25,12,11/25/26 11:00, +1,1,7885,2026,1,1,,0,,,11,25,13,11/25/26 12:00, +1,1,7886,2026,1,1,,0,,,11,25,14,11/25/26 13:00, +1,1,7887,2026,1,1,,0,,,11,25,15,11/25/26 14:00, +1,1,7888,2026,1,1,,0,,,11,25,16,11/25/26 15:00, +1,1,7889,2026,1,1,,0,,,11,25,17,11/25/26 16:00, +1,1,7890,2026,1,1,,0,,,11,25,18,11/25/26 17:00, +1,1,7891,2026,1,1,,0,,,11,25,19,11/25/26 18:00, +1,1,7892,2026,1,1,,0,,,11,25,20,11/25/26 19:00, +1,1,7893,2026,1,1,,0,,,11,25,21,11/25/26 20:00, +1,1,7894,2026,1,1,,0,,,11,25,22,11/25/26 21:00, +1,1,7895,2026,1,1,,0,,,11,25,23,11/25/26 22:00, +1,1,7896,2026,1,1,,0,,,11,25,24,11/25/26 23:00, +1,1,7897,2026,1,1,,0,,,11,26,1,11/26/26 0:00, +1,1,7898,2026,1,1,,0,,,11,26,2,11/26/26 1:00, +1,1,7899,2026,1,1,,0,,,11,26,3,11/26/26 2:00, +1,1,7900,2026,1,1,,0,,,11,26,4,11/26/26 3:00, +1,1,7901,2026,1,1,,0,,,11,26,5,11/26/26 4:00, +1,1,7902,2026,1,1,,0,,,11,26,6,11/26/26 5:00, +1,1,7903,2026,1,1,,0,,,11,26,7,11/26/26 6:00, +1,1,7904,2026,1,1,,0,,,11,26,8,11/26/26 7:00, +1,1,7905,2026,1,1,,0,,,11,26,9,11/26/26 8:00, +1,1,7906,2026,1,1,,0,,,11,26,10,11/26/26 9:00, +1,1,7907,2026,1,1,,0,,,11,26,11,11/26/26 10:00, +1,1,7908,2026,1,1,,0,,,11,26,12,11/26/26 11:00, +1,1,7909,2026,1,1,,0,,,11,26,13,11/26/26 12:00, +1,1,7910,2026,1,1,,0,,,11,26,14,11/26/26 13:00, +1,1,7911,2026,1,1,,0,,,11,26,15,11/26/26 14:00, +1,1,7912,2026,1,1,,0,,,11,26,16,11/26/26 15:00, +1,1,7913,2026,1,1,,0,,,11,26,17,11/26/26 16:00, +1,1,7914,2026,1,1,,0,,,11,26,18,11/26/26 17:00, +1,1,7915,2026,1,1,,0,,,11,26,19,11/26/26 18:00, +1,1,7916,2026,1,1,,0,,,11,26,20,11/26/26 19:00, +1,1,7917,2026,1,1,,0,,,11,26,21,11/26/26 20:00, +1,1,7918,2026,1,1,,0,,,11,26,22,11/26/26 21:00, +1,1,7919,2026,1,1,,0,,,11,26,23,11/26/26 22:00, +1,1,7920,2026,1,1,,0,,,11,26,24,11/26/26 23:00, +1,1,7921,2026,1,1,,0,,,11,27,1,11/27/26 0:00, +1,1,7922,2026,1,1,,0,,,11,27,2,11/27/26 1:00, +1,1,7923,2026,1,1,,0,,,11,27,3,11/27/26 2:00, +1,1,7924,2026,1,1,,0,,,11,27,4,11/27/26 3:00, +1,1,7925,2026,1,1,,0,,,11,27,5,11/27/26 4:00, +1,1,7926,2026,1,1,,0,,,11,27,6,11/27/26 5:00, +1,1,7927,2026,1,1,,0,,,11,27,7,11/27/26 6:00, +1,1,7928,2026,1,1,,0,,,11,27,8,11/27/26 7:00, +1,1,7929,2026,1,1,,0,,,11,27,9,11/27/26 8:00, +1,1,7930,2026,1,1,,0,,,11,27,10,11/27/26 9:00, +1,1,7931,2026,1,1,,0,,,11,27,11,11/27/26 10:00, +1,1,7932,2026,1,1,,0,,,11,27,12,11/27/26 11:00, +1,1,7933,2026,1,1,,0,,,11,27,13,11/27/26 12:00, +1,1,7934,2026,1,1,,0,,,11,27,14,11/27/26 13:00, +1,1,7935,2026,1,1,,0,,,11,27,15,11/27/26 14:00, +1,1,7936,2026,1,1,,0,,,11,27,16,11/27/26 15:00, +1,1,7937,2026,1,1,,0,,,11,27,17,11/27/26 16:00, +1,1,7938,2026,1,1,,0,,,11,27,18,11/27/26 17:00, +1,1,7939,2026,1,1,,0,,,11,27,19,11/27/26 18:00, +1,1,7940,2026,1,1,,0,,,11,27,20,11/27/26 19:00, +1,1,7941,2026,1,1,,0,,,11,27,21,11/27/26 20:00, +1,1,7942,2026,1,1,,0,,,11,27,22,11/27/26 21:00, +1,1,7943,2026,1,1,,0,,,11,27,23,11/27/26 22:00, +1,1,7944,2026,1,1,,0,,,11,27,24,11/27/26 23:00, +1,1,7945,2026,1,1,,0,,,11,28,1,11/28/26 0:00, +1,1,7946,2026,1,1,,0,,,11,28,2,11/28/26 1:00, +1,1,7947,2026,1,1,,0,,,11,28,3,11/28/26 2:00, +1,1,7948,2026,1,1,,0,,,11,28,4,11/28/26 3:00, +1,1,7949,2026,1,1,,0,,,11,28,5,11/28/26 4:00, +1,1,7950,2026,1,1,,0,,,11,28,6,11/28/26 5:00, +1,1,7951,2026,1,1,,0,,,11,28,7,11/28/26 6:00, +1,1,7952,2026,1,1,,0,,,11,28,8,11/28/26 7:00, +1,1,7953,2026,1,1,,0,,,11,28,9,11/28/26 8:00, +1,1,7954,2026,1,1,,0,,,11,28,10,11/28/26 9:00, +1,1,7955,2026,1,1,,0,,,11,28,11,11/28/26 10:00, +1,1,7956,2026,1,1,,0,,,11,28,12,11/28/26 11:00, +1,1,7957,2026,1,1,,0,,,11,28,13,11/28/26 12:00, +1,1,7958,2026,1,1,,0,,,11,28,14,11/28/26 13:00, +1,1,7959,2026,1,1,,0,,,11,28,15,11/28/26 14:00, +1,1,7960,2026,1,1,,0,,,11,28,16,11/28/26 15:00, +1,1,7961,2026,1,1,,0,,,11,28,17,11/28/26 16:00, +1,1,7962,2026,1,1,,0,,,11,28,18,11/28/26 17:00, +1,1,7963,2026,1,1,,0,,,11,28,19,11/28/26 18:00, +1,1,7964,2026,1,1,,0,,,11,28,20,11/28/26 19:00, +1,1,7965,2026,1,1,,0,,,11,28,21,11/28/26 20:00, +1,1,7966,2026,1,1,,0,,,11,28,22,11/28/26 21:00, +1,1,7967,2026,1,1,,0,,,11,28,23,11/28/26 22:00, +1,1,7968,2026,1,1,,0,,,11,28,24,11/28/26 23:00, +1,1,7969,2026,1,1,,0,,,11,29,1,11/29/26 0:00, +1,1,7970,2026,1,1,,0,,,11,29,2,11/29/26 1:00, +1,1,7971,2026,1,1,,0,,,11,29,3,11/29/26 2:00, +1,1,7972,2026,1,1,,0,,,11,29,4,11/29/26 3:00, +1,1,7973,2026,1,1,,0,,,11,29,5,11/29/26 4:00, +1,1,7974,2026,1,1,,0,,,11,29,6,11/29/26 5:00, +1,1,7975,2026,1,1,,0,,,11,29,7,11/29/26 6:00, +1,1,7976,2026,1,1,,0,,,11,29,8,11/29/26 7:00, +1,1,7977,2026,1,1,,0,,,11,29,9,11/29/26 8:00, +1,1,7978,2026,1,1,,0,,,11,29,10,11/29/26 9:00, +1,1,7979,2026,1,1,,0,,,11,29,11,11/29/26 10:00, +1,1,7980,2026,1,1,,0,,,11,29,12,11/29/26 11:00, +1,1,7981,2026,1,1,,0,,,11,29,13,11/29/26 12:00, +1,1,7982,2026,1,1,,0,,,11,29,14,11/29/26 13:00, +1,1,7983,2026,1,1,,0,,,11,29,15,11/29/26 14:00, +1,1,7984,2026,1,1,,0,,,11,29,16,11/29/26 15:00, +1,1,7985,2026,1,1,,0,,,11,29,17,11/29/26 16:00, +1,1,7986,2026,1,1,,0,,,11,29,18,11/29/26 17:00, +1,1,7987,2026,1,1,,0,,,11,29,19,11/29/26 18:00, +1,1,7988,2026,1,1,,0,,,11,29,20,11/29/26 19:00, +1,1,7989,2026,1,1,,0,,,11,29,21,11/29/26 20:00, +1,1,7990,2026,1,1,,0,,,11,29,22,11/29/26 21:00, +1,1,7991,2026,1,1,,0,,,11,29,23,11/29/26 22:00, +1,1,7992,2026,1,1,,0,,,11,29,24,11/29/26 23:00, +1,1,7993,2026,1,1,,0,,,11,30,1,11/30/26 0:00, +1,1,7994,2026,1,1,,0,,,11,30,2,11/30/26 1:00, +1,1,7995,2026,1,1,,0,,,11,30,3,11/30/26 2:00, +1,1,7996,2026,1,1,,0,,,11,30,4,11/30/26 3:00, +1,1,7997,2026,1,1,,0,,,11,30,5,11/30/26 4:00, +1,1,7998,2026,1,1,,0,,,11,30,6,11/30/26 5:00, +1,1,7999,2026,1,1,,0,,,11,30,7,11/30/26 6:00, +1,1,8000,2026,1,1,,0,,,11,30,8,11/30/26 7:00, +1,1,8001,2026,1,1,,0,,,11,30,9,11/30/26 8:00, +1,1,8002,2026,1,1,,0,,,11,30,10,11/30/26 9:00, +1,1,8003,2026,1,1,,0,,,11,30,11,11/30/26 10:00, +1,1,8004,2026,1,1,,0,,,11,30,12,11/30/26 11:00, +1,1,8005,2026,1,1,,0,,,11,30,13,11/30/26 12:00, +1,1,8006,2026,1,1,,0,,,11,30,14,11/30/26 13:00, +1,1,8007,2026,1,1,,0,,,11,30,15,11/30/26 14:00, +1,1,8008,2026,1,1,,0,,,11,30,16,11/30/26 15:00, +1,1,8009,2026,1,1,,0,,,11,30,17,11/30/26 16:00, +1,1,8010,2026,1,1,,0,,,11,30,18,11/30/26 17:00, +1,1,8011,2026,1,1,,0,,,11,30,19,11/30/26 18:00, +1,1,8012,2026,1,1,,0,,,11,30,20,11/30/26 19:00, +1,1,8013,2026,1,1,,0,,,11,30,21,11/30/26 20:00, +1,1,8014,2026,1,1,,0,,,11,30,22,11/30/26 21:00, +1,1,8015,2026,1,1,,0,,,11,30,23,11/30/26 22:00, +1,1,8016,2026,1,1,,0,,,11,30,24,11/30/26 23:00, +1,1,8017,2026,1,1,,0,,,12,1,1,12/1/26 0:00, +1,1,8018,2026,1,1,,0,,,12,1,2,12/1/26 1:00, +1,1,8019,2026,1,1,,0,,,12,1,3,12/1/26 2:00, +1,1,8020,2026,1,1,,0,,,12,1,4,12/1/26 3:00, +1,1,8021,2026,1,1,,0,,,12,1,5,12/1/26 4:00, +1,1,8022,2026,1,1,,0,,,12,1,6,12/1/26 5:00, +1,1,8023,2026,1,1,,0,,,12,1,7,12/1/26 6:00, +1,1,8024,2026,1,1,,0,,,12,1,8,12/1/26 7:00, +1,1,8025,2026,1,1,,0,,,12,1,9,12/1/26 8:00, +1,1,8026,2026,1,1,,0,,,12,1,10,12/1/26 9:00, +1,1,8027,2026,1,1,,0,,,12,1,11,12/1/26 10:00, +1,1,8028,2026,1,1,,0,,,12,1,12,12/1/26 11:00, +1,1,8029,2026,1,1,,0,,,12,1,13,12/1/26 12:00, +1,1,8030,2026,1,1,,0,,,12,1,14,12/1/26 13:00, +1,1,8031,2026,1,1,,0,,,12,1,15,12/1/26 14:00, +1,1,8032,2026,1,1,,0,,,12,1,16,12/1/26 15:00, +1,1,8033,2026,1,1,,0,,,12,1,17,12/1/26 16:00, +1,1,8034,2026,1,1,,0,,,12,1,18,12/1/26 17:00, +1,1,8035,2026,1,1,,0,,,12,1,19,12/1/26 18:00, +1,1,8036,2026,1,1,,0,,,12,1,20,12/1/26 19:00, +1,1,8037,2026,1,1,,0,,,12,1,21,12/1/26 20:00, +1,1,8038,2026,1,1,,0,,,12,1,22,12/1/26 21:00, +1,1,8039,2026,1,1,,0,,,12,1,23,12/1/26 22:00, +1,1,8040,2026,1,1,,0,,,12,1,24,12/1/26 23:00, +1,1,8041,2026,1,1,,0,,,12,2,1,12/2/26 0:00, +1,1,8042,2026,1,1,,0,,,12,2,2,12/2/26 1:00, +1,1,8043,2026,1,1,,0,,,12,2,3,12/2/26 2:00, +1,1,8044,2026,1,1,,0,,,12,2,4,12/2/26 3:00, +1,1,8045,2026,1,1,,0,,,12,2,5,12/2/26 4:00, +1,1,8046,2026,1,1,,0,,,12,2,6,12/2/26 5:00, +1,1,8047,2026,1,1,,0,,,12,2,7,12/2/26 6:00, +1,1,8048,2026,1,1,,0,,,12,2,8,12/2/26 7:00, +1,1,8049,2026,1,1,,0,,,12,2,9,12/2/26 8:00, +1,1,8050,2026,1,1,,0,,,12,2,10,12/2/26 9:00, +1,1,8051,2026,1,1,,0,,,12,2,11,12/2/26 10:00, +1,1,8052,2026,1,1,,0,,,12,2,12,12/2/26 11:00, +1,1,8053,2026,1,1,,0,,,12,2,13,12/2/26 12:00, +1,1,8054,2026,1,1,,0,,,12,2,14,12/2/26 13:00, +1,1,8055,2026,1,1,,0,,,12,2,15,12/2/26 14:00, +1,1,8056,2026,1,1,,0,,,12,2,16,12/2/26 15:00, +1,1,8057,2026,1,1,,0,,,12,2,17,12/2/26 16:00, +1,1,8058,2026,1,1,,0,,,12,2,18,12/2/26 17:00, +1,1,8059,2026,1,1,,0,,,12,2,19,12/2/26 18:00, +1,1,8060,2026,1,1,,0,,,12,2,20,12/2/26 19:00, +1,1,8061,2026,1,1,,0,,,12,2,21,12/2/26 20:00, +1,1,8062,2026,1,1,,0,,,12,2,22,12/2/26 21:00, +1,1,8063,2026,1,1,,0,,,12,2,23,12/2/26 22:00, +1,1,8064,2026,1,1,,0,,,12,2,24,12/2/26 23:00, +1,1,8065,2026,1,1,,0,,,12,3,1,12/3/26 0:00, +1,1,8066,2026,1,1,,0,,,12,3,2,12/3/26 1:00, +1,1,8067,2026,1,1,,0,,,12,3,3,12/3/26 2:00, +1,1,8068,2026,1,1,,0,,,12,3,4,12/3/26 3:00, +1,1,8069,2026,1,1,,0,,,12,3,5,12/3/26 4:00, +1,1,8070,2026,1,1,,0,,,12,3,6,12/3/26 5:00, +1,1,8071,2026,1,1,,0,,,12,3,7,12/3/26 6:00, +1,1,8072,2026,1,1,,0,,,12,3,8,12/3/26 7:00, +1,1,8073,2026,1,1,,0,,,12,3,9,12/3/26 8:00, +1,1,8074,2026,1,1,,0,,,12,3,10,12/3/26 9:00, +1,1,8075,2026,1,1,,0,,,12,3,11,12/3/26 10:00, +1,1,8076,2026,1,1,,0,,,12,3,12,12/3/26 11:00, +1,1,8077,2026,1,1,,0,,,12,3,13,12/3/26 12:00, +1,1,8078,2026,1,1,,0,,,12,3,14,12/3/26 13:00, +1,1,8079,2026,1,1,,0,,,12,3,15,12/3/26 14:00, +1,1,8080,2026,1,1,,0,,,12,3,16,12/3/26 15:00, +1,1,8081,2026,1,1,,0,,,12,3,17,12/3/26 16:00, +1,1,8082,2026,1,1,,0,,,12,3,18,12/3/26 17:00, +1,1,8083,2026,1,1,,0,,,12,3,19,12/3/26 18:00, +1,1,8084,2026,1,1,,0,,,12,3,20,12/3/26 19:00, +1,1,8085,2026,1,1,,0,,,12,3,21,12/3/26 20:00, +1,1,8086,2026,1,1,,0,,,12,3,22,12/3/26 21:00, +1,1,8087,2026,1,1,,0,,,12,3,23,12/3/26 22:00, +1,1,8088,2026,1,1,,0,,,12,3,24,12/3/26 23:00, +1,1,8089,2026,1,1,,0,,,12,4,1,12/4/26 0:00, +1,1,8090,2026,1,1,,0,,,12,4,2,12/4/26 1:00, +1,1,8091,2026,1,1,,0,,,12,4,3,12/4/26 2:00, +1,1,8092,2026,1,1,,0,,,12,4,4,12/4/26 3:00, +1,1,8093,2026,1,1,,0,,,12,4,5,12/4/26 4:00, +1,1,8094,2026,1,1,,0,,,12,4,6,12/4/26 5:00, +1,1,8095,2026,1,1,,0,,,12,4,7,12/4/26 6:00, +1,1,8096,2026,1,1,,0,,,12,4,8,12/4/26 7:00, +1,1,8097,2026,1,1,,0,,,12,4,9,12/4/26 8:00, +1,1,8098,2026,1,1,,0,,,12,4,10,12/4/26 9:00, +1,1,8099,2026,1,1,,0,,,12,4,11,12/4/26 10:00, +1,1,8100,2026,1,1,,0,,,12,4,12,12/4/26 11:00, +1,1,8101,2026,1,1,,0,,,12,4,13,12/4/26 12:00, +1,1,8102,2026,1,1,,0,,,12,4,14,12/4/26 13:00, +1,1,8103,2026,1,1,,0,,,12,4,15,12/4/26 14:00, +1,1,8104,2026,1,1,,0,,,12,4,16,12/4/26 15:00, +1,1,8105,2026,1,1,,0,,,12,4,17,12/4/26 16:00, +1,1,8106,2026,1,1,,0,,,12,4,18,12/4/26 17:00, +1,1,8107,2026,1,1,,0,,,12,4,19,12/4/26 18:00, +1,1,8108,2026,1,1,,0,,,12,4,20,12/4/26 19:00, +1,1,8109,2026,1,1,,0,,,12,4,21,12/4/26 20:00, +1,1,8110,2026,1,1,,0,,,12,4,22,12/4/26 21:00, +1,1,8111,2026,1,1,,0,,,12,4,23,12/4/26 22:00, +1,1,8112,2026,1,1,,0,,,12,4,24,12/4/26 23:00, +1,1,8113,2026,1,1,,0,,,12,5,1,12/5/26 0:00, +1,1,8114,2026,1,1,,0,,,12,5,2,12/5/26 1:00, +1,1,8115,2026,1,1,,0,,,12,5,3,12/5/26 2:00, +1,1,8116,2026,1,1,,0,,,12,5,4,12/5/26 3:00, +1,1,8117,2026,1,1,,0,,,12,5,5,12/5/26 4:00, +1,1,8118,2026,1,1,,0,,,12,5,6,12/5/26 5:00, +1,1,8119,2026,1,1,,0,,,12,5,7,12/5/26 6:00, +1,1,8120,2026,1,1,,0,,,12,5,8,12/5/26 7:00, +1,1,8121,2026,1,1,,0,,,12,5,9,12/5/26 8:00, +1,1,8122,2026,1,1,,0,,,12,5,10,12/5/26 9:00, +1,1,8123,2026,1,1,,0,,,12,5,11,12/5/26 10:00, +1,1,8124,2026,1,1,,0,,,12,5,12,12/5/26 11:00, +1,1,8125,2026,1,1,,0,,,12,5,13,12/5/26 12:00, +1,1,8126,2026,1,1,,0,,,12,5,14,12/5/26 13:00, +1,1,8127,2026,1,1,,0,,,12,5,15,12/5/26 14:00, +1,1,8128,2026,1,1,,0,,,12,5,16,12/5/26 15:00, +1,1,8129,2026,1,1,,0,,,12,5,17,12/5/26 16:00, +1,1,8130,2026,1,1,,0,,,12,5,18,12/5/26 17:00, +1,1,8131,2026,1,1,,0,,,12,5,19,12/5/26 18:00, +1,1,8132,2026,1,1,,0,,,12,5,20,12/5/26 19:00, +1,1,8133,2026,1,1,,0,,,12,5,21,12/5/26 20:00, +1,1,8134,2026,1,1,,0,,,12,5,22,12/5/26 21:00, +1,1,8135,2026,1,1,,0,,,12,5,23,12/5/26 22:00, +1,1,8136,2026,1,1,,0,,,12,5,24,12/5/26 23:00, +1,1,8137,2026,1,1,,0,,,12,6,1,12/6/26 0:00, +1,1,8138,2026,1,1,,0,,,12,6,2,12/6/26 1:00, +1,1,8139,2026,1,1,,0,,,12,6,3,12/6/26 2:00, +1,1,8140,2026,1,1,,0,,,12,6,4,12/6/26 3:00, +1,1,8141,2026,1,1,,0,,,12,6,5,12/6/26 4:00, +1,1,8142,2026,1,1,,0,,,12,6,6,12/6/26 5:00, +1,1,8143,2026,1,1,,0,,,12,6,7,12/6/26 6:00, +1,1,8144,2026,1,1,,0,,,12,6,8,12/6/26 7:00, +1,1,8145,2026,1,1,,0,,,12,6,9,12/6/26 8:00, +1,1,8146,2026,1,1,,0,,,12,6,10,12/6/26 9:00, +1,1,8147,2026,1,1,,0,,,12,6,11,12/6/26 10:00, +1,1,8148,2026,1,1,,0,,,12,6,12,12/6/26 11:00, +1,1,8149,2026,1,1,,0,,,12,6,13,12/6/26 12:00, +1,1,8150,2026,1,1,,0,,,12,6,14,12/6/26 13:00, +1,1,8151,2026,1,1,,0,,,12,6,15,12/6/26 14:00, +1,1,8152,2026,1,1,,0,,,12,6,16,12/6/26 15:00, +1,1,8153,2026,1,1,,0,,,12,6,17,12/6/26 16:00, +1,1,8154,2026,1,1,,0,,,12,6,18,12/6/26 17:00, +1,1,8155,2026,1,1,,0,,,12,6,19,12/6/26 18:00, +1,1,8156,2026,1,1,,0,,,12,6,20,12/6/26 19:00, +1,1,8157,2026,1,1,,0,,,12,6,21,12/6/26 20:00, +1,1,8158,2026,1,1,,0,,,12,6,22,12/6/26 21:00, +1,1,8159,2026,1,1,,0,,,12,6,23,12/6/26 22:00, +1,1,8160,2026,1,1,,0,,,12,6,24,12/6/26 23:00, +1,1,8161,2026,1,1,,0,,,12,7,1,12/7/26 0:00, +1,1,8162,2026,1,1,,0,,,12,7,2,12/7/26 1:00, +1,1,8163,2026,1,1,,0,,,12,7,3,12/7/26 2:00, +1,1,8164,2026,1,1,,0,,,12,7,4,12/7/26 3:00, +1,1,8165,2026,1,1,,0,,,12,7,5,12/7/26 4:00, +1,1,8166,2026,1,1,,0,,,12,7,6,12/7/26 5:00, +1,1,8167,2026,1,1,,0,,,12,7,7,12/7/26 6:00, +1,1,8168,2026,1,1,,0,,,12,7,8,12/7/26 7:00, +1,1,8169,2026,1,1,,0,,,12,7,9,12/7/26 8:00, +1,1,8170,2026,1,1,,0,,,12,7,10,12/7/26 9:00, +1,1,8171,2026,1,1,,0,,,12,7,11,12/7/26 10:00, +1,1,8172,2026,1,1,,0,,,12,7,12,12/7/26 11:00, +1,1,8173,2026,1,1,,0,,,12,7,13,12/7/26 12:00, +1,1,8174,2026,1,1,,0,,,12,7,14,12/7/26 13:00, +1,1,8175,2026,1,1,,0,,,12,7,15,12/7/26 14:00, +1,1,8176,2026,1,1,,0,,,12,7,16,12/7/26 15:00, +1,1,8177,2026,1,1,,0,,,12,7,17,12/7/26 16:00, +1,1,8178,2026,1,1,,0,,,12,7,18,12/7/26 17:00, +1,1,8179,2026,1,1,,0,,,12,7,19,12/7/26 18:00, +1,1,8180,2026,1,1,,0,,,12,7,20,12/7/26 19:00, +1,1,8181,2026,1,1,,0,,,12,7,21,12/7/26 20:00, +1,1,8182,2026,1,1,,0,,,12,7,22,12/7/26 21:00, +1,1,8183,2026,1,1,,0,,,12,7,23,12/7/26 22:00, +1,1,8184,2026,1,1,,0,,,12,7,24,12/7/26 23:00, +1,1,8185,2026,1,1,,0,,,12,8,1,12/8/26 0:00, +1,1,8186,2026,1,1,,0,,,12,8,2,12/8/26 1:00, +1,1,8187,2026,1,1,,0,,,12,8,3,12/8/26 2:00, +1,1,8188,2026,1,1,,0,,,12,8,4,12/8/26 3:00, +1,1,8189,2026,1,1,,0,,,12,8,5,12/8/26 4:00, +1,1,8190,2026,1,1,,0,,,12,8,6,12/8/26 5:00, +1,1,8191,2026,1,1,,0,,,12,8,7,12/8/26 6:00, +1,1,8192,2026,1,1,,0,,,12,8,8,12/8/26 7:00, +1,1,8193,2026,1,1,,0,,,12,8,9,12/8/26 8:00, +1,1,8194,2026,1,1,,0,,,12,8,10,12/8/26 9:00, +1,1,8195,2026,1,1,,0,,,12,8,11,12/8/26 10:00, +1,1,8196,2026,1,1,,0,,,12,8,12,12/8/26 11:00, +1,1,8197,2026,1,1,,0,,,12,8,13,12/8/26 12:00, +1,1,8198,2026,1,1,,0,,,12,8,14,12/8/26 13:00, +1,1,8199,2026,1,1,,0,,,12,8,15,12/8/26 14:00, +1,1,8200,2026,1,1,,0,,,12,8,16,12/8/26 15:00, +1,1,8201,2026,1,1,,0,,,12,8,17,12/8/26 16:00, +1,1,8202,2026,1,1,,0,,,12,8,18,12/8/26 17:00, +1,1,8203,2026,1,1,,0,,,12,8,19,12/8/26 18:00, +1,1,8204,2026,1,1,,0,,,12,8,20,12/8/26 19:00, +1,1,8205,2026,1,1,,0,,,12,8,21,12/8/26 20:00, +1,1,8206,2026,1,1,,0,,,12,8,22,12/8/26 21:00, +1,1,8207,2026,1,1,,0,,,12,8,23,12/8/26 22:00, +1,1,8208,2026,1,1,,0,,,12,8,24,12/8/26 23:00, +1,1,8209,2026,1,1,,0,,,12,9,1,12/9/26 0:00, +1,1,8210,2026,1,1,,0,,,12,9,2,12/9/26 1:00, +1,1,8211,2026,1,1,,0,,,12,9,3,12/9/26 2:00, +1,1,8212,2026,1,1,,0,,,12,9,4,12/9/26 3:00, +1,1,8213,2026,1,1,,0,,,12,9,5,12/9/26 4:00, +1,1,8214,2026,1,1,,0,,,12,9,6,12/9/26 5:00, +1,1,8215,2026,1,1,,0,,,12,9,7,12/9/26 6:00, +1,1,8216,2026,1,1,,0,,,12,9,8,12/9/26 7:00, +1,1,8217,2026,1,1,,0,,,12,9,9,12/9/26 8:00, +1,1,8218,2026,1,1,,0,,,12,9,10,12/9/26 9:00, +1,1,8219,2026,1,1,,0,,,12,9,11,12/9/26 10:00, +1,1,8220,2026,1,1,,0,,,12,9,12,12/9/26 11:00, +1,1,8221,2026,1,1,,0,,,12,9,13,12/9/26 12:00, +1,1,8222,2026,1,1,,0,,,12,9,14,12/9/26 13:00, +1,1,8223,2026,1,1,,0,,,12,9,15,12/9/26 14:00, +1,1,8224,2026,1,1,,0,,,12,9,16,12/9/26 15:00, +1,1,8225,2026,1,1,,0,,,12,9,17,12/9/26 16:00, +1,1,8226,2026,1,1,,0,,,12,9,18,12/9/26 17:00, +1,1,8227,2026,1,1,,0,,,12,9,19,12/9/26 18:00, +1,1,8228,2026,1,1,,0,,,12,9,20,12/9/26 19:00, +1,1,8229,2026,1,1,,0,,,12,9,21,12/9/26 20:00, +1,1,8230,2026,1,1,,0,,,12,9,22,12/9/26 21:00, +1,1,8231,2026,1,1,,0,,,12,9,23,12/9/26 22:00, +1,1,8232,2026,1,1,,0,,,12,9,24,12/9/26 23:00, +1,1,8233,2026,1,1,,0,,,12,10,1,12/10/26 0:00, +1,1,8234,2026,1,1,,0,,,12,10,2,12/10/26 1:00, +1,1,8235,2026,1,1,,0,,,12,10,3,12/10/26 2:00, +1,1,8236,2026,1,1,,0,,,12,10,4,12/10/26 3:00, +1,1,8237,2026,1,1,,0,,,12,10,5,12/10/26 4:00, +1,1,8238,2026,1,1,,0,,,12,10,6,12/10/26 5:00, +1,1,8239,2026,1,1,,0,,,12,10,7,12/10/26 6:00, +1,1,8240,2026,1,1,,0,,,12,10,8,12/10/26 7:00, +1,1,8241,2026,1,1,,0,,,12,10,9,12/10/26 8:00, +1,1,8242,2026,1,1,,0,,,12,10,10,12/10/26 9:00, +1,1,8243,2026,1,1,,0,,,12,10,11,12/10/26 10:00, +1,1,8244,2026,1,1,,0,,,12,10,12,12/10/26 11:00, +1,1,8245,2026,1,1,,0,,,12,10,13,12/10/26 12:00, +1,1,8246,2026,1,1,,0,,,12,10,14,12/10/26 13:00, +1,1,8247,2026,1,1,,0,,,12,10,15,12/10/26 14:00, +1,1,8248,2026,1,1,,0,,,12,10,16,12/10/26 15:00, +1,1,8249,2026,1,1,,0,,,12,10,17,12/10/26 16:00, +1,1,8250,2026,1,1,,0,,,12,10,18,12/10/26 17:00, +1,1,8251,2026,1,1,,0,,,12,10,19,12/10/26 18:00, +1,1,8252,2026,1,1,,0,,,12,10,20,12/10/26 19:00, +1,1,8253,2026,1,1,,0,,,12,10,21,12/10/26 20:00, +1,1,8254,2026,1,1,,0,,,12,10,22,12/10/26 21:00, +1,1,8255,2026,1,1,,0,,,12,10,23,12/10/26 22:00, +1,1,8256,2026,1,1,,0,,,12,10,24,12/10/26 23:00, +1,1,8257,2026,1,1,,0,,,12,11,1,12/11/26 0:00, +1,1,8258,2026,1,1,,0,,,12,11,2,12/11/26 1:00, +1,1,8259,2026,1,1,,0,,,12,11,3,12/11/26 2:00, +1,1,8260,2026,1,1,,0,,,12,11,4,12/11/26 3:00, +1,1,8261,2026,1,1,,0,,,12,11,5,12/11/26 4:00, +1,1,8262,2026,1,1,,0,,,12,11,6,12/11/26 5:00, +1,1,8263,2026,1,1,,0,,,12,11,7,12/11/26 6:00, +1,1,8264,2026,1,1,,0,,,12,11,8,12/11/26 7:00, +1,1,8265,2026,1,1,,0,,,12,11,9,12/11/26 8:00, +1,1,8266,2026,1,1,,0,,,12,11,10,12/11/26 9:00, +1,1,8267,2026,1,1,,0,,,12,11,11,12/11/26 10:00, +1,1,8268,2026,1,1,,0,,,12,11,12,12/11/26 11:00, +1,1,8269,2026,1,1,,0,,,12,11,13,12/11/26 12:00, +1,1,8270,2026,1,1,,0,,,12,11,14,12/11/26 13:00, +1,1,8271,2026,1,1,,0,,,12,11,15,12/11/26 14:00, +1,1,8272,2026,1,1,,0,,,12,11,16,12/11/26 15:00, +1,1,8273,2026,1,1,,0,,,12,11,17,12/11/26 16:00, +1,1,8274,2026,1,1,,0,,,12,11,18,12/11/26 17:00, +1,1,8275,2026,1,1,,0,,,12,11,19,12/11/26 18:00, +1,1,8276,2026,1,1,,0,,,12,11,20,12/11/26 19:00, +1,1,8277,2026,1,1,,0,,,12,11,21,12/11/26 20:00, +1,1,8278,2026,1,1,,0,,,12,11,22,12/11/26 21:00, +1,1,8279,2026,1,1,,0,,,12,11,23,12/11/26 22:00, +1,1,8280,2026,1,1,,0,,,12,11,24,12/11/26 23:00, +1,1,8281,2026,1,1,,0,,,12,12,1,12/12/26 0:00, +1,1,8282,2026,1,1,,0,,,12,12,2,12/12/26 1:00, +1,1,8283,2026,1,1,,0,,,12,12,3,12/12/26 2:00, +1,1,8284,2026,1,1,,0,,,12,12,4,12/12/26 3:00, +1,1,8285,2026,1,1,,0,,,12,12,5,12/12/26 4:00, +1,1,8286,2026,1,1,,0,,,12,12,6,12/12/26 5:00, +1,1,8287,2026,1,1,,0,,,12,12,7,12/12/26 6:00, +1,1,8288,2026,1,1,,0,,,12,12,8,12/12/26 7:00, +1,1,8289,2026,1,1,,0,,,12,12,9,12/12/26 8:00, +1,1,8290,2026,1,1,,0,,,12,12,10,12/12/26 9:00, +1,1,8291,2026,1,1,,0,,,12,12,11,12/12/26 10:00, +1,1,8292,2026,1,1,,0,,,12,12,12,12/12/26 11:00, +1,1,8293,2026,1,1,,0,,,12,12,13,12/12/26 12:00, +1,1,8294,2026,1,1,,0,,,12,12,14,12/12/26 13:00, +1,1,8295,2026,1,1,,0,,,12,12,15,12/12/26 14:00, +1,1,8296,2026,1,1,,0,,,12,12,16,12/12/26 15:00, +1,1,8297,2026,1,1,,0,,,12,12,17,12/12/26 16:00, +1,1,8298,2026,1,1,,0,,,12,12,18,12/12/26 17:00, +1,1,8299,2026,1,1,,0,,,12,12,19,12/12/26 18:00, +1,1,8300,2026,1,1,,0,,,12,12,20,12/12/26 19:00, +1,1,8301,2026,1,1,,0,,,12,12,21,12/12/26 20:00, +1,1,8302,2026,1,1,,0,,,12,12,22,12/12/26 21:00, +1,1,8303,2026,1,1,,0,,,12,12,23,12/12/26 22:00, +1,1,8304,2026,1,1,,0,,,12,12,24,12/12/26 23:00, +1,1,8305,2026,1,1,,0,,,12,13,1,12/13/26 0:00, +1,1,8306,2026,1,1,,0,,,12,13,2,12/13/26 1:00, +1,1,8307,2026,1,1,,0,,,12,13,3,12/13/26 2:00, +1,1,8308,2026,1,1,,0,,,12,13,4,12/13/26 3:00, +1,1,8309,2026,1,1,,0,,,12,13,5,12/13/26 4:00, +1,1,8310,2026,1,1,,0,,,12,13,6,12/13/26 5:00, +1,1,8311,2026,1,1,,0,,,12,13,7,12/13/26 6:00, +1,1,8312,2026,1,1,,0,,,12,13,8,12/13/26 7:00, +1,1,8313,2026,1,1,,0,,,12,13,9,12/13/26 8:00, +1,1,8314,2026,1,1,,0,,,12,13,10,12/13/26 9:00, +1,1,8315,2026,1,1,,0,,,12,13,11,12/13/26 10:00, +1,1,8316,2026,1,1,,0,,,12,13,12,12/13/26 11:00, +1,1,8317,2026,1,1,,0,,,12,13,13,12/13/26 12:00, +1,1,8318,2026,1,1,,0,,,12,13,14,12/13/26 13:00, +1,1,8319,2026,1,1,,0,,,12,13,15,12/13/26 14:00, +1,1,8320,2026,1,1,,0,,,12,13,16,12/13/26 15:00, +1,1,8321,2026,1,1,,0,,,12,13,17,12/13/26 16:00, +1,1,8322,2026,1,1,,0,,,12,13,18,12/13/26 17:00, +1,1,8323,2026,1,1,,0,,,12,13,19,12/13/26 18:00, +1,1,8324,2026,1,1,,0,,,12,13,20,12/13/26 19:00, +1,1,8325,2026,1,1,,0,,,12,13,21,12/13/26 20:00, +1,1,8326,2026,1,1,,0,,,12,13,22,12/13/26 21:00, +1,1,8327,2026,1,1,,0,,,12,13,23,12/13/26 22:00, +1,1,8328,2026,1,1,,0,,,12,13,24,12/13/26 23:00, +1,1,8329,2026,1,1,,0,,,12,14,1,12/14/26 0:00, +1,1,8330,2026,1,1,,0,,,12,14,2,12/14/26 1:00, +1,1,8331,2026,1,1,,0,,,12,14,3,12/14/26 2:00, +1,1,8332,2026,1,1,,0,,,12,14,4,12/14/26 3:00, +1,1,8333,2026,1,1,,0,,,12,14,5,12/14/26 4:00, +1,1,8334,2026,1,1,,0,,,12,14,6,12/14/26 5:00, +1,1,8335,2026,1,1,,0,,,12,14,7,12/14/26 6:00, +1,1,8336,2026,1,1,,0,,,12,14,8,12/14/26 7:00, +1,1,8337,2026,1,1,,0,,,12,14,9,12/14/26 8:00, +1,1,8338,2026,1,1,,0,,,12,14,10,12/14/26 9:00, +1,1,8339,2026,1,1,,0,,,12,14,11,12/14/26 10:00, +1,1,8340,2026,1,1,,0,,,12,14,12,12/14/26 11:00, +1,1,8341,2026,1,1,,0,,,12,14,13,12/14/26 12:00, +1,1,8342,2026,1,1,,0,,,12,14,14,12/14/26 13:00, +1,1,8343,2026,1,1,,0,,,12,14,15,12/14/26 14:00, +1,1,8344,2026,1,1,,0,,,12,14,16,12/14/26 15:00, +1,1,8345,2026,1,1,,0,,,12,14,17,12/14/26 16:00, +1,1,8346,2026,1,1,,0,,,12,14,18,12/14/26 17:00, +1,1,8347,2026,1,1,,0,,,12,14,19,12/14/26 18:00, +1,1,8348,2026,1,1,,0,,,12,14,20,12/14/26 19:00, +1,1,8349,2026,1,1,,0,,,12,14,21,12/14/26 20:00, +1,1,8350,2026,1,1,,0,,,12,14,22,12/14/26 21:00, +1,1,8351,2026,1,1,,0,,,12,14,23,12/14/26 22:00, +1,1,8352,2026,1,1,,0,,,12,14,24,12/14/26 23:00, +1,1,8353,2026,1,1,,0,,,12,15,1,12/15/26 0:00, +1,1,8354,2026,1,1,,0,,,12,15,2,12/15/26 1:00, +1,1,8355,2026,1,1,,0,,,12,15,3,12/15/26 2:00, +1,1,8356,2026,1,1,,0,,,12,15,4,12/15/26 3:00, +1,1,8357,2026,1,1,,0,,,12,15,5,12/15/26 4:00, +1,1,8358,2026,1,1,,0,,,12,15,6,12/15/26 5:00, +1,1,8359,2026,1,1,,0,,,12,15,7,12/15/26 6:00, +1,1,8360,2026,1,1,,0,,,12,15,8,12/15/26 7:00, +1,1,8361,2026,1,1,,0,,,12,15,9,12/15/26 8:00, +1,1,8362,2026,1,1,,0,,,12,15,10,12/15/26 9:00, +1,1,8363,2026,1,1,,0,,,12,15,11,12/15/26 10:00, +1,1,8364,2026,1,1,,0,,,12,15,12,12/15/26 11:00, +1,1,8365,2026,1,1,,0,,,12,15,13,12/15/26 12:00, +1,1,8366,2026,1,1,,0,,,12,15,14,12/15/26 13:00, +1,1,8367,2026,1,1,,0,,,12,15,15,12/15/26 14:00, +1,1,8368,2026,1,1,,0,,,12,15,16,12/15/26 15:00, +1,1,8369,2026,1,1,,0,,,12,15,17,12/15/26 16:00, +1,1,8370,2026,1,1,,0,,,12,15,18,12/15/26 17:00, +1,1,8371,2026,1,1,,0,,,12,15,19,12/15/26 18:00, +1,1,8372,2026,1,1,,0,,,12,15,20,12/15/26 19:00, +1,1,8373,2026,1,1,,0,,,12,15,21,12/15/26 20:00, +1,1,8374,2026,1,1,,0,,,12,15,22,12/15/26 21:00, +1,1,8375,2026,1,1,,0,,,12,15,23,12/15/26 22:00, +1,1,8376,2026,1,1,,0,,,12,15,24,12/15/26 23:00, +1,1,8377,2026,1,1,,0,,,12,16,1,12/16/26 0:00, +1,1,8378,2026,1,1,,0,,,12,16,2,12/16/26 1:00, +1,1,8379,2026,1,1,,0,,,12,16,3,12/16/26 2:00, +1,1,8380,2026,1,1,,0,,,12,16,4,12/16/26 3:00, +1,1,8381,2026,1,1,,0,,,12,16,5,12/16/26 4:00, +1,1,8382,2026,1,1,,0,,,12,16,6,12/16/26 5:00, +1,1,8383,2026,1,1,,0,,,12,16,7,12/16/26 6:00, +1,1,8384,2026,1,1,,0,,,12,16,8,12/16/26 7:00, +1,1,8385,2026,1,1,,0,,,12,16,9,12/16/26 8:00, +1,1,8386,2026,1,1,,0,,,12,16,10,12/16/26 9:00, +1,1,8387,2026,1,1,,0,,,12,16,11,12/16/26 10:00, +1,1,8388,2026,1,1,,0,,,12,16,12,12/16/26 11:00, +1,1,8389,2026,1,1,,0,,,12,16,13,12/16/26 12:00, +1,1,8390,2026,1,1,,0,,,12,16,14,12/16/26 13:00, +1,1,8391,2026,1,1,,0,,,12,16,15,12/16/26 14:00, +1,1,8392,2026,1,1,,0,,,12,16,16,12/16/26 15:00, +1,1,8393,2026,1,1,,0,,,12,16,17,12/16/26 16:00, +1,1,8394,2026,1,1,,0,,,12,16,18,12/16/26 17:00, +1,1,8395,2026,1,1,,0,,,12,16,19,12/16/26 18:00, +1,1,8396,2026,1,1,,0,,,12,16,20,12/16/26 19:00, +1,1,8397,2026,1,1,,0,,,12,16,21,12/16/26 20:00, +1,1,8398,2026,1,1,,0,,,12,16,22,12/16/26 21:00, +1,1,8399,2026,1,1,,0,,,12,16,23,12/16/26 22:00, +1,1,8400,2026,1,1,,0,,,12,16,24,12/16/26 23:00, +1,1,8401,2026,1,1,,0,,,12,17,1,12/17/26 0:00, +1,1,8402,2026,1,1,,0,,,12,17,2,12/17/26 1:00, +1,1,8403,2026,1,1,,0,,,12,17,3,12/17/26 2:00, +1,1,8404,2026,1,1,,0,,,12,17,4,12/17/26 3:00, +1,1,8405,2026,1,1,,0,,,12,17,5,12/17/26 4:00, +1,1,8406,2026,1,1,,0,,,12,17,6,12/17/26 5:00, +1,1,8407,2026,1,1,,0,,,12,17,7,12/17/26 6:00, +1,1,8408,2026,1,1,,0,,,12,17,8,12/17/26 7:00, +1,1,8409,2026,1,1,,0,,,12,17,9,12/17/26 8:00, +1,1,8410,2026,1,1,,0,,,12,17,10,12/17/26 9:00, +1,1,8411,2026,1,1,,0,,,12,17,11,12/17/26 10:00, +1,1,8412,2026,1,1,,0,,,12,17,12,12/17/26 11:00, +1,1,8413,2026,1,1,,0,,,12,17,13,12/17/26 12:00, +1,1,8414,2026,1,1,,0,,,12,17,14,12/17/26 13:00, +1,1,8415,2026,1,1,,0,,,12,17,15,12/17/26 14:00, +1,1,8416,2026,1,1,,0,,,12,17,16,12/17/26 15:00, +1,1,8417,2026,1,1,,0,,,12,17,17,12/17/26 16:00, +1,1,8418,2026,1,1,,0,,,12,17,18,12/17/26 17:00, +1,1,8419,2026,1,1,,0,,,12,17,19,12/17/26 18:00, +1,1,8420,2026,1,1,,0,,,12,17,20,12/17/26 19:00, +1,1,8421,2026,1,1,,0,,,12,17,21,12/17/26 20:00, +1,1,8422,2026,1,1,,0,,,12,17,22,12/17/26 21:00, +1,1,8423,2026,1,1,,0,,,12,17,23,12/17/26 22:00, +1,1,8424,2026,1,1,,0,,,12,17,24,12/17/26 23:00, +1,1,8425,2026,1,1,,0,,,12,18,1,12/18/26 0:00, +1,1,8426,2026,1,1,,0,,,12,18,2,12/18/26 1:00, +1,1,8427,2026,1,1,,0,,,12,18,3,12/18/26 2:00, +1,1,8428,2026,1,1,,0,,,12,18,4,12/18/26 3:00, +1,1,8429,2026,1,1,,0,,,12,18,5,12/18/26 4:00, +1,1,8430,2026,1,1,,0,,,12,18,6,12/18/26 5:00, +1,1,8431,2026,1,1,,0,,,12,18,7,12/18/26 6:00, +1,1,8432,2026,1,1,,0,,,12,18,8,12/18/26 7:00, +1,1,8433,2026,1,1,,0,,,12,18,9,12/18/26 8:00, +1,1,8434,2026,1,1,,0,,,12,18,10,12/18/26 9:00, +1,1,8435,2026,1,1,,0,,,12,18,11,12/18/26 10:00, +1,1,8436,2026,1,1,,0,,,12,18,12,12/18/26 11:00, +1,1,8437,2026,1,1,,0,,,12,18,13,12/18/26 12:00, +1,1,8438,2026,1,1,,0,,,12,18,14,12/18/26 13:00, +1,1,8439,2026,1,1,,0,,,12,18,15,12/18/26 14:00, +1,1,8440,2026,1,1,,0,,,12,18,16,12/18/26 15:00, +1,1,8441,2026,1,1,,0,,,12,18,17,12/18/26 16:00, +1,1,8442,2026,1,1,,0,,,12,18,18,12/18/26 17:00, +1,1,8443,2026,1,1,,0,,,12,18,19,12/18/26 18:00, +1,1,8444,2026,1,1,,0,,,12,18,20,12/18/26 19:00, +1,1,8445,2026,1,1,,0,,,12,18,21,12/18/26 20:00, +1,1,8446,2026,1,1,,0,,,12,18,22,12/18/26 21:00, +1,1,8447,2026,1,1,,0,,,12,18,23,12/18/26 22:00, +1,1,8448,2026,1,1,,0,,,12,18,24,12/18/26 23:00, +1,1,8449,2026,1,1,,0,,,12,19,1,12/19/26 0:00, +1,1,8450,2026,1,1,,0,,,12,19,2,12/19/26 1:00, +1,1,8451,2026,1,1,,0,,,12,19,3,12/19/26 2:00, +1,1,8452,2026,1,1,,0,,,12,19,4,12/19/26 3:00, +1,1,8453,2026,1,1,,0,,,12,19,5,12/19/26 4:00, +1,1,8454,2026,1,1,,0,,,12,19,6,12/19/26 5:00, +1,1,8455,2026,1,1,,0,,,12,19,7,12/19/26 6:00, +1,1,8456,2026,1,1,,0,,,12,19,8,12/19/26 7:00, +1,1,8457,2026,1,1,,0,,,12,19,9,12/19/26 8:00, +1,1,8458,2026,1,1,,0,,,12,19,10,12/19/26 9:00, +1,1,8459,2026,1,1,,0,,,12,19,11,12/19/26 10:00, +1,1,8460,2026,1,1,,0,,,12,19,12,12/19/26 11:00, +1,1,8461,2026,1,1,,0,,,12,19,13,12/19/26 12:00, +1,1,8462,2026,1,1,,0,,,12,19,14,12/19/26 13:00, +1,1,8463,2026,1,1,,0,,,12,19,15,12/19/26 14:00, +1,1,8464,2026,1,1,,0,,,12,19,16,12/19/26 15:00, +1,1,8465,2026,1,1,,0,,,12,19,17,12/19/26 16:00, +1,1,8466,2026,1,1,,0,,,12,19,18,12/19/26 17:00, +1,1,8467,2026,1,1,,0,,,12,19,19,12/19/26 18:00, +1,1,8468,2026,1,1,,0,,,12,19,20,12/19/26 19:00, +1,1,8469,2026,1,1,,0,,,12,19,21,12/19/26 20:00, +1,1,8470,2026,1,1,,0,,,12,19,22,12/19/26 21:00, +1,1,8471,2026,1,1,,0,,,12,19,23,12/19/26 22:00, +1,1,8472,2026,1,1,,0,,,12,19,24,12/19/26 23:00, +1,1,8473,2026,1,1,,0,,,12,20,1,12/20/26 0:00, +1,1,8474,2026,1,1,,0,,,12,20,2,12/20/26 1:00, +1,1,8475,2026,1,1,,0,,,12,20,3,12/20/26 2:00, +1,1,8476,2026,1,1,,0,,,12,20,4,12/20/26 3:00, +1,1,8477,2026,1,1,,0,,,12,20,5,12/20/26 4:00, +1,1,8478,2026,1,1,,0,,,12,20,6,12/20/26 5:00, +1,1,8479,2026,1,1,,0,,,12,20,7,12/20/26 6:00, +1,1,8480,2026,1,1,,0,,,12,20,8,12/20/26 7:00, +1,1,8481,2026,1,1,,0,,,12,20,9,12/20/26 8:00, +1,1,8482,2026,1,1,,0,,,12,20,10,12/20/26 9:00, +1,1,8483,2026,1,1,,0,,,12,20,11,12/20/26 10:00, +1,1,8484,2026,1,1,,0,,,12,20,12,12/20/26 11:00, +1,1,8485,2026,1,1,,0,,,12,20,13,12/20/26 12:00, +1,1,8486,2026,1,1,,0,,,12,20,14,12/20/26 13:00, +1,1,8487,2026,1,1,,0,,,12,20,15,12/20/26 14:00, +1,1,8488,2026,1,1,,0,,,12,20,16,12/20/26 15:00, +1,1,8489,2026,1,1,,0,,,12,20,17,12/20/26 16:00, +1,1,8490,2026,1,1,,0,,,12,20,18,12/20/26 17:00, +1,1,8491,2026,1,1,,0,,,12,20,19,12/20/26 18:00, +1,1,8492,2026,1,1,,0,,,12,20,20,12/20/26 19:00, +1,1,8493,2026,1,1,,0,,,12,20,21,12/20/26 20:00, +1,1,8494,2026,1,1,,0,,,12,20,22,12/20/26 21:00, +1,1,8495,2026,1,1,,0,,,12,20,23,12/20/26 22:00, +1,1,8496,2026,1,1,,0,,,12,20,24,12/20/26 23:00, +1,1,8497,2026,1,1,,0,,,12,21,1,12/21/26 0:00, +1,1,8498,2026,1,1,,0,,,12,21,2,12/21/26 1:00, +1,1,8499,2026,1,1,,0,,,12,21,3,12/21/26 2:00, +1,1,8500,2026,1,1,,0,,,12,21,4,12/21/26 3:00, +1,1,8501,2026,1,1,,0,,,12,21,5,12/21/26 4:00, +1,1,8502,2026,1,1,,0,,,12,21,6,12/21/26 5:00, +1,1,8503,2026,1,1,,0,,,12,21,7,12/21/26 6:00, +1,1,8504,2026,1,1,,0,,,12,21,8,12/21/26 7:00, +1,1,8505,2026,1,1,,0,,,12,21,9,12/21/26 8:00, +1,1,8506,2026,1,1,,0,,,12,21,10,12/21/26 9:00, +1,1,8507,2026,1,1,,0,,,12,21,11,12/21/26 10:00, +1,1,8508,2026,1,1,,0,,,12,21,12,12/21/26 11:00, +1,1,8509,2026,1,1,,0,,,12,21,13,12/21/26 12:00, +1,1,8510,2026,1,1,,0,,,12,21,14,12/21/26 13:00, +1,1,8511,2026,1,1,,0,,,12,21,15,12/21/26 14:00, +1,1,8512,2026,1,1,,0,,,12,21,16,12/21/26 15:00, +1,1,8513,2026,1,1,,0,,,12,21,17,12/21/26 16:00, +1,1,8514,2026,1,1,,0,,,12,21,18,12/21/26 17:00, +1,1,8515,2026,1,1,,0,,,12,21,19,12/21/26 18:00, +1,1,8516,2026,1,1,,0,,,12,21,20,12/21/26 19:00, +1,1,8517,2026,1,1,,0,,,12,21,21,12/21/26 20:00, +1,1,8518,2026,1,1,,0,,,12,21,22,12/21/26 21:00, +1,1,8519,2026,1,1,,0,,,12,21,23,12/21/26 22:00, +1,1,8520,2026,1,1,,0,,,12,21,24,12/21/26 23:00, +1,1,8521,2026,1,1,,0,,,12,22,1,12/22/26 0:00, +1,1,8522,2026,1,1,,0,,,12,22,2,12/22/26 1:00, +1,1,8523,2026,1,1,,0,,,12,22,3,12/22/26 2:00, +1,1,8524,2026,1,1,,0,,,12,22,4,12/22/26 3:00, +1,1,8525,2026,1,1,,0,,,12,22,5,12/22/26 4:00, +1,1,8526,2026,1,1,,0,,,12,22,6,12/22/26 5:00, +1,1,8527,2026,1,1,,0,,,12,22,7,12/22/26 6:00, +1,1,8528,2026,1,1,,0,,,12,22,8,12/22/26 7:00, +1,1,8529,2026,1,1,,0,,,12,22,9,12/22/26 8:00, +1,1,8530,2026,1,1,,0,,,12,22,10,12/22/26 9:00, +1,1,8531,2026,1,1,,0,,,12,22,11,12/22/26 10:00, +1,1,8532,2026,1,1,,0,,,12,22,12,12/22/26 11:00, +1,1,8533,2026,1,1,,0,,,12,22,13,12/22/26 12:00, +1,1,8534,2026,1,1,,0,,,12,22,14,12/22/26 13:00, +1,1,8535,2026,1,1,,0,,,12,22,15,12/22/26 14:00, +1,1,8536,2026,1,1,,0,,,12,22,16,12/22/26 15:00, +1,1,8537,2026,1,1,,0,,,12,22,17,12/22/26 16:00, +1,1,8538,2026,1,1,,0,,,12,22,18,12/22/26 17:00, +1,1,8539,2026,1,1,,0,,,12,22,19,12/22/26 18:00, +1,1,8540,2026,1,1,,0,,,12,22,20,12/22/26 19:00, +1,1,8541,2026,1,1,,0,,,12,22,21,12/22/26 20:00, +1,1,8542,2026,1,1,,0,,,12,22,22,12/22/26 21:00, +1,1,8543,2026,1,1,,0,,,12,22,23,12/22/26 22:00, +1,1,8544,2026,1,1,,0,,,12,22,24,12/22/26 23:00, +1,1,8545,2026,1,1,,0,,,12,23,1,12/23/26 0:00, +1,1,8546,2026,1,1,,0,,,12,23,2,12/23/26 1:00, +1,1,8547,2026,1,1,,0,,,12,23,3,12/23/26 2:00, +1,1,8548,2026,1,1,,0,,,12,23,4,12/23/26 3:00, +1,1,8549,2026,1,1,,0,,,12,23,5,12/23/26 4:00, +1,1,8550,2026,1,1,,0,,,12,23,6,12/23/26 5:00, +1,1,8551,2026,1,1,,0,,,12,23,7,12/23/26 6:00, +1,1,8552,2026,1,1,,0,,,12,23,8,12/23/26 7:00, +1,1,8553,2026,1,1,,0,,,12,23,9,12/23/26 8:00, +1,1,8554,2026,1,1,,0,,,12,23,10,12/23/26 9:00, +1,1,8555,2026,1,1,,0,,,12,23,11,12/23/26 10:00, +1,1,8556,2026,1,1,,0,,,12,23,12,12/23/26 11:00, +1,1,8557,2026,1,1,,0,,,12,23,13,12/23/26 12:00, +1,1,8558,2026,1,1,,0,,,12,23,14,12/23/26 13:00, +1,1,8559,2026,1,1,,0,,,12,23,15,12/23/26 14:00, +1,1,8560,2026,1,1,,0,,,12,23,16,12/23/26 15:00, +1,1,8561,2026,1,1,,0,,,12,23,17,12/23/26 16:00, +1,1,8562,2026,1,1,,0,,,12,23,18,12/23/26 17:00, +1,1,8563,2026,1,1,,0,,,12,23,19,12/23/26 18:00, +1,1,8564,2026,1,1,,0,,,12,23,20,12/23/26 19:00, +1,1,8565,2026,1,1,,0,,,12,23,21,12/23/26 20:00, +1,1,8566,2026,1,1,,0,,,12,23,22,12/23/26 21:00, +1,1,8567,2026,1,1,,0,,,12,23,23,12/23/26 22:00, +1,1,8568,2026,1,1,,0,,,12,23,24,12/23/26 23:00, +1,1,8569,2026,1,1,,0,,,12,24,1,12/24/26 0:00, +1,1,8570,2026,1,1,,0,,,12,24,2,12/24/26 1:00, +1,1,8571,2026,1,1,,0,,,12,24,3,12/24/26 2:00, +1,1,8572,2026,1,1,,0,,,12,24,4,12/24/26 3:00, +1,1,8573,2026,1,1,,0,,,12,24,5,12/24/26 4:00, +1,1,8574,2026,1,1,,0,,,12,24,6,12/24/26 5:00, +1,1,8575,2026,1,1,,0,,,12,24,7,12/24/26 6:00, +1,1,8576,2026,1,1,,0,,,12,24,8,12/24/26 7:00, +1,1,8577,2026,1,1,,0,,,12,24,9,12/24/26 8:00, +1,1,8578,2026,1,1,,0,,,12,24,10,12/24/26 9:00, +1,1,8579,2026,1,1,,0,,,12,24,11,12/24/26 10:00, +1,1,8580,2026,1,1,,0,,,12,24,12,12/24/26 11:00, +1,1,8581,2026,1,1,,0,,,12,24,13,12/24/26 12:00, +1,1,8582,2026,1,1,,0,,,12,24,14,12/24/26 13:00, +1,1,8583,2026,1,1,,0,,,12,24,15,12/24/26 14:00, +1,1,8584,2026,1,1,,0,,,12,24,16,12/24/26 15:00, +1,1,8585,2026,1,1,,0,,,12,24,17,12/24/26 16:00, +1,1,8586,2026,1,1,,0,,,12,24,18,12/24/26 17:00, +1,1,8587,2026,1,1,,0,,,12,24,19,12/24/26 18:00, +1,1,8588,2026,1,1,,0,,,12,24,20,12/24/26 19:00, +1,1,8589,2026,1,1,,0,,,12,24,21,12/24/26 20:00, +1,1,8590,2026,1,1,,0,,,12,24,22,12/24/26 21:00, +1,1,8591,2026,1,1,,0,,,12,24,23,12/24/26 22:00, +1,1,8592,2026,1,1,,0,,,12,24,24,12/24/26 23:00, +1,1,8593,2026,1,1,,0,,,12,25,1,12/25/26 0:00, +1,1,8594,2026,1,1,,0,,,12,25,2,12/25/26 1:00, +1,1,8595,2026,1,1,,0,,,12,25,3,12/25/26 2:00, +1,1,8596,2026,1,1,,0,,,12,25,4,12/25/26 3:00, +1,1,8597,2026,1,1,,0,,,12,25,5,12/25/26 4:00, +1,1,8598,2026,1,1,,0,,,12,25,6,12/25/26 5:00, +1,1,8599,2026,1,1,,0,,,12,25,7,12/25/26 6:00, +1,1,8600,2026,1,1,,0,,,12,25,8,12/25/26 7:00, +1,1,8601,2026,1,1,,0,,,12,25,9,12/25/26 8:00, +1,1,8602,2026,1,1,,0,,,12,25,10,12/25/26 9:00, +1,1,8603,2026,1,1,,0,,,12,25,11,12/25/26 10:00, +1,1,8604,2026,1,1,,0,,,12,25,12,12/25/26 11:00, +1,1,8605,2026,1,1,,0,,,12,25,13,12/25/26 12:00, +1,1,8606,2026,1,1,,0,,,12,25,14,12/25/26 13:00, +1,1,8607,2026,1,1,,0,,,12,25,15,12/25/26 14:00, +1,1,8608,2026,1,1,,0,,,12,25,16,12/25/26 15:00, +1,1,8609,2026,1,1,,0,,,12,25,17,12/25/26 16:00, +1,1,8610,2026,1,1,,0,,,12,25,18,12/25/26 17:00, +1,1,8611,2026,1,1,,0,,,12,25,19,12/25/26 18:00, +1,1,8612,2026,1,1,,0,,,12,25,20,12/25/26 19:00, +1,1,8613,2026,1,1,,0,,,12,25,21,12/25/26 20:00, +1,1,8614,2026,1,1,,0,,,12,25,22,12/25/26 21:00, +1,1,8615,2026,1,1,,0,,,12,25,23,12/25/26 22:00, +1,1,8616,2026,1,1,,0,,,12,25,24,12/25/26 23:00, +1,1,8617,2026,1,1,,0,,,12,26,1,12/26/26 0:00, +1,1,8618,2026,1,1,,0,,,12,26,2,12/26/26 1:00, +1,1,8619,2026,1,1,,0,,,12,26,3,12/26/26 2:00, +1,1,8620,2026,1,1,,0,,,12,26,4,12/26/26 3:00, +1,1,8621,2026,1,1,,0,,,12,26,5,12/26/26 4:00, +1,1,8622,2026,1,1,,0,,,12,26,6,12/26/26 5:00, +1,1,8623,2026,1,1,,0,,,12,26,7,12/26/26 6:00, +1,1,8624,2026,1,1,,0,,,12,26,8,12/26/26 7:00, +1,1,8625,2026,1,1,,0,,,12,26,9,12/26/26 8:00, +1,1,8626,2026,1,1,,0,,,12,26,10,12/26/26 9:00, +1,1,8627,2026,1,1,,0,,,12,26,11,12/26/26 10:00, +1,1,8628,2026,1,1,,0,,,12,26,12,12/26/26 11:00, +1,1,8629,2026,1,1,,0,,,12,26,13,12/26/26 12:00, +1,1,8630,2026,1,1,,0,,,12,26,14,12/26/26 13:00, +1,1,8631,2026,1,1,,0,,,12,26,15,12/26/26 14:00, +1,1,8632,2026,1,1,,0,,,12,26,16,12/26/26 15:00, +1,1,8633,2026,1,1,,0,,,12,26,17,12/26/26 16:00, +1,1,8634,2026,1,1,,0,,,12,26,18,12/26/26 17:00, +1,1,8635,2026,1,1,,0,,,12,26,19,12/26/26 18:00, +1,1,8636,2026,1,1,,0,,,12,26,20,12/26/26 19:00, +1,1,8637,2026,1,1,,0,,,12,26,21,12/26/26 20:00, +1,1,8638,2026,1,1,,0,,,12,26,22,12/26/26 21:00, +1,1,8639,2026,1,1,,0,,,12,26,23,12/26/26 22:00, +1,1,8640,2026,1,1,,0,,,12,26,24,12/26/26 23:00, +1,1,8641,2026,1,1,,0,,,12,27,1,12/27/26 0:00, +1,1,8642,2026,1,1,,0,,,12,27,2,12/27/26 1:00, +1,1,8643,2026,1,1,,0,,,12,27,3,12/27/26 2:00, +1,1,8644,2026,1,1,,0,,,12,27,4,12/27/26 3:00, +1,1,8645,2026,1,1,,0,,,12,27,5,12/27/26 4:00, +1,1,8646,2026,1,1,,0,,,12,27,6,12/27/26 5:00, +1,1,8647,2026,1,1,,0,,,12,27,7,12/27/26 6:00, +1,1,8648,2026,1,1,,0,,,12,27,8,12/27/26 7:00, +1,1,8649,2026,1,1,,0,,,12,27,9,12/27/26 8:00, +1,1,8650,2026,1,1,,0,,,12,27,10,12/27/26 9:00, +1,1,8651,2026,1,1,,0,,,12,27,11,12/27/26 10:00, +1,1,8652,2026,1,1,,0,,,12,27,12,12/27/26 11:00, +1,1,8653,2026,1,1,,0,,,12,27,13,12/27/26 12:00, +1,1,8654,2026,1,1,,0,,,12,27,14,12/27/26 13:00, +1,1,8655,2026,1,1,,0,,,12,27,15,12/27/26 14:00, +1,1,8656,2026,1,1,,0,,,12,27,16,12/27/26 15:00, +1,1,8657,2026,1,1,,0,,,12,27,17,12/27/26 16:00, +1,1,8658,2026,1,1,,0,,,12,27,18,12/27/26 17:00, +1,1,8659,2026,1,1,,0,,,12,27,19,12/27/26 18:00, +1,1,8660,2026,1,1,,0,,,12,27,20,12/27/26 19:00, +1,1,8661,2026,1,1,,0,,,12,27,21,12/27/26 20:00, +1,1,8662,2026,1,1,,0,,,12,27,22,12/27/26 21:00, +1,1,8663,2026,1,1,,0,,,12,27,23,12/27/26 22:00, +1,1,8664,2026,1,1,,0,,,12,27,24,12/27/26 23:00, +1,1,8665,2026,1,1,,0,,,12,28,1,12/28/26 0:00, +1,1,8666,2026,1,1,,0,,,12,28,2,12/28/26 1:00, +1,1,8667,2026,1,1,,0,,,12,28,3,12/28/26 2:00, +1,1,8668,2026,1,1,,0,,,12,28,4,12/28/26 3:00, +1,1,8669,2026,1,1,,0,,,12,28,5,12/28/26 4:00, +1,1,8670,2026,1,1,,0,,,12,28,6,12/28/26 5:00, +1,1,8671,2026,1,1,,0,,,12,28,7,12/28/26 6:00, +1,1,8672,2026,1,1,,0,,,12,28,8,12/28/26 7:00, +1,1,8673,2026,1,1,,0,,,12,28,9,12/28/26 8:00, +1,1,8674,2026,1,1,,0,,,12,28,10,12/28/26 9:00, +1,1,8675,2026,1,1,,0,,,12,28,11,12/28/26 10:00, +1,1,8676,2026,1,1,,0,,,12,28,12,12/28/26 11:00, +1,1,8677,2026,1,1,,0,,,12,28,13,12/28/26 12:00, +1,1,8678,2026,1,1,,0,,,12,28,14,12/28/26 13:00, +1,1,8679,2026,1,1,,0,,,12,28,15,12/28/26 14:00, +1,1,8680,2026,1,1,,0,,,12,28,16,12/28/26 15:00, +1,1,8681,2026,1,1,,0,,,12,28,17,12/28/26 16:00, +1,1,8682,2026,1,1,,0,,,12,28,18,12/28/26 17:00, +1,1,8683,2026,1,1,,0,,,12,28,19,12/28/26 18:00, +1,1,8684,2026,1,1,,0,,,12,28,20,12/28/26 19:00, +1,1,8685,2026,1,1,,0,,,12,28,21,12/28/26 20:00, +1,1,8686,2026,1,1,,0,,,12,28,22,12/28/26 21:00, +1,1,8687,2026,1,1,,0,,,12,28,23,12/28/26 22:00, +1,1,8688,2026,1,1,,0,,,12,28,24,12/28/26 23:00, +1,1,8689,2026,1,1,,0,,,12,29,1,12/29/26 0:00, +1,1,8690,2026,1,1,,0,,,12,29,2,12/29/26 1:00, +1,1,8691,2026,1,1,,0,,,12,29,3,12/29/26 2:00, +1,1,8692,2026,1,1,,0,,,12,29,4,12/29/26 3:00, +1,1,8693,2026,1,1,,0,,,12,29,5,12/29/26 4:00, +1,1,8694,2026,1,1,,0,,,12,29,6,12/29/26 5:00, +1,1,8695,2026,1,1,,0,,,12,29,7,12/29/26 6:00, +1,1,8696,2026,1,1,,0,,,12,29,8,12/29/26 7:00, +1,1,8697,2026,1,1,,0,,,12,29,9,12/29/26 8:00, +1,1,8698,2026,1,1,,0,,,12,29,10,12/29/26 9:00, +1,1,8699,2026,1,1,,0,,,12,29,11,12/29/26 10:00, +1,1,8700,2026,1,1,,0,,,12,29,12,12/29/26 11:00, +1,1,8701,2026,1,1,,0,,,12,29,13,12/29/26 12:00, +1,1,8702,2026,1,1,,0,,,12,29,14,12/29/26 13:00, +1,1,8703,2026,1,1,,0,,,12,29,15,12/29/26 14:00, +1,1,8704,2026,1,1,,0,,,12,29,16,12/29/26 15:00, +1,1,8705,2026,1,1,,0,,,12,29,17,12/29/26 16:00, +1,1,8706,2026,1,1,,0,,,12,29,18,12/29/26 17:00, +1,1,8707,2026,1,1,,0,,,12,29,19,12/29/26 18:00, +1,1,8708,2026,1,1,,0,,,12,29,20,12/29/26 19:00, +1,1,8709,2026,1,1,,0,,,12,29,21,12/29/26 20:00, +1,1,8710,2026,1,1,,0,,,12,29,22,12/29/26 21:00, +1,1,8711,2026,1,1,,0,,,12,29,23,12/29/26 22:00, +1,1,8712,2026,1,1,,0,,,12,29,24,12/29/26 23:00, +1,1,8713,2026,1,1,,0,,,12,30,1,12/30/26 0:00, +1,1,8714,2026,1,1,,0,,,12,30,2,12/30/26 1:00, +1,1,8715,2026,1,1,,0,,,12,30,3,12/30/26 2:00, +1,1,8716,2026,1,1,,0,,,12,30,4,12/30/26 3:00, +1,1,8717,2026,1,1,,0,,,12,30,5,12/30/26 4:00, +1,1,8718,2026,1,1,,0,,,12,30,6,12/30/26 5:00, +1,1,8719,2026,1,1,,0,,,12,30,7,12/30/26 6:00, +1,1,8720,2026,1,1,,0,,,12,30,8,12/30/26 7:00, +1,1,8721,2026,1,1,,0,,,12,30,9,12/30/26 8:00, +1,1,8722,2026,1,1,,0,,,12,30,10,12/30/26 9:00, +1,1,8723,2026,1,1,,0,,,12,30,11,12/30/26 10:00, +1,1,8724,2026,1,1,,0,,,12,30,12,12/30/26 11:00, +1,1,8725,2026,1,1,,0,,,12,30,13,12/30/26 12:00, +1,1,8726,2026,1,1,,0,,,12,30,14,12/30/26 13:00, +1,1,8727,2026,1,1,,0,,,12,30,15,12/30/26 14:00, +1,1,8728,2026,1,1,,0,,,12,30,16,12/30/26 15:00, +1,1,8729,2026,1,1,,0,,,12,30,17,12/30/26 16:00, +1,1,8730,2026,1,1,,0,,,12,30,18,12/30/26 17:00, +1,1,8731,2026,1,1,,0,,,12,30,19,12/30/26 18:00, +1,1,8732,2026,1,1,,0,,,12,30,20,12/30/26 19:00, +1,1,8733,2026,1,1,,0,,,12,30,21,12/30/26 20:00, +1,1,8734,2026,1,1,,0,,,12,30,22,12/30/26 21:00, +1,1,8735,2026,1,1,,0,,,12,30,23,12/30/26 22:00, +1,1,8736,2026,1,1,,0,,,12,30,24,12/30/26 23:00, +1,1,8737,2026,1,1,,0,,,12,31,1,12/31/26 0:00, +1,1,8738,2026,1,1,,0,,,12,31,2,12/31/26 1:00, +1,1,8739,2026,1,1,,0,,,12,31,3,12/31/26 2:00, +1,1,8740,2026,1,1,,0,,,12,31,4,12/31/26 3:00, +1,1,8741,2026,1,1,,0,,,12,31,5,12/31/26 4:00, +1,1,8742,2026,1,1,,0,,,12,31,6,12/31/26 5:00, +1,1,8743,2026,1,1,,0,,,12,31,7,12/31/26 6:00, +1,1,8744,2026,1,1,,0,,,12,31,8,12/31/26 7:00, +1,1,8745,2026,1,1,,0,,,12,31,9,12/31/26 8:00, +1,1,8746,2026,1,1,,0,,,12,31,10,12/31/26 9:00, +1,1,8747,2026,1,1,,0,,,12,31,11,12/31/26 10:00, +1,1,8748,2026,1,1,,0,,,12,31,12,12/31/26 11:00, +1,1,8749,2026,1,1,,0,,,12,31,13,12/31/26 12:00, +1,1,8750,2026,1,1,,0,,,12,31,14,12/31/26 13:00, +1,1,8751,2026,1,1,,0,,,12,31,15,12/31/26 14:00, +1,1,8752,2026,1,1,,0,,,12,31,16,12/31/26 15:00, +1,1,8753,2026,1,1,,0,,,12,31,17,12/31/26 16:00, +1,1,8754,2026,1,1,,0,,,12,31,18,12/31/26 17:00, +1,1,8755,2026,1,1,,0,,,12,31,19,12/31/26 18:00, +1,1,8756,2026,1,1,,0,,,12,31,20,12/31/26 19:00, +1,1,8757,2026,1,1,,0,,,12,31,21,12/31/26 20:00, +1,1,8758,2026,1,1,,0,,,12,31,22,12/31/26 21:00, +1,1,8759,2026,1,1,,0,,,12,31,23,12/31/26 22:00, +1,1,8760,2026,1,1,,0,,,12,31,24,12/31/26 23:00, diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/superperiods.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/superperiods.csv new file mode 100644 index 0000000000..abf9373d24 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full/superperiods.csv @@ -0,0 +1 @@ +superperiod,period \ No newline at end of file diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/description.txt b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/description.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_params.csv new file mode 100644 index 0000000000..65d4a21340 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_params.csv @@ -0,0 +1,366 @@ +balancing_type_horizon,horizon,boundary +day,1,circular +day,2,circular +day,3,circular +day,4,circular +day,5,circular +day,6,circular +day,7,circular +day,8,circular +day,9,circular +day,10,circular +day,11,circular +day,12,circular +day,13,circular +day,14,circular +day,15,circular +day,16,circular +day,17,circular +day,18,circular +day,19,circular +day,20,circular +day,21,circular +day,22,circular +day,23,circular +day,24,circular +day,25,circular +day,26,circular +day,27,circular +day,28,circular +day,29,circular +day,30,circular +day,31,circular +day,32,circular +day,33,circular +day,34,circular +day,35,circular +day,36,circular +day,37,circular +day,38,circular +day,39,circular +day,40,circular +day,41,circular +day,42,circular +day,43,circular +day,44,circular +day,45,circular +day,46,circular +day,47,circular +day,48,circular +day,49,circular +day,50,circular +day,51,circular +day,52,circular +day,53,circular +day,54,circular +day,55,circular +day,56,circular +day,57,circular +day,58,circular +day,59,circular +day,60,circular +day,61,circular +day,62,circular +day,63,circular +day,64,circular +day,65,circular +day,66,circular +day,67,circular +day,68,circular +day,69,circular +day,70,circular +day,71,circular +day,72,circular +day,73,circular +day,74,circular +day,75,circular +day,76,circular +day,77,circular +day,78,circular +day,79,circular +day,80,circular +day,81,circular +day,82,circular +day,83,circular +day,84,circular +day,85,circular +day,86,circular +day,87,circular +day,88,circular +day,89,circular +day,90,circular +day,91,circular +day,92,circular +day,93,circular +day,94,circular +day,95,circular +day,96,circular +day,97,circular +day,98,circular +day,99,circular +day,100,circular +day,101,circular +day,102,circular +day,103,circular +day,104,circular +day,105,circular +day,106,circular +day,107,circular +day,108,circular +day,109,circular +day,110,circular +day,111,circular +day,112,circular +day,113,circular +day,114,circular +day,115,circular +day,116,circular +day,117,circular +day,118,circular +day,119,circular +day,120,circular +day,121,circular +day,122,circular +day,123,circular +day,124,circular +day,125,circular +day,126,circular +day,127,circular +day,128,circular +day,129,circular +day,130,circular +day,131,circular +day,132,circular +day,133,circular +day,134,circular +day,135,circular +day,136,circular +day,137,circular +day,138,circular +day,139,circular +day,140,circular +day,141,circular +day,142,circular +day,143,circular +day,144,circular +day,145,circular +day,146,circular +day,147,circular +day,148,circular +day,149,circular +day,150,circular +day,151,circular +day,152,circular +day,153,circular +day,154,circular +day,155,circular +day,156,circular +day,157,circular +day,158,circular +day,159,circular +day,160,circular +day,161,circular +day,162,circular +day,163,circular +day,164,circular +day,165,circular +day,166,circular +day,167,circular +day,168,circular +day,169,circular +day,170,circular +day,171,circular +day,172,circular +day,173,circular +day,174,circular +day,175,circular +day,176,circular +day,177,circular +day,178,circular +day,179,circular +day,180,circular +day,181,circular +day,182,circular +day,183,circular +day,184,circular +day,185,circular +day,186,circular +day,187,circular +day,188,circular +day,189,circular +day,190,circular +day,191,circular +day,192,circular +day,193,circular +day,194,circular +day,195,circular +day,196,circular +day,197,circular +day,198,circular +day,199,circular +day,200,circular +day,201,circular +day,202,circular +day,203,circular +day,204,circular +day,205,circular +day,206,circular +day,207,circular +day,208,circular +day,209,circular +day,210,circular +day,211,circular +day,212,circular +day,213,circular +day,214,circular +day,215,circular +day,216,circular +day,217,circular +day,218,circular +day,219,circular +day,220,circular +day,221,circular +day,222,circular +day,223,circular +day,224,circular +day,225,circular +day,226,circular +day,227,circular +day,228,circular +day,229,circular +day,230,circular +day,231,circular +day,232,circular +day,233,circular +day,234,circular +day,235,circular +day,236,circular +day,237,circular +day,238,circular +day,239,circular +day,240,circular +day,241,circular +day,242,circular +day,243,circular +day,244,circular +day,245,circular +day,246,circular +day,247,circular +day,248,circular +day,249,circular +day,250,circular +day,251,circular +day,252,circular +day,253,circular +day,254,circular +day,255,circular +day,256,circular +day,257,circular +day,258,circular +day,259,circular +day,260,circular +day,261,circular +day,262,circular +day,263,circular +day,264,circular +day,265,circular +day,266,circular +day,267,circular +day,268,circular +day,269,circular +day,270,circular +day,271,circular +day,272,circular +day,273,circular +day,274,circular +day,275,circular +day,276,circular +day,277,circular +day,278,circular +day,279,circular +day,280,circular +day,281,circular +day,282,circular +day,283,circular +day,284,circular +day,285,circular +day,286,circular +day,287,circular +day,288,circular +day,289,circular +day,290,circular +day,291,circular +day,292,circular +day,293,circular +day,294,circular +day,295,circular +day,296,circular +day,297,circular +day,298,circular +day,299,circular +day,300,circular +day,301,circular +day,302,circular +day,303,circular +day,304,circular +day,305,circular +day,306,circular +day,307,circular +day,308,circular +day,309,circular +day,310,circular +day,311,circular +day,312,circular +day,313,circular +day,314,circular +day,315,circular +day,316,circular +day,317,circular +day,318,circular +day,319,circular +day,320,circular +day,321,circular +day,322,circular +day,323,circular +day,324,circular +day,325,circular +day,326,circular +day,327,circular +day,328,circular +day,329,circular +day,330,circular +day,331,circular +day,332,circular +day,333,circular +day,334,circular +day,335,circular +day,336,circular +day,337,circular +day,338,circular +day,339,circular +day,340,circular +day,341,circular +day,342,circular +day,343,circular +day,344,circular +day,345,circular +day,346,circular +day,347,circular +day,348,circular +day,349,circular +day,350,circular +day,351,circular +day,352,circular +day,353,circular +day,354,circular +day,355,circular +day,356,circular +day,357,circular +day,358,circular +day,359,circular +day,360,circular +day,361,circular +day,362,circular +day,363,circular +day,364,circular +day,365,circular diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_timepoints.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_timepoints.csv new file mode 100644 index 0000000000..0df4757373 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/horizon_timepoints.csv @@ -0,0 +1,366 @@ +stage_id,balancing_type_horizon,horizon,tmp_start,tmp_start_spinup_or_lookahead,tmp_end,tmp_end_spinup_or_lookahead +1,day,1,1,0,24,0 +1,day,2,25,0,48,0 +1,day,3,49,0,72,0 +1,day,4,73,0,96,0 +1,day,5,97,0,120,0 +1,day,6,121,0,144,0 +1,day,7,145,0,168,0 +1,day,8,169,0,192,0 +1,day,9,193,0,216,0 +1,day,10,217,0,240,0 +1,day,11,241,0,264,0 +1,day,12,265,0,288,0 +1,day,13,289,0,312,0 +1,day,14,313,0,336,0 +1,day,15,337,0,360,0 +1,day,16,361,0,384,0 +1,day,17,385,0,408,0 +1,day,18,409,0,432,0 +1,day,19,433,0,456,0 +1,day,20,457,0,480,0 +1,day,21,481,0,504,0 +1,day,22,505,0,528,0 +1,day,23,529,0,552,0 +1,day,24,553,0,576,0 +1,day,25,577,0,600,0 +1,day,26,601,0,624,0 +1,day,27,625,0,648,0 +1,day,28,649,0,672,0 +1,day,29,673,0,696,0 +1,day,30,697,0,720,0 +1,day,31,721,0,744,0 +1,day,32,745,0,768,0 +1,day,33,769,0,792,0 +1,day,34,793,0,816,0 +1,day,35,817,0,840,0 +1,day,36,841,0,864,0 +1,day,37,865,0,888,0 +1,day,38,889,0,912,0 +1,day,39,913,0,936,0 +1,day,40,937,0,960,0 +1,day,41,961,0,984,0 +1,day,42,985,0,1008,0 +1,day,43,1009,0,1032,0 +1,day,44,1033,0,1056,0 +1,day,45,1057,0,1080,0 +1,day,46,1081,0,1104,0 +1,day,47,1105,0,1128,0 +1,day,48,1129,0,1152,0 +1,day,49,1153,0,1176,0 +1,day,50,1177,0,1200,0 +1,day,51,1201,0,1224,0 +1,day,52,1225,0,1248,0 +1,day,53,1249,0,1272,0 +1,day,54,1273,0,1296,0 +1,day,55,1297,0,1320,0 +1,day,56,1321,0,1344,0 +1,day,57,1345,0,1368,0 +1,day,58,1369,0,1392,0 +1,day,59,1393,0,1416,0 +1,day,60,1417,0,1440,0 +1,day,61,1441,0,1464,0 +1,day,62,1465,0,1488,0 +1,day,63,1489,0,1512,0 +1,day,64,1513,0,1536,0 +1,day,65,1537,0,1560,0 +1,day,66,1561,0,1584,0 +1,day,67,1585,0,1608,0 +1,day,68,1609,0,1632,0 +1,day,69,1633,0,1656,0 +1,day,70,1657,0,1680,0 +1,day,71,1681,0,1704,0 +1,day,72,1705,0,1728,0 +1,day,73,1729,0,1752,0 +1,day,74,1753,0,1776,0 +1,day,75,1777,0,1800,0 +1,day,76,1801,0,1824,0 +1,day,77,1825,0,1848,0 +1,day,78,1849,0,1872,0 +1,day,79,1873,0,1896,0 +1,day,80,1897,0,1920,0 +1,day,81,1921,0,1944,0 +1,day,82,1945,0,1968,0 +1,day,83,1969,0,1992,0 +1,day,84,1993,0,2016,0 +1,day,85,2017,0,2040,0 +1,day,86,2041,0,2064,0 +1,day,87,2065,0,2088,0 +1,day,88,2089,0,2112,0 +1,day,89,2113,0,2136,0 +1,day,90,2137,0,2160,0 +1,day,91,2161,0,2184,0 +1,day,92,2185,0,2208,0 +1,day,93,2209,0,2232,0 +1,day,94,2233,0,2256,0 +1,day,95,2257,0,2280,0 +1,day,96,2281,0,2304,0 +1,day,97,2305,0,2328,0 +1,day,98,2329,0,2352,0 +1,day,99,2353,0,2376,0 +1,day,100,2377,0,2400,0 +1,day,101,2401,0,2424,0 +1,day,102,2425,0,2448,0 +1,day,103,2449,0,2472,0 +1,day,104,2473,0,2496,0 +1,day,105,2497,0,2520,0 +1,day,106,2521,0,2544,0 +1,day,107,2545,0,2568,0 +1,day,108,2569,0,2592,0 +1,day,109,2593,0,2616,0 +1,day,110,2617,0,2640,0 +1,day,111,2641,0,2664,0 +1,day,112,2665,0,2688,0 +1,day,113,2689,0,2712,0 +1,day,114,2713,0,2736,0 +1,day,115,2737,0,2760,0 +1,day,116,2761,0,2784,0 +1,day,117,2785,0,2808,0 +1,day,118,2809,0,2832,0 +1,day,119,2833,0,2856,0 +1,day,120,2857,0,2880,0 +1,day,121,2881,0,2904,0 +1,day,122,2905,0,2928,0 +1,day,123,2929,0,2952,0 +1,day,124,2953,0,2976,0 +1,day,125,2977,0,3000,0 +1,day,126,3001,0,3024,0 +1,day,127,3025,0,3048,0 +1,day,128,3049,0,3072,0 +1,day,129,3073,0,3096,0 +1,day,130,3097,0,3120,0 +1,day,131,3121,0,3144,0 +1,day,132,3145,0,3168,0 +1,day,133,3169,0,3192,0 +1,day,134,3193,0,3216,0 +1,day,135,3217,0,3240,0 +1,day,136,3241,0,3264,0 +1,day,137,3265,0,3288,0 +1,day,138,3289,0,3312,0 +1,day,139,3313,0,3336,0 +1,day,140,3337,0,3360,0 +1,day,141,3361,0,3384,0 +1,day,142,3385,0,3408,0 +1,day,143,3409,0,3432,0 +1,day,144,3433,0,3456,0 +1,day,145,3457,0,3480,0 +1,day,146,3481,0,3504,0 +1,day,147,3505,0,3528,0 +1,day,148,3529,0,3552,0 +1,day,149,3553,0,3576,0 +1,day,150,3577,0,3600,0 +1,day,151,3601,0,3624,0 +1,day,152,3625,0,3648,0 +1,day,153,3649,0,3672,0 +1,day,154,3673,0,3696,0 +1,day,155,3697,0,3720,0 +1,day,156,3721,0,3744,0 +1,day,157,3745,0,3768,0 +1,day,158,3769,0,3792,0 +1,day,159,3793,0,3816,0 +1,day,160,3817,0,3840,0 +1,day,161,3841,0,3864,0 +1,day,162,3865,0,3888,0 +1,day,163,3889,0,3912,0 +1,day,164,3913,0,3936,0 +1,day,165,3937,0,3960,0 +1,day,166,3961,0,3984,0 +1,day,167,3985,0,4008,0 +1,day,168,4009,0,4032,0 +1,day,169,4033,0,4056,0 +1,day,170,4057,0,4080,0 +1,day,171,4081,0,4104,0 +1,day,172,4105,0,4128,0 +1,day,173,4129,0,4152,0 +1,day,174,4153,0,4176,0 +1,day,175,4177,0,4200,0 +1,day,176,4201,0,4224,0 +1,day,177,4225,0,4248,0 +1,day,178,4249,0,4272,0 +1,day,179,4273,0,4296,0 +1,day,180,4297,0,4320,0 +1,day,181,4321,0,4344,0 +1,day,182,4345,0,4368,0 +1,day,183,4369,0,4392,0 +1,day,184,4393,0,4416,0 +1,day,185,4417,0,4440,0 +1,day,186,4441,0,4464,0 +1,day,187,4465,0,4488,0 +1,day,188,4489,0,4512,0 +1,day,189,4513,0,4536,0 +1,day,190,4537,0,4560,0 +1,day,191,4561,0,4584,0 +1,day,192,4585,0,4608,0 +1,day,193,4609,0,4632,0 +1,day,194,4633,0,4656,0 +1,day,195,4657,0,4680,0 +1,day,196,4681,0,4704,0 +1,day,197,4705,0,4728,0 +1,day,198,4729,0,4752,0 +1,day,199,4753,0,4776,0 +1,day,200,4777,0,4800,0 +1,day,201,4801,0,4824,0 +1,day,202,4825,0,4848,0 +1,day,203,4849,0,4872,0 +1,day,204,4873,0,4896,0 +1,day,205,4897,0,4920,0 +1,day,206,4921,0,4944,0 +1,day,207,4945,0,4968,0 +1,day,208,4969,0,4992,0 +1,day,209,4993,0,5016,0 +1,day,210,5017,0,5040,0 +1,day,211,5041,0,5064,0 +1,day,212,5065,0,5088,0 +1,day,213,5089,0,5112,0 +1,day,214,5113,0,5136,0 +1,day,215,5137,0,5160,0 +1,day,216,5161,0,5184,0 +1,day,217,5185,0,5208,0 +1,day,218,5209,0,5232,0 +1,day,219,5233,0,5256,0 +1,day,220,5257,0,5280,0 +1,day,221,5281,0,5304,0 +1,day,222,5305,0,5328,0 +1,day,223,5329,0,5352,0 +1,day,224,5353,0,5376,0 +1,day,225,5377,0,5400,0 +1,day,226,5401,0,5424,0 +1,day,227,5425,0,5448,0 +1,day,228,5449,0,5472,0 +1,day,229,5473,0,5496,0 +1,day,230,5497,0,5520,0 +1,day,231,5521,0,5544,0 +1,day,232,5545,0,5568,0 +1,day,233,5569,0,5592,0 +1,day,234,5593,0,5616,0 +1,day,235,5617,0,5640,0 +1,day,236,5641,0,5664,0 +1,day,237,5665,0,5688,0 +1,day,238,5689,0,5712,0 +1,day,239,5713,0,5736,0 +1,day,240,5737,0,5760,0 +1,day,241,5761,0,5784,0 +1,day,242,5785,0,5808,0 +1,day,243,5809,0,5832,0 +1,day,244,5833,0,5856,0 +1,day,245,5857,0,5880,0 +1,day,246,5881,0,5904,0 +1,day,247,5905,0,5928,0 +1,day,248,5929,0,5952,0 +1,day,249,5953,0,5976,0 +1,day,250,5977,0,6000,0 +1,day,251,6001,0,6024,0 +1,day,252,6025,0,6048,0 +1,day,253,6049,0,6072,0 +1,day,254,6073,0,6096,0 +1,day,255,6097,0,6120,0 +1,day,256,6121,0,6144,0 +1,day,257,6145,0,6168,0 +1,day,258,6169,0,6192,0 +1,day,259,6193,0,6216,0 +1,day,260,6217,0,6240,0 +1,day,261,6241,0,6264,0 +1,day,262,6265,0,6288,0 +1,day,263,6289,0,6312,0 +1,day,264,6313,0,6336,0 +1,day,265,6337,0,6360,0 +1,day,266,6361,0,6384,0 +1,day,267,6385,0,6408,0 +1,day,268,6409,0,6432,0 +1,day,269,6433,0,6456,0 +1,day,270,6457,0,6480,0 +1,day,271,6481,0,6504,0 +1,day,272,6505,0,6528,0 +1,day,273,6529,0,6552,0 +1,day,274,6553,0,6576,0 +1,day,275,6577,0,6600,0 +1,day,276,6601,0,6624,0 +1,day,277,6625,0,6648,0 +1,day,278,6649,0,6672,0 +1,day,279,6673,0,6696,0 +1,day,280,6697,0,6720,0 +1,day,281,6721,0,6744,0 +1,day,282,6745,0,6768,0 +1,day,283,6769,0,6792,0 +1,day,284,6793,0,6816,0 +1,day,285,6817,0,6840,0 +1,day,286,6841,0,6864,0 +1,day,287,6865,0,6888,0 +1,day,288,6889,0,6912,0 +1,day,289,6913,0,6936,0 +1,day,290,6937,0,6960,0 +1,day,291,6961,0,6984,0 +1,day,292,6985,0,7008,0 +1,day,293,7009,0,7032,0 +1,day,294,7033,0,7056,0 +1,day,295,7057,0,7080,0 +1,day,296,7081,0,7104,0 +1,day,297,7105,0,7128,0 +1,day,298,7129,0,7152,0 +1,day,299,7153,0,7176,0 +1,day,300,7177,0,7200,0 +1,day,301,7201,0,7224,0 +1,day,302,7225,0,7248,0 +1,day,303,7249,0,7272,0 +1,day,304,7273,0,7296,0 +1,day,305,7297,0,7320,0 +1,day,306,7321,0,7344,0 +1,day,307,7345,0,7368,0 +1,day,308,7369,0,7392,0 +1,day,309,7393,0,7416,0 +1,day,310,7417,0,7440,0 +1,day,311,7441,0,7464,0 +1,day,312,7465,0,7488,0 +1,day,313,7489,0,7512,0 +1,day,314,7513,0,7536,0 +1,day,315,7537,0,7560,0 +1,day,316,7561,0,7584,0 +1,day,317,7585,0,7608,0 +1,day,318,7609,0,7632,0 +1,day,319,7633,0,7656,0 +1,day,320,7657,0,7680,0 +1,day,321,7681,0,7704,0 +1,day,322,7705,0,7728,0 +1,day,323,7729,0,7752,0 +1,day,324,7753,0,7776,0 +1,day,325,7777,0,7800,0 +1,day,326,7801,0,7824,0 +1,day,327,7825,0,7848,0 +1,day,328,7849,0,7872,0 +1,day,329,7873,0,7896,0 +1,day,330,7897,0,7920,0 +1,day,331,7921,0,7944,0 +1,day,332,7945,0,7968,0 +1,day,333,7969,0,7992,0 +1,day,334,7993,0,8016,0 +1,day,335,8017,0,8040,0 +1,day,336,8041,0,8064,0 +1,day,337,8065,0,8088,0 +1,day,338,8089,0,8112,0 +1,day,339,8113,0,8136,0 +1,day,340,8137,0,8160,0 +1,day,341,8161,0,8184,0 +1,day,342,8185,0,8208,0 +1,day,343,8209,0,8232,0 +1,day,344,8233,0,8256,0 +1,day,345,8257,0,8280,0 +1,day,346,8281,0,8304,0 +1,day,347,8305,0,8328,0 +1,day,348,8329,0,8352,0 +1,day,349,8353,0,8376,0 +1,day,350,8377,0,8400,0 +1,day,351,8401,0,8424,0 +1,day,352,8425,0,8448,0 +1,day,353,8449,0,8472,0 +1,day,354,8473,0,8496,0 +1,day,355,8497,0,8520,0 +1,day,356,8521,0,8544,0 +1,day,357,8545,0,8568,0 +1,day,358,8569,0,8592,0 +1,day,359,8593,0,8616,0 +1,day,360,8617,0,8640,0 +1,day,361,8641,0,8664,0 +1,day,362,8665,0,8688,0 +1,day,363,8689,0,8712,0 +1,day,364,8713,0,8736,0 +1,day,365,8737,0,8760,0 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/period_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/period_params.csv new file mode 100644 index 0000000000..df12fbcba4 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/period_params.csv @@ -0,0 +1,2 @@ +period,discount_factor,period_start_year,period_end_year,prev_period +2026,1,2026,2027 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/structure.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/structure.csv new file mode 100644 index 0000000000..5e414e96e3 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/structure.csv @@ -0,0 +1,8761 @@ +subproblem_id,stage_id,timepoint,period,number_of_hours_in_timepoint,timepoint_weight,previous_stage_timepoint_map,spinup_or_lookahead,linked_timepoint,year,month,day_of_month,hour_of_day,timestamp,ignore_horizon_day +1,1,1,2026,1,1,,0,,,1,1,1,1/1/26 0:00, +1,1,2,2026,1,1,,0,,,1,1,2,1/1/26 1:00, +1,1,3,2026,1,1,,0,,,1,1,3,1/1/26 2:00, +1,1,4,2026,1,1,,0,,,1,1,4,1/1/26 3:00, +1,1,5,2026,1,1,,0,,,1,1,5,1/1/26 4:00, +1,1,6,2026,1,1,,0,,,1,1,6,1/1/26 5:00, +1,1,7,2026,1,1,,0,,,1,1,7,1/1/26 6:00, +1,1,8,2026,1,1,,0,,,1,1,8,1/1/26 7:00, +1,1,9,2026,1,1,,0,,,1,1,9,1/1/26 8:00, +1,1,10,2026,1,1,,0,,,1,1,10,1/1/26 9:00, +1,1,11,2026,1,1,,0,,,1,1,11,1/1/26 10:00, +1,1,12,2026,1,1,,0,,,1,1,12,1/1/26 11:00, +1,1,13,2026,1,1,,0,,,1,1,13,1/1/26 12:00, +1,1,14,2026,1,1,,0,,,1,1,14,1/1/26 13:00, +1,1,15,2026,1,1,,0,,,1,1,15,1/1/26 14:00, +1,1,16,2026,1,1,,0,,,1,1,16,1/1/26 15:00, +1,1,17,2026,1,1,,0,,,1,1,17,1/1/26 16:00, +1,1,18,2026,1,1,,0,,,1,1,18,1/1/26 17:00, +1,1,19,2026,1,1,,0,,,1,1,19,1/1/26 18:00, +1,1,20,2026,1,1,,0,,,1,1,20,1/1/26 19:00, +1,1,21,2026,1,1,,0,,,1,1,21,1/1/26 20:00, +1,1,22,2026,1,1,,0,,,1,1,22,1/1/26 21:00, +1,1,23,2026,1,1,,0,,,1,1,23,1/1/26 22:00, +1,1,24,2026,1,1,,0,,,1,1,24,1/1/26 23:00, +1,1,25,2026,1,1,,0,,,1,2,1,1/2/26 0:00, +1,1,26,2026,1,1,,0,,,1,2,2,1/2/26 1:00, +1,1,27,2026,1,1,,0,,,1,2,3,1/2/26 2:00, +1,1,28,2026,1,1,,0,,,1,2,4,1/2/26 3:00, +1,1,29,2026,1,1,,0,,,1,2,5,1/2/26 4:00, +1,1,30,2026,1,1,,0,,,1,2,6,1/2/26 5:00, +1,1,31,2026,1,1,,0,,,1,2,7,1/2/26 6:00, +1,1,32,2026,1,1,,0,,,1,2,8,1/2/26 7:00, +1,1,33,2026,1,1,,0,,,1,2,9,1/2/26 8:00, +1,1,34,2026,1,1,,0,,,1,2,10,1/2/26 9:00, +1,1,35,2026,1,1,,0,,,1,2,11,1/2/26 10:00, +1,1,36,2026,1,1,,0,,,1,2,12,1/2/26 11:00, +1,1,37,2026,1,1,,0,,,1,2,13,1/2/26 12:00, +1,1,38,2026,1,1,,0,,,1,2,14,1/2/26 13:00, +1,1,39,2026,1,1,,0,,,1,2,15,1/2/26 14:00, +1,1,40,2026,1,1,,0,,,1,2,16,1/2/26 15:00, +1,1,41,2026,1,1,,0,,,1,2,17,1/2/26 16:00, +1,1,42,2026,1,1,,0,,,1,2,18,1/2/26 17:00, +1,1,43,2026,1,1,,0,,,1,2,19,1/2/26 18:00, +1,1,44,2026,1,1,,0,,,1,2,20,1/2/26 19:00, +1,1,45,2026,1,1,,0,,,1,2,21,1/2/26 20:00, +1,1,46,2026,1,1,,0,,,1,2,22,1/2/26 21:00, +1,1,47,2026,1,1,,0,,,1,2,23,1/2/26 22:00, +1,1,48,2026,1,1,,0,,,1,2,24,1/2/26 23:00, +1,1,49,2026,1,1,,0,,,1,3,1,1/3/26 0:00, +1,1,50,2026,1,1,,0,,,1,3,2,1/3/26 1:00, +1,1,51,2026,1,1,,0,,,1,3,3,1/3/26 2:00, +1,1,52,2026,1,1,,0,,,1,3,4,1/3/26 3:00, +1,1,53,2026,1,1,,0,,,1,3,5,1/3/26 4:00, +1,1,54,2026,1,1,,0,,,1,3,6,1/3/26 5:00, +1,1,55,2026,1,1,,0,,,1,3,7,1/3/26 6:00, +1,1,56,2026,1,1,,0,,,1,3,8,1/3/26 7:00, +1,1,57,2026,1,1,,0,,,1,3,9,1/3/26 8:00, +1,1,58,2026,1,1,,0,,,1,3,10,1/3/26 9:00, +1,1,59,2026,1,1,,0,,,1,3,11,1/3/26 10:00, +1,1,60,2026,1,1,,0,,,1,3,12,1/3/26 11:00, +1,1,61,2026,1,1,,0,,,1,3,13,1/3/26 12:00, +1,1,62,2026,1,1,,0,,,1,3,14,1/3/26 13:00, +1,1,63,2026,1,1,,0,,,1,3,15,1/3/26 14:00, +1,1,64,2026,1,1,,0,,,1,3,16,1/3/26 15:00, +1,1,65,2026,1,1,,0,,,1,3,17,1/3/26 16:00, +1,1,66,2026,1,1,,0,,,1,3,18,1/3/26 17:00, +1,1,67,2026,1,1,,0,,,1,3,19,1/3/26 18:00, +1,1,68,2026,1,1,,0,,,1,3,20,1/3/26 19:00, +1,1,69,2026,1,1,,0,,,1,3,21,1/3/26 20:00, +1,1,70,2026,1,1,,0,,,1,3,22,1/3/26 21:00, +1,1,71,2026,1,1,,0,,,1,3,23,1/3/26 22:00, +1,1,72,2026,1,1,,0,,,1,3,24,1/3/26 23:00, +1,1,73,2026,1,1,,0,,,1,4,1,1/4/26 0:00, +1,1,74,2026,1,1,,0,,,1,4,2,1/4/26 1:00, +1,1,75,2026,1,1,,0,,,1,4,3,1/4/26 2:00, +1,1,76,2026,1,1,,0,,,1,4,4,1/4/26 3:00, +1,1,77,2026,1,1,,0,,,1,4,5,1/4/26 4:00, +1,1,78,2026,1,1,,0,,,1,4,6,1/4/26 5:00, +1,1,79,2026,1,1,,0,,,1,4,7,1/4/26 6:00, +1,1,80,2026,1,1,,0,,,1,4,8,1/4/26 7:00, +1,1,81,2026,1,1,,0,,,1,4,9,1/4/26 8:00, +1,1,82,2026,1,1,,0,,,1,4,10,1/4/26 9:00, +1,1,83,2026,1,1,,0,,,1,4,11,1/4/26 10:00, +1,1,84,2026,1,1,,0,,,1,4,12,1/4/26 11:00, +1,1,85,2026,1,1,,0,,,1,4,13,1/4/26 12:00, +1,1,86,2026,1,1,,0,,,1,4,14,1/4/26 13:00, +1,1,87,2026,1,1,,0,,,1,4,15,1/4/26 14:00, +1,1,88,2026,1,1,,0,,,1,4,16,1/4/26 15:00, +1,1,89,2026,1,1,,0,,,1,4,17,1/4/26 16:00, +1,1,90,2026,1,1,,0,,,1,4,18,1/4/26 17:00, +1,1,91,2026,1,1,,0,,,1,4,19,1/4/26 18:00, +1,1,92,2026,1,1,,0,,,1,4,20,1/4/26 19:00, +1,1,93,2026,1,1,,0,,,1,4,21,1/4/26 20:00, +1,1,94,2026,1,1,,0,,,1,4,22,1/4/26 21:00, +1,1,95,2026,1,1,,0,,,1,4,23,1/4/26 22:00, +1,1,96,2026,1,1,,0,,,1,4,24,1/4/26 23:00, +1,1,97,2026,1,1,,0,,,1,5,1,1/5/26 0:00, +1,1,98,2026,1,1,,0,,,1,5,2,1/5/26 1:00, +1,1,99,2026,1,1,,0,,,1,5,3,1/5/26 2:00, +1,1,100,2026,1,1,,0,,,1,5,4,1/5/26 3:00, +1,1,101,2026,1,1,,0,,,1,5,5,1/5/26 4:00, +1,1,102,2026,1,1,,0,,,1,5,6,1/5/26 5:00, +1,1,103,2026,1,1,,0,,,1,5,7,1/5/26 6:00, +1,1,104,2026,1,1,,0,,,1,5,8,1/5/26 7:00, +1,1,105,2026,1,1,,0,,,1,5,9,1/5/26 8:00, +1,1,106,2026,1,1,,0,,,1,5,10,1/5/26 9:00, +1,1,107,2026,1,1,,0,,,1,5,11,1/5/26 10:00, +1,1,108,2026,1,1,,0,,,1,5,12,1/5/26 11:00, +1,1,109,2026,1,1,,0,,,1,5,13,1/5/26 12:00, +1,1,110,2026,1,1,,0,,,1,5,14,1/5/26 13:00, +1,1,111,2026,1,1,,0,,,1,5,15,1/5/26 14:00, +1,1,112,2026,1,1,,0,,,1,5,16,1/5/26 15:00, +1,1,113,2026,1,1,,0,,,1,5,17,1/5/26 16:00, +1,1,114,2026,1,1,,0,,,1,5,18,1/5/26 17:00, +1,1,115,2026,1,1,,0,,,1,5,19,1/5/26 18:00, +1,1,116,2026,1,1,,0,,,1,5,20,1/5/26 19:00, +1,1,117,2026,1,1,,0,,,1,5,21,1/5/26 20:00, +1,1,118,2026,1,1,,0,,,1,5,22,1/5/26 21:00, +1,1,119,2026,1,1,,0,,,1,5,23,1/5/26 22:00, +1,1,120,2026,1,1,,0,,,1,5,24,1/5/26 23:00, +1,1,121,2026,1,1,,0,,,1,6,1,1/6/26 0:00, +1,1,122,2026,1,1,,0,,,1,6,2,1/6/26 1:00, +1,1,123,2026,1,1,,0,,,1,6,3,1/6/26 2:00, +1,1,124,2026,1,1,,0,,,1,6,4,1/6/26 3:00, +1,1,125,2026,1,1,,0,,,1,6,5,1/6/26 4:00, +1,1,126,2026,1,1,,0,,,1,6,6,1/6/26 5:00, +1,1,127,2026,1,1,,0,,,1,6,7,1/6/26 6:00, +1,1,128,2026,1,1,,0,,,1,6,8,1/6/26 7:00, +1,1,129,2026,1,1,,0,,,1,6,9,1/6/26 8:00, +1,1,130,2026,1,1,,0,,,1,6,10,1/6/26 9:00, +1,1,131,2026,1,1,,0,,,1,6,11,1/6/26 10:00, +1,1,132,2026,1,1,,0,,,1,6,12,1/6/26 11:00, +1,1,133,2026,1,1,,0,,,1,6,13,1/6/26 12:00, +1,1,134,2026,1,1,,0,,,1,6,14,1/6/26 13:00, +1,1,135,2026,1,1,,0,,,1,6,15,1/6/26 14:00, +1,1,136,2026,1,1,,0,,,1,6,16,1/6/26 15:00, +1,1,137,2026,1,1,,0,,,1,6,17,1/6/26 16:00, +1,1,138,2026,1,1,,0,,,1,6,18,1/6/26 17:00, +1,1,139,2026,1,1,,0,,,1,6,19,1/6/26 18:00, +1,1,140,2026,1,1,,0,,,1,6,20,1/6/26 19:00, +1,1,141,2026,1,1,,0,,,1,6,21,1/6/26 20:00, +1,1,142,2026,1,1,,0,,,1,6,22,1/6/26 21:00, +1,1,143,2026,1,1,,0,,,1,6,23,1/6/26 22:00, +1,1,144,2026,1,1,,0,,,1,6,24,1/6/26 23:00, +1,1,145,2026,1,1,,0,,,1,7,1,1/7/26 0:00, +1,1,146,2026,1,1,,0,,,1,7,2,1/7/26 1:00, +1,1,147,2026,1,1,,0,,,1,7,3,1/7/26 2:00, +1,1,148,2026,1,1,,0,,,1,7,4,1/7/26 3:00, +1,1,149,2026,1,1,,0,,,1,7,5,1/7/26 4:00, +1,1,150,2026,1,1,,0,,,1,7,6,1/7/26 5:00, +1,1,151,2026,1,1,,0,,,1,7,7,1/7/26 6:00, +1,1,152,2026,1,1,,0,,,1,7,8,1/7/26 7:00, +1,1,153,2026,1,1,,0,,,1,7,9,1/7/26 8:00, +1,1,154,2026,1,1,,0,,,1,7,10,1/7/26 9:00, +1,1,155,2026,1,1,,0,,,1,7,11,1/7/26 10:00, +1,1,156,2026,1,1,,0,,,1,7,12,1/7/26 11:00, +1,1,157,2026,1,1,,0,,,1,7,13,1/7/26 12:00, +1,1,158,2026,1,1,,0,,,1,7,14,1/7/26 13:00, +1,1,159,2026,1,1,,0,,,1,7,15,1/7/26 14:00, +1,1,160,2026,1,1,,0,,,1,7,16,1/7/26 15:00, +1,1,161,2026,1,1,,0,,,1,7,17,1/7/26 16:00, +1,1,162,2026,1,1,,0,,,1,7,18,1/7/26 17:00, +1,1,163,2026,1,1,,0,,,1,7,19,1/7/26 18:00, +1,1,164,2026,1,1,,0,,,1,7,20,1/7/26 19:00, +1,1,165,2026,1,1,,0,,,1,7,21,1/7/26 20:00, +1,1,166,2026,1,1,,0,,,1,7,22,1/7/26 21:00, +1,1,167,2026,1,1,,0,,,1,7,23,1/7/26 22:00, +1,1,168,2026,1,1,,0,,,1,7,24,1/7/26 23:00, +1,1,169,2026,1,1,,0,,,1,8,1,1/8/26 0:00, +1,1,170,2026,1,1,,0,,,1,8,2,1/8/26 1:00, +1,1,171,2026,1,1,,0,,,1,8,3,1/8/26 2:00, +1,1,172,2026,1,1,,0,,,1,8,4,1/8/26 3:00, +1,1,173,2026,1,1,,0,,,1,8,5,1/8/26 4:00, +1,1,174,2026,1,1,,0,,,1,8,6,1/8/26 5:00, +1,1,175,2026,1,1,,0,,,1,8,7,1/8/26 6:00, +1,1,176,2026,1,1,,0,,,1,8,8,1/8/26 7:00, +1,1,177,2026,1,1,,0,,,1,8,9,1/8/26 8:00, +1,1,178,2026,1,1,,0,,,1,8,10,1/8/26 9:00, +1,1,179,2026,1,1,,0,,,1,8,11,1/8/26 10:00, +1,1,180,2026,1,1,,0,,,1,8,12,1/8/26 11:00, +1,1,181,2026,1,1,,0,,,1,8,13,1/8/26 12:00, +1,1,182,2026,1,1,,0,,,1,8,14,1/8/26 13:00, +1,1,183,2026,1,1,,0,,,1,8,15,1/8/26 14:00, +1,1,184,2026,1,1,,0,,,1,8,16,1/8/26 15:00, +1,1,185,2026,1,1,,0,,,1,8,17,1/8/26 16:00, +1,1,186,2026,1,1,,0,,,1,8,18,1/8/26 17:00, +1,1,187,2026,1,1,,0,,,1,8,19,1/8/26 18:00, +1,1,188,2026,1,1,,0,,,1,8,20,1/8/26 19:00, +1,1,189,2026,1,1,,0,,,1,8,21,1/8/26 20:00, +1,1,190,2026,1,1,,0,,,1,8,22,1/8/26 21:00, +1,1,191,2026,1,1,,0,,,1,8,23,1/8/26 22:00, +1,1,192,2026,1,1,,0,,,1,8,24,1/8/26 23:00, +1,1,193,2026,1,1,,0,,,1,9,1,1/9/26 0:00, +1,1,194,2026,1,1,,0,,,1,9,2,1/9/26 1:00, +1,1,195,2026,1,1,,0,,,1,9,3,1/9/26 2:00, +1,1,196,2026,1,1,,0,,,1,9,4,1/9/26 3:00, +1,1,197,2026,1,1,,0,,,1,9,5,1/9/26 4:00, +1,1,198,2026,1,1,,0,,,1,9,6,1/9/26 5:00, +1,1,199,2026,1,1,,0,,,1,9,7,1/9/26 6:00, +1,1,200,2026,1,1,,0,,,1,9,8,1/9/26 7:00, +1,1,201,2026,1,1,,0,,,1,9,9,1/9/26 8:00, +1,1,202,2026,1,1,,0,,,1,9,10,1/9/26 9:00, +1,1,203,2026,1,1,,0,,,1,9,11,1/9/26 10:00, +1,1,204,2026,1,1,,0,,,1,9,12,1/9/26 11:00, +1,1,205,2026,1,1,,0,,,1,9,13,1/9/26 12:00, +1,1,206,2026,1,1,,0,,,1,9,14,1/9/26 13:00, +1,1,207,2026,1,1,,0,,,1,9,15,1/9/26 14:00, +1,1,208,2026,1,1,,0,,,1,9,16,1/9/26 15:00, +1,1,209,2026,1,1,,0,,,1,9,17,1/9/26 16:00, +1,1,210,2026,1,1,,0,,,1,9,18,1/9/26 17:00, +1,1,211,2026,1,1,,0,,,1,9,19,1/9/26 18:00, +1,1,212,2026,1,1,,0,,,1,9,20,1/9/26 19:00, +1,1,213,2026,1,1,,0,,,1,9,21,1/9/26 20:00, +1,1,214,2026,1,1,,0,,,1,9,22,1/9/26 21:00, +1,1,215,2026,1,1,,0,,,1,9,23,1/9/26 22:00, +1,1,216,2026,1,1,,0,,,1,9,24,1/9/26 23:00, +1,1,217,2026,1,1,,0,,,1,10,1,1/10/26 0:00, +1,1,218,2026,1,1,,0,,,1,10,2,1/10/26 1:00, +1,1,219,2026,1,1,,0,,,1,10,3,1/10/26 2:00, +1,1,220,2026,1,1,,0,,,1,10,4,1/10/26 3:00, +1,1,221,2026,1,1,,0,,,1,10,5,1/10/26 4:00, +1,1,222,2026,1,1,,0,,,1,10,6,1/10/26 5:00, +1,1,223,2026,1,1,,0,,,1,10,7,1/10/26 6:00, +1,1,224,2026,1,1,,0,,,1,10,8,1/10/26 7:00, +1,1,225,2026,1,1,,0,,,1,10,9,1/10/26 8:00, +1,1,226,2026,1,1,,0,,,1,10,10,1/10/26 9:00, +1,1,227,2026,1,1,,0,,,1,10,11,1/10/26 10:00, +1,1,228,2026,1,1,,0,,,1,10,12,1/10/26 11:00, +1,1,229,2026,1,1,,0,,,1,10,13,1/10/26 12:00, +1,1,230,2026,1,1,,0,,,1,10,14,1/10/26 13:00, +1,1,231,2026,1,1,,0,,,1,10,15,1/10/26 14:00, +1,1,232,2026,1,1,,0,,,1,10,16,1/10/26 15:00, +1,1,233,2026,1,1,,0,,,1,10,17,1/10/26 16:00, +1,1,234,2026,1,1,,0,,,1,10,18,1/10/26 17:00, +1,1,235,2026,1,1,,0,,,1,10,19,1/10/26 18:00, +1,1,236,2026,1,1,,0,,,1,10,20,1/10/26 19:00, +1,1,237,2026,1,1,,0,,,1,10,21,1/10/26 20:00, +1,1,238,2026,1,1,,0,,,1,10,22,1/10/26 21:00, +1,1,239,2026,1,1,,0,,,1,10,23,1/10/26 22:00, +1,1,240,2026,1,1,,0,,,1,10,24,1/10/26 23:00, +1,1,241,2026,1,1,,0,,,1,11,1,1/11/26 0:00, +1,1,242,2026,1,1,,0,,,1,11,2,1/11/26 1:00, +1,1,243,2026,1,1,,0,,,1,11,3,1/11/26 2:00, +1,1,244,2026,1,1,,0,,,1,11,4,1/11/26 3:00, +1,1,245,2026,1,1,,0,,,1,11,5,1/11/26 4:00, +1,1,246,2026,1,1,,0,,,1,11,6,1/11/26 5:00, +1,1,247,2026,1,1,,0,,,1,11,7,1/11/26 6:00, +1,1,248,2026,1,1,,0,,,1,11,8,1/11/26 7:00, +1,1,249,2026,1,1,,0,,,1,11,9,1/11/26 8:00, +1,1,250,2026,1,1,,0,,,1,11,10,1/11/26 9:00, +1,1,251,2026,1,1,,0,,,1,11,11,1/11/26 10:00, +1,1,252,2026,1,1,,0,,,1,11,12,1/11/26 11:00, +1,1,253,2026,1,1,,0,,,1,11,13,1/11/26 12:00, +1,1,254,2026,1,1,,0,,,1,11,14,1/11/26 13:00, +1,1,255,2026,1,1,,0,,,1,11,15,1/11/26 14:00, +1,1,256,2026,1,1,,0,,,1,11,16,1/11/26 15:00, +1,1,257,2026,1,1,,0,,,1,11,17,1/11/26 16:00, +1,1,258,2026,1,1,,0,,,1,11,18,1/11/26 17:00, +1,1,259,2026,1,1,,0,,,1,11,19,1/11/26 18:00, +1,1,260,2026,1,1,,0,,,1,11,20,1/11/26 19:00, +1,1,261,2026,1,1,,0,,,1,11,21,1/11/26 20:00, +1,1,262,2026,1,1,,0,,,1,11,22,1/11/26 21:00, +1,1,263,2026,1,1,,0,,,1,11,23,1/11/26 22:00, +1,1,264,2026,1,1,,0,,,1,11,24,1/11/26 23:00, +1,1,265,2026,1,1,,0,,,1,12,1,1/12/26 0:00, +1,1,266,2026,1,1,,0,,,1,12,2,1/12/26 1:00, +1,1,267,2026,1,1,,0,,,1,12,3,1/12/26 2:00, +1,1,268,2026,1,1,,0,,,1,12,4,1/12/26 3:00, +1,1,269,2026,1,1,,0,,,1,12,5,1/12/26 4:00, +1,1,270,2026,1,1,,0,,,1,12,6,1/12/26 5:00, +1,1,271,2026,1,1,,0,,,1,12,7,1/12/26 6:00, +1,1,272,2026,1,1,,0,,,1,12,8,1/12/26 7:00, +1,1,273,2026,1,1,,0,,,1,12,9,1/12/26 8:00, +1,1,274,2026,1,1,,0,,,1,12,10,1/12/26 9:00, +1,1,275,2026,1,1,,0,,,1,12,11,1/12/26 10:00, +1,1,276,2026,1,1,,0,,,1,12,12,1/12/26 11:00, +1,1,277,2026,1,1,,0,,,1,12,13,1/12/26 12:00, +1,1,278,2026,1,1,,0,,,1,12,14,1/12/26 13:00, +1,1,279,2026,1,1,,0,,,1,12,15,1/12/26 14:00, +1,1,280,2026,1,1,,0,,,1,12,16,1/12/26 15:00, +1,1,281,2026,1,1,,0,,,1,12,17,1/12/26 16:00, +1,1,282,2026,1,1,,0,,,1,12,18,1/12/26 17:00, +1,1,283,2026,1,1,,0,,,1,12,19,1/12/26 18:00, +1,1,284,2026,1,1,,0,,,1,12,20,1/12/26 19:00, +1,1,285,2026,1,1,,0,,,1,12,21,1/12/26 20:00, +1,1,286,2026,1,1,,0,,,1,12,22,1/12/26 21:00, +1,1,287,2026,1,1,,0,,,1,12,23,1/12/26 22:00, +1,1,288,2026,1,1,,0,,,1,12,24,1/12/26 23:00, +1,1,289,2026,1,1,,0,,,1,13,1,1/13/26 0:00, +1,1,290,2026,1,1,,0,,,1,13,2,1/13/26 1:00, +1,1,291,2026,1,1,,0,,,1,13,3,1/13/26 2:00, +1,1,292,2026,1,1,,0,,,1,13,4,1/13/26 3:00, +1,1,293,2026,1,1,,0,,,1,13,5,1/13/26 4:00, +1,1,294,2026,1,1,,0,,,1,13,6,1/13/26 5:00, +1,1,295,2026,1,1,,0,,,1,13,7,1/13/26 6:00, +1,1,296,2026,1,1,,0,,,1,13,8,1/13/26 7:00, +1,1,297,2026,1,1,,0,,,1,13,9,1/13/26 8:00, +1,1,298,2026,1,1,,0,,,1,13,10,1/13/26 9:00, +1,1,299,2026,1,1,,0,,,1,13,11,1/13/26 10:00, +1,1,300,2026,1,1,,0,,,1,13,12,1/13/26 11:00, +1,1,301,2026,1,1,,0,,,1,13,13,1/13/26 12:00, +1,1,302,2026,1,1,,0,,,1,13,14,1/13/26 13:00, +1,1,303,2026,1,1,,0,,,1,13,15,1/13/26 14:00, +1,1,304,2026,1,1,,0,,,1,13,16,1/13/26 15:00, +1,1,305,2026,1,1,,0,,,1,13,17,1/13/26 16:00, +1,1,306,2026,1,1,,0,,,1,13,18,1/13/26 17:00, +1,1,307,2026,1,1,,0,,,1,13,19,1/13/26 18:00, +1,1,308,2026,1,1,,0,,,1,13,20,1/13/26 19:00, +1,1,309,2026,1,1,,0,,,1,13,21,1/13/26 20:00, +1,1,310,2026,1,1,,0,,,1,13,22,1/13/26 21:00, +1,1,311,2026,1,1,,0,,,1,13,23,1/13/26 22:00, +1,1,312,2026,1,1,,0,,,1,13,24,1/13/26 23:00, +1,1,313,2026,1,1,,0,,,1,14,1,1/14/26 0:00, +1,1,314,2026,1,1,,0,,,1,14,2,1/14/26 1:00, +1,1,315,2026,1,1,,0,,,1,14,3,1/14/26 2:00, +1,1,316,2026,1,1,,0,,,1,14,4,1/14/26 3:00, +1,1,317,2026,1,1,,0,,,1,14,5,1/14/26 4:00, +1,1,318,2026,1,1,,0,,,1,14,6,1/14/26 5:00, +1,1,319,2026,1,1,,0,,,1,14,7,1/14/26 6:00, +1,1,320,2026,1,1,,0,,,1,14,8,1/14/26 7:00, +1,1,321,2026,1,1,,0,,,1,14,9,1/14/26 8:00, +1,1,322,2026,1,1,,0,,,1,14,10,1/14/26 9:00, +1,1,323,2026,1,1,,0,,,1,14,11,1/14/26 10:00, +1,1,324,2026,1,1,,0,,,1,14,12,1/14/26 11:00, +1,1,325,2026,1,1,,0,,,1,14,13,1/14/26 12:00, +1,1,326,2026,1,1,,0,,,1,14,14,1/14/26 13:00, +1,1,327,2026,1,1,,0,,,1,14,15,1/14/26 14:00, +1,1,328,2026,1,1,,0,,,1,14,16,1/14/26 15:00, +1,1,329,2026,1,1,,0,,,1,14,17,1/14/26 16:00, +1,1,330,2026,1,1,,0,,,1,14,18,1/14/26 17:00, +1,1,331,2026,1,1,,0,,,1,14,19,1/14/26 18:00, +1,1,332,2026,1,1,,0,,,1,14,20,1/14/26 19:00, +1,1,333,2026,1,1,,0,,,1,14,21,1/14/26 20:00, +1,1,334,2026,1,1,,0,,,1,14,22,1/14/26 21:00, +1,1,335,2026,1,1,,0,,,1,14,23,1/14/26 22:00, +1,1,336,2026,1,1,,0,,,1,14,24,1/14/26 23:00, +1,1,337,2026,1,1,,0,,,1,15,1,1/15/26 0:00, +1,1,338,2026,1,1,,0,,,1,15,2,1/15/26 1:00, +1,1,339,2026,1,1,,0,,,1,15,3,1/15/26 2:00, +1,1,340,2026,1,1,,0,,,1,15,4,1/15/26 3:00, +1,1,341,2026,1,1,,0,,,1,15,5,1/15/26 4:00, +1,1,342,2026,1,1,,0,,,1,15,6,1/15/26 5:00, +1,1,343,2026,1,1,,0,,,1,15,7,1/15/26 6:00, +1,1,344,2026,1,1,,0,,,1,15,8,1/15/26 7:00, +1,1,345,2026,1,1,,0,,,1,15,9,1/15/26 8:00, +1,1,346,2026,1,1,,0,,,1,15,10,1/15/26 9:00, +1,1,347,2026,1,1,,0,,,1,15,11,1/15/26 10:00, +1,1,348,2026,1,1,,0,,,1,15,12,1/15/26 11:00, +1,1,349,2026,1,1,,0,,,1,15,13,1/15/26 12:00, +1,1,350,2026,1,1,,0,,,1,15,14,1/15/26 13:00, +1,1,351,2026,1,1,,0,,,1,15,15,1/15/26 14:00, +1,1,352,2026,1,1,,0,,,1,15,16,1/15/26 15:00, +1,1,353,2026,1,1,,0,,,1,15,17,1/15/26 16:00, +1,1,354,2026,1,1,,0,,,1,15,18,1/15/26 17:00, +1,1,355,2026,1,1,,0,,,1,15,19,1/15/26 18:00, +1,1,356,2026,1,1,,0,,,1,15,20,1/15/26 19:00, +1,1,357,2026,1,1,,0,,,1,15,21,1/15/26 20:00, +1,1,358,2026,1,1,,0,,,1,15,22,1/15/26 21:00, +1,1,359,2026,1,1,,0,,,1,15,23,1/15/26 22:00, +1,1,360,2026,1,1,,0,,,1,15,24,1/15/26 23:00, +1,1,361,2026,1,1,,0,,,1,16,1,1/16/26 0:00, +1,1,362,2026,1,1,,0,,,1,16,2,1/16/26 1:00, +1,1,363,2026,1,1,,0,,,1,16,3,1/16/26 2:00, +1,1,364,2026,1,1,,0,,,1,16,4,1/16/26 3:00, +1,1,365,2026,1,1,,0,,,1,16,5,1/16/26 4:00, +1,1,366,2026,1,1,,0,,,1,16,6,1/16/26 5:00, +1,1,367,2026,1,1,,0,,,1,16,7,1/16/26 6:00, +1,1,368,2026,1,1,,0,,,1,16,8,1/16/26 7:00, +1,1,369,2026,1,1,,0,,,1,16,9,1/16/26 8:00, +1,1,370,2026,1,1,,0,,,1,16,10,1/16/26 9:00, +1,1,371,2026,1,1,,0,,,1,16,11,1/16/26 10:00, +1,1,372,2026,1,1,,0,,,1,16,12,1/16/26 11:00, +1,1,373,2026,1,1,,0,,,1,16,13,1/16/26 12:00, +1,1,374,2026,1,1,,0,,,1,16,14,1/16/26 13:00, +1,1,375,2026,1,1,,0,,,1,16,15,1/16/26 14:00, +1,1,376,2026,1,1,,0,,,1,16,16,1/16/26 15:00, +1,1,377,2026,1,1,,0,,,1,16,17,1/16/26 16:00, +1,1,378,2026,1,1,,0,,,1,16,18,1/16/26 17:00, +1,1,379,2026,1,1,,0,,,1,16,19,1/16/26 18:00, +1,1,380,2026,1,1,,0,,,1,16,20,1/16/26 19:00, +1,1,381,2026,1,1,,0,,,1,16,21,1/16/26 20:00, +1,1,382,2026,1,1,,0,,,1,16,22,1/16/26 21:00, +1,1,383,2026,1,1,,0,,,1,16,23,1/16/26 22:00, +1,1,384,2026,1,1,,0,,,1,16,24,1/16/26 23:00, +1,1,385,2026,1,1,,0,,,1,17,1,1/17/26 0:00, +1,1,386,2026,1,1,,0,,,1,17,2,1/17/26 1:00, +1,1,387,2026,1,1,,0,,,1,17,3,1/17/26 2:00, +1,1,388,2026,1,1,,0,,,1,17,4,1/17/26 3:00, +1,1,389,2026,1,1,,0,,,1,17,5,1/17/26 4:00, +1,1,390,2026,1,1,,0,,,1,17,6,1/17/26 5:00, +1,1,391,2026,1,1,,0,,,1,17,7,1/17/26 6:00, +1,1,392,2026,1,1,,0,,,1,17,8,1/17/26 7:00, +1,1,393,2026,1,1,,0,,,1,17,9,1/17/26 8:00, +1,1,394,2026,1,1,,0,,,1,17,10,1/17/26 9:00, +1,1,395,2026,1,1,,0,,,1,17,11,1/17/26 10:00, +1,1,396,2026,1,1,,0,,,1,17,12,1/17/26 11:00, +1,1,397,2026,1,1,,0,,,1,17,13,1/17/26 12:00, +1,1,398,2026,1,1,,0,,,1,17,14,1/17/26 13:00, +1,1,399,2026,1,1,,0,,,1,17,15,1/17/26 14:00, +1,1,400,2026,1,1,,0,,,1,17,16,1/17/26 15:00, +1,1,401,2026,1,1,,0,,,1,17,17,1/17/26 16:00, +1,1,402,2026,1,1,,0,,,1,17,18,1/17/26 17:00, +1,1,403,2026,1,1,,0,,,1,17,19,1/17/26 18:00, +1,1,404,2026,1,1,,0,,,1,17,20,1/17/26 19:00, +1,1,405,2026,1,1,,0,,,1,17,21,1/17/26 20:00, +1,1,406,2026,1,1,,0,,,1,17,22,1/17/26 21:00, +1,1,407,2026,1,1,,0,,,1,17,23,1/17/26 22:00, +1,1,408,2026,1,1,,0,,,1,17,24,1/17/26 23:00, +1,1,409,2026,1,1,,0,,,1,18,1,1/18/26 0:00, +1,1,410,2026,1,1,,0,,,1,18,2,1/18/26 1:00, +1,1,411,2026,1,1,,0,,,1,18,3,1/18/26 2:00, +1,1,412,2026,1,1,,0,,,1,18,4,1/18/26 3:00, +1,1,413,2026,1,1,,0,,,1,18,5,1/18/26 4:00, +1,1,414,2026,1,1,,0,,,1,18,6,1/18/26 5:00, +1,1,415,2026,1,1,,0,,,1,18,7,1/18/26 6:00, +1,1,416,2026,1,1,,0,,,1,18,8,1/18/26 7:00, +1,1,417,2026,1,1,,0,,,1,18,9,1/18/26 8:00, +1,1,418,2026,1,1,,0,,,1,18,10,1/18/26 9:00, +1,1,419,2026,1,1,,0,,,1,18,11,1/18/26 10:00, +1,1,420,2026,1,1,,0,,,1,18,12,1/18/26 11:00, +1,1,421,2026,1,1,,0,,,1,18,13,1/18/26 12:00, +1,1,422,2026,1,1,,0,,,1,18,14,1/18/26 13:00, +1,1,423,2026,1,1,,0,,,1,18,15,1/18/26 14:00, +1,1,424,2026,1,1,,0,,,1,18,16,1/18/26 15:00, +1,1,425,2026,1,1,,0,,,1,18,17,1/18/26 16:00, +1,1,426,2026,1,1,,0,,,1,18,18,1/18/26 17:00, +1,1,427,2026,1,1,,0,,,1,18,19,1/18/26 18:00, +1,1,428,2026,1,1,,0,,,1,18,20,1/18/26 19:00, +1,1,429,2026,1,1,,0,,,1,18,21,1/18/26 20:00, +1,1,430,2026,1,1,,0,,,1,18,22,1/18/26 21:00, +1,1,431,2026,1,1,,0,,,1,18,23,1/18/26 22:00, +1,1,432,2026,1,1,,0,,,1,18,24,1/18/26 23:00, +1,1,433,2026,1,1,,0,,,1,19,1,1/19/26 0:00, +1,1,434,2026,1,1,,0,,,1,19,2,1/19/26 1:00, +1,1,435,2026,1,1,,0,,,1,19,3,1/19/26 2:00, +1,1,436,2026,1,1,,0,,,1,19,4,1/19/26 3:00, +1,1,437,2026,1,1,,0,,,1,19,5,1/19/26 4:00, +1,1,438,2026,1,1,,0,,,1,19,6,1/19/26 5:00, +1,1,439,2026,1,1,,0,,,1,19,7,1/19/26 6:00, +1,1,440,2026,1,1,,0,,,1,19,8,1/19/26 7:00, +1,1,441,2026,1,1,,0,,,1,19,9,1/19/26 8:00, +1,1,442,2026,1,1,,0,,,1,19,10,1/19/26 9:00, +1,1,443,2026,1,1,,0,,,1,19,11,1/19/26 10:00, +1,1,444,2026,1,1,,0,,,1,19,12,1/19/26 11:00, +1,1,445,2026,1,1,,0,,,1,19,13,1/19/26 12:00, +1,1,446,2026,1,1,,0,,,1,19,14,1/19/26 13:00, +1,1,447,2026,1,1,,0,,,1,19,15,1/19/26 14:00, +1,1,448,2026,1,1,,0,,,1,19,16,1/19/26 15:00, +1,1,449,2026,1,1,,0,,,1,19,17,1/19/26 16:00, +1,1,450,2026,1,1,,0,,,1,19,18,1/19/26 17:00, +1,1,451,2026,1,1,,0,,,1,19,19,1/19/26 18:00, +1,1,452,2026,1,1,,0,,,1,19,20,1/19/26 19:00, +1,1,453,2026,1,1,,0,,,1,19,21,1/19/26 20:00, +1,1,454,2026,1,1,,0,,,1,19,22,1/19/26 21:00, +1,1,455,2026,1,1,,0,,,1,19,23,1/19/26 22:00, +1,1,456,2026,1,1,,0,,,1,19,24,1/19/26 23:00, +1,1,457,2026,1,1,,0,,,1,20,1,1/20/26 0:00, +1,1,458,2026,1,1,,0,,,1,20,2,1/20/26 1:00, +1,1,459,2026,1,1,,0,,,1,20,3,1/20/26 2:00, +1,1,460,2026,1,1,,0,,,1,20,4,1/20/26 3:00, +1,1,461,2026,1,1,,0,,,1,20,5,1/20/26 4:00, +1,1,462,2026,1,1,,0,,,1,20,6,1/20/26 5:00, +1,1,463,2026,1,1,,0,,,1,20,7,1/20/26 6:00, +1,1,464,2026,1,1,,0,,,1,20,8,1/20/26 7:00, +1,1,465,2026,1,1,,0,,,1,20,9,1/20/26 8:00, +1,1,466,2026,1,1,,0,,,1,20,10,1/20/26 9:00, +1,1,467,2026,1,1,,0,,,1,20,11,1/20/26 10:00, +1,1,468,2026,1,1,,0,,,1,20,12,1/20/26 11:00, +1,1,469,2026,1,1,,0,,,1,20,13,1/20/26 12:00, +1,1,470,2026,1,1,,0,,,1,20,14,1/20/26 13:00, +1,1,471,2026,1,1,,0,,,1,20,15,1/20/26 14:00, +1,1,472,2026,1,1,,0,,,1,20,16,1/20/26 15:00, +1,1,473,2026,1,1,,0,,,1,20,17,1/20/26 16:00, +1,1,474,2026,1,1,,0,,,1,20,18,1/20/26 17:00, +1,1,475,2026,1,1,,0,,,1,20,19,1/20/26 18:00, +1,1,476,2026,1,1,,0,,,1,20,20,1/20/26 19:00, +1,1,477,2026,1,1,,0,,,1,20,21,1/20/26 20:00, +1,1,478,2026,1,1,,0,,,1,20,22,1/20/26 21:00, +1,1,479,2026,1,1,,0,,,1,20,23,1/20/26 22:00, +1,1,480,2026,1,1,,0,,,1,20,24,1/20/26 23:00, +1,1,481,2026,1,1,,0,,,1,21,1,1/21/26 0:00, +1,1,482,2026,1,1,,0,,,1,21,2,1/21/26 1:00, +1,1,483,2026,1,1,,0,,,1,21,3,1/21/26 2:00, +1,1,484,2026,1,1,,0,,,1,21,4,1/21/26 3:00, +1,1,485,2026,1,1,,0,,,1,21,5,1/21/26 4:00, +1,1,486,2026,1,1,,0,,,1,21,6,1/21/26 5:00, +1,1,487,2026,1,1,,0,,,1,21,7,1/21/26 6:00, +1,1,488,2026,1,1,,0,,,1,21,8,1/21/26 7:00, +1,1,489,2026,1,1,,0,,,1,21,9,1/21/26 8:00, +1,1,490,2026,1,1,,0,,,1,21,10,1/21/26 9:00, +1,1,491,2026,1,1,,0,,,1,21,11,1/21/26 10:00, +1,1,492,2026,1,1,,0,,,1,21,12,1/21/26 11:00, +1,1,493,2026,1,1,,0,,,1,21,13,1/21/26 12:00, +1,1,494,2026,1,1,,0,,,1,21,14,1/21/26 13:00, +1,1,495,2026,1,1,,0,,,1,21,15,1/21/26 14:00, +1,1,496,2026,1,1,,0,,,1,21,16,1/21/26 15:00, +1,1,497,2026,1,1,,0,,,1,21,17,1/21/26 16:00, +1,1,498,2026,1,1,,0,,,1,21,18,1/21/26 17:00, +1,1,499,2026,1,1,,0,,,1,21,19,1/21/26 18:00, +1,1,500,2026,1,1,,0,,,1,21,20,1/21/26 19:00, +1,1,501,2026,1,1,,0,,,1,21,21,1/21/26 20:00, +1,1,502,2026,1,1,,0,,,1,21,22,1/21/26 21:00, +1,1,503,2026,1,1,,0,,,1,21,23,1/21/26 22:00, +1,1,504,2026,1,1,,0,,,1,21,24,1/21/26 23:00, +1,1,505,2026,1,1,,0,,,1,22,1,1/22/26 0:00, +1,1,506,2026,1,1,,0,,,1,22,2,1/22/26 1:00, +1,1,507,2026,1,1,,0,,,1,22,3,1/22/26 2:00, +1,1,508,2026,1,1,,0,,,1,22,4,1/22/26 3:00, +1,1,509,2026,1,1,,0,,,1,22,5,1/22/26 4:00, +1,1,510,2026,1,1,,0,,,1,22,6,1/22/26 5:00, +1,1,511,2026,1,1,,0,,,1,22,7,1/22/26 6:00, +1,1,512,2026,1,1,,0,,,1,22,8,1/22/26 7:00, +1,1,513,2026,1,1,,0,,,1,22,9,1/22/26 8:00, +1,1,514,2026,1,1,,0,,,1,22,10,1/22/26 9:00, +1,1,515,2026,1,1,,0,,,1,22,11,1/22/26 10:00, +1,1,516,2026,1,1,,0,,,1,22,12,1/22/26 11:00, +1,1,517,2026,1,1,,0,,,1,22,13,1/22/26 12:00, +1,1,518,2026,1,1,,0,,,1,22,14,1/22/26 13:00, +1,1,519,2026,1,1,,0,,,1,22,15,1/22/26 14:00, +1,1,520,2026,1,1,,0,,,1,22,16,1/22/26 15:00, +1,1,521,2026,1,1,,0,,,1,22,17,1/22/26 16:00, +1,1,522,2026,1,1,,0,,,1,22,18,1/22/26 17:00, +1,1,523,2026,1,1,,0,,,1,22,19,1/22/26 18:00, +1,1,524,2026,1,1,,0,,,1,22,20,1/22/26 19:00, +1,1,525,2026,1,1,,0,,,1,22,21,1/22/26 20:00, +1,1,526,2026,1,1,,0,,,1,22,22,1/22/26 21:00, +1,1,527,2026,1,1,,0,,,1,22,23,1/22/26 22:00, +1,1,528,2026,1,1,,0,,,1,22,24,1/22/26 23:00, +1,1,529,2026,1,1,,0,,,1,23,1,1/23/26 0:00, +1,1,530,2026,1,1,,0,,,1,23,2,1/23/26 1:00, +1,1,531,2026,1,1,,0,,,1,23,3,1/23/26 2:00, +1,1,532,2026,1,1,,0,,,1,23,4,1/23/26 3:00, +1,1,533,2026,1,1,,0,,,1,23,5,1/23/26 4:00, +1,1,534,2026,1,1,,0,,,1,23,6,1/23/26 5:00, +1,1,535,2026,1,1,,0,,,1,23,7,1/23/26 6:00, +1,1,536,2026,1,1,,0,,,1,23,8,1/23/26 7:00, +1,1,537,2026,1,1,,0,,,1,23,9,1/23/26 8:00, +1,1,538,2026,1,1,,0,,,1,23,10,1/23/26 9:00, +1,1,539,2026,1,1,,0,,,1,23,11,1/23/26 10:00, +1,1,540,2026,1,1,,0,,,1,23,12,1/23/26 11:00, +1,1,541,2026,1,1,,0,,,1,23,13,1/23/26 12:00, +1,1,542,2026,1,1,,0,,,1,23,14,1/23/26 13:00, +1,1,543,2026,1,1,,0,,,1,23,15,1/23/26 14:00, +1,1,544,2026,1,1,,0,,,1,23,16,1/23/26 15:00, +1,1,545,2026,1,1,,0,,,1,23,17,1/23/26 16:00, +1,1,546,2026,1,1,,0,,,1,23,18,1/23/26 17:00, +1,1,547,2026,1,1,,0,,,1,23,19,1/23/26 18:00, +1,1,548,2026,1,1,,0,,,1,23,20,1/23/26 19:00, +1,1,549,2026,1,1,,0,,,1,23,21,1/23/26 20:00, +1,1,550,2026,1,1,,0,,,1,23,22,1/23/26 21:00, +1,1,551,2026,1,1,,0,,,1,23,23,1/23/26 22:00, +1,1,552,2026,1,1,,0,,,1,23,24,1/23/26 23:00, +1,1,553,2026,1,1,,0,,,1,24,1,1/24/26 0:00, +1,1,554,2026,1,1,,0,,,1,24,2,1/24/26 1:00, +1,1,555,2026,1,1,,0,,,1,24,3,1/24/26 2:00, +1,1,556,2026,1,1,,0,,,1,24,4,1/24/26 3:00, +1,1,557,2026,1,1,,0,,,1,24,5,1/24/26 4:00, +1,1,558,2026,1,1,,0,,,1,24,6,1/24/26 5:00, +1,1,559,2026,1,1,,0,,,1,24,7,1/24/26 6:00, +1,1,560,2026,1,1,,0,,,1,24,8,1/24/26 7:00, +1,1,561,2026,1,1,,0,,,1,24,9,1/24/26 8:00, +1,1,562,2026,1,1,,0,,,1,24,10,1/24/26 9:00, +1,1,563,2026,1,1,,0,,,1,24,11,1/24/26 10:00, +1,1,564,2026,1,1,,0,,,1,24,12,1/24/26 11:00, +1,1,565,2026,1,1,,0,,,1,24,13,1/24/26 12:00, +1,1,566,2026,1,1,,0,,,1,24,14,1/24/26 13:00, +1,1,567,2026,1,1,,0,,,1,24,15,1/24/26 14:00, +1,1,568,2026,1,1,,0,,,1,24,16,1/24/26 15:00, +1,1,569,2026,1,1,,0,,,1,24,17,1/24/26 16:00, +1,1,570,2026,1,1,,0,,,1,24,18,1/24/26 17:00, +1,1,571,2026,1,1,,0,,,1,24,19,1/24/26 18:00, +1,1,572,2026,1,1,,0,,,1,24,20,1/24/26 19:00, +1,1,573,2026,1,1,,0,,,1,24,21,1/24/26 20:00, +1,1,574,2026,1,1,,0,,,1,24,22,1/24/26 21:00, +1,1,575,2026,1,1,,0,,,1,24,23,1/24/26 22:00, +1,1,576,2026,1,1,,0,,,1,24,24,1/24/26 23:00, +1,1,577,2026,1,1,,0,,,1,25,1,1/25/26 0:00, +1,1,578,2026,1,1,,0,,,1,25,2,1/25/26 1:00, +1,1,579,2026,1,1,,0,,,1,25,3,1/25/26 2:00, +1,1,580,2026,1,1,,0,,,1,25,4,1/25/26 3:00, +1,1,581,2026,1,1,,0,,,1,25,5,1/25/26 4:00, +1,1,582,2026,1,1,,0,,,1,25,6,1/25/26 5:00, +1,1,583,2026,1,1,,0,,,1,25,7,1/25/26 6:00, +1,1,584,2026,1,1,,0,,,1,25,8,1/25/26 7:00, +1,1,585,2026,1,1,,0,,,1,25,9,1/25/26 8:00, +1,1,586,2026,1,1,,0,,,1,25,10,1/25/26 9:00, +1,1,587,2026,1,1,,0,,,1,25,11,1/25/26 10:00, +1,1,588,2026,1,1,,0,,,1,25,12,1/25/26 11:00, +1,1,589,2026,1,1,,0,,,1,25,13,1/25/26 12:00, +1,1,590,2026,1,1,,0,,,1,25,14,1/25/26 13:00, +1,1,591,2026,1,1,,0,,,1,25,15,1/25/26 14:00, +1,1,592,2026,1,1,,0,,,1,25,16,1/25/26 15:00, +1,1,593,2026,1,1,,0,,,1,25,17,1/25/26 16:00, +1,1,594,2026,1,1,,0,,,1,25,18,1/25/26 17:00, +1,1,595,2026,1,1,,0,,,1,25,19,1/25/26 18:00, +1,1,596,2026,1,1,,0,,,1,25,20,1/25/26 19:00, +1,1,597,2026,1,1,,0,,,1,25,21,1/25/26 20:00, +1,1,598,2026,1,1,,0,,,1,25,22,1/25/26 21:00, +1,1,599,2026,1,1,,0,,,1,25,23,1/25/26 22:00, +1,1,600,2026,1,1,,0,,,1,25,24,1/25/26 23:00, +1,1,601,2026,1,1,,0,,,1,26,1,1/26/26 0:00, +1,1,602,2026,1,1,,0,,,1,26,2,1/26/26 1:00, +1,1,603,2026,1,1,,0,,,1,26,3,1/26/26 2:00, +1,1,604,2026,1,1,,0,,,1,26,4,1/26/26 3:00, +1,1,605,2026,1,1,,0,,,1,26,5,1/26/26 4:00, +1,1,606,2026,1,1,,0,,,1,26,6,1/26/26 5:00, +1,1,607,2026,1,1,,0,,,1,26,7,1/26/26 6:00, +1,1,608,2026,1,1,,0,,,1,26,8,1/26/26 7:00, +1,1,609,2026,1,1,,0,,,1,26,9,1/26/26 8:00, +1,1,610,2026,1,1,,0,,,1,26,10,1/26/26 9:00, +1,1,611,2026,1,1,,0,,,1,26,11,1/26/26 10:00, +1,1,612,2026,1,1,,0,,,1,26,12,1/26/26 11:00, +1,1,613,2026,1,1,,0,,,1,26,13,1/26/26 12:00, +1,1,614,2026,1,1,,0,,,1,26,14,1/26/26 13:00, +1,1,615,2026,1,1,,0,,,1,26,15,1/26/26 14:00, +1,1,616,2026,1,1,,0,,,1,26,16,1/26/26 15:00, +1,1,617,2026,1,1,,0,,,1,26,17,1/26/26 16:00, +1,1,618,2026,1,1,,0,,,1,26,18,1/26/26 17:00, +1,1,619,2026,1,1,,0,,,1,26,19,1/26/26 18:00, +1,1,620,2026,1,1,,0,,,1,26,20,1/26/26 19:00, +1,1,621,2026,1,1,,0,,,1,26,21,1/26/26 20:00, +1,1,622,2026,1,1,,0,,,1,26,22,1/26/26 21:00, +1,1,623,2026,1,1,,0,,,1,26,23,1/26/26 22:00, +1,1,624,2026,1,1,,0,,,1,26,24,1/26/26 23:00, +1,1,625,2026,1,1,,0,,,1,27,1,1/27/26 0:00, +1,1,626,2026,1,1,,0,,,1,27,2,1/27/26 1:00, +1,1,627,2026,1,1,,0,,,1,27,3,1/27/26 2:00, +1,1,628,2026,1,1,,0,,,1,27,4,1/27/26 3:00, +1,1,629,2026,1,1,,0,,,1,27,5,1/27/26 4:00, +1,1,630,2026,1,1,,0,,,1,27,6,1/27/26 5:00, +1,1,631,2026,1,1,,0,,,1,27,7,1/27/26 6:00, +1,1,632,2026,1,1,,0,,,1,27,8,1/27/26 7:00, +1,1,633,2026,1,1,,0,,,1,27,9,1/27/26 8:00, +1,1,634,2026,1,1,,0,,,1,27,10,1/27/26 9:00, +1,1,635,2026,1,1,,0,,,1,27,11,1/27/26 10:00, +1,1,636,2026,1,1,,0,,,1,27,12,1/27/26 11:00, +1,1,637,2026,1,1,,0,,,1,27,13,1/27/26 12:00, +1,1,638,2026,1,1,,0,,,1,27,14,1/27/26 13:00, +1,1,639,2026,1,1,,0,,,1,27,15,1/27/26 14:00, +1,1,640,2026,1,1,,0,,,1,27,16,1/27/26 15:00, +1,1,641,2026,1,1,,0,,,1,27,17,1/27/26 16:00, +1,1,642,2026,1,1,,0,,,1,27,18,1/27/26 17:00, +1,1,643,2026,1,1,,0,,,1,27,19,1/27/26 18:00, +1,1,644,2026,1,1,,0,,,1,27,20,1/27/26 19:00, +1,1,645,2026,1,1,,0,,,1,27,21,1/27/26 20:00, +1,1,646,2026,1,1,,0,,,1,27,22,1/27/26 21:00, +1,1,647,2026,1,1,,0,,,1,27,23,1/27/26 22:00, +1,1,648,2026,1,1,,0,,,1,27,24,1/27/26 23:00, +1,1,649,2026,1,1,,0,,,1,28,1,1/28/26 0:00, +1,1,650,2026,1,1,,0,,,1,28,2,1/28/26 1:00, +1,1,651,2026,1,1,,0,,,1,28,3,1/28/26 2:00, +1,1,652,2026,1,1,,0,,,1,28,4,1/28/26 3:00, +1,1,653,2026,1,1,,0,,,1,28,5,1/28/26 4:00, +1,1,654,2026,1,1,,0,,,1,28,6,1/28/26 5:00, +1,1,655,2026,1,1,,0,,,1,28,7,1/28/26 6:00, +1,1,656,2026,1,1,,0,,,1,28,8,1/28/26 7:00, +1,1,657,2026,1,1,,0,,,1,28,9,1/28/26 8:00, +1,1,658,2026,1,1,,0,,,1,28,10,1/28/26 9:00, +1,1,659,2026,1,1,,0,,,1,28,11,1/28/26 10:00, +1,1,660,2026,1,1,,0,,,1,28,12,1/28/26 11:00, +1,1,661,2026,1,1,,0,,,1,28,13,1/28/26 12:00, +1,1,662,2026,1,1,,0,,,1,28,14,1/28/26 13:00, +1,1,663,2026,1,1,,0,,,1,28,15,1/28/26 14:00, +1,1,664,2026,1,1,,0,,,1,28,16,1/28/26 15:00, +1,1,665,2026,1,1,,0,,,1,28,17,1/28/26 16:00, +1,1,666,2026,1,1,,0,,,1,28,18,1/28/26 17:00, +1,1,667,2026,1,1,,0,,,1,28,19,1/28/26 18:00, +1,1,668,2026,1,1,,0,,,1,28,20,1/28/26 19:00, +1,1,669,2026,1,1,,0,,,1,28,21,1/28/26 20:00, +1,1,670,2026,1,1,,0,,,1,28,22,1/28/26 21:00, +1,1,671,2026,1,1,,0,,,1,28,23,1/28/26 22:00, +1,1,672,2026,1,1,,0,,,1,28,24,1/28/26 23:00, +1,1,673,2026,1,1,,0,,,1,29,1,1/29/26 0:00, +1,1,674,2026,1,1,,0,,,1,29,2,1/29/26 1:00, +1,1,675,2026,1,1,,0,,,1,29,3,1/29/26 2:00, +1,1,676,2026,1,1,,0,,,1,29,4,1/29/26 3:00, +1,1,677,2026,1,1,,0,,,1,29,5,1/29/26 4:00, +1,1,678,2026,1,1,,0,,,1,29,6,1/29/26 5:00, +1,1,679,2026,1,1,,0,,,1,29,7,1/29/26 6:00, +1,1,680,2026,1,1,,0,,,1,29,8,1/29/26 7:00, +1,1,681,2026,1,1,,0,,,1,29,9,1/29/26 8:00, +1,1,682,2026,1,1,,0,,,1,29,10,1/29/26 9:00, +1,1,683,2026,1,1,,0,,,1,29,11,1/29/26 10:00, +1,1,684,2026,1,1,,0,,,1,29,12,1/29/26 11:00, +1,1,685,2026,1,1,,0,,,1,29,13,1/29/26 12:00, +1,1,686,2026,1,1,,0,,,1,29,14,1/29/26 13:00, +1,1,687,2026,1,1,,0,,,1,29,15,1/29/26 14:00, +1,1,688,2026,1,1,,0,,,1,29,16,1/29/26 15:00, +1,1,689,2026,1,1,,0,,,1,29,17,1/29/26 16:00, +1,1,690,2026,1,1,,0,,,1,29,18,1/29/26 17:00, +1,1,691,2026,1,1,,0,,,1,29,19,1/29/26 18:00, +1,1,692,2026,1,1,,0,,,1,29,20,1/29/26 19:00, +1,1,693,2026,1,1,,0,,,1,29,21,1/29/26 20:00, +1,1,694,2026,1,1,,0,,,1,29,22,1/29/26 21:00, +1,1,695,2026,1,1,,0,,,1,29,23,1/29/26 22:00, +1,1,696,2026,1,1,,0,,,1,29,24,1/29/26 23:00, +1,1,697,2026,1,1,,0,,,1,30,1,1/30/26 0:00, +1,1,698,2026,1,1,,0,,,1,30,2,1/30/26 1:00, +1,1,699,2026,1,1,,0,,,1,30,3,1/30/26 2:00, +1,1,700,2026,1,1,,0,,,1,30,4,1/30/26 3:00, +1,1,701,2026,1,1,,0,,,1,30,5,1/30/26 4:00, +1,1,702,2026,1,1,,0,,,1,30,6,1/30/26 5:00, +1,1,703,2026,1,1,,0,,,1,30,7,1/30/26 6:00, +1,1,704,2026,1,1,,0,,,1,30,8,1/30/26 7:00, +1,1,705,2026,1,1,,0,,,1,30,9,1/30/26 8:00, +1,1,706,2026,1,1,,0,,,1,30,10,1/30/26 9:00, +1,1,707,2026,1,1,,0,,,1,30,11,1/30/26 10:00, +1,1,708,2026,1,1,,0,,,1,30,12,1/30/26 11:00, +1,1,709,2026,1,1,,0,,,1,30,13,1/30/26 12:00, +1,1,710,2026,1,1,,0,,,1,30,14,1/30/26 13:00, +1,1,711,2026,1,1,,0,,,1,30,15,1/30/26 14:00, +1,1,712,2026,1,1,,0,,,1,30,16,1/30/26 15:00, +1,1,713,2026,1,1,,0,,,1,30,17,1/30/26 16:00, +1,1,714,2026,1,1,,0,,,1,30,18,1/30/26 17:00, +1,1,715,2026,1,1,,0,,,1,30,19,1/30/26 18:00, +1,1,716,2026,1,1,,0,,,1,30,20,1/30/26 19:00, +1,1,717,2026,1,1,,0,,,1,30,21,1/30/26 20:00, +1,1,718,2026,1,1,,0,,,1,30,22,1/30/26 21:00, +1,1,719,2026,1,1,,0,,,1,30,23,1/30/26 22:00, +1,1,720,2026,1,1,,0,,,1,30,24,1/30/26 23:00, +1,1,721,2026,1,1,,0,,,1,31,1,1/31/26 0:00, +1,1,722,2026,1,1,,0,,,1,31,2,1/31/26 1:00, +1,1,723,2026,1,1,,0,,,1,31,3,1/31/26 2:00, +1,1,724,2026,1,1,,0,,,1,31,4,1/31/26 3:00, +1,1,725,2026,1,1,,0,,,1,31,5,1/31/26 4:00, +1,1,726,2026,1,1,,0,,,1,31,6,1/31/26 5:00, +1,1,727,2026,1,1,,0,,,1,31,7,1/31/26 6:00, +1,1,728,2026,1,1,,0,,,1,31,8,1/31/26 7:00, +1,1,729,2026,1,1,,0,,,1,31,9,1/31/26 8:00, +1,1,730,2026,1,1,,0,,,1,31,10,1/31/26 9:00, +1,1,731,2026,1,1,,0,,,1,31,11,1/31/26 10:00, +1,1,732,2026,1,1,,0,,,1,31,12,1/31/26 11:00, +1,1,733,2026,1,1,,0,,,1,31,13,1/31/26 12:00, +1,1,734,2026,1,1,,0,,,1,31,14,1/31/26 13:00, +1,1,735,2026,1,1,,0,,,1,31,15,1/31/26 14:00, +1,1,736,2026,1,1,,0,,,1,31,16,1/31/26 15:00, +1,1,737,2026,1,1,,0,,,1,31,17,1/31/26 16:00, +1,1,738,2026,1,1,,0,,,1,31,18,1/31/26 17:00, +1,1,739,2026,1,1,,0,,,1,31,19,1/31/26 18:00, +1,1,740,2026,1,1,,0,,,1,31,20,1/31/26 19:00, +1,1,741,2026,1,1,,0,,,1,31,21,1/31/26 20:00, +1,1,742,2026,1,1,,0,,,1,31,22,1/31/26 21:00, +1,1,743,2026,1,1,,0,,,1,31,23,1/31/26 22:00, +1,1,744,2026,1,1,,0,,,1,31,24,1/31/26 23:00, +1,1,745,2026,1,1,,0,,,2,1,1,2/1/26 0:00, +1,1,746,2026,1,1,,0,,,2,1,2,2/1/26 1:00, +1,1,747,2026,1,1,,0,,,2,1,3,2/1/26 2:00, +1,1,748,2026,1,1,,0,,,2,1,4,2/1/26 3:00, +1,1,749,2026,1,1,,0,,,2,1,5,2/1/26 4:00, +1,1,750,2026,1,1,,0,,,2,1,6,2/1/26 5:00, +1,1,751,2026,1,1,,0,,,2,1,7,2/1/26 6:00, +1,1,752,2026,1,1,,0,,,2,1,8,2/1/26 7:00, +1,1,753,2026,1,1,,0,,,2,1,9,2/1/26 8:00, +1,1,754,2026,1,1,,0,,,2,1,10,2/1/26 9:00, +1,1,755,2026,1,1,,0,,,2,1,11,2/1/26 10:00, +1,1,756,2026,1,1,,0,,,2,1,12,2/1/26 11:00, +1,1,757,2026,1,1,,0,,,2,1,13,2/1/26 12:00, +1,1,758,2026,1,1,,0,,,2,1,14,2/1/26 13:00, +1,1,759,2026,1,1,,0,,,2,1,15,2/1/26 14:00, +1,1,760,2026,1,1,,0,,,2,1,16,2/1/26 15:00, +1,1,761,2026,1,1,,0,,,2,1,17,2/1/26 16:00, +1,1,762,2026,1,1,,0,,,2,1,18,2/1/26 17:00, +1,1,763,2026,1,1,,0,,,2,1,19,2/1/26 18:00, +1,1,764,2026,1,1,,0,,,2,1,20,2/1/26 19:00, +1,1,765,2026,1,1,,0,,,2,1,21,2/1/26 20:00, +1,1,766,2026,1,1,,0,,,2,1,22,2/1/26 21:00, +1,1,767,2026,1,1,,0,,,2,1,23,2/1/26 22:00, +1,1,768,2026,1,1,,0,,,2,1,24,2/1/26 23:00, +1,1,769,2026,1,1,,0,,,2,2,1,2/2/26 0:00, +1,1,770,2026,1,1,,0,,,2,2,2,2/2/26 1:00, +1,1,771,2026,1,1,,0,,,2,2,3,2/2/26 2:00, +1,1,772,2026,1,1,,0,,,2,2,4,2/2/26 3:00, +1,1,773,2026,1,1,,0,,,2,2,5,2/2/26 4:00, +1,1,774,2026,1,1,,0,,,2,2,6,2/2/26 5:00, +1,1,775,2026,1,1,,0,,,2,2,7,2/2/26 6:00, +1,1,776,2026,1,1,,0,,,2,2,8,2/2/26 7:00, +1,1,777,2026,1,1,,0,,,2,2,9,2/2/26 8:00, +1,1,778,2026,1,1,,0,,,2,2,10,2/2/26 9:00, +1,1,779,2026,1,1,,0,,,2,2,11,2/2/26 10:00, +1,1,780,2026,1,1,,0,,,2,2,12,2/2/26 11:00, +1,1,781,2026,1,1,,0,,,2,2,13,2/2/26 12:00, +1,1,782,2026,1,1,,0,,,2,2,14,2/2/26 13:00, +1,1,783,2026,1,1,,0,,,2,2,15,2/2/26 14:00, +1,1,784,2026,1,1,,0,,,2,2,16,2/2/26 15:00, +1,1,785,2026,1,1,,0,,,2,2,17,2/2/26 16:00, +1,1,786,2026,1,1,,0,,,2,2,18,2/2/26 17:00, +1,1,787,2026,1,1,,0,,,2,2,19,2/2/26 18:00, +1,1,788,2026,1,1,,0,,,2,2,20,2/2/26 19:00, +1,1,789,2026,1,1,,0,,,2,2,21,2/2/26 20:00, +1,1,790,2026,1,1,,0,,,2,2,22,2/2/26 21:00, +1,1,791,2026,1,1,,0,,,2,2,23,2/2/26 22:00, +1,1,792,2026,1,1,,0,,,2,2,24,2/2/26 23:00, +1,1,793,2026,1,1,,0,,,2,3,1,2/3/26 0:00, +1,1,794,2026,1,1,,0,,,2,3,2,2/3/26 1:00, +1,1,795,2026,1,1,,0,,,2,3,3,2/3/26 2:00, +1,1,796,2026,1,1,,0,,,2,3,4,2/3/26 3:00, +1,1,797,2026,1,1,,0,,,2,3,5,2/3/26 4:00, +1,1,798,2026,1,1,,0,,,2,3,6,2/3/26 5:00, +1,1,799,2026,1,1,,0,,,2,3,7,2/3/26 6:00, +1,1,800,2026,1,1,,0,,,2,3,8,2/3/26 7:00, +1,1,801,2026,1,1,,0,,,2,3,9,2/3/26 8:00, +1,1,802,2026,1,1,,0,,,2,3,10,2/3/26 9:00, +1,1,803,2026,1,1,,0,,,2,3,11,2/3/26 10:00, +1,1,804,2026,1,1,,0,,,2,3,12,2/3/26 11:00, +1,1,805,2026,1,1,,0,,,2,3,13,2/3/26 12:00, +1,1,806,2026,1,1,,0,,,2,3,14,2/3/26 13:00, +1,1,807,2026,1,1,,0,,,2,3,15,2/3/26 14:00, +1,1,808,2026,1,1,,0,,,2,3,16,2/3/26 15:00, +1,1,809,2026,1,1,,0,,,2,3,17,2/3/26 16:00, +1,1,810,2026,1,1,,0,,,2,3,18,2/3/26 17:00, +1,1,811,2026,1,1,,0,,,2,3,19,2/3/26 18:00, +1,1,812,2026,1,1,,0,,,2,3,20,2/3/26 19:00, +1,1,813,2026,1,1,,0,,,2,3,21,2/3/26 20:00, +1,1,814,2026,1,1,,0,,,2,3,22,2/3/26 21:00, +1,1,815,2026,1,1,,0,,,2,3,23,2/3/26 22:00, +1,1,816,2026,1,1,,0,,,2,3,24,2/3/26 23:00, +1,1,817,2026,1,1,,0,,,2,4,1,2/4/26 0:00, +1,1,818,2026,1,1,,0,,,2,4,2,2/4/26 1:00, +1,1,819,2026,1,1,,0,,,2,4,3,2/4/26 2:00, +1,1,820,2026,1,1,,0,,,2,4,4,2/4/26 3:00, +1,1,821,2026,1,1,,0,,,2,4,5,2/4/26 4:00, +1,1,822,2026,1,1,,0,,,2,4,6,2/4/26 5:00, +1,1,823,2026,1,1,,0,,,2,4,7,2/4/26 6:00, +1,1,824,2026,1,1,,0,,,2,4,8,2/4/26 7:00, +1,1,825,2026,1,1,,0,,,2,4,9,2/4/26 8:00, +1,1,826,2026,1,1,,0,,,2,4,10,2/4/26 9:00, +1,1,827,2026,1,1,,0,,,2,4,11,2/4/26 10:00, +1,1,828,2026,1,1,,0,,,2,4,12,2/4/26 11:00, +1,1,829,2026,1,1,,0,,,2,4,13,2/4/26 12:00, +1,1,830,2026,1,1,,0,,,2,4,14,2/4/26 13:00, +1,1,831,2026,1,1,,0,,,2,4,15,2/4/26 14:00, +1,1,832,2026,1,1,,0,,,2,4,16,2/4/26 15:00, +1,1,833,2026,1,1,,0,,,2,4,17,2/4/26 16:00, +1,1,834,2026,1,1,,0,,,2,4,18,2/4/26 17:00, +1,1,835,2026,1,1,,0,,,2,4,19,2/4/26 18:00, +1,1,836,2026,1,1,,0,,,2,4,20,2/4/26 19:00, +1,1,837,2026,1,1,,0,,,2,4,21,2/4/26 20:00, +1,1,838,2026,1,1,,0,,,2,4,22,2/4/26 21:00, +1,1,839,2026,1,1,,0,,,2,4,23,2/4/26 22:00, +1,1,840,2026,1,1,,0,,,2,4,24,2/4/26 23:00, +1,1,841,2026,1,1,,0,,,2,5,1,2/5/26 0:00, +1,1,842,2026,1,1,,0,,,2,5,2,2/5/26 1:00, +1,1,843,2026,1,1,,0,,,2,5,3,2/5/26 2:00, +1,1,844,2026,1,1,,0,,,2,5,4,2/5/26 3:00, +1,1,845,2026,1,1,,0,,,2,5,5,2/5/26 4:00, +1,1,846,2026,1,1,,0,,,2,5,6,2/5/26 5:00, +1,1,847,2026,1,1,,0,,,2,5,7,2/5/26 6:00, +1,1,848,2026,1,1,,0,,,2,5,8,2/5/26 7:00, +1,1,849,2026,1,1,,0,,,2,5,9,2/5/26 8:00, +1,1,850,2026,1,1,,0,,,2,5,10,2/5/26 9:00, +1,1,851,2026,1,1,,0,,,2,5,11,2/5/26 10:00, +1,1,852,2026,1,1,,0,,,2,5,12,2/5/26 11:00, +1,1,853,2026,1,1,,0,,,2,5,13,2/5/26 12:00, +1,1,854,2026,1,1,,0,,,2,5,14,2/5/26 13:00, +1,1,855,2026,1,1,,0,,,2,5,15,2/5/26 14:00, +1,1,856,2026,1,1,,0,,,2,5,16,2/5/26 15:00, +1,1,857,2026,1,1,,0,,,2,5,17,2/5/26 16:00, +1,1,858,2026,1,1,,0,,,2,5,18,2/5/26 17:00, +1,1,859,2026,1,1,,0,,,2,5,19,2/5/26 18:00, +1,1,860,2026,1,1,,0,,,2,5,20,2/5/26 19:00, +1,1,861,2026,1,1,,0,,,2,5,21,2/5/26 20:00, +1,1,862,2026,1,1,,0,,,2,5,22,2/5/26 21:00, +1,1,863,2026,1,1,,0,,,2,5,23,2/5/26 22:00, +1,1,864,2026,1,1,,0,,,2,5,24,2/5/26 23:00, +1,1,865,2026,1,1,,0,,,2,6,1,2/6/26 0:00, +1,1,866,2026,1,1,,0,,,2,6,2,2/6/26 1:00, +1,1,867,2026,1,1,,0,,,2,6,3,2/6/26 2:00, +1,1,868,2026,1,1,,0,,,2,6,4,2/6/26 3:00, +1,1,869,2026,1,1,,0,,,2,6,5,2/6/26 4:00, +1,1,870,2026,1,1,,0,,,2,6,6,2/6/26 5:00, +1,1,871,2026,1,1,,0,,,2,6,7,2/6/26 6:00, +1,1,872,2026,1,1,,0,,,2,6,8,2/6/26 7:00, +1,1,873,2026,1,1,,0,,,2,6,9,2/6/26 8:00, +1,1,874,2026,1,1,,0,,,2,6,10,2/6/26 9:00, +1,1,875,2026,1,1,,0,,,2,6,11,2/6/26 10:00, +1,1,876,2026,1,1,,0,,,2,6,12,2/6/26 11:00, +1,1,877,2026,1,1,,0,,,2,6,13,2/6/26 12:00, +1,1,878,2026,1,1,,0,,,2,6,14,2/6/26 13:00, +1,1,879,2026,1,1,,0,,,2,6,15,2/6/26 14:00, +1,1,880,2026,1,1,,0,,,2,6,16,2/6/26 15:00, +1,1,881,2026,1,1,,0,,,2,6,17,2/6/26 16:00, +1,1,882,2026,1,1,,0,,,2,6,18,2/6/26 17:00, +1,1,883,2026,1,1,,0,,,2,6,19,2/6/26 18:00, +1,1,884,2026,1,1,,0,,,2,6,20,2/6/26 19:00, +1,1,885,2026,1,1,,0,,,2,6,21,2/6/26 20:00, +1,1,886,2026,1,1,,0,,,2,6,22,2/6/26 21:00, +1,1,887,2026,1,1,,0,,,2,6,23,2/6/26 22:00, +1,1,888,2026,1,1,,0,,,2,6,24,2/6/26 23:00, +1,1,889,2026,1,1,,0,,,2,7,1,2/7/26 0:00, +1,1,890,2026,1,1,,0,,,2,7,2,2/7/26 1:00, +1,1,891,2026,1,1,,0,,,2,7,3,2/7/26 2:00, +1,1,892,2026,1,1,,0,,,2,7,4,2/7/26 3:00, +1,1,893,2026,1,1,,0,,,2,7,5,2/7/26 4:00, +1,1,894,2026,1,1,,0,,,2,7,6,2/7/26 5:00, +1,1,895,2026,1,1,,0,,,2,7,7,2/7/26 6:00, +1,1,896,2026,1,1,,0,,,2,7,8,2/7/26 7:00, +1,1,897,2026,1,1,,0,,,2,7,9,2/7/26 8:00, +1,1,898,2026,1,1,,0,,,2,7,10,2/7/26 9:00, +1,1,899,2026,1,1,,0,,,2,7,11,2/7/26 10:00, +1,1,900,2026,1,1,,0,,,2,7,12,2/7/26 11:00, +1,1,901,2026,1,1,,0,,,2,7,13,2/7/26 12:00, +1,1,902,2026,1,1,,0,,,2,7,14,2/7/26 13:00, +1,1,903,2026,1,1,,0,,,2,7,15,2/7/26 14:00, +1,1,904,2026,1,1,,0,,,2,7,16,2/7/26 15:00, +1,1,905,2026,1,1,,0,,,2,7,17,2/7/26 16:00, +1,1,906,2026,1,1,,0,,,2,7,18,2/7/26 17:00, +1,1,907,2026,1,1,,0,,,2,7,19,2/7/26 18:00, +1,1,908,2026,1,1,,0,,,2,7,20,2/7/26 19:00, +1,1,909,2026,1,1,,0,,,2,7,21,2/7/26 20:00, +1,1,910,2026,1,1,,0,,,2,7,22,2/7/26 21:00, +1,1,911,2026,1,1,,0,,,2,7,23,2/7/26 22:00, +1,1,912,2026,1,1,,0,,,2,7,24,2/7/26 23:00, +1,1,913,2026,1,1,,0,,,2,8,1,2/8/26 0:00, +1,1,914,2026,1,1,,0,,,2,8,2,2/8/26 1:00, +1,1,915,2026,1,1,,0,,,2,8,3,2/8/26 2:00, +1,1,916,2026,1,1,,0,,,2,8,4,2/8/26 3:00, +1,1,917,2026,1,1,,0,,,2,8,5,2/8/26 4:00, +1,1,918,2026,1,1,,0,,,2,8,6,2/8/26 5:00, +1,1,919,2026,1,1,,0,,,2,8,7,2/8/26 6:00, +1,1,920,2026,1,1,,0,,,2,8,8,2/8/26 7:00, +1,1,921,2026,1,1,,0,,,2,8,9,2/8/26 8:00, +1,1,922,2026,1,1,,0,,,2,8,10,2/8/26 9:00, +1,1,923,2026,1,1,,0,,,2,8,11,2/8/26 10:00, +1,1,924,2026,1,1,,0,,,2,8,12,2/8/26 11:00, +1,1,925,2026,1,1,,0,,,2,8,13,2/8/26 12:00, +1,1,926,2026,1,1,,0,,,2,8,14,2/8/26 13:00, +1,1,927,2026,1,1,,0,,,2,8,15,2/8/26 14:00, +1,1,928,2026,1,1,,0,,,2,8,16,2/8/26 15:00, +1,1,929,2026,1,1,,0,,,2,8,17,2/8/26 16:00, +1,1,930,2026,1,1,,0,,,2,8,18,2/8/26 17:00, +1,1,931,2026,1,1,,0,,,2,8,19,2/8/26 18:00, +1,1,932,2026,1,1,,0,,,2,8,20,2/8/26 19:00, +1,1,933,2026,1,1,,0,,,2,8,21,2/8/26 20:00, +1,1,934,2026,1,1,,0,,,2,8,22,2/8/26 21:00, +1,1,935,2026,1,1,,0,,,2,8,23,2/8/26 22:00, +1,1,936,2026,1,1,,0,,,2,8,24,2/8/26 23:00, +1,1,937,2026,1,1,,0,,,2,9,1,2/9/26 0:00, +1,1,938,2026,1,1,,0,,,2,9,2,2/9/26 1:00, +1,1,939,2026,1,1,,0,,,2,9,3,2/9/26 2:00, +1,1,940,2026,1,1,,0,,,2,9,4,2/9/26 3:00, +1,1,941,2026,1,1,,0,,,2,9,5,2/9/26 4:00, +1,1,942,2026,1,1,,0,,,2,9,6,2/9/26 5:00, +1,1,943,2026,1,1,,0,,,2,9,7,2/9/26 6:00, +1,1,944,2026,1,1,,0,,,2,9,8,2/9/26 7:00, +1,1,945,2026,1,1,,0,,,2,9,9,2/9/26 8:00, +1,1,946,2026,1,1,,0,,,2,9,10,2/9/26 9:00, +1,1,947,2026,1,1,,0,,,2,9,11,2/9/26 10:00, +1,1,948,2026,1,1,,0,,,2,9,12,2/9/26 11:00, +1,1,949,2026,1,1,,0,,,2,9,13,2/9/26 12:00, +1,1,950,2026,1,1,,0,,,2,9,14,2/9/26 13:00, +1,1,951,2026,1,1,,0,,,2,9,15,2/9/26 14:00, +1,1,952,2026,1,1,,0,,,2,9,16,2/9/26 15:00, +1,1,953,2026,1,1,,0,,,2,9,17,2/9/26 16:00, +1,1,954,2026,1,1,,0,,,2,9,18,2/9/26 17:00, +1,1,955,2026,1,1,,0,,,2,9,19,2/9/26 18:00, +1,1,956,2026,1,1,,0,,,2,9,20,2/9/26 19:00, +1,1,957,2026,1,1,,0,,,2,9,21,2/9/26 20:00, +1,1,958,2026,1,1,,0,,,2,9,22,2/9/26 21:00, +1,1,959,2026,1,1,,0,,,2,9,23,2/9/26 22:00, +1,1,960,2026,1,1,,0,,,2,9,24,2/9/26 23:00, +1,1,961,2026,1,1,,0,,,2,10,1,2/10/26 0:00, +1,1,962,2026,1,1,,0,,,2,10,2,2/10/26 1:00, +1,1,963,2026,1,1,,0,,,2,10,3,2/10/26 2:00, +1,1,964,2026,1,1,,0,,,2,10,4,2/10/26 3:00, +1,1,965,2026,1,1,,0,,,2,10,5,2/10/26 4:00, +1,1,966,2026,1,1,,0,,,2,10,6,2/10/26 5:00, +1,1,967,2026,1,1,,0,,,2,10,7,2/10/26 6:00, +1,1,968,2026,1,1,,0,,,2,10,8,2/10/26 7:00, +1,1,969,2026,1,1,,0,,,2,10,9,2/10/26 8:00, +1,1,970,2026,1,1,,0,,,2,10,10,2/10/26 9:00, +1,1,971,2026,1,1,,0,,,2,10,11,2/10/26 10:00, +1,1,972,2026,1,1,,0,,,2,10,12,2/10/26 11:00, +1,1,973,2026,1,1,,0,,,2,10,13,2/10/26 12:00, +1,1,974,2026,1,1,,0,,,2,10,14,2/10/26 13:00, +1,1,975,2026,1,1,,0,,,2,10,15,2/10/26 14:00, +1,1,976,2026,1,1,,0,,,2,10,16,2/10/26 15:00, +1,1,977,2026,1,1,,0,,,2,10,17,2/10/26 16:00, +1,1,978,2026,1,1,,0,,,2,10,18,2/10/26 17:00, +1,1,979,2026,1,1,,0,,,2,10,19,2/10/26 18:00, +1,1,980,2026,1,1,,0,,,2,10,20,2/10/26 19:00, +1,1,981,2026,1,1,,0,,,2,10,21,2/10/26 20:00, +1,1,982,2026,1,1,,0,,,2,10,22,2/10/26 21:00, +1,1,983,2026,1,1,,0,,,2,10,23,2/10/26 22:00, +1,1,984,2026,1,1,,0,,,2,10,24,2/10/26 23:00, +1,1,985,2026,1,1,,0,,,2,11,1,2/11/26 0:00, +1,1,986,2026,1,1,,0,,,2,11,2,2/11/26 1:00, +1,1,987,2026,1,1,,0,,,2,11,3,2/11/26 2:00, +1,1,988,2026,1,1,,0,,,2,11,4,2/11/26 3:00, +1,1,989,2026,1,1,,0,,,2,11,5,2/11/26 4:00, +1,1,990,2026,1,1,,0,,,2,11,6,2/11/26 5:00, +1,1,991,2026,1,1,,0,,,2,11,7,2/11/26 6:00, +1,1,992,2026,1,1,,0,,,2,11,8,2/11/26 7:00, +1,1,993,2026,1,1,,0,,,2,11,9,2/11/26 8:00, +1,1,994,2026,1,1,,0,,,2,11,10,2/11/26 9:00, +1,1,995,2026,1,1,,0,,,2,11,11,2/11/26 10:00, +1,1,996,2026,1,1,,0,,,2,11,12,2/11/26 11:00, +1,1,997,2026,1,1,,0,,,2,11,13,2/11/26 12:00, +1,1,998,2026,1,1,,0,,,2,11,14,2/11/26 13:00, +1,1,999,2026,1,1,,0,,,2,11,15,2/11/26 14:00, +1,1,1000,2026,1,1,,0,,,2,11,16,2/11/26 15:00, +1,1,1001,2026,1,1,,0,,,2,11,17,2/11/26 16:00, +1,1,1002,2026,1,1,,0,,,2,11,18,2/11/26 17:00, +1,1,1003,2026,1,1,,0,,,2,11,19,2/11/26 18:00, +1,1,1004,2026,1,1,,0,,,2,11,20,2/11/26 19:00, +1,1,1005,2026,1,1,,0,,,2,11,21,2/11/26 20:00, +1,1,1006,2026,1,1,,0,,,2,11,22,2/11/26 21:00, +1,1,1007,2026,1,1,,0,,,2,11,23,2/11/26 22:00, +1,1,1008,2026,1,1,,0,,,2,11,24,2/11/26 23:00, +1,1,1009,2026,1,1,,0,,,2,12,1,2/12/26 0:00, +1,1,1010,2026,1,1,,0,,,2,12,2,2/12/26 1:00, +1,1,1011,2026,1,1,,0,,,2,12,3,2/12/26 2:00, +1,1,1012,2026,1,1,,0,,,2,12,4,2/12/26 3:00, +1,1,1013,2026,1,1,,0,,,2,12,5,2/12/26 4:00, +1,1,1014,2026,1,1,,0,,,2,12,6,2/12/26 5:00, +1,1,1015,2026,1,1,,0,,,2,12,7,2/12/26 6:00, +1,1,1016,2026,1,1,,0,,,2,12,8,2/12/26 7:00, +1,1,1017,2026,1,1,,0,,,2,12,9,2/12/26 8:00, +1,1,1018,2026,1,1,,0,,,2,12,10,2/12/26 9:00, +1,1,1019,2026,1,1,,0,,,2,12,11,2/12/26 10:00, +1,1,1020,2026,1,1,,0,,,2,12,12,2/12/26 11:00, +1,1,1021,2026,1,1,,0,,,2,12,13,2/12/26 12:00, +1,1,1022,2026,1,1,,0,,,2,12,14,2/12/26 13:00, +1,1,1023,2026,1,1,,0,,,2,12,15,2/12/26 14:00, +1,1,1024,2026,1,1,,0,,,2,12,16,2/12/26 15:00, +1,1,1025,2026,1,1,,0,,,2,12,17,2/12/26 16:00, +1,1,1026,2026,1,1,,0,,,2,12,18,2/12/26 17:00, +1,1,1027,2026,1,1,,0,,,2,12,19,2/12/26 18:00, +1,1,1028,2026,1,1,,0,,,2,12,20,2/12/26 19:00, +1,1,1029,2026,1,1,,0,,,2,12,21,2/12/26 20:00, +1,1,1030,2026,1,1,,0,,,2,12,22,2/12/26 21:00, +1,1,1031,2026,1,1,,0,,,2,12,23,2/12/26 22:00, +1,1,1032,2026,1,1,,0,,,2,12,24,2/12/26 23:00, +1,1,1033,2026,1,1,,0,,,2,13,1,2/13/26 0:00, +1,1,1034,2026,1,1,,0,,,2,13,2,2/13/26 1:00, +1,1,1035,2026,1,1,,0,,,2,13,3,2/13/26 2:00, +1,1,1036,2026,1,1,,0,,,2,13,4,2/13/26 3:00, +1,1,1037,2026,1,1,,0,,,2,13,5,2/13/26 4:00, +1,1,1038,2026,1,1,,0,,,2,13,6,2/13/26 5:00, +1,1,1039,2026,1,1,,0,,,2,13,7,2/13/26 6:00, +1,1,1040,2026,1,1,,0,,,2,13,8,2/13/26 7:00, +1,1,1041,2026,1,1,,0,,,2,13,9,2/13/26 8:00, +1,1,1042,2026,1,1,,0,,,2,13,10,2/13/26 9:00, +1,1,1043,2026,1,1,,0,,,2,13,11,2/13/26 10:00, +1,1,1044,2026,1,1,,0,,,2,13,12,2/13/26 11:00, +1,1,1045,2026,1,1,,0,,,2,13,13,2/13/26 12:00, +1,1,1046,2026,1,1,,0,,,2,13,14,2/13/26 13:00, +1,1,1047,2026,1,1,,0,,,2,13,15,2/13/26 14:00, +1,1,1048,2026,1,1,,0,,,2,13,16,2/13/26 15:00, +1,1,1049,2026,1,1,,0,,,2,13,17,2/13/26 16:00, +1,1,1050,2026,1,1,,0,,,2,13,18,2/13/26 17:00, +1,1,1051,2026,1,1,,0,,,2,13,19,2/13/26 18:00, +1,1,1052,2026,1,1,,0,,,2,13,20,2/13/26 19:00, +1,1,1053,2026,1,1,,0,,,2,13,21,2/13/26 20:00, +1,1,1054,2026,1,1,,0,,,2,13,22,2/13/26 21:00, +1,1,1055,2026,1,1,,0,,,2,13,23,2/13/26 22:00, +1,1,1056,2026,1,1,,0,,,2,13,24,2/13/26 23:00, +1,1,1057,2026,1,1,,0,,,2,14,1,2/14/26 0:00, +1,1,1058,2026,1,1,,0,,,2,14,2,2/14/26 1:00, +1,1,1059,2026,1,1,,0,,,2,14,3,2/14/26 2:00, +1,1,1060,2026,1,1,,0,,,2,14,4,2/14/26 3:00, +1,1,1061,2026,1,1,,0,,,2,14,5,2/14/26 4:00, +1,1,1062,2026,1,1,,0,,,2,14,6,2/14/26 5:00, +1,1,1063,2026,1,1,,0,,,2,14,7,2/14/26 6:00, +1,1,1064,2026,1,1,,0,,,2,14,8,2/14/26 7:00, +1,1,1065,2026,1,1,,0,,,2,14,9,2/14/26 8:00, +1,1,1066,2026,1,1,,0,,,2,14,10,2/14/26 9:00, +1,1,1067,2026,1,1,,0,,,2,14,11,2/14/26 10:00, +1,1,1068,2026,1,1,,0,,,2,14,12,2/14/26 11:00, +1,1,1069,2026,1,1,,0,,,2,14,13,2/14/26 12:00, +1,1,1070,2026,1,1,,0,,,2,14,14,2/14/26 13:00, +1,1,1071,2026,1,1,,0,,,2,14,15,2/14/26 14:00, +1,1,1072,2026,1,1,,0,,,2,14,16,2/14/26 15:00, +1,1,1073,2026,1,1,,0,,,2,14,17,2/14/26 16:00, +1,1,1074,2026,1,1,,0,,,2,14,18,2/14/26 17:00, +1,1,1075,2026,1,1,,0,,,2,14,19,2/14/26 18:00, +1,1,1076,2026,1,1,,0,,,2,14,20,2/14/26 19:00, +1,1,1077,2026,1,1,,0,,,2,14,21,2/14/26 20:00, +1,1,1078,2026,1,1,,0,,,2,14,22,2/14/26 21:00, +1,1,1079,2026,1,1,,0,,,2,14,23,2/14/26 22:00, +1,1,1080,2026,1,1,,0,,,2,14,24,2/14/26 23:00, +1,1,1081,2026,1,1,,0,,,2,15,1,2/15/26 0:00, +1,1,1082,2026,1,1,,0,,,2,15,2,2/15/26 1:00, +1,1,1083,2026,1,1,,0,,,2,15,3,2/15/26 2:00, +1,1,1084,2026,1,1,,0,,,2,15,4,2/15/26 3:00, +1,1,1085,2026,1,1,,0,,,2,15,5,2/15/26 4:00, +1,1,1086,2026,1,1,,0,,,2,15,6,2/15/26 5:00, +1,1,1087,2026,1,1,,0,,,2,15,7,2/15/26 6:00, +1,1,1088,2026,1,1,,0,,,2,15,8,2/15/26 7:00, +1,1,1089,2026,1,1,,0,,,2,15,9,2/15/26 8:00, +1,1,1090,2026,1,1,,0,,,2,15,10,2/15/26 9:00, +1,1,1091,2026,1,1,,0,,,2,15,11,2/15/26 10:00, +1,1,1092,2026,1,1,,0,,,2,15,12,2/15/26 11:00, +1,1,1093,2026,1,1,,0,,,2,15,13,2/15/26 12:00, +1,1,1094,2026,1,1,,0,,,2,15,14,2/15/26 13:00, +1,1,1095,2026,1,1,,0,,,2,15,15,2/15/26 14:00, +1,1,1096,2026,1,1,,0,,,2,15,16,2/15/26 15:00, +1,1,1097,2026,1,1,,0,,,2,15,17,2/15/26 16:00, +1,1,1098,2026,1,1,,0,,,2,15,18,2/15/26 17:00, +1,1,1099,2026,1,1,,0,,,2,15,19,2/15/26 18:00, +1,1,1100,2026,1,1,,0,,,2,15,20,2/15/26 19:00, +1,1,1101,2026,1,1,,0,,,2,15,21,2/15/26 20:00, +1,1,1102,2026,1,1,,0,,,2,15,22,2/15/26 21:00, +1,1,1103,2026,1,1,,0,,,2,15,23,2/15/26 22:00, +1,1,1104,2026,1,1,,0,,,2,15,24,2/15/26 23:00, +1,1,1105,2026,1,1,,0,,,2,16,1,2/16/26 0:00, +1,1,1106,2026,1,1,,0,,,2,16,2,2/16/26 1:00, +1,1,1107,2026,1,1,,0,,,2,16,3,2/16/26 2:00, +1,1,1108,2026,1,1,,0,,,2,16,4,2/16/26 3:00, +1,1,1109,2026,1,1,,0,,,2,16,5,2/16/26 4:00, +1,1,1110,2026,1,1,,0,,,2,16,6,2/16/26 5:00, +1,1,1111,2026,1,1,,0,,,2,16,7,2/16/26 6:00, +1,1,1112,2026,1,1,,0,,,2,16,8,2/16/26 7:00, +1,1,1113,2026,1,1,,0,,,2,16,9,2/16/26 8:00, +1,1,1114,2026,1,1,,0,,,2,16,10,2/16/26 9:00, +1,1,1115,2026,1,1,,0,,,2,16,11,2/16/26 10:00, +1,1,1116,2026,1,1,,0,,,2,16,12,2/16/26 11:00, +1,1,1117,2026,1,1,,0,,,2,16,13,2/16/26 12:00, +1,1,1118,2026,1,1,,0,,,2,16,14,2/16/26 13:00, +1,1,1119,2026,1,1,,0,,,2,16,15,2/16/26 14:00, +1,1,1120,2026,1,1,,0,,,2,16,16,2/16/26 15:00, +1,1,1121,2026,1,1,,0,,,2,16,17,2/16/26 16:00, +1,1,1122,2026,1,1,,0,,,2,16,18,2/16/26 17:00, +1,1,1123,2026,1,1,,0,,,2,16,19,2/16/26 18:00, +1,1,1124,2026,1,1,,0,,,2,16,20,2/16/26 19:00, +1,1,1125,2026,1,1,,0,,,2,16,21,2/16/26 20:00, +1,1,1126,2026,1,1,,0,,,2,16,22,2/16/26 21:00, +1,1,1127,2026,1,1,,0,,,2,16,23,2/16/26 22:00, +1,1,1128,2026,1,1,,0,,,2,16,24,2/16/26 23:00, +1,1,1129,2026,1,1,,0,,,2,17,1,2/17/26 0:00, +1,1,1130,2026,1,1,,0,,,2,17,2,2/17/26 1:00, +1,1,1131,2026,1,1,,0,,,2,17,3,2/17/26 2:00, +1,1,1132,2026,1,1,,0,,,2,17,4,2/17/26 3:00, +1,1,1133,2026,1,1,,0,,,2,17,5,2/17/26 4:00, +1,1,1134,2026,1,1,,0,,,2,17,6,2/17/26 5:00, +1,1,1135,2026,1,1,,0,,,2,17,7,2/17/26 6:00, +1,1,1136,2026,1,1,,0,,,2,17,8,2/17/26 7:00, +1,1,1137,2026,1,1,,0,,,2,17,9,2/17/26 8:00, +1,1,1138,2026,1,1,,0,,,2,17,10,2/17/26 9:00, +1,1,1139,2026,1,1,,0,,,2,17,11,2/17/26 10:00, +1,1,1140,2026,1,1,,0,,,2,17,12,2/17/26 11:00, +1,1,1141,2026,1,1,,0,,,2,17,13,2/17/26 12:00, +1,1,1142,2026,1,1,,0,,,2,17,14,2/17/26 13:00, +1,1,1143,2026,1,1,,0,,,2,17,15,2/17/26 14:00, +1,1,1144,2026,1,1,,0,,,2,17,16,2/17/26 15:00, +1,1,1145,2026,1,1,,0,,,2,17,17,2/17/26 16:00, +1,1,1146,2026,1,1,,0,,,2,17,18,2/17/26 17:00, +1,1,1147,2026,1,1,,0,,,2,17,19,2/17/26 18:00, +1,1,1148,2026,1,1,,0,,,2,17,20,2/17/26 19:00, +1,1,1149,2026,1,1,,0,,,2,17,21,2/17/26 20:00, +1,1,1150,2026,1,1,,0,,,2,17,22,2/17/26 21:00, +1,1,1151,2026,1,1,,0,,,2,17,23,2/17/26 22:00, +1,1,1152,2026,1,1,,0,,,2,17,24,2/17/26 23:00, +1,1,1153,2026,1,1,,0,,,2,18,1,2/18/26 0:00, +1,1,1154,2026,1,1,,0,,,2,18,2,2/18/26 1:00, +1,1,1155,2026,1,1,,0,,,2,18,3,2/18/26 2:00, +1,1,1156,2026,1,1,,0,,,2,18,4,2/18/26 3:00, +1,1,1157,2026,1,1,,0,,,2,18,5,2/18/26 4:00, +1,1,1158,2026,1,1,,0,,,2,18,6,2/18/26 5:00, +1,1,1159,2026,1,1,,0,,,2,18,7,2/18/26 6:00, +1,1,1160,2026,1,1,,0,,,2,18,8,2/18/26 7:00, +1,1,1161,2026,1,1,,0,,,2,18,9,2/18/26 8:00, +1,1,1162,2026,1,1,,0,,,2,18,10,2/18/26 9:00, +1,1,1163,2026,1,1,,0,,,2,18,11,2/18/26 10:00, +1,1,1164,2026,1,1,,0,,,2,18,12,2/18/26 11:00, +1,1,1165,2026,1,1,,0,,,2,18,13,2/18/26 12:00, +1,1,1166,2026,1,1,,0,,,2,18,14,2/18/26 13:00, +1,1,1167,2026,1,1,,0,,,2,18,15,2/18/26 14:00, +1,1,1168,2026,1,1,,0,,,2,18,16,2/18/26 15:00, +1,1,1169,2026,1,1,,0,,,2,18,17,2/18/26 16:00, +1,1,1170,2026,1,1,,0,,,2,18,18,2/18/26 17:00, +1,1,1171,2026,1,1,,0,,,2,18,19,2/18/26 18:00, +1,1,1172,2026,1,1,,0,,,2,18,20,2/18/26 19:00, +1,1,1173,2026,1,1,,0,,,2,18,21,2/18/26 20:00, +1,1,1174,2026,1,1,,0,,,2,18,22,2/18/26 21:00, +1,1,1175,2026,1,1,,0,,,2,18,23,2/18/26 22:00, +1,1,1176,2026,1,1,,0,,,2,18,24,2/18/26 23:00, +1,1,1177,2026,1,1,,0,,,2,19,1,2/19/26 0:00, +1,1,1178,2026,1,1,,0,,,2,19,2,2/19/26 1:00, +1,1,1179,2026,1,1,,0,,,2,19,3,2/19/26 2:00, +1,1,1180,2026,1,1,,0,,,2,19,4,2/19/26 3:00, +1,1,1181,2026,1,1,,0,,,2,19,5,2/19/26 4:00, +1,1,1182,2026,1,1,,0,,,2,19,6,2/19/26 5:00, +1,1,1183,2026,1,1,,0,,,2,19,7,2/19/26 6:00, +1,1,1184,2026,1,1,,0,,,2,19,8,2/19/26 7:00, +1,1,1185,2026,1,1,,0,,,2,19,9,2/19/26 8:00, +1,1,1186,2026,1,1,,0,,,2,19,10,2/19/26 9:00, +1,1,1187,2026,1,1,,0,,,2,19,11,2/19/26 10:00, +1,1,1188,2026,1,1,,0,,,2,19,12,2/19/26 11:00, +1,1,1189,2026,1,1,,0,,,2,19,13,2/19/26 12:00, +1,1,1190,2026,1,1,,0,,,2,19,14,2/19/26 13:00, +1,1,1191,2026,1,1,,0,,,2,19,15,2/19/26 14:00, +1,1,1192,2026,1,1,,0,,,2,19,16,2/19/26 15:00, +1,1,1193,2026,1,1,,0,,,2,19,17,2/19/26 16:00, +1,1,1194,2026,1,1,,0,,,2,19,18,2/19/26 17:00, +1,1,1195,2026,1,1,,0,,,2,19,19,2/19/26 18:00, +1,1,1196,2026,1,1,,0,,,2,19,20,2/19/26 19:00, +1,1,1197,2026,1,1,,0,,,2,19,21,2/19/26 20:00, +1,1,1198,2026,1,1,,0,,,2,19,22,2/19/26 21:00, +1,1,1199,2026,1,1,,0,,,2,19,23,2/19/26 22:00, +1,1,1200,2026,1,1,,0,,,2,19,24,2/19/26 23:00, +1,1,1201,2026,1,1,,0,,,2,20,1,2/20/26 0:00, +1,1,1202,2026,1,1,,0,,,2,20,2,2/20/26 1:00, +1,1,1203,2026,1,1,,0,,,2,20,3,2/20/26 2:00, +1,1,1204,2026,1,1,,0,,,2,20,4,2/20/26 3:00, +1,1,1205,2026,1,1,,0,,,2,20,5,2/20/26 4:00, +1,1,1206,2026,1,1,,0,,,2,20,6,2/20/26 5:00, +1,1,1207,2026,1,1,,0,,,2,20,7,2/20/26 6:00, +1,1,1208,2026,1,1,,0,,,2,20,8,2/20/26 7:00, +1,1,1209,2026,1,1,,0,,,2,20,9,2/20/26 8:00, +1,1,1210,2026,1,1,,0,,,2,20,10,2/20/26 9:00, +1,1,1211,2026,1,1,,0,,,2,20,11,2/20/26 10:00, +1,1,1212,2026,1,1,,0,,,2,20,12,2/20/26 11:00, +1,1,1213,2026,1,1,,0,,,2,20,13,2/20/26 12:00, +1,1,1214,2026,1,1,,0,,,2,20,14,2/20/26 13:00, +1,1,1215,2026,1,1,,0,,,2,20,15,2/20/26 14:00, +1,1,1216,2026,1,1,,0,,,2,20,16,2/20/26 15:00, +1,1,1217,2026,1,1,,0,,,2,20,17,2/20/26 16:00, +1,1,1218,2026,1,1,,0,,,2,20,18,2/20/26 17:00, +1,1,1219,2026,1,1,,0,,,2,20,19,2/20/26 18:00, +1,1,1220,2026,1,1,,0,,,2,20,20,2/20/26 19:00, +1,1,1221,2026,1,1,,0,,,2,20,21,2/20/26 20:00, +1,1,1222,2026,1,1,,0,,,2,20,22,2/20/26 21:00, +1,1,1223,2026,1,1,,0,,,2,20,23,2/20/26 22:00, +1,1,1224,2026,1,1,,0,,,2,20,24,2/20/26 23:00, +1,1,1225,2026,1,1,,0,,,2,21,1,2/21/26 0:00, +1,1,1226,2026,1,1,,0,,,2,21,2,2/21/26 1:00, +1,1,1227,2026,1,1,,0,,,2,21,3,2/21/26 2:00, +1,1,1228,2026,1,1,,0,,,2,21,4,2/21/26 3:00, +1,1,1229,2026,1,1,,0,,,2,21,5,2/21/26 4:00, +1,1,1230,2026,1,1,,0,,,2,21,6,2/21/26 5:00, +1,1,1231,2026,1,1,,0,,,2,21,7,2/21/26 6:00, +1,1,1232,2026,1,1,,0,,,2,21,8,2/21/26 7:00, +1,1,1233,2026,1,1,,0,,,2,21,9,2/21/26 8:00, +1,1,1234,2026,1,1,,0,,,2,21,10,2/21/26 9:00, +1,1,1235,2026,1,1,,0,,,2,21,11,2/21/26 10:00, +1,1,1236,2026,1,1,,0,,,2,21,12,2/21/26 11:00, +1,1,1237,2026,1,1,,0,,,2,21,13,2/21/26 12:00, +1,1,1238,2026,1,1,,0,,,2,21,14,2/21/26 13:00, +1,1,1239,2026,1,1,,0,,,2,21,15,2/21/26 14:00, +1,1,1240,2026,1,1,,0,,,2,21,16,2/21/26 15:00, +1,1,1241,2026,1,1,,0,,,2,21,17,2/21/26 16:00, +1,1,1242,2026,1,1,,0,,,2,21,18,2/21/26 17:00, +1,1,1243,2026,1,1,,0,,,2,21,19,2/21/26 18:00, +1,1,1244,2026,1,1,,0,,,2,21,20,2/21/26 19:00, +1,1,1245,2026,1,1,,0,,,2,21,21,2/21/26 20:00, +1,1,1246,2026,1,1,,0,,,2,21,22,2/21/26 21:00, +1,1,1247,2026,1,1,,0,,,2,21,23,2/21/26 22:00, +1,1,1248,2026,1,1,,0,,,2,21,24,2/21/26 23:00, +1,1,1249,2026,1,1,,0,,,2,22,1,2/22/26 0:00, +1,1,1250,2026,1,1,,0,,,2,22,2,2/22/26 1:00, +1,1,1251,2026,1,1,,0,,,2,22,3,2/22/26 2:00, +1,1,1252,2026,1,1,,0,,,2,22,4,2/22/26 3:00, +1,1,1253,2026,1,1,,0,,,2,22,5,2/22/26 4:00, +1,1,1254,2026,1,1,,0,,,2,22,6,2/22/26 5:00, +1,1,1255,2026,1,1,,0,,,2,22,7,2/22/26 6:00, +1,1,1256,2026,1,1,,0,,,2,22,8,2/22/26 7:00, +1,1,1257,2026,1,1,,0,,,2,22,9,2/22/26 8:00, +1,1,1258,2026,1,1,,0,,,2,22,10,2/22/26 9:00, +1,1,1259,2026,1,1,,0,,,2,22,11,2/22/26 10:00, +1,1,1260,2026,1,1,,0,,,2,22,12,2/22/26 11:00, +1,1,1261,2026,1,1,,0,,,2,22,13,2/22/26 12:00, +1,1,1262,2026,1,1,,0,,,2,22,14,2/22/26 13:00, +1,1,1263,2026,1,1,,0,,,2,22,15,2/22/26 14:00, +1,1,1264,2026,1,1,,0,,,2,22,16,2/22/26 15:00, +1,1,1265,2026,1,1,,0,,,2,22,17,2/22/26 16:00, +1,1,1266,2026,1,1,,0,,,2,22,18,2/22/26 17:00, +1,1,1267,2026,1,1,,0,,,2,22,19,2/22/26 18:00, +1,1,1268,2026,1,1,,0,,,2,22,20,2/22/26 19:00, +1,1,1269,2026,1,1,,0,,,2,22,21,2/22/26 20:00, +1,1,1270,2026,1,1,,0,,,2,22,22,2/22/26 21:00, +1,1,1271,2026,1,1,,0,,,2,22,23,2/22/26 22:00, +1,1,1272,2026,1,1,,0,,,2,22,24,2/22/26 23:00, +1,1,1273,2026,1,1,,0,,,2,23,1,2/23/26 0:00, +1,1,1274,2026,1,1,,0,,,2,23,2,2/23/26 1:00, +1,1,1275,2026,1,1,,0,,,2,23,3,2/23/26 2:00, +1,1,1276,2026,1,1,,0,,,2,23,4,2/23/26 3:00, +1,1,1277,2026,1,1,,0,,,2,23,5,2/23/26 4:00, +1,1,1278,2026,1,1,,0,,,2,23,6,2/23/26 5:00, +1,1,1279,2026,1,1,,0,,,2,23,7,2/23/26 6:00, +1,1,1280,2026,1,1,,0,,,2,23,8,2/23/26 7:00, +1,1,1281,2026,1,1,,0,,,2,23,9,2/23/26 8:00, +1,1,1282,2026,1,1,,0,,,2,23,10,2/23/26 9:00, +1,1,1283,2026,1,1,,0,,,2,23,11,2/23/26 10:00, +1,1,1284,2026,1,1,,0,,,2,23,12,2/23/26 11:00, +1,1,1285,2026,1,1,,0,,,2,23,13,2/23/26 12:00, +1,1,1286,2026,1,1,,0,,,2,23,14,2/23/26 13:00, +1,1,1287,2026,1,1,,0,,,2,23,15,2/23/26 14:00, +1,1,1288,2026,1,1,,0,,,2,23,16,2/23/26 15:00, +1,1,1289,2026,1,1,,0,,,2,23,17,2/23/26 16:00, +1,1,1290,2026,1,1,,0,,,2,23,18,2/23/26 17:00, +1,1,1291,2026,1,1,,0,,,2,23,19,2/23/26 18:00, +1,1,1292,2026,1,1,,0,,,2,23,20,2/23/26 19:00, +1,1,1293,2026,1,1,,0,,,2,23,21,2/23/26 20:00, +1,1,1294,2026,1,1,,0,,,2,23,22,2/23/26 21:00, +1,1,1295,2026,1,1,,0,,,2,23,23,2/23/26 22:00, +1,1,1296,2026,1,1,,0,,,2,23,24,2/23/26 23:00, +1,1,1297,2026,1,1,,0,,,2,24,1,2/24/26 0:00, +1,1,1298,2026,1,1,,0,,,2,24,2,2/24/26 1:00, +1,1,1299,2026,1,1,,0,,,2,24,3,2/24/26 2:00, +1,1,1300,2026,1,1,,0,,,2,24,4,2/24/26 3:00, +1,1,1301,2026,1,1,,0,,,2,24,5,2/24/26 4:00, +1,1,1302,2026,1,1,,0,,,2,24,6,2/24/26 5:00, +1,1,1303,2026,1,1,,0,,,2,24,7,2/24/26 6:00, +1,1,1304,2026,1,1,,0,,,2,24,8,2/24/26 7:00, +1,1,1305,2026,1,1,,0,,,2,24,9,2/24/26 8:00, +1,1,1306,2026,1,1,,0,,,2,24,10,2/24/26 9:00, +1,1,1307,2026,1,1,,0,,,2,24,11,2/24/26 10:00, +1,1,1308,2026,1,1,,0,,,2,24,12,2/24/26 11:00, +1,1,1309,2026,1,1,,0,,,2,24,13,2/24/26 12:00, +1,1,1310,2026,1,1,,0,,,2,24,14,2/24/26 13:00, +1,1,1311,2026,1,1,,0,,,2,24,15,2/24/26 14:00, +1,1,1312,2026,1,1,,0,,,2,24,16,2/24/26 15:00, +1,1,1313,2026,1,1,,0,,,2,24,17,2/24/26 16:00, +1,1,1314,2026,1,1,,0,,,2,24,18,2/24/26 17:00, +1,1,1315,2026,1,1,,0,,,2,24,19,2/24/26 18:00, +1,1,1316,2026,1,1,,0,,,2,24,20,2/24/26 19:00, +1,1,1317,2026,1,1,,0,,,2,24,21,2/24/26 20:00, +1,1,1318,2026,1,1,,0,,,2,24,22,2/24/26 21:00, +1,1,1319,2026,1,1,,0,,,2,24,23,2/24/26 22:00, +1,1,1320,2026,1,1,,0,,,2,24,24,2/24/26 23:00, +1,1,1321,2026,1,1,,0,,,2,25,1,2/25/26 0:00, +1,1,1322,2026,1,1,,0,,,2,25,2,2/25/26 1:00, +1,1,1323,2026,1,1,,0,,,2,25,3,2/25/26 2:00, +1,1,1324,2026,1,1,,0,,,2,25,4,2/25/26 3:00, +1,1,1325,2026,1,1,,0,,,2,25,5,2/25/26 4:00, +1,1,1326,2026,1,1,,0,,,2,25,6,2/25/26 5:00, +1,1,1327,2026,1,1,,0,,,2,25,7,2/25/26 6:00, +1,1,1328,2026,1,1,,0,,,2,25,8,2/25/26 7:00, +1,1,1329,2026,1,1,,0,,,2,25,9,2/25/26 8:00, +1,1,1330,2026,1,1,,0,,,2,25,10,2/25/26 9:00, +1,1,1331,2026,1,1,,0,,,2,25,11,2/25/26 10:00, +1,1,1332,2026,1,1,,0,,,2,25,12,2/25/26 11:00, +1,1,1333,2026,1,1,,0,,,2,25,13,2/25/26 12:00, +1,1,1334,2026,1,1,,0,,,2,25,14,2/25/26 13:00, +1,1,1335,2026,1,1,,0,,,2,25,15,2/25/26 14:00, +1,1,1336,2026,1,1,,0,,,2,25,16,2/25/26 15:00, +1,1,1337,2026,1,1,,0,,,2,25,17,2/25/26 16:00, +1,1,1338,2026,1,1,,0,,,2,25,18,2/25/26 17:00, +1,1,1339,2026,1,1,,0,,,2,25,19,2/25/26 18:00, +1,1,1340,2026,1,1,,0,,,2,25,20,2/25/26 19:00, +1,1,1341,2026,1,1,,0,,,2,25,21,2/25/26 20:00, +1,1,1342,2026,1,1,,0,,,2,25,22,2/25/26 21:00, +1,1,1343,2026,1,1,,0,,,2,25,23,2/25/26 22:00, +1,1,1344,2026,1,1,,0,,,2,25,24,2/25/26 23:00, +1,1,1345,2026,1,1,,0,,,2,26,1,2/26/26 0:00, +1,1,1346,2026,1,1,,0,,,2,26,2,2/26/26 1:00, +1,1,1347,2026,1,1,,0,,,2,26,3,2/26/26 2:00, +1,1,1348,2026,1,1,,0,,,2,26,4,2/26/26 3:00, +1,1,1349,2026,1,1,,0,,,2,26,5,2/26/26 4:00, +1,1,1350,2026,1,1,,0,,,2,26,6,2/26/26 5:00, +1,1,1351,2026,1,1,,0,,,2,26,7,2/26/26 6:00, +1,1,1352,2026,1,1,,0,,,2,26,8,2/26/26 7:00, +1,1,1353,2026,1,1,,0,,,2,26,9,2/26/26 8:00, +1,1,1354,2026,1,1,,0,,,2,26,10,2/26/26 9:00, +1,1,1355,2026,1,1,,0,,,2,26,11,2/26/26 10:00, +1,1,1356,2026,1,1,,0,,,2,26,12,2/26/26 11:00, +1,1,1357,2026,1,1,,0,,,2,26,13,2/26/26 12:00, +1,1,1358,2026,1,1,,0,,,2,26,14,2/26/26 13:00, +1,1,1359,2026,1,1,,0,,,2,26,15,2/26/26 14:00, +1,1,1360,2026,1,1,,0,,,2,26,16,2/26/26 15:00, +1,1,1361,2026,1,1,,0,,,2,26,17,2/26/26 16:00, +1,1,1362,2026,1,1,,0,,,2,26,18,2/26/26 17:00, +1,1,1363,2026,1,1,,0,,,2,26,19,2/26/26 18:00, +1,1,1364,2026,1,1,,0,,,2,26,20,2/26/26 19:00, +1,1,1365,2026,1,1,,0,,,2,26,21,2/26/26 20:00, +1,1,1366,2026,1,1,,0,,,2,26,22,2/26/26 21:00, +1,1,1367,2026,1,1,,0,,,2,26,23,2/26/26 22:00, +1,1,1368,2026,1,1,,0,,,2,26,24,2/26/26 23:00, +1,1,1369,2026,1,1,,0,,,2,27,1,2/27/26 0:00, +1,1,1370,2026,1,1,,0,,,2,27,2,2/27/26 1:00, +1,1,1371,2026,1,1,,0,,,2,27,3,2/27/26 2:00, +1,1,1372,2026,1,1,,0,,,2,27,4,2/27/26 3:00, +1,1,1373,2026,1,1,,0,,,2,27,5,2/27/26 4:00, +1,1,1374,2026,1,1,,0,,,2,27,6,2/27/26 5:00, +1,1,1375,2026,1,1,,0,,,2,27,7,2/27/26 6:00, +1,1,1376,2026,1,1,,0,,,2,27,8,2/27/26 7:00, +1,1,1377,2026,1,1,,0,,,2,27,9,2/27/26 8:00, +1,1,1378,2026,1,1,,0,,,2,27,10,2/27/26 9:00, +1,1,1379,2026,1,1,,0,,,2,27,11,2/27/26 10:00, +1,1,1380,2026,1,1,,0,,,2,27,12,2/27/26 11:00, +1,1,1381,2026,1,1,,0,,,2,27,13,2/27/26 12:00, +1,1,1382,2026,1,1,,0,,,2,27,14,2/27/26 13:00, +1,1,1383,2026,1,1,,0,,,2,27,15,2/27/26 14:00, +1,1,1384,2026,1,1,,0,,,2,27,16,2/27/26 15:00, +1,1,1385,2026,1,1,,0,,,2,27,17,2/27/26 16:00, +1,1,1386,2026,1,1,,0,,,2,27,18,2/27/26 17:00, +1,1,1387,2026,1,1,,0,,,2,27,19,2/27/26 18:00, +1,1,1388,2026,1,1,,0,,,2,27,20,2/27/26 19:00, +1,1,1389,2026,1,1,,0,,,2,27,21,2/27/26 20:00, +1,1,1390,2026,1,1,,0,,,2,27,22,2/27/26 21:00, +1,1,1391,2026,1,1,,0,,,2,27,23,2/27/26 22:00, +1,1,1392,2026,1,1,,0,,,2,27,24,2/27/26 23:00, +1,1,1393,2026,1,1,,0,,,2,28,1,2/28/26 0:00, +1,1,1394,2026,1,1,,0,,,2,28,2,2/28/26 1:00, +1,1,1395,2026,1,1,,0,,,2,28,3,2/28/26 2:00, +1,1,1396,2026,1,1,,0,,,2,28,4,2/28/26 3:00, +1,1,1397,2026,1,1,,0,,,2,28,5,2/28/26 4:00, +1,1,1398,2026,1,1,,0,,,2,28,6,2/28/26 5:00, +1,1,1399,2026,1,1,,0,,,2,28,7,2/28/26 6:00, +1,1,1400,2026,1,1,,0,,,2,28,8,2/28/26 7:00, +1,1,1401,2026,1,1,,0,,,2,28,9,2/28/26 8:00, +1,1,1402,2026,1,1,,0,,,2,28,10,2/28/26 9:00, +1,1,1403,2026,1,1,,0,,,2,28,11,2/28/26 10:00, +1,1,1404,2026,1,1,,0,,,2,28,12,2/28/26 11:00, +1,1,1405,2026,1,1,,0,,,2,28,13,2/28/26 12:00, +1,1,1406,2026,1,1,,0,,,2,28,14,2/28/26 13:00, +1,1,1407,2026,1,1,,0,,,2,28,15,2/28/26 14:00, +1,1,1408,2026,1,1,,0,,,2,28,16,2/28/26 15:00, +1,1,1409,2026,1,1,,0,,,2,28,17,2/28/26 16:00, +1,1,1410,2026,1,1,,0,,,2,28,18,2/28/26 17:00, +1,1,1411,2026,1,1,,0,,,2,28,19,2/28/26 18:00, +1,1,1412,2026,1,1,,0,,,2,28,20,2/28/26 19:00, +1,1,1413,2026,1,1,,0,,,2,28,21,2/28/26 20:00, +1,1,1414,2026,1,1,,0,,,2,28,22,2/28/26 21:00, +1,1,1415,2026,1,1,,0,,,2,28,23,2/28/26 22:00, +1,1,1416,2026,1,1,,0,,,2,28,24,2/28/26 23:00, +1,1,1417,2026,1,1,,0,,,3,1,1,3/1/26 0:00, +1,1,1418,2026,1,1,,0,,,3,1,2,3/1/26 1:00, +1,1,1419,2026,1,1,,0,,,3,1,3,3/1/26 2:00, +1,1,1420,2026,1,1,,0,,,3,1,4,3/1/26 3:00, +1,1,1421,2026,1,1,,0,,,3,1,5,3/1/26 4:00, +1,1,1422,2026,1,1,,0,,,3,1,6,3/1/26 5:00, +1,1,1423,2026,1,1,,0,,,3,1,7,3/1/26 6:00, +1,1,1424,2026,1,1,,0,,,3,1,8,3/1/26 7:00, +1,1,1425,2026,1,1,,0,,,3,1,9,3/1/26 8:00, +1,1,1426,2026,1,1,,0,,,3,1,10,3/1/26 9:00, +1,1,1427,2026,1,1,,0,,,3,1,11,3/1/26 10:00, +1,1,1428,2026,1,1,,0,,,3,1,12,3/1/26 11:00, +1,1,1429,2026,1,1,,0,,,3,1,13,3/1/26 12:00, +1,1,1430,2026,1,1,,0,,,3,1,14,3/1/26 13:00, +1,1,1431,2026,1,1,,0,,,3,1,15,3/1/26 14:00, +1,1,1432,2026,1,1,,0,,,3,1,16,3/1/26 15:00, +1,1,1433,2026,1,1,,0,,,3,1,17,3/1/26 16:00, +1,1,1434,2026,1,1,,0,,,3,1,18,3/1/26 17:00, +1,1,1435,2026,1,1,,0,,,3,1,19,3/1/26 18:00, +1,1,1436,2026,1,1,,0,,,3,1,20,3/1/26 19:00, +1,1,1437,2026,1,1,,0,,,3,1,21,3/1/26 20:00, +1,1,1438,2026,1,1,,0,,,3,1,22,3/1/26 21:00, +1,1,1439,2026,1,1,,0,,,3,1,23,3/1/26 22:00, +1,1,1440,2026,1,1,,0,,,3,1,24,3/1/26 23:00, +1,1,1441,2026,1,1,,0,,,3,2,1,3/2/26 0:00, +1,1,1442,2026,1,1,,0,,,3,2,2,3/2/26 1:00, +1,1,1443,2026,1,1,,0,,,3,2,3,3/2/26 2:00, +1,1,1444,2026,1,1,,0,,,3,2,4,3/2/26 3:00, +1,1,1445,2026,1,1,,0,,,3,2,5,3/2/26 4:00, +1,1,1446,2026,1,1,,0,,,3,2,6,3/2/26 5:00, +1,1,1447,2026,1,1,,0,,,3,2,7,3/2/26 6:00, +1,1,1448,2026,1,1,,0,,,3,2,8,3/2/26 7:00, +1,1,1449,2026,1,1,,0,,,3,2,9,3/2/26 8:00, +1,1,1450,2026,1,1,,0,,,3,2,10,3/2/26 9:00, +1,1,1451,2026,1,1,,0,,,3,2,11,3/2/26 10:00, +1,1,1452,2026,1,1,,0,,,3,2,12,3/2/26 11:00, +1,1,1453,2026,1,1,,0,,,3,2,13,3/2/26 12:00, +1,1,1454,2026,1,1,,0,,,3,2,14,3/2/26 13:00, +1,1,1455,2026,1,1,,0,,,3,2,15,3/2/26 14:00, +1,1,1456,2026,1,1,,0,,,3,2,16,3/2/26 15:00, +1,1,1457,2026,1,1,,0,,,3,2,17,3/2/26 16:00, +1,1,1458,2026,1,1,,0,,,3,2,18,3/2/26 17:00, +1,1,1459,2026,1,1,,0,,,3,2,19,3/2/26 18:00, +1,1,1460,2026,1,1,,0,,,3,2,20,3/2/26 19:00, +1,1,1461,2026,1,1,,0,,,3,2,21,3/2/26 20:00, +1,1,1462,2026,1,1,,0,,,3,2,22,3/2/26 21:00, +1,1,1463,2026,1,1,,0,,,3,2,23,3/2/26 22:00, +1,1,1464,2026,1,1,,0,,,3,2,24,3/2/26 23:00, +1,1,1465,2026,1,1,,0,,,3,3,1,3/3/26 0:00, +1,1,1466,2026,1,1,,0,,,3,3,2,3/3/26 1:00, +1,1,1467,2026,1,1,,0,,,3,3,3,3/3/26 2:00, +1,1,1468,2026,1,1,,0,,,3,3,4,3/3/26 3:00, +1,1,1469,2026,1,1,,0,,,3,3,5,3/3/26 4:00, +1,1,1470,2026,1,1,,0,,,3,3,6,3/3/26 5:00, +1,1,1471,2026,1,1,,0,,,3,3,7,3/3/26 6:00, +1,1,1472,2026,1,1,,0,,,3,3,8,3/3/26 7:00, +1,1,1473,2026,1,1,,0,,,3,3,9,3/3/26 8:00, +1,1,1474,2026,1,1,,0,,,3,3,10,3/3/26 9:00, +1,1,1475,2026,1,1,,0,,,3,3,11,3/3/26 10:00, +1,1,1476,2026,1,1,,0,,,3,3,12,3/3/26 11:00, +1,1,1477,2026,1,1,,0,,,3,3,13,3/3/26 12:00, +1,1,1478,2026,1,1,,0,,,3,3,14,3/3/26 13:00, +1,1,1479,2026,1,1,,0,,,3,3,15,3/3/26 14:00, +1,1,1480,2026,1,1,,0,,,3,3,16,3/3/26 15:00, +1,1,1481,2026,1,1,,0,,,3,3,17,3/3/26 16:00, +1,1,1482,2026,1,1,,0,,,3,3,18,3/3/26 17:00, +1,1,1483,2026,1,1,,0,,,3,3,19,3/3/26 18:00, +1,1,1484,2026,1,1,,0,,,3,3,20,3/3/26 19:00, +1,1,1485,2026,1,1,,0,,,3,3,21,3/3/26 20:00, +1,1,1486,2026,1,1,,0,,,3,3,22,3/3/26 21:00, +1,1,1487,2026,1,1,,0,,,3,3,23,3/3/26 22:00, +1,1,1488,2026,1,1,,0,,,3,3,24,3/3/26 23:00, +1,1,1489,2026,1,1,,0,,,3,4,1,3/4/26 0:00, +1,1,1490,2026,1,1,,0,,,3,4,2,3/4/26 1:00, +1,1,1491,2026,1,1,,0,,,3,4,3,3/4/26 2:00, +1,1,1492,2026,1,1,,0,,,3,4,4,3/4/26 3:00, +1,1,1493,2026,1,1,,0,,,3,4,5,3/4/26 4:00, +1,1,1494,2026,1,1,,0,,,3,4,6,3/4/26 5:00, +1,1,1495,2026,1,1,,0,,,3,4,7,3/4/26 6:00, +1,1,1496,2026,1,1,,0,,,3,4,8,3/4/26 7:00, +1,1,1497,2026,1,1,,0,,,3,4,9,3/4/26 8:00, +1,1,1498,2026,1,1,,0,,,3,4,10,3/4/26 9:00, +1,1,1499,2026,1,1,,0,,,3,4,11,3/4/26 10:00, +1,1,1500,2026,1,1,,0,,,3,4,12,3/4/26 11:00, +1,1,1501,2026,1,1,,0,,,3,4,13,3/4/26 12:00, +1,1,1502,2026,1,1,,0,,,3,4,14,3/4/26 13:00, +1,1,1503,2026,1,1,,0,,,3,4,15,3/4/26 14:00, +1,1,1504,2026,1,1,,0,,,3,4,16,3/4/26 15:00, +1,1,1505,2026,1,1,,0,,,3,4,17,3/4/26 16:00, +1,1,1506,2026,1,1,,0,,,3,4,18,3/4/26 17:00, +1,1,1507,2026,1,1,,0,,,3,4,19,3/4/26 18:00, +1,1,1508,2026,1,1,,0,,,3,4,20,3/4/26 19:00, +1,1,1509,2026,1,1,,0,,,3,4,21,3/4/26 20:00, +1,1,1510,2026,1,1,,0,,,3,4,22,3/4/26 21:00, +1,1,1511,2026,1,1,,0,,,3,4,23,3/4/26 22:00, +1,1,1512,2026,1,1,,0,,,3,4,24,3/4/26 23:00, +1,1,1513,2026,1,1,,0,,,3,5,1,3/5/26 0:00, +1,1,1514,2026,1,1,,0,,,3,5,2,3/5/26 1:00, +1,1,1515,2026,1,1,,0,,,3,5,3,3/5/26 2:00, +1,1,1516,2026,1,1,,0,,,3,5,4,3/5/26 3:00, +1,1,1517,2026,1,1,,0,,,3,5,5,3/5/26 4:00, +1,1,1518,2026,1,1,,0,,,3,5,6,3/5/26 5:00, +1,1,1519,2026,1,1,,0,,,3,5,7,3/5/26 6:00, +1,1,1520,2026,1,1,,0,,,3,5,8,3/5/26 7:00, +1,1,1521,2026,1,1,,0,,,3,5,9,3/5/26 8:00, +1,1,1522,2026,1,1,,0,,,3,5,10,3/5/26 9:00, +1,1,1523,2026,1,1,,0,,,3,5,11,3/5/26 10:00, +1,1,1524,2026,1,1,,0,,,3,5,12,3/5/26 11:00, +1,1,1525,2026,1,1,,0,,,3,5,13,3/5/26 12:00, +1,1,1526,2026,1,1,,0,,,3,5,14,3/5/26 13:00, +1,1,1527,2026,1,1,,0,,,3,5,15,3/5/26 14:00, +1,1,1528,2026,1,1,,0,,,3,5,16,3/5/26 15:00, +1,1,1529,2026,1,1,,0,,,3,5,17,3/5/26 16:00, +1,1,1530,2026,1,1,,0,,,3,5,18,3/5/26 17:00, +1,1,1531,2026,1,1,,0,,,3,5,19,3/5/26 18:00, +1,1,1532,2026,1,1,,0,,,3,5,20,3/5/26 19:00, +1,1,1533,2026,1,1,,0,,,3,5,21,3/5/26 20:00, +1,1,1534,2026,1,1,,0,,,3,5,22,3/5/26 21:00, +1,1,1535,2026,1,1,,0,,,3,5,23,3/5/26 22:00, +1,1,1536,2026,1,1,,0,,,3,5,24,3/5/26 23:00, +1,1,1537,2026,1,1,,0,,,3,6,1,3/6/26 0:00, +1,1,1538,2026,1,1,,0,,,3,6,2,3/6/26 1:00, +1,1,1539,2026,1,1,,0,,,3,6,3,3/6/26 2:00, +1,1,1540,2026,1,1,,0,,,3,6,4,3/6/26 3:00, +1,1,1541,2026,1,1,,0,,,3,6,5,3/6/26 4:00, +1,1,1542,2026,1,1,,0,,,3,6,6,3/6/26 5:00, +1,1,1543,2026,1,1,,0,,,3,6,7,3/6/26 6:00, +1,1,1544,2026,1,1,,0,,,3,6,8,3/6/26 7:00, +1,1,1545,2026,1,1,,0,,,3,6,9,3/6/26 8:00, +1,1,1546,2026,1,1,,0,,,3,6,10,3/6/26 9:00, +1,1,1547,2026,1,1,,0,,,3,6,11,3/6/26 10:00, +1,1,1548,2026,1,1,,0,,,3,6,12,3/6/26 11:00, +1,1,1549,2026,1,1,,0,,,3,6,13,3/6/26 12:00, +1,1,1550,2026,1,1,,0,,,3,6,14,3/6/26 13:00, +1,1,1551,2026,1,1,,0,,,3,6,15,3/6/26 14:00, +1,1,1552,2026,1,1,,0,,,3,6,16,3/6/26 15:00, +1,1,1553,2026,1,1,,0,,,3,6,17,3/6/26 16:00, +1,1,1554,2026,1,1,,0,,,3,6,18,3/6/26 17:00, +1,1,1555,2026,1,1,,0,,,3,6,19,3/6/26 18:00, +1,1,1556,2026,1,1,,0,,,3,6,20,3/6/26 19:00, +1,1,1557,2026,1,1,,0,,,3,6,21,3/6/26 20:00, +1,1,1558,2026,1,1,,0,,,3,6,22,3/6/26 21:00, +1,1,1559,2026,1,1,,0,,,3,6,23,3/6/26 22:00, +1,1,1560,2026,1,1,,0,,,3,6,24,3/6/26 23:00, +1,1,1561,2026,1,1,,0,,,3,7,1,3/7/26 0:00, +1,1,1562,2026,1,1,,0,,,3,7,2,3/7/26 1:00, +1,1,1563,2026,1,1,,0,,,3,7,3,3/7/26 2:00, +1,1,1564,2026,1,1,,0,,,3,7,4,3/7/26 3:00, +1,1,1565,2026,1,1,,0,,,3,7,5,3/7/26 4:00, +1,1,1566,2026,1,1,,0,,,3,7,6,3/7/26 5:00, +1,1,1567,2026,1,1,,0,,,3,7,7,3/7/26 6:00, +1,1,1568,2026,1,1,,0,,,3,7,8,3/7/26 7:00, +1,1,1569,2026,1,1,,0,,,3,7,9,3/7/26 8:00, +1,1,1570,2026,1,1,,0,,,3,7,10,3/7/26 9:00, +1,1,1571,2026,1,1,,0,,,3,7,11,3/7/26 10:00, +1,1,1572,2026,1,1,,0,,,3,7,12,3/7/26 11:00, +1,1,1573,2026,1,1,,0,,,3,7,13,3/7/26 12:00, +1,1,1574,2026,1,1,,0,,,3,7,14,3/7/26 13:00, +1,1,1575,2026,1,1,,0,,,3,7,15,3/7/26 14:00, +1,1,1576,2026,1,1,,0,,,3,7,16,3/7/26 15:00, +1,1,1577,2026,1,1,,0,,,3,7,17,3/7/26 16:00, +1,1,1578,2026,1,1,,0,,,3,7,18,3/7/26 17:00, +1,1,1579,2026,1,1,,0,,,3,7,19,3/7/26 18:00, +1,1,1580,2026,1,1,,0,,,3,7,20,3/7/26 19:00, +1,1,1581,2026,1,1,,0,,,3,7,21,3/7/26 20:00, +1,1,1582,2026,1,1,,0,,,3,7,22,3/7/26 21:00, +1,1,1583,2026,1,1,,0,,,3,7,23,3/7/26 22:00, +1,1,1584,2026,1,1,,0,,,3,7,24,3/7/26 23:00, +1,1,1585,2026,1,1,,0,,,3,8,1,3/8/26 0:00, +1,1,1586,2026,1,1,,0,,,3,8,2,3/8/26 1:00, +1,1,1587,2026,1,1,,0,,,3,8,3,3/8/26 2:00, +1,1,1588,2026,1,1,,0,,,3,8,4,3/8/26 3:00, +1,1,1589,2026,1,1,,0,,,3,8,5,3/8/26 4:00, +1,1,1590,2026,1,1,,0,,,3,8,6,3/8/26 5:00, +1,1,1591,2026,1,1,,0,,,3,8,7,3/8/26 6:00, +1,1,1592,2026,1,1,,0,,,3,8,8,3/8/26 7:00, +1,1,1593,2026,1,1,,0,,,3,8,9,3/8/26 8:00, +1,1,1594,2026,1,1,,0,,,3,8,10,3/8/26 9:00, +1,1,1595,2026,1,1,,0,,,3,8,11,3/8/26 10:00, +1,1,1596,2026,1,1,,0,,,3,8,12,3/8/26 11:00, +1,1,1597,2026,1,1,,0,,,3,8,13,3/8/26 12:00, +1,1,1598,2026,1,1,,0,,,3,8,14,3/8/26 13:00, +1,1,1599,2026,1,1,,0,,,3,8,15,3/8/26 14:00, +1,1,1600,2026,1,1,,0,,,3,8,16,3/8/26 15:00, +1,1,1601,2026,1,1,,0,,,3,8,17,3/8/26 16:00, +1,1,1602,2026,1,1,,0,,,3,8,18,3/8/26 17:00, +1,1,1603,2026,1,1,,0,,,3,8,19,3/8/26 18:00, +1,1,1604,2026,1,1,,0,,,3,8,20,3/8/26 19:00, +1,1,1605,2026,1,1,,0,,,3,8,21,3/8/26 20:00, +1,1,1606,2026,1,1,,0,,,3,8,22,3/8/26 21:00, +1,1,1607,2026,1,1,,0,,,3,8,23,3/8/26 22:00, +1,1,1608,2026,1,1,,0,,,3,8,24,3/8/26 23:00, +1,1,1609,2026,1,1,,0,,,3,9,1,3/9/26 0:00, +1,1,1610,2026,1,1,,0,,,3,9,2,3/9/26 1:00, +1,1,1611,2026,1,1,,0,,,3,9,3,3/9/26 2:00, +1,1,1612,2026,1,1,,0,,,3,9,4,3/9/26 3:00, +1,1,1613,2026,1,1,,0,,,3,9,5,3/9/26 4:00, +1,1,1614,2026,1,1,,0,,,3,9,6,3/9/26 5:00, +1,1,1615,2026,1,1,,0,,,3,9,7,3/9/26 6:00, +1,1,1616,2026,1,1,,0,,,3,9,8,3/9/26 7:00, +1,1,1617,2026,1,1,,0,,,3,9,9,3/9/26 8:00, +1,1,1618,2026,1,1,,0,,,3,9,10,3/9/26 9:00, +1,1,1619,2026,1,1,,0,,,3,9,11,3/9/26 10:00, +1,1,1620,2026,1,1,,0,,,3,9,12,3/9/26 11:00, +1,1,1621,2026,1,1,,0,,,3,9,13,3/9/26 12:00, +1,1,1622,2026,1,1,,0,,,3,9,14,3/9/26 13:00, +1,1,1623,2026,1,1,,0,,,3,9,15,3/9/26 14:00, +1,1,1624,2026,1,1,,0,,,3,9,16,3/9/26 15:00, +1,1,1625,2026,1,1,,0,,,3,9,17,3/9/26 16:00, +1,1,1626,2026,1,1,,0,,,3,9,18,3/9/26 17:00, +1,1,1627,2026,1,1,,0,,,3,9,19,3/9/26 18:00, +1,1,1628,2026,1,1,,0,,,3,9,20,3/9/26 19:00, +1,1,1629,2026,1,1,,0,,,3,9,21,3/9/26 20:00, +1,1,1630,2026,1,1,,0,,,3,9,22,3/9/26 21:00, +1,1,1631,2026,1,1,,0,,,3,9,23,3/9/26 22:00, +1,1,1632,2026,1,1,,0,,,3,9,24,3/9/26 23:00, +1,1,1633,2026,1,1,,0,,,3,10,1,3/10/26 0:00, +1,1,1634,2026,1,1,,0,,,3,10,2,3/10/26 1:00, +1,1,1635,2026,1,1,,0,,,3,10,3,3/10/26 2:00, +1,1,1636,2026,1,1,,0,,,3,10,4,3/10/26 3:00, +1,1,1637,2026,1,1,,0,,,3,10,5,3/10/26 4:00, +1,1,1638,2026,1,1,,0,,,3,10,6,3/10/26 5:00, +1,1,1639,2026,1,1,,0,,,3,10,7,3/10/26 6:00, +1,1,1640,2026,1,1,,0,,,3,10,8,3/10/26 7:00, +1,1,1641,2026,1,1,,0,,,3,10,9,3/10/26 8:00, +1,1,1642,2026,1,1,,0,,,3,10,10,3/10/26 9:00, +1,1,1643,2026,1,1,,0,,,3,10,11,3/10/26 10:00, +1,1,1644,2026,1,1,,0,,,3,10,12,3/10/26 11:00, +1,1,1645,2026,1,1,,0,,,3,10,13,3/10/26 12:00, +1,1,1646,2026,1,1,,0,,,3,10,14,3/10/26 13:00, +1,1,1647,2026,1,1,,0,,,3,10,15,3/10/26 14:00, +1,1,1648,2026,1,1,,0,,,3,10,16,3/10/26 15:00, +1,1,1649,2026,1,1,,0,,,3,10,17,3/10/26 16:00, +1,1,1650,2026,1,1,,0,,,3,10,18,3/10/26 17:00, +1,1,1651,2026,1,1,,0,,,3,10,19,3/10/26 18:00, +1,1,1652,2026,1,1,,0,,,3,10,20,3/10/26 19:00, +1,1,1653,2026,1,1,,0,,,3,10,21,3/10/26 20:00, +1,1,1654,2026,1,1,,0,,,3,10,22,3/10/26 21:00, +1,1,1655,2026,1,1,,0,,,3,10,23,3/10/26 22:00, +1,1,1656,2026,1,1,,0,,,3,10,24,3/10/26 23:00, +1,1,1657,2026,1,1,,0,,,3,11,1,3/11/26 0:00, +1,1,1658,2026,1,1,,0,,,3,11,2,3/11/26 1:00, +1,1,1659,2026,1,1,,0,,,3,11,3,3/11/26 2:00, +1,1,1660,2026,1,1,,0,,,3,11,4,3/11/26 3:00, +1,1,1661,2026,1,1,,0,,,3,11,5,3/11/26 4:00, +1,1,1662,2026,1,1,,0,,,3,11,6,3/11/26 5:00, +1,1,1663,2026,1,1,,0,,,3,11,7,3/11/26 6:00, +1,1,1664,2026,1,1,,0,,,3,11,8,3/11/26 7:00, +1,1,1665,2026,1,1,,0,,,3,11,9,3/11/26 8:00, +1,1,1666,2026,1,1,,0,,,3,11,10,3/11/26 9:00, +1,1,1667,2026,1,1,,0,,,3,11,11,3/11/26 10:00, +1,1,1668,2026,1,1,,0,,,3,11,12,3/11/26 11:00, +1,1,1669,2026,1,1,,0,,,3,11,13,3/11/26 12:00, +1,1,1670,2026,1,1,,0,,,3,11,14,3/11/26 13:00, +1,1,1671,2026,1,1,,0,,,3,11,15,3/11/26 14:00, +1,1,1672,2026,1,1,,0,,,3,11,16,3/11/26 15:00, +1,1,1673,2026,1,1,,0,,,3,11,17,3/11/26 16:00, +1,1,1674,2026,1,1,,0,,,3,11,18,3/11/26 17:00, +1,1,1675,2026,1,1,,0,,,3,11,19,3/11/26 18:00, +1,1,1676,2026,1,1,,0,,,3,11,20,3/11/26 19:00, +1,1,1677,2026,1,1,,0,,,3,11,21,3/11/26 20:00, +1,1,1678,2026,1,1,,0,,,3,11,22,3/11/26 21:00, +1,1,1679,2026,1,1,,0,,,3,11,23,3/11/26 22:00, +1,1,1680,2026,1,1,,0,,,3,11,24,3/11/26 23:00, +1,1,1681,2026,1,1,,0,,,3,12,1,3/12/26 0:00, +1,1,1682,2026,1,1,,0,,,3,12,2,3/12/26 1:00, +1,1,1683,2026,1,1,,0,,,3,12,3,3/12/26 2:00, +1,1,1684,2026,1,1,,0,,,3,12,4,3/12/26 3:00, +1,1,1685,2026,1,1,,0,,,3,12,5,3/12/26 4:00, +1,1,1686,2026,1,1,,0,,,3,12,6,3/12/26 5:00, +1,1,1687,2026,1,1,,0,,,3,12,7,3/12/26 6:00, +1,1,1688,2026,1,1,,0,,,3,12,8,3/12/26 7:00, +1,1,1689,2026,1,1,,0,,,3,12,9,3/12/26 8:00, +1,1,1690,2026,1,1,,0,,,3,12,10,3/12/26 9:00, +1,1,1691,2026,1,1,,0,,,3,12,11,3/12/26 10:00, +1,1,1692,2026,1,1,,0,,,3,12,12,3/12/26 11:00, +1,1,1693,2026,1,1,,0,,,3,12,13,3/12/26 12:00, +1,1,1694,2026,1,1,,0,,,3,12,14,3/12/26 13:00, +1,1,1695,2026,1,1,,0,,,3,12,15,3/12/26 14:00, +1,1,1696,2026,1,1,,0,,,3,12,16,3/12/26 15:00, +1,1,1697,2026,1,1,,0,,,3,12,17,3/12/26 16:00, +1,1,1698,2026,1,1,,0,,,3,12,18,3/12/26 17:00, +1,1,1699,2026,1,1,,0,,,3,12,19,3/12/26 18:00, +1,1,1700,2026,1,1,,0,,,3,12,20,3/12/26 19:00, +1,1,1701,2026,1,1,,0,,,3,12,21,3/12/26 20:00, +1,1,1702,2026,1,1,,0,,,3,12,22,3/12/26 21:00, +1,1,1703,2026,1,1,,0,,,3,12,23,3/12/26 22:00, +1,1,1704,2026,1,1,,0,,,3,12,24,3/12/26 23:00, +1,1,1705,2026,1,1,,0,,,3,13,1,3/13/26 0:00, +1,1,1706,2026,1,1,,0,,,3,13,2,3/13/26 1:00, +1,1,1707,2026,1,1,,0,,,3,13,3,3/13/26 2:00, +1,1,1708,2026,1,1,,0,,,3,13,4,3/13/26 3:00, +1,1,1709,2026,1,1,,0,,,3,13,5,3/13/26 4:00, +1,1,1710,2026,1,1,,0,,,3,13,6,3/13/26 5:00, +1,1,1711,2026,1,1,,0,,,3,13,7,3/13/26 6:00, +1,1,1712,2026,1,1,,0,,,3,13,8,3/13/26 7:00, +1,1,1713,2026,1,1,,0,,,3,13,9,3/13/26 8:00, +1,1,1714,2026,1,1,,0,,,3,13,10,3/13/26 9:00, +1,1,1715,2026,1,1,,0,,,3,13,11,3/13/26 10:00, +1,1,1716,2026,1,1,,0,,,3,13,12,3/13/26 11:00, +1,1,1717,2026,1,1,,0,,,3,13,13,3/13/26 12:00, +1,1,1718,2026,1,1,,0,,,3,13,14,3/13/26 13:00, +1,1,1719,2026,1,1,,0,,,3,13,15,3/13/26 14:00, +1,1,1720,2026,1,1,,0,,,3,13,16,3/13/26 15:00, +1,1,1721,2026,1,1,,0,,,3,13,17,3/13/26 16:00, +1,1,1722,2026,1,1,,0,,,3,13,18,3/13/26 17:00, +1,1,1723,2026,1,1,,0,,,3,13,19,3/13/26 18:00, +1,1,1724,2026,1,1,,0,,,3,13,20,3/13/26 19:00, +1,1,1725,2026,1,1,,0,,,3,13,21,3/13/26 20:00, +1,1,1726,2026,1,1,,0,,,3,13,22,3/13/26 21:00, +1,1,1727,2026,1,1,,0,,,3,13,23,3/13/26 22:00, +1,1,1728,2026,1,1,,0,,,3,13,24,3/13/26 23:00, +1,1,1729,2026,1,1,,0,,,3,14,1,3/14/26 0:00, +1,1,1730,2026,1,1,,0,,,3,14,2,3/14/26 1:00, +1,1,1731,2026,1,1,,0,,,3,14,3,3/14/26 2:00, +1,1,1732,2026,1,1,,0,,,3,14,4,3/14/26 3:00, +1,1,1733,2026,1,1,,0,,,3,14,5,3/14/26 4:00, +1,1,1734,2026,1,1,,0,,,3,14,6,3/14/26 5:00, +1,1,1735,2026,1,1,,0,,,3,14,7,3/14/26 6:00, +1,1,1736,2026,1,1,,0,,,3,14,8,3/14/26 7:00, +1,1,1737,2026,1,1,,0,,,3,14,9,3/14/26 8:00, +1,1,1738,2026,1,1,,0,,,3,14,10,3/14/26 9:00, +1,1,1739,2026,1,1,,0,,,3,14,11,3/14/26 10:00, +1,1,1740,2026,1,1,,0,,,3,14,12,3/14/26 11:00, +1,1,1741,2026,1,1,,0,,,3,14,13,3/14/26 12:00, +1,1,1742,2026,1,1,,0,,,3,14,14,3/14/26 13:00, +1,1,1743,2026,1,1,,0,,,3,14,15,3/14/26 14:00, +1,1,1744,2026,1,1,,0,,,3,14,16,3/14/26 15:00, +1,1,1745,2026,1,1,,0,,,3,14,17,3/14/26 16:00, +1,1,1746,2026,1,1,,0,,,3,14,18,3/14/26 17:00, +1,1,1747,2026,1,1,,0,,,3,14,19,3/14/26 18:00, +1,1,1748,2026,1,1,,0,,,3,14,20,3/14/26 19:00, +1,1,1749,2026,1,1,,0,,,3,14,21,3/14/26 20:00, +1,1,1750,2026,1,1,,0,,,3,14,22,3/14/26 21:00, +1,1,1751,2026,1,1,,0,,,3,14,23,3/14/26 22:00, +1,1,1752,2026,1,1,,0,,,3,14,24,3/14/26 23:00, +1,1,1753,2026,1,1,,0,,,3,15,1,3/15/26 0:00, +1,1,1754,2026,1,1,,0,,,3,15,2,3/15/26 1:00, +1,1,1755,2026,1,1,,0,,,3,15,3,3/15/26 2:00, +1,1,1756,2026,1,1,,0,,,3,15,4,3/15/26 3:00, +1,1,1757,2026,1,1,,0,,,3,15,5,3/15/26 4:00, +1,1,1758,2026,1,1,,0,,,3,15,6,3/15/26 5:00, +1,1,1759,2026,1,1,,0,,,3,15,7,3/15/26 6:00, +1,1,1760,2026,1,1,,0,,,3,15,8,3/15/26 7:00, +1,1,1761,2026,1,1,,0,,,3,15,9,3/15/26 8:00, +1,1,1762,2026,1,1,,0,,,3,15,10,3/15/26 9:00, +1,1,1763,2026,1,1,,0,,,3,15,11,3/15/26 10:00, +1,1,1764,2026,1,1,,0,,,3,15,12,3/15/26 11:00, +1,1,1765,2026,1,1,,0,,,3,15,13,3/15/26 12:00, +1,1,1766,2026,1,1,,0,,,3,15,14,3/15/26 13:00, +1,1,1767,2026,1,1,,0,,,3,15,15,3/15/26 14:00, +1,1,1768,2026,1,1,,0,,,3,15,16,3/15/26 15:00, +1,1,1769,2026,1,1,,0,,,3,15,17,3/15/26 16:00, +1,1,1770,2026,1,1,,0,,,3,15,18,3/15/26 17:00, +1,1,1771,2026,1,1,,0,,,3,15,19,3/15/26 18:00, +1,1,1772,2026,1,1,,0,,,3,15,20,3/15/26 19:00, +1,1,1773,2026,1,1,,0,,,3,15,21,3/15/26 20:00, +1,1,1774,2026,1,1,,0,,,3,15,22,3/15/26 21:00, +1,1,1775,2026,1,1,,0,,,3,15,23,3/15/26 22:00, +1,1,1776,2026,1,1,,0,,,3,15,24,3/15/26 23:00, +1,1,1777,2026,1,1,,0,,,3,16,1,3/16/26 0:00, +1,1,1778,2026,1,1,,0,,,3,16,2,3/16/26 1:00, +1,1,1779,2026,1,1,,0,,,3,16,3,3/16/26 2:00, +1,1,1780,2026,1,1,,0,,,3,16,4,3/16/26 3:00, +1,1,1781,2026,1,1,,0,,,3,16,5,3/16/26 4:00, +1,1,1782,2026,1,1,,0,,,3,16,6,3/16/26 5:00, +1,1,1783,2026,1,1,,0,,,3,16,7,3/16/26 6:00, +1,1,1784,2026,1,1,,0,,,3,16,8,3/16/26 7:00, +1,1,1785,2026,1,1,,0,,,3,16,9,3/16/26 8:00, +1,1,1786,2026,1,1,,0,,,3,16,10,3/16/26 9:00, +1,1,1787,2026,1,1,,0,,,3,16,11,3/16/26 10:00, +1,1,1788,2026,1,1,,0,,,3,16,12,3/16/26 11:00, +1,1,1789,2026,1,1,,0,,,3,16,13,3/16/26 12:00, +1,1,1790,2026,1,1,,0,,,3,16,14,3/16/26 13:00, +1,1,1791,2026,1,1,,0,,,3,16,15,3/16/26 14:00, +1,1,1792,2026,1,1,,0,,,3,16,16,3/16/26 15:00, +1,1,1793,2026,1,1,,0,,,3,16,17,3/16/26 16:00, +1,1,1794,2026,1,1,,0,,,3,16,18,3/16/26 17:00, +1,1,1795,2026,1,1,,0,,,3,16,19,3/16/26 18:00, +1,1,1796,2026,1,1,,0,,,3,16,20,3/16/26 19:00, +1,1,1797,2026,1,1,,0,,,3,16,21,3/16/26 20:00, +1,1,1798,2026,1,1,,0,,,3,16,22,3/16/26 21:00, +1,1,1799,2026,1,1,,0,,,3,16,23,3/16/26 22:00, +1,1,1800,2026,1,1,,0,,,3,16,24,3/16/26 23:00, +1,1,1801,2026,1,1,,0,,,3,17,1,3/17/26 0:00, +1,1,1802,2026,1,1,,0,,,3,17,2,3/17/26 1:00, +1,1,1803,2026,1,1,,0,,,3,17,3,3/17/26 2:00, +1,1,1804,2026,1,1,,0,,,3,17,4,3/17/26 3:00, +1,1,1805,2026,1,1,,0,,,3,17,5,3/17/26 4:00, +1,1,1806,2026,1,1,,0,,,3,17,6,3/17/26 5:00, +1,1,1807,2026,1,1,,0,,,3,17,7,3/17/26 6:00, +1,1,1808,2026,1,1,,0,,,3,17,8,3/17/26 7:00, +1,1,1809,2026,1,1,,0,,,3,17,9,3/17/26 8:00, +1,1,1810,2026,1,1,,0,,,3,17,10,3/17/26 9:00, +1,1,1811,2026,1,1,,0,,,3,17,11,3/17/26 10:00, +1,1,1812,2026,1,1,,0,,,3,17,12,3/17/26 11:00, +1,1,1813,2026,1,1,,0,,,3,17,13,3/17/26 12:00, +1,1,1814,2026,1,1,,0,,,3,17,14,3/17/26 13:00, +1,1,1815,2026,1,1,,0,,,3,17,15,3/17/26 14:00, +1,1,1816,2026,1,1,,0,,,3,17,16,3/17/26 15:00, +1,1,1817,2026,1,1,,0,,,3,17,17,3/17/26 16:00, +1,1,1818,2026,1,1,,0,,,3,17,18,3/17/26 17:00, +1,1,1819,2026,1,1,,0,,,3,17,19,3/17/26 18:00, +1,1,1820,2026,1,1,,0,,,3,17,20,3/17/26 19:00, +1,1,1821,2026,1,1,,0,,,3,17,21,3/17/26 20:00, +1,1,1822,2026,1,1,,0,,,3,17,22,3/17/26 21:00, +1,1,1823,2026,1,1,,0,,,3,17,23,3/17/26 22:00, +1,1,1824,2026,1,1,,0,,,3,17,24,3/17/26 23:00, +1,1,1825,2026,1,1,,0,,,3,18,1,3/18/26 0:00, +1,1,1826,2026,1,1,,0,,,3,18,2,3/18/26 1:00, +1,1,1827,2026,1,1,,0,,,3,18,3,3/18/26 2:00, +1,1,1828,2026,1,1,,0,,,3,18,4,3/18/26 3:00, +1,1,1829,2026,1,1,,0,,,3,18,5,3/18/26 4:00, +1,1,1830,2026,1,1,,0,,,3,18,6,3/18/26 5:00, +1,1,1831,2026,1,1,,0,,,3,18,7,3/18/26 6:00, +1,1,1832,2026,1,1,,0,,,3,18,8,3/18/26 7:00, +1,1,1833,2026,1,1,,0,,,3,18,9,3/18/26 8:00, +1,1,1834,2026,1,1,,0,,,3,18,10,3/18/26 9:00, +1,1,1835,2026,1,1,,0,,,3,18,11,3/18/26 10:00, +1,1,1836,2026,1,1,,0,,,3,18,12,3/18/26 11:00, +1,1,1837,2026,1,1,,0,,,3,18,13,3/18/26 12:00, +1,1,1838,2026,1,1,,0,,,3,18,14,3/18/26 13:00, +1,1,1839,2026,1,1,,0,,,3,18,15,3/18/26 14:00, +1,1,1840,2026,1,1,,0,,,3,18,16,3/18/26 15:00, +1,1,1841,2026,1,1,,0,,,3,18,17,3/18/26 16:00, +1,1,1842,2026,1,1,,0,,,3,18,18,3/18/26 17:00, +1,1,1843,2026,1,1,,0,,,3,18,19,3/18/26 18:00, +1,1,1844,2026,1,1,,0,,,3,18,20,3/18/26 19:00, +1,1,1845,2026,1,1,,0,,,3,18,21,3/18/26 20:00, +1,1,1846,2026,1,1,,0,,,3,18,22,3/18/26 21:00, +1,1,1847,2026,1,1,,0,,,3,18,23,3/18/26 22:00, +1,1,1848,2026,1,1,,0,,,3,18,24,3/18/26 23:00, +1,1,1849,2026,1,1,,0,,,3,19,1,3/19/26 0:00, +1,1,1850,2026,1,1,,0,,,3,19,2,3/19/26 1:00, +1,1,1851,2026,1,1,,0,,,3,19,3,3/19/26 2:00, +1,1,1852,2026,1,1,,0,,,3,19,4,3/19/26 3:00, +1,1,1853,2026,1,1,,0,,,3,19,5,3/19/26 4:00, +1,1,1854,2026,1,1,,0,,,3,19,6,3/19/26 5:00, +1,1,1855,2026,1,1,,0,,,3,19,7,3/19/26 6:00, +1,1,1856,2026,1,1,,0,,,3,19,8,3/19/26 7:00, +1,1,1857,2026,1,1,,0,,,3,19,9,3/19/26 8:00, +1,1,1858,2026,1,1,,0,,,3,19,10,3/19/26 9:00, +1,1,1859,2026,1,1,,0,,,3,19,11,3/19/26 10:00, +1,1,1860,2026,1,1,,0,,,3,19,12,3/19/26 11:00, +1,1,1861,2026,1,1,,0,,,3,19,13,3/19/26 12:00, +1,1,1862,2026,1,1,,0,,,3,19,14,3/19/26 13:00, +1,1,1863,2026,1,1,,0,,,3,19,15,3/19/26 14:00, +1,1,1864,2026,1,1,,0,,,3,19,16,3/19/26 15:00, +1,1,1865,2026,1,1,,0,,,3,19,17,3/19/26 16:00, +1,1,1866,2026,1,1,,0,,,3,19,18,3/19/26 17:00, +1,1,1867,2026,1,1,,0,,,3,19,19,3/19/26 18:00, +1,1,1868,2026,1,1,,0,,,3,19,20,3/19/26 19:00, +1,1,1869,2026,1,1,,0,,,3,19,21,3/19/26 20:00, +1,1,1870,2026,1,1,,0,,,3,19,22,3/19/26 21:00, +1,1,1871,2026,1,1,,0,,,3,19,23,3/19/26 22:00, +1,1,1872,2026,1,1,,0,,,3,19,24,3/19/26 23:00, +1,1,1873,2026,1,1,,0,,,3,20,1,3/20/26 0:00, +1,1,1874,2026,1,1,,0,,,3,20,2,3/20/26 1:00, +1,1,1875,2026,1,1,,0,,,3,20,3,3/20/26 2:00, +1,1,1876,2026,1,1,,0,,,3,20,4,3/20/26 3:00, +1,1,1877,2026,1,1,,0,,,3,20,5,3/20/26 4:00, +1,1,1878,2026,1,1,,0,,,3,20,6,3/20/26 5:00, +1,1,1879,2026,1,1,,0,,,3,20,7,3/20/26 6:00, +1,1,1880,2026,1,1,,0,,,3,20,8,3/20/26 7:00, +1,1,1881,2026,1,1,,0,,,3,20,9,3/20/26 8:00, +1,1,1882,2026,1,1,,0,,,3,20,10,3/20/26 9:00, +1,1,1883,2026,1,1,,0,,,3,20,11,3/20/26 10:00, +1,1,1884,2026,1,1,,0,,,3,20,12,3/20/26 11:00, +1,1,1885,2026,1,1,,0,,,3,20,13,3/20/26 12:00, +1,1,1886,2026,1,1,,0,,,3,20,14,3/20/26 13:00, +1,1,1887,2026,1,1,,0,,,3,20,15,3/20/26 14:00, +1,1,1888,2026,1,1,,0,,,3,20,16,3/20/26 15:00, +1,1,1889,2026,1,1,,0,,,3,20,17,3/20/26 16:00, +1,1,1890,2026,1,1,,0,,,3,20,18,3/20/26 17:00, +1,1,1891,2026,1,1,,0,,,3,20,19,3/20/26 18:00, +1,1,1892,2026,1,1,,0,,,3,20,20,3/20/26 19:00, +1,1,1893,2026,1,1,,0,,,3,20,21,3/20/26 20:00, +1,1,1894,2026,1,1,,0,,,3,20,22,3/20/26 21:00, +1,1,1895,2026,1,1,,0,,,3,20,23,3/20/26 22:00, +1,1,1896,2026,1,1,,0,,,3,20,24,3/20/26 23:00, +1,1,1897,2026,1,1,,0,,,3,21,1,3/21/26 0:00, +1,1,1898,2026,1,1,,0,,,3,21,2,3/21/26 1:00, +1,1,1899,2026,1,1,,0,,,3,21,3,3/21/26 2:00, +1,1,1900,2026,1,1,,0,,,3,21,4,3/21/26 3:00, +1,1,1901,2026,1,1,,0,,,3,21,5,3/21/26 4:00, +1,1,1902,2026,1,1,,0,,,3,21,6,3/21/26 5:00, +1,1,1903,2026,1,1,,0,,,3,21,7,3/21/26 6:00, +1,1,1904,2026,1,1,,0,,,3,21,8,3/21/26 7:00, +1,1,1905,2026,1,1,,0,,,3,21,9,3/21/26 8:00, +1,1,1906,2026,1,1,,0,,,3,21,10,3/21/26 9:00, +1,1,1907,2026,1,1,,0,,,3,21,11,3/21/26 10:00, +1,1,1908,2026,1,1,,0,,,3,21,12,3/21/26 11:00, +1,1,1909,2026,1,1,,0,,,3,21,13,3/21/26 12:00, +1,1,1910,2026,1,1,,0,,,3,21,14,3/21/26 13:00, +1,1,1911,2026,1,1,,0,,,3,21,15,3/21/26 14:00, +1,1,1912,2026,1,1,,0,,,3,21,16,3/21/26 15:00, +1,1,1913,2026,1,1,,0,,,3,21,17,3/21/26 16:00, +1,1,1914,2026,1,1,,0,,,3,21,18,3/21/26 17:00, +1,1,1915,2026,1,1,,0,,,3,21,19,3/21/26 18:00, +1,1,1916,2026,1,1,,0,,,3,21,20,3/21/26 19:00, +1,1,1917,2026,1,1,,0,,,3,21,21,3/21/26 20:00, +1,1,1918,2026,1,1,,0,,,3,21,22,3/21/26 21:00, +1,1,1919,2026,1,1,,0,,,3,21,23,3/21/26 22:00, +1,1,1920,2026,1,1,,0,,,3,21,24,3/21/26 23:00, +1,1,1921,2026,1,1,,0,,,3,22,1,3/22/26 0:00, +1,1,1922,2026,1,1,,0,,,3,22,2,3/22/26 1:00, +1,1,1923,2026,1,1,,0,,,3,22,3,3/22/26 2:00, +1,1,1924,2026,1,1,,0,,,3,22,4,3/22/26 3:00, +1,1,1925,2026,1,1,,0,,,3,22,5,3/22/26 4:00, +1,1,1926,2026,1,1,,0,,,3,22,6,3/22/26 5:00, +1,1,1927,2026,1,1,,0,,,3,22,7,3/22/26 6:00, +1,1,1928,2026,1,1,,0,,,3,22,8,3/22/26 7:00, +1,1,1929,2026,1,1,,0,,,3,22,9,3/22/26 8:00, +1,1,1930,2026,1,1,,0,,,3,22,10,3/22/26 9:00, +1,1,1931,2026,1,1,,0,,,3,22,11,3/22/26 10:00, +1,1,1932,2026,1,1,,0,,,3,22,12,3/22/26 11:00, +1,1,1933,2026,1,1,,0,,,3,22,13,3/22/26 12:00, +1,1,1934,2026,1,1,,0,,,3,22,14,3/22/26 13:00, +1,1,1935,2026,1,1,,0,,,3,22,15,3/22/26 14:00, +1,1,1936,2026,1,1,,0,,,3,22,16,3/22/26 15:00, +1,1,1937,2026,1,1,,0,,,3,22,17,3/22/26 16:00, +1,1,1938,2026,1,1,,0,,,3,22,18,3/22/26 17:00, +1,1,1939,2026,1,1,,0,,,3,22,19,3/22/26 18:00, +1,1,1940,2026,1,1,,0,,,3,22,20,3/22/26 19:00, +1,1,1941,2026,1,1,,0,,,3,22,21,3/22/26 20:00, +1,1,1942,2026,1,1,,0,,,3,22,22,3/22/26 21:00, +1,1,1943,2026,1,1,,0,,,3,22,23,3/22/26 22:00, +1,1,1944,2026,1,1,,0,,,3,22,24,3/22/26 23:00, +1,1,1945,2026,1,1,,0,,,3,23,1,3/23/26 0:00, +1,1,1946,2026,1,1,,0,,,3,23,2,3/23/26 1:00, +1,1,1947,2026,1,1,,0,,,3,23,3,3/23/26 2:00, +1,1,1948,2026,1,1,,0,,,3,23,4,3/23/26 3:00, +1,1,1949,2026,1,1,,0,,,3,23,5,3/23/26 4:00, +1,1,1950,2026,1,1,,0,,,3,23,6,3/23/26 5:00, +1,1,1951,2026,1,1,,0,,,3,23,7,3/23/26 6:00, +1,1,1952,2026,1,1,,0,,,3,23,8,3/23/26 7:00, +1,1,1953,2026,1,1,,0,,,3,23,9,3/23/26 8:00, +1,1,1954,2026,1,1,,0,,,3,23,10,3/23/26 9:00, +1,1,1955,2026,1,1,,0,,,3,23,11,3/23/26 10:00, +1,1,1956,2026,1,1,,0,,,3,23,12,3/23/26 11:00, +1,1,1957,2026,1,1,,0,,,3,23,13,3/23/26 12:00, +1,1,1958,2026,1,1,,0,,,3,23,14,3/23/26 13:00, +1,1,1959,2026,1,1,,0,,,3,23,15,3/23/26 14:00, +1,1,1960,2026,1,1,,0,,,3,23,16,3/23/26 15:00, +1,1,1961,2026,1,1,,0,,,3,23,17,3/23/26 16:00, +1,1,1962,2026,1,1,,0,,,3,23,18,3/23/26 17:00, +1,1,1963,2026,1,1,,0,,,3,23,19,3/23/26 18:00, +1,1,1964,2026,1,1,,0,,,3,23,20,3/23/26 19:00, +1,1,1965,2026,1,1,,0,,,3,23,21,3/23/26 20:00, +1,1,1966,2026,1,1,,0,,,3,23,22,3/23/26 21:00, +1,1,1967,2026,1,1,,0,,,3,23,23,3/23/26 22:00, +1,1,1968,2026,1,1,,0,,,3,23,24,3/23/26 23:00, +1,1,1969,2026,1,1,,0,,,3,24,1,3/24/26 0:00, +1,1,1970,2026,1,1,,0,,,3,24,2,3/24/26 1:00, +1,1,1971,2026,1,1,,0,,,3,24,3,3/24/26 2:00, +1,1,1972,2026,1,1,,0,,,3,24,4,3/24/26 3:00, +1,1,1973,2026,1,1,,0,,,3,24,5,3/24/26 4:00, +1,1,1974,2026,1,1,,0,,,3,24,6,3/24/26 5:00, +1,1,1975,2026,1,1,,0,,,3,24,7,3/24/26 6:00, +1,1,1976,2026,1,1,,0,,,3,24,8,3/24/26 7:00, +1,1,1977,2026,1,1,,0,,,3,24,9,3/24/26 8:00, +1,1,1978,2026,1,1,,0,,,3,24,10,3/24/26 9:00, +1,1,1979,2026,1,1,,0,,,3,24,11,3/24/26 10:00, +1,1,1980,2026,1,1,,0,,,3,24,12,3/24/26 11:00, +1,1,1981,2026,1,1,,0,,,3,24,13,3/24/26 12:00, +1,1,1982,2026,1,1,,0,,,3,24,14,3/24/26 13:00, +1,1,1983,2026,1,1,,0,,,3,24,15,3/24/26 14:00, +1,1,1984,2026,1,1,,0,,,3,24,16,3/24/26 15:00, +1,1,1985,2026,1,1,,0,,,3,24,17,3/24/26 16:00, +1,1,1986,2026,1,1,,0,,,3,24,18,3/24/26 17:00, +1,1,1987,2026,1,1,,0,,,3,24,19,3/24/26 18:00, +1,1,1988,2026,1,1,,0,,,3,24,20,3/24/26 19:00, +1,1,1989,2026,1,1,,0,,,3,24,21,3/24/26 20:00, +1,1,1990,2026,1,1,,0,,,3,24,22,3/24/26 21:00, +1,1,1991,2026,1,1,,0,,,3,24,23,3/24/26 22:00, +1,1,1992,2026,1,1,,0,,,3,24,24,3/24/26 23:00, +1,1,1993,2026,1,1,,0,,,3,25,1,3/25/26 0:00, +1,1,1994,2026,1,1,,0,,,3,25,2,3/25/26 1:00, +1,1,1995,2026,1,1,,0,,,3,25,3,3/25/26 2:00, +1,1,1996,2026,1,1,,0,,,3,25,4,3/25/26 3:00, +1,1,1997,2026,1,1,,0,,,3,25,5,3/25/26 4:00, +1,1,1998,2026,1,1,,0,,,3,25,6,3/25/26 5:00, +1,1,1999,2026,1,1,,0,,,3,25,7,3/25/26 6:00, +1,1,2000,2026,1,1,,0,,,3,25,8,3/25/26 7:00, +1,1,2001,2026,1,1,,0,,,3,25,9,3/25/26 8:00, +1,1,2002,2026,1,1,,0,,,3,25,10,3/25/26 9:00, +1,1,2003,2026,1,1,,0,,,3,25,11,3/25/26 10:00, +1,1,2004,2026,1,1,,0,,,3,25,12,3/25/26 11:00, +1,1,2005,2026,1,1,,0,,,3,25,13,3/25/26 12:00, +1,1,2006,2026,1,1,,0,,,3,25,14,3/25/26 13:00, +1,1,2007,2026,1,1,,0,,,3,25,15,3/25/26 14:00, +1,1,2008,2026,1,1,,0,,,3,25,16,3/25/26 15:00, +1,1,2009,2026,1,1,,0,,,3,25,17,3/25/26 16:00, +1,1,2010,2026,1,1,,0,,,3,25,18,3/25/26 17:00, +1,1,2011,2026,1,1,,0,,,3,25,19,3/25/26 18:00, +1,1,2012,2026,1,1,,0,,,3,25,20,3/25/26 19:00, +1,1,2013,2026,1,1,,0,,,3,25,21,3/25/26 20:00, +1,1,2014,2026,1,1,,0,,,3,25,22,3/25/26 21:00, +1,1,2015,2026,1,1,,0,,,3,25,23,3/25/26 22:00, +1,1,2016,2026,1,1,,0,,,3,25,24,3/25/26 23:00, +1,1,2017,2026,1,1,,0,,,3,26,1,3/26/26 0:00, +1,1,2018,2026,1,1,,0,,,3,26,2,3/26/26 1:00, +1,1,2019,2026,1,1,,0,,,3,26,3,3/26/26 2:00, +1,1,2020,2026,1,1,,0,,,3,26,4,3/26/26 3:00, +1,1,2021,2026,1,1,,0,,,3,26,5,3/26/26 4:00, +1,1,2022,2026,1,1,,0,,,3,26,6,3/26/26 5:00, +1,1,2023,2026,1,1,,0,,,3,26,7,3/26/26 6:00, +1,1,2024,2026,1,1,,0,,,3,26,8,3/26/26 7:00, +1,1,2025,2026,1,1,,0,,,3,26,9,3/26/26 8:00, +1,1,2026,2026,1,1,,0,,,3,26,10,3/26/26 9:00, +1,1,2027,2026,1,1,,0,,,3,26,11,3/26/26 10:00, +1,1,2028,2026,1,1,,0,,,3,26,12,3/26/26 11:00, +1,1,2029,2026,1,1,,0,,,3,26,13,3/26/26 12:00, +1,1,2030,2026,1,1,,0,,,3,26,14,3/26/26 13:00, +1,1,2031,2026,1,1,,0,,,3,26,15,3/26/26 14:00, +1,1,2032,2026,1,1,,0,,,3,26,16,3/26/26 15:00, +1,1,2033,2026,1,1,,0,,,3,26,17,3/26/26 16:00, +1,1,2034,2026,1,1,,0,,,3,26,18,3/26/26 17:00, +1,1,2035,2026,1,1,,0,,,3,26,19,3/26/26 18:00, +1,1,2036,2026,1,1,,0,,,3,26,20,3/26/26 19:00, +1,1,2037,2026,1,1,,0,,,3,26,21,3/26/26 20:00, +1,1,2038,2026,1,1,,0,,,3,26,22,3/26/26 21:00, +1,1,2039,2026,1,1,,0,,,3,26,23,3/26/26 22:00, +1,1,2040,2026,1,1,,0,,,3,26,24,3/26/26 23:00, +1,1,2041,2026,1,1,,0,,,3,27,1,3/27/26 0:00, +1,1,2042,2026,1,1,,0,,,3,27,2,3/27/26 1:00, +1,1,2043,2026,1,1,,0,,,3,27,3,3/27/26 2:00, +1,1,2044,2026,1,1,,0,,,3,27,4,3/27/26 3:00, +1,1,2045,2026,1,1,,0,,,3,27,5,3/27/26 4:00, +1,1,2046,2026,1,1,,0,,,3,27,6,3/27/26 5:00, +1,1,2047,2026,1,1,,0,,,3,27,7,3/27/26 6:00, +1,1,2048,2026,1,1,,0,,,3,27,8,3/27/26 7:00, +1,1,2049,2026,1,1,,0,,,3,27,9,3/27/26 8:00, +1,1,2050,2026,1,1,,0,,,3,27,10,3/27/26 9:00, +1,1,2051,2026,1,1,,0,,,3,27,11,3/27/26 10:00, +1,1,2052,2026,1,1,,0,,,3,27,12,3/27/26 11:00, +1,1,2053,2026,1,1,,0,,,3,27,13,3/27/26 12:00, +1,1,2054,2026,1,1,,0,,,3,27,14,3/27/26 13:00, +1,1,2055,2026,1,1,,0,,,3,27,15,3/27/26 14:00, +1,1,2056,2026,1,1,,0,,,3,27,16,3/27/26 15:00, +1,1,2057,2026,1,1,,0,,,3,27,17,3/27/26 16:00, +1,1,2058,2026,1,1,,0,,,3,27,18,3/27/26 17:00, +1,1,2059,2026,1,1,,0,,,3,27,19,3/27/26 18:00, +1,1,2060,2026,1,1,,0,,,3,27,20,3/27/26 19:00, +1,1,2061,2026,1,1,,0,,,3,27,21,3/27/26 20:00, +1,1,2062,2026,1,1,,0,,,3,27,22,3/27/26 21:00, +1,1,2063,2026,1,1,,0,,,3,27,23,3/27/26 22:00, +1,1,2064,2026,1,1,,0,,,3,27,24,3/27/26 23:00, +1,1,2065,2026,1,1,,0,,,3,28,1,3/28/26 0:00, +1,1,2066,2026,1,1,,0,,,3,28,2,3/28/26 1:00, +1,1,2067,2026,1,1,,0,,,3,28,3,3/28/26 2:00, +1,1,2068,2026,1,1,,0,,,3,28,4,3/28/26 3:00, +1,1,2069,2026,1,1,,0,,,3,28,5,3/28/26 4:00, +1,1,2070,2026,1,1,,0,,,3,28,6,3/28/26 5:00, +1,1,2071,2026,1,1,,0,,,3,28,7,3/28/26 6:00, +1,1,2072,2026,1,1,,0,,,3,28,8,3/28/26 7:00, +1,1,2073,2026,1,1,,0,,,3,28,9,3/28/26 8:00, +1,1,2074,2026,1,1,,0,,,3,28,10,3/28/26 9:00, +1,1,2075,2026,1,1,,0,,,3,28,11,3/28/26 10:00, +1,1,2076,2026,1,1,,0,,,3,28,12,3/28/26 11:00, +1,1,2077,2026,1,1,,0,,,3,28,13,3/28/26 12:00, +1,1,2078,2026,1,1,,0,,,3,28,14,3/28/26 13:00, +1,1,2079,2026,1,1,,0,,,3,28,15,3/28/26 14:00, +1,1,2080,2026,1,1,,0,,,3,28,16,3/28/26 15:00, +1,1,2081,2026,1,1,,0,,,3,28,17,3/28/26 16:00, +1,1,2082,2026,1,1,,0,,,3,28,18,3/28/26 17:00, +1,1,2083,2026,1,1,,0,,,3,28,19,3/28/26 18:00, +1,1,2084,2026,1,1,,0,,,3,28,20,3/28/26 19:00, +1,1,2085,2026,1,1,,0,,,3,28,21,3/28/26 20:00, +1,1,2086,2026,1,1,,0,,,3,28,22,3/28/26 21:00, +1,1,2087,2026,1,1,,0,,,3,28,23,3/28/26 22:00, +1,1,2088,2026,1,1,,0,,,3,28,24,3/28/26 23:00, +1,1,2089,2026,1,1,,0,,,3,29,1,3/29/26 0:00, +1,1,2090,2026,1,1,,0,,,3,29,2,3/29/26 1:00, +1,1,2091,2026,1,1,,0,,,3,29,3,3/29/26 2:00, +1,1,2092,2026,1,1,,0,,,3,29,4,3/29/26 3:00, +1,1,2093,2026,1,1,,0,,,3,29,5,3/29/26 4:00, +1,1,2094,2026,1,1,,0,,,3,29,6,3/29/26 5:00, +1,1,2095,2026,1,1,,0,,,3,29,7,3/29/26 6:00, +1,1,2096,2026,1,1,,0,,,3,29,8,3/29/26 7:00, +1,1,2097,2026,1,1,,0,,,3,29,9,3/29/26 8:00, +1,1,2098,2026,1,1,,0,,,3,29,10,3/29/26 9:00, +1,1,2099,2026,1,1,,0,,,3,29,11,3/29/26 10:00, +1,1,2100,2026,1,1,,0,,,3,29,12,3/29/26 11:00, +1,1,2101,2026,1,1,,0,,,3,29,13,3/29/26 12:00, +1,1,2102,2026,1,1,,0,,,3,29,14,3/29/26 13:00, +1,1,2103,2026,1,1,,0,,,3,29,15,3/29/26 14:00, +1,1,2104,2026,1,1,,0,,,3,29,16,3/29/26 15:00, +1,1,2105,2026,1,1,,0,,,3,29,17,3/29/26 16:00, +1,1,2106,2026,1,1,,0,,,3,29,18,3/29/26 17:00, +1,1,2107,2026,1,1,,0,,,3,29,19,3/29/26 18:00, +1,1,2108,2026,1,1,,0,,,3,29,20,3/29/26 19:00, +1,1,2109,2026,1,1,,0,,,3,29,21,3/29/26 20:00, +1,1,2110,2026,1,1,,0,,,3,29,22,3/29/26 21:00, +1,1,2111,2026,1,1,,0,,,3,29,23,3/29/26 22:00, +1,1,2112,2026,1,1,,0,,,3,29,24,3/29/26 23:00, +1,1,2113,2026,1,1,,0,,,3,30,1,3/30/26 0:00, +1,1,2114,2026,1,1,,0,,,3,30,2,3/30/26 1:00, +1,1,2115,2026,1,1,,0,,,3,30,3,3/30/26 2:00, +1,1,2116,2026,1,1,,0,,,3,30,4,3/30/26 3:00, +1,1,2117,2026,1,1,,0,,,3,30,5,3/30/26 4:00, +1,1,2118,2026,1,1,,0,,,3,30,6,3/30/26 5:00, +1,1,2119,2026,1,1,,0,,,3,30,7,3/30/26 6:00, +1,1,2120,2026,1,1,,0,,,3,30,8,3/30/26 7:00, +1,1,2121,2026,1,1,,0,,,3,30,9,3/30/26 8:00, +1,1,2122,2026,1,1,,0,,,3,30,10,3/30/26 9:00, +1,1,2123,2026,1,1,,0,,,3,30,11,3/30/26 10:00, +1,1,2124,2026,1,1,,0,,,3,30,12,3/30/26 11:00, +1,1,2125,2026,1,1,,0,,,3,30,13,3/30/26 12:00, +1,1,2126,2026,1,1,,0,,,3,30,14,3/30/26 13:00, +1,1,2127,2026,1,1,,0,,,3,30,15,3/30/26 14:00, +1,1,2128,2026,1,1,,0,,,3,30,16,3/30/26 15:00, +1,1,2129,2026,1,1,,0,,,3,30,17,3/30/26 16:00, +1,1,2130,2026,1,1,,0,,,3,30,18,3/30/26 17:00, +1,1,2131,2026,1,1,,0,,,3,30,19,3/30/26 18:00, +1,1,2132,2026,1,1,,0,,,3,30,20,3/30/26 19:00, +1,1,2133,2026,1,1,,0,,,3,30,21,3/30/26 20:00, +1,1,2134,2026,1,1,,0,,,3,30,22,3/30/26 21:00, +1,1,2135,2026,1,1,,0,,,3,30,23,3/30/26 22:00, +1,1,2136,2026,1,1,,0,,,3,30,24,3/30/26 23:00, +1,1,2137,2026,1,1,,0,,,3,31,1,3/31/26 0:00, +1,1,2138,2026,1,1,,0,,,3,31,2,3/31/26 1:00, +1,1,2139,2026,1,1,,0,,,3,31,3,3/31/26 2:00, +1,1,2140,2026,1,1,,0,,,3,31,4,3/31/26 3:00, +1,1,2141,2026,1,1,,0,,,3,31,5,3/31/26 4:00, +1,1,2142,2026,1,1,,0,,,3,31,6,3/31/26 5:00, +1,1,2143,2026,1,1,,0,,,3,31,7,3/31/26 6:00, +1,1,2144,2026,1,1,,0,,,3,31,8,3/31/26 7:00, +1,1,2145,2026,1,1,,0,,,3,31,9,3/31/26 8:00, +1,1,2146,2026,1,1,,0,,,3,31,10,3/31/26 9:00, +1,1,2147,2026,1,1,,0,,,3,31,11,3/31/26 10:00, +1,1,2148,2026,1,1,,0,,,3,31,12,3/31/26 11:00, +1,1,2149,2026,1,1,,0,,,3,31,13,3/31/26 12:00, +1,1,2150,2026,1,1,,0,,,3,31,14,3/31/26 13:00, +1,1,2151,2026,1,1,,0,,,3,31,15,3/31/26 14:00, +1,1,2152,2026,1,1,,0,,,3,31,16,3/31/26 15:00, +1,1,2153,2026,1,1,,0,,,3,31,17,3/31/26 16:00, +1,1,2154,2026,1,1,,0,,,3,31,18,3/31/26 17:00, +1,1,2155,2026,1,1,,0,,,3,31,19,3/31/26 18:00, +1,1,2156,2026,1,1,,0,,,3,31,20,3/31/26 19:00, +1,1,2157,2026,1,1,,0,,,3,31,21,3/31/26 20:00, +1,1,2158,2026,1,1,,0,,,3,31,22,3/31/26 21:00, +1,1,2159,2026,1,1,,0,,,3,31,23,3/31/26 22:00, +1,1,2160,2026,1,1,,0,,,3,31,24,3/31/26 23:00, +1,1,2161,2026,1,1,,0,,,4,1,1,4/1/26 0:00, +1,1,2162,2026,1,1,,0,,,4,1,2,4/1/26 1:00, +1,1,2163,2026,1,1,,0,,,4,1,3,4/1/26 2:00, +1,1,2164,2026,1,1,,0,,,4,1,4,4/1/26 3:00, +1,1,2165,2026,1,1,,0,,,4,1,5,4/1/26 4:00, +1,1,2166,2026,1,1,,0,,,4,1,6,4/1/26 5:00, +1,1,2167,2026,1,1,,0,,,4,1,7,4/1/26 6:00, +1,1,2168,2026,1,1,,0,,,4,1,8,4/1/26 7:00, +1,1,2169,2026,1,1,,0,,,4,1,9,4/1/26 8:00, +1,1,2170,2026,1,1,,0,,,4,1,10,4/1/26 9:00, +1,1,2171,2026,1,1,,0,,,4,1,11,4/1/26 10:00, +1,1,2172,2026,1,1,,0,,,4,1,12,4/1/26 11:00, +1,1,2173,2026,1,1,,0,,,4,1,13,4/1/26 12:00, +1,1,2174,2026,1,1,,0,,,4,1,14,4/1/26 13:00, +1,1,2175,2026,1,1,,0,,,4,1,15,4/1/26 14:00, +1,1,2176,2026,1,1,,0,,,4,1,16,4/1/26 15:00, +1,1,2177,2026,1,1,,0,,,4,1,17,4/1/26 16:00, +1,1,2178,2026,1,1,,0,,,4,1,18,4/1/26 17:00, +1,1,2179,2026,1,1,,0,,,4,1,19,4/1/26 18:00, +1,1,2180,2026,1,1,,0,,,4,1,20,4/1/26 19:00, +1,1,2181,2026,1,1,,0,,,4,1,21,4/1/26 20:00, +1,1,2182,2026,1,1,,0,,,4,1,22,4/1/26 21:00, +1,1,2183,2026,1,1,,0,,,4,1,23,4/1/26 22:00, +1,1,2184,2026,1,1,,0,,,4,1,24,4/1/26 23:00, +1,1,2185,2026,1,1,,0,,,4,2,1,4/2/26 0:00, +1,1,2186,2026,1,1,,0,,,4,2,2,4/2/26 1:00, +1,1,2187,2026,1,1,,0,,,4,2,3,4/2/26 2:00, +1,1,2188,2026,1,1,,0,,,4,2,4,4/2/26 3:00, +1,1,2189,2026,1,1,,0,,,4,2,5,4/2/26 4:00, +1,1,2190,2026,1,1,,0,,,4,2,6,4/2/26 5:00, +1,1,2191,2026,1,1,,0,,,4,2,7,4/2/26 6:00, +1,1,2192,2026,1,1,,0,,,4,2,8,4/2/26 7:00, +1,1,2193,2026,1,1,,0,,,4,2,9,4/2/26 8:00, +1,1,2194,2026,1,1,,0,,,4,2,10,4/2/26 9:00, +1,1,2195,2026,1,1,,0,,,4,2,11,4/2/26 10:00, +1,1,2196,2026,1,1,,0,,,4,2,12,4/2/26 11:00, +1,1,2197,2026,1,1,,0,,,4,2,13,4/2/26 12:00, +1,1,2198,2026,1,1,,0,,,4,2,14,4/2/26 13:00, +1,1,2199,2026,1,1,,0,,,4,2,15,4/2/26 14:00, +1,1,2200,2026,1,1,,0,,,4,2,16,4/2/26 15:00, +1,1,2201,2026,1,1,,0,,,4,2,17,4/2/26 16:00, +1,1,2202,2026,1,1,,0,,,4,2,18,4/2/26 17:00, +1,1,2203,2026,1,1,,0,,,4,2,19,4/2/26 18:00, +1,1,2204,2026,1,1,,0,,,4,2,20,4/2/26 19:00, +1,1,2205,2026,1,1,,0,,,4,2,21,4/2/26 20:00, +1,1,2206,2026,1,1,,0,,,4,2,22,4/2/26 21:00, +1,1,2207,2026,1,1,,0,,,4,2,23,4/2/26 22:00, +1,1,2208,2026,1,1,,0,,,4,2,24,4/2/26 23:00, +1,1,2209,2026,1,1,,0,,,4,3,1,4/3/26 0:00, +1,1,2210,2026,1,1,,0,,,4,3,2,4/3/26 1:00, +1,1,2211,2026,1,1,,0,,,4,3,3,4/3/26 2:00, +1,1,2212,2026,1,1,,0,,,4,3,4,4/3/26 3:00, +1,1,2213,2026,1,1,,0,,,4,3,5,4/3/26 4:00, +1,1,2214,2026,1,1,,0,,,4,3,6,4/3/26 5:00, +1,1,2215,2026,1,1,,0,,,4,3,7,4/3/26 6:00, +1,1,2216,2026,1,1,,0,,,4,3,8,4/3/26 7:00, +1,1,2217,2026,1,1,,0,,,4,3,9,4/3/26 8:00, +1,1,2218,2026,1,1,,0,,,4,3,10,4/3/26 9:00, +1,1,2219,2026,1,1,,0,,,4,3,11,4/3/26 10:00, +1,1,2220,2026,1,1,,0,,,4,3,12,4/3/26 11:00, +1,1,2221,2026,1,1,,0,,,4,3,13,4/3/26 12:00, +1,1,2222,2026,1,1,,0,,,4,3,14,4/3/26 13:00, +1,1,2223,2026,1,1,,0,,,4,3,15,4/3/26 14:00, +1,1,2224,2026,1,1,,0,,,4,3,16,4/3/26 15:00, +1,1,2225,2026,1,1,,0,,,4,3,17,4/3/26 16:00, +1,1,2226,2026,1,1,,0,,,4,3,18,4/3/26 17:00, +1,1,2227,2026,1,1,,0,,,4,3,19,4/3/26 18:00, +1,1,2228,2026,1,1,,0,,,4,3,20,4/3/26 19:00, +1,1,2229,2026,1,1,,0,,,4,3,21,4/3/26 20:00, +1,1,2230,2026,1,1,,0,,,4,3,22,4/3/26 21:00, +1,1,2231,2026,1,1,,0,,,4,3,23,4/3/26 22:00, +1,1,2232,2026,1,1,,0,,,4,3,24,4/3/26 23:00, +1,1,2233,2026,1,1,,0,,,4,4,1,4/4/26 0:00, +1,1,2234,2026,1,1,,0,,,4,4,2,4/4/26 1:00, +1,1,2235,2026,1,1,,0,,,4,4,3,4/4/26 2:00, +1,1,2236,2026,1,1,,0,,,4,4,4,4/4/26 3:00, +1,1,2237,2026,1,1,,0,,,4,4,5,4/4/26 4:00, +1,1,2238,2026,1,1,,0,,,4,4,6,4/4/26 5:00, +1,1,2239,2026,1,1,,0,,,4,4,7,4/4/26 6:00, +1,1,2240,2026,1,1,,0,,,4,4,8,4/4/26 7:00, +1,1,2241,2026,1,1,,0,,,4,4,9,4/4/26 8:00, +1,1,2242,2026,1,1,,0,,,4,4,10,4/4/26 9:00, +1,1,2243,2026,1,1,,0,,,4,4,11,4/4/26 10:00, +1,1,2244,2026,1,1,,0,,,4,4,12,4/4/26 11:00, +1,1,2245,2026,1,1,,0,,,4,4,13,4/4/26 12:00, +1,1,2246,2026,1,1,,0,,,4,4,14,4/4/26 13:00, +1,1,2247,2026,1,1,,0,,,4,4,15,4/4/26 14:00, +1,1,2248,2026,1,1,,0,,,4,4,16,4/4/26 15:00, +1,1,2249,2026,1,1,,0,,,4,4,17,4/4/26 16:00, +1,1,2250,2026,1,1,,0,,,4,4,18,4/4/26 17:00, +1,1,2251,2026,1,1,,0,,,4,4,19,4/4/26 18:00, +1,1,2252,2026,1,1,,0,,,4,4,20,4/4/26 19:00, +1,1,2253,2026,1,1,,0,,,4,4,21,4/4/26 20:00, +1,1,2254,2026,1,1,,0,,,4,4,22,4/4/26 21:00, +1,1,2255,2026,1,1,,0,,,4,4,23,4/4/26 22:00, +1,1,2256,2026,1,1,,0,,,4,4,24,4/4/26 23:00, +1,1,2257,2026,1,1,,0,,,4,5,1,4/5/26 0:00, +1,1,2258,2026,1,1,,0,,,4,5,2,4/5/26 1:00, +1,1,2259,2026,1,1,,0,,,4,5,3,4/5/26 2:00, +1,1,2260,2026,1,1,,0,,,4,5,4,4/5/26 3:00, +1,1,2261,2026,1,1,,0,,,4,5,5,4/5/26 4:00, +1,1,2262,2026,1,1,,0,,,4,5,6,4/5/26 5:00, +1,1,2263,2026,1,1,,0,,,4,5,7,4/5/26 6:00, +1,1,2264,2026,1,1,,0,,,4,5,8,4/5/26 7:00, +1,1,2265,2026,1,1,,0,,,4,5,9,4/5/26 8:00, +1,1,2266,2026,1,1,,0,,,4,5,10,4/5/26 9:00, +1,1,2267,2026,1,1,,0,,,4,5,11,4/5/26 10:00, +1,1,2268,2026,1,1,,0,,,4,5,12,4/5/26 11:00, +1,1,2269,2026,1,1,,0,,,4,5,13,4/5/26 12:00, +1,1,2270,2026,1,1,,0,,,4,5,14,4/5/26 13:00, +1,1,2271,2026,1,1,,0,,,4,5,15,4/5/26 14:00, +1,1,2272,2026,1,1,,0,,,4,5,16,4/5/26 15:00, +1,1,2273,2026,1,1,,0,,,4,5,17,4/5/26 16:00, +1,1,2274,2026,1,1,,0,,,4,5,18,4/5/26 17:00, +1,1,2275,2026,1,1,,0,,,4,5,19,4/5/26 18:00, +1,1,2276,2026,1,1,,0,,,4,5,20,4/5/26 19:00, +1,1,2277,2026,1,1,,0,,,4,5,21,4/5/26 20:00, +1,1,2278,2026,1,1,,0,,,4,5,22,4/5/26 21:00, +1,1,2279,2026,1,1,,0,,,4,5,23,4/5/26 22:00, +1,1,2280,2026,1,1,,0,,,4,5,24,4/5/26 23:00, +1,1,2281,2026,1,1,,0,,,4,6,1,4/6/26 0:00, +1,1,2282,2026,1,1,,0,,,4,6,2,4/6/26 1:00, +1,1,2283,2026,1,1,,0,,,4,6,3,4/6/26 2:00, +1,1,2284,2026,1,1,,0,,,4,6,4,4/6/26 3:00, +1,1,2285,2026,1,1,,0,,,4,6,5,4/6/26 4:00, +1,1,2286,2026,1,1,,0,,,4,6,6,4/6/26 5:00, +1,1,2287,2026,1,1,,0,,,4,6,7,4/6/26 6:00, +1,1,2288,2026,1,1,,0,,,4,6,8,4/6/26 7:00, +1,1,2289,2026,1,1,,0,,,4,6,9,4/6/26 8:00, +1,1,2290,2026,1,1,,0,,,4,6,10,4/6/26 9:00, +1,1,2291,2026,1,1,,0,,,4,6,11,4/6/26 10:00, +1,1,2292,2026,1,1,,0,,,4,6,12,4/6/26 11:00, +1,1,2293,2026,1,1,,0,,,4,6,13,4/6/26 12:00, +1,1,2294,2026,1,1,,0,,,4,6,14,4/6/26 13:00, +1,1,2295,2026,1,1,,0,,,4,6,15,4/6/26 14:00, +1,1,2296,2026,1,1,,0,,,4,6,16,4/6/26 15:00, +1,1,2297,2026,1,1,,0,,,4,6,17,4/6/26 16:00, +1,1,2298,2026,1,1,,0,,,4,6,18,4/6/26 17:00, +1,1,2299,2026,1,1,,0,,,4,6,19,4/6/26 18:00, +1,1,2300,2026,1,1,,0,,,4,6,20,4/6/26 19:00, +1,1,2301,2026,1,1,,0,,,4,6,21,4/6/26 20:00, +1,1,2302,2026,1,1,,0,,,4,6,22,4/6/26 21:00, +1,1,2303,2026,1,1,,0,,,4,6,23,4/6/26 22:00, +1,1,2304,2026,1,1,,0,,,4,6,24,4/6/26 23:00, +1,1,2305,2026,1,1,,0,,,4,7,1,4/7/26 0:00, +1,1,2306,2026,1,1,,0,,,4,7,2,4/7/26 1:00, +1,1,2307,2026,1,1,,0,,,4,7,3,4/7/26 2:00, +1,1,2308,2026,1,1,,0,,,4,7,4,4/7/26 3:00, +1,1,2309,2026,1,1,,0,,,4,7,5,4/7/26 4:00, +1,1,2310,2026,1,1,,0,,,4,7,6,4/7/26 5:00, +1,1,2311,2026,1,1,,0,,,4,7,7,4/7/26 6:00, +1,1,2312,2026,1,1,,0,,,4,7,8,4/7/26 7:00, +1,1,2313,2026,1,1,,0,,,4,7,9,4/7/26 8:00, +1,1,2314,2026,1,1,,0,,,4,7,10,4/7/26 9:00, +1,1,2315,2026,1,1,,0,,,4,7,11,4/7/26 10:00, +1,1,2316,2026,1,1,,0,,,4,7,12,4/7/26 11:00, +1,1,2317,2026,1,1,,0,,,4,7,13,4/7/26 12:00, +1,1,2318,2026,1,1,,0,,,4,7,14,4/7/26 13:00, +1,1,2319,2026,1,1,,0,,,4,7,15,4/7/26 14:00, +1,1,2320,2026,1,1,,0,,,4,7,16,4/7/26 15:00, +1,1,2321,2026,1,1,,0,,,4,7,17,4/7/26 16:00, +1,1,2322,2026,1,1,,0,,,4,7,18,4/7/26 17:00, +1,1,2323,2026,1,1,,0,,,4,7,19,4/7/26 18:00, +1,1,2324,2026,1,1,,0,,,4,7,20,4/7/26 19:00, +1,1,2325,2026,1,1,,0,,,4,7,21,4/7/26 20:00, +1,1,2326,2026,1,1,,0,,,4,7,22,4/7/26 21:00, +1,1,2327,2026,1,1,,0,,,4,7,23,4/7/26 22:00, +1,1,2328,2026,1,1,,0,,,4,7,24,4/7/26 23:00, +1,1,2329,2026,1,1,,0,,,4,8,1,4/8/26 0:00, +1,1,2330,2026,1,1,,0,,,4,8,2,4/8/26 1:00, +1,1,2331,2026,1,1,,0,,,4,8,3,4/8/26 2:00, +1,1,2332,2026,1,1,,0,,,4,8,4,4/8/26 3:00, +1,1,2333,2026,1,1,,0,,,4,8,5,4/8/26 4:00, +1,1,2334,2026,1,1,,0,,,4,8,6,4/8/26 5:00, +1,1,2335,2026,1,1,,0,,,4,8,7,4/8/26 6:00, +1,1,2336,2026,1,1,,0,,,4,8,8,4/8/26 7:00, +1,1,2337,2026,1,1,,0,,,4,8,9,4/8/26 8:00, +1,1,2338,2026,1,1,,0,,,4,8,10,4/8/26 9:00, +1,1,2339,2026,1,1,,0,,,4,8,11,4/8/26 10:00, +1,1,2340,2026,1,1,,0,,,4,8,12,4/8/26 11:00, +1,1,2341,2026,1,1,,0,,,4,8,13,4/8/26 12:00, +1,1,2342,2026,1,1,,0,,,4,8,14,4/8/26 13:00, +1,1,2343,2026,1,1,,0,,,4,8,15,4/8/26 14:00, +1,1,2344,2026,1,1,,0,,,4,8,16,4/8/26 15:00, +1,1,2345,2026,1,1,,0,,,4,8,17,4/8/26 16:00, +1,1,2346,2026,1,1,,0,,,4,8,18,4/8/26 17:00, +1,1,2347,2026,1,1,,0,,,4,8,19,4/8/26 18:00, +1,1,2348,2026,1,1,,0,,,4,8,20,4/8/26 19:00, +1,1,2349,2026,1,1,,0,,,4,8,21,4/8/26 20:00, +1,1,2350,2026,1,1,,0,,,4,8,22,4/8/26 21:00, +1,1,2351,2026,1,1,,0,,,4,8,23,4/8/26 22:00, +1,1,2352,2026,1,1,,0,,,4,8,24,4/8/26 23:00, +1,1,2353,2026,1,1,,0,,,4,9,1,4/9/26 0:00, +1,1,2354,2026,1,1,,0,,,4,9,2,4/9/26 1:00, +1,1,2355,2026,1,1,,0,,,4,9,3,4/9/26 2:00, +1,1,2356,2026,1,1,,0,,,4,9,4,4/9/26 3:00, +1,1,2357,2026,1,1,,0,,,4,9,5,4/9/26 4:00, +1,1,2358,2026,1,1,,0,,,4,9,6,4/9/26 5:00, +1,1,2359,2026,1,1,,0,,,4,9,7,4/9/26 6:00, +1,1,2360,2026,1,1,,0,,,4,9,8,4/9/26 7:00, +1,1,2361,2026,1,1,,0,,,4,9,9,4/9/26 8:00, +1,1,2362,2026,1,1,,0,,,4,9,10,4/9/26 9:00, +1,1,2363,2026,1,1,,0,,,4,9,11,4/9/26 10:00, +1,1,2364,2026,1,1,,0,,,4,9,12,4/9/26 11:00, +1,1,2365,2026,1,1,,0,,,4,9,13,4/9/26 12:00, +1,1,2366,2026,1,1,,0,,,4,9,14,4/9/26 13:00, +1,1,2367,2026,1,1,,0,,,4,9,15,4/9/26 14:00, +1,1,2368,2026,1,1,,0,,,4,9,16,4/9/26 15:00, +1,1,2369,2026,1,1,,0,,,4,9,17,4/9/26 16:00, +1,1,2370,2026,1,1,,0,,,4,9,18,4/9/26 17:00, +1,1,2371,2026,1,1,,0,,,4,9,19,4/9/26 18:00, +1,1,2372,2026,1,1,,0,,,4,9,20,4/9/26 19:00, +1,1,2373,2026,1,1,,0,,,4,9,21,4/9/26 20:00, +1,1,2374,2026,1,1,,0,,,4,9,22,4/9/26 21:00, +1,1,2375,2026,1,1,,0,,,4,9,23,4/9/26 22:00, +1,1,2376,2026,1,1,,0,,,4,9,24,4/9/26 23:00, +1,1,2377,2026,1,1,,0,,,4,10,1,4/10/26 0:00, +1,1,2378,2026,1,1,,0,,,4,10,2,4/10/26 1:00, +1,1,2379,2026,1,1,,0,,,4,10,3,4/10/26 2:00, +1,1,2380,2026,1,1,,0,,,4,10,4,4/10/26 3:00, +1,1,2381,2026,1,1,,0,,,4,10,5,4/10/26 4:00, +1,1,2382,2026,1,1,,0,,,4,10,6,4/10/26 5:00, +1,1,2383,2026,1,1,,0,,,4,10,7,4/10/26 6:00, +1,1,2384,2026,1,1,,0,,,4,10,8,4/10/26 7:00, +1,1,2385,2026,1,1,,0,,,4,10,9,4/10/26 8:00, +1,1,2386,2026,1,1,,0,,,4,10,10,4/10/26 9:00, +1,1,2387,2026,1,1,,0,,,4,10,11,4/10/26 10:00, +1,1,2388,2026,1,1,,0,,,4,10,12,4/10/26 11:00, +1,1,2389,2026,1,1,,0,,,4,10,13,4/10/26 12:00, +1,1,2390,2026,1,1,,0,,,4,10,14,4/10/26 13:00, +1,1,2391,2026,1,1,,0,,,4,10,15,4/10/26 14:00, +1,1,2392,2026,1,1,,0,,,4,10,16,4/10/26 15:00, +1,1,2393,2026,1,1,,0,,,4,10,17,4/10/26 16:00, +1,1,2394,2026,1,1,,0,,,4,10,18,4/10/26 17:00, +1,1,2395,2026,1,1,,0,,,4,10,19,4/10/26 18:00, +1,1,2396,2026,1,1,,0,,,4,10,20,4/10/26 19:00, +1,1,2397,2026,1,1,,0,,,4,10,21,4/10/26 20:00, +1,1,2398,2026,1,1,,0,,,4,10,22,4/10/26 21:00, +1,1,2399,2026,1,1,,0,,,4,10,23,4/10/26 22:00, +1,1,2400,2026,1,1,,0,,,4,10,24,4/10/26 23:00, +1,1,2401,2026,1,1,,0,,,4,11,1,4/11/26 0:00, +1,1,2402,2026,1,1,,0,,,4,11,2,4/11/26 1:00, +1,1,2403,2026,1,1,,0,,,4,11,3,4/11/26 2:00, +1,1,2404,2026,1,1,,0,,,4,11,4,4/11/26 3:00, +1,1,2405,2026,1,1,,0,,,4,11,5,4/11/26 4:00, +1,1,2406,2026,1,1,,0,,,4,11,6,4/11/26 5:00, +1,1,2407,2026,1,1,,0,,,4,11,7,4/11/26 6:00, +1,1,2408,2026,1,1,,0,,,4,11,8,4/11/26 7:00, +1,1,2409,2026,1,1,,0,,,4,11,9,4/11/26 8:00, +1,1,2410,2026,1,1,,0,,,4,11,10,4/11/26 9:00, +1,1,2411,2026,1,1,,0,,,4,11,11,4/11/26 10:00, +1,1,2412,2026,1,1,,0,,,4,11,12,4/11/26 11:00, +1,1,2413,2026,1,1,,0,,,4,11,13,4/11/26 12:00, +1,1,2414,2026,1,1,,0,,,4,11,14,4/11/26 13:00, +1,1,2415,2026,1,1,,0,,,4,11,15,4/11/26 14:00, +1,1,2416,2026,1,1,,0,,,4,11,16,4/11/26 15:00, +1,1,2417,2026,1,1,,0,,,4,11,17,4/11/26 16:00, +1,1,2418,2026,1,1,,0,,,4,11,18,4/11/26 17:00, +1,1,2419,2026,1,1,,0,,,4,11,19,4/11/26 18:00, +1,1,2420,2026,1,1,,0,,,4,11,20,4/11/26 19:00, +1,1,2421,2026,1,1,,0,,,4,11,21,4/11/26 20:00, +1,1,2422,2026,1,1,,0,,,4,11,22,4/11/26 21:00, +1,1,2423,2026,1,1,,0,,,4,11,23,4/11/26 22:00, +1,1,2424,2026,1,1,,0,,,4,11,24,4/11/26 23:00, +1,1,2425,2026,1,1,,0,,,4,12,1,4/12/26 0:00, +1,1,2426,2026,1,1,,0,,,4,12,2,4/12/26 1:00, +1,1,2427,2026,1,1,,0,,,4,12,3,4/12/26 2:00, +1,1,2428,2026,1,1,,0,,,4,12,4,4/12/26 3:00, +1,1,2429,2026,1,1,,0,,,4,12,5,4/12/26 4:00, +1,1,2430,2026,1,1,,0,,,4,12,6,4/12/26 5:00, +1,1,2431,2026,1,1,,0,,,4,12,7,4/12/26 6:00, +1,1,2432,2026,1,1,,0,,,4,12,8,4/12/26 7:00, +1,1,2433,2026,1,1,,0,,,4,12,9,4/12/26 8:00, +1,1,2434,2026,1,1,,0,,,4,12,10,4/12/26 9:00, +1,1,2435,2026,1,1,,0,,,4,12,11,4/12/26 10:00, +1,1,2436,2026,1,1,,0,,,4,12,12,4/12/26 11:00, +1,1,2437,2026,1,1,,0,,,4,12,13,4/12/26 12:00, +1,1,2438,2026,1,1,,0,,,4,12,14,4/12/26 13:00, +1,1,2439,2026,1,1,,0,,,4,12,15,4/12/26 14:00, +1,1,2440,2026,1,1,,0,,,4,12,16,4/12/26 15:00, +1,1,2441,2026,1,1,,0,,,4,12,17,4/12/26 16:00, +1,1,2442,2026,1,1,,0,,,4,12,18,4/12/26 17:00, +1,1,2443,2026,1,1,,0,,,4,12,19,4/12/26 18:00, +1,1,2444,2026,1,1,,0,,,4,12,20,4/12/26 19:00, +1,1,2445,2026,1,1,,0,,,4,12,21,4/12/26 20:00, +1,1,2446,2026,1,1,,0,,,4,12,22,4/12/26 21:00, +1,1,2447,2026,1,1,,0,,,4,12,23,4/12/26 22:00, +1,1,2448,2026,1,1,,0,,,4,12,24,4/12/26 23:00, +1,1,2449,2026,1,1,,0,,,4,13,1,4/13/26 0:00, +1,1,2450,2026,1,1,,0,,,4,13,2,4/13/26 1:00, +1,1,2451,2026,1,1,,0,,,4,13,3,4/13/26 2:00, +1,1,2452,2026,1,1,,0,,,4,13,4,4/13/26 3:00, +1,1,2453,2026,1,1,,0,,,4,13,5,4/13/26 4:00, +1,1,2454,2026,1,1,,0,,,4,13,6,4/13/26 5:00, +1,1,2455,2026,1,1,,0,,,4,13,7,4/13/26 6:00, +1,1,2456,2026,1,1,,0,,,4,13,8,4/13/26 7:00, +1,1,2457,2026,1,1,,0,,,4,13,9,4/13/26 8:00, +1,1,2458,2026,1,1,,0,,,4,13,10,4/13/26 9:00, +1,1,2459,2026,1,1,,0,,,4,13,11,4/13/26 10:00, +1,1,2460,2026,1,1,,0,,,4,13,12,4/13/26 11:00, +1,1,2461,2026,1,1,,0,,,4,13,13,4/13/26 12:00, +1,1,2462,2026,1,1,,0,,,4,13,14,4/13/26 13:00, +1,1,2463,2026,1,1,,0,,,4,13,15,4/13/26 14:00, +1,1,2464,2026,1,1,,0,,,4,13,16,4/13/26 15:00, +1,1,2465,2026,1,1,,0,,,4,13,17,4/13/26 16:00, +1,1,2466,2026,1,1,,0,,,4,13,18,4/13/26 17:00, +1,1,2467,2026,1,1,,0,,,4,13,19,4/13/26 18:00, +1,1,2468,2026,1,1,,0,,,4,13,20,4/13/26 19:00, +1,1,2469,2026,1,1,,0,,,4,13,21,4/13/26 20:00, +1,1,2470,2026,1,1,,0,,,4,13,22,4/13/26 21:00, +1,1,2471,2026,1,1,,0,,,4,13,23,4/13/26 22:00, +1,1,2472,2026,1,1,,0,,,4,13,24,4/13/26 23:00, +1,1,2473,2026,1,1,,0,,,4,14,1,4/14/26 0:00, +1,1,2474,2026,1,1,,0,,,4,14,2,4/14/26 1:00, +1,1,2475,2026,1,1,,0,,,4,14,3,4/14/26 2:00, +1,1,2476,2026,1,1,,0,,,4,14,4,4/14/26 3:00, +1,1,2477,2026,1,1,,0,,,4,14,5,4/14/26 4:00, +1,1,2478,2026,1,1,,0,,,4,14,6,4/14/26 5:00, +1,1,2479,2026,1,1,,0,,,4,14,7,4/14/26 6:00, +1,1,2480,2026,1,1,,0,,,4,14,8,4/14/26 7:00, +1,1,2481,2026,1,1,,0,,,4,14,9,4/14/26 8:00, +1,1,2482,2026,1,1,,0,,,4,14,10,4/14/26 9:00, +1,1,2483,2026,1,1,,0,,,4,14,11,4/14/26 10:00, +1,1,2484,2026,1,1,,0,,,4,14,12,4/14/26 11:00, +1,1,2485,2026,1,1,,0,,,4,14,13,4/14/26 12:00, +1,1,2486,2026,1,1,,0,,,4,14,14,4/14/26 13:00, +1,1,2487,2026,1,1,,0,,,4,14,15,4/14/26 14:00, +1,1,2488,2026,1,1,,0,,,4,14,16,4/14/26 15:00, +1,1,2489,2026,1,1,,0,,,4,14,17,4/14/26 16:00, +1,1,2490,2026,1,1,,0,,,4,14,18,4/14/26 17:00, +1,1,2491,2026,1,1,,0,,,4,14,19,4/14/26 18:00, +1,1,2492,2026,1,1,,0,,,4,14,20,4/14/26 19:00, +1,1,2493,2026,1,1,,0,,,4,14,21,4/14/26 20:00, +1,1,2494,2026,1,1,,0,,,4,14,22,4/14/26 21:00, +1,1,2495,2026,1,1,,0,,,4,14,23,4/14/26 22:00, +1,1,2496,2026,1,1,,0,,,4,14,24,4/14/26 23:00, +1,1,2497,2026,1,1,,0,,,4,15,1,4/15/26 0:00, +1,1,2498,2026,1,1,,0,,,4,15,2,4/15/26 1:00, +1,1,2499,2026,1,1,,0,,,4,15,3,4/15/26 2:00, +1,1,2500,2026,1,1,,0,,,4,15,4,4/15/26 3:00, +1,1,2501,2026,1,1,,0,,,4,15,5,4/15/26 4:00, +1,1,2502,2026,1,1,,0,,,4,15,6,4/15/26 5:00, +1,1,2503,2026,1,1,,0,,,4,15,7,4/15/26 6:00, +1,1,2504,2026,1,1,,0,,,4,15,8,4/15/26 7:00, +1,1,2505,2026,1,1,,0,,,4,15,9,4/15/26 8:00, +1,1,2506,2026,1,1,,0,,,4,15,10,4/15/26 9:00, +1,1,2507,2026,1,1,,0,,,4,15,11,4/15/26 10:00, +1,1,2508,2026,1,1,,0,,,4,15,12,4/15/26 11:00, +1,1,2509,2026,1,1,,0,,,4,15,13,4/15/26 12:00, +1,1,2510,2026,1,1,,0,,,4,15,14,4/15/26 13:00, +1,1,2511,2026,1,1,,0,,,4,15,15,4/15/26 14:00, +1,1,2512,2026,1,1,,0,,,4,15,16,4/15/26 15:00, +1,1,2513,2026,1,1,,0,,,4,15,17,4/15/26 16:00, +1,1,2514,2026,1,1,,0,,,4,15,18,4/15/26 17:00, +1,1,2515,2026,1,1,,0,,,4,15,19,4/15/26 18:00, +1,1,2516,2026,1,1,,0,,,4,15,20,4/15/26 19:00, +1,1,2517,2026,1,1,,0,,,4,15,21,4/15/26 20:00, +1,1,2518,2026,1,1,,0,,,4,15,22,4/15/26 21:00, +1,1,2519,2026,1,1,,0,,,4,15,23,4/15/26 22:00, +1,1,2520,2026,1,1,,0,,,4,15,24,4/15/26 23:00, +1,1,2521,2026,1,1,,0,,,4,16,1,4/16/26 0:00, +1,1,2522,2026,1,1,,0,,,4,16,2,4/16/26 1:00, +1,1,2523,2026,1,1,,0,,,4,16,3,4/16/26 2:00, +1,1,2524,2026,1,1,,0,,,4,16,4,4/16/26 3:00, +1,1,2525,2026,1,1,,0,,,4,16,5,4/16/26 4:00, +1,1,2526,2026,1,1,,0,,,4,16,6,4/16/26 5:00, +1,1,2527,2026,1,1,,0,,,4,16,7,4/16/26 6:00, +1,1,2528,2026,1,1,,0,,,4,16,8,4/16/26 7:00, +1,1,2529,2026,1,1,,0,,,4,16,9,4/16/26 8:00, +1,1,2530,2026,1,1,,0,,,4,16,10,4/16/26 9:00, +1,1,2531,2026,1,1,,0,,,4,16,11,4/16/26 10:00, +1,1,2532,2026,1,1,,0,,,4,16,12,4/16/26 11:00, +1,1,2533,2026,1,1,,0,,,4,16,13,4/16/26 12:00, +1,1,2534,2026,1,1,,0,,,4,16,14,4/16/26 13:00, +1,1,2535,2026,1,1,,0,,,4,16,15,4/16/26 14:00, +1,1,2536,2026,1,1,,0,,,4,16,16,4/16/26 15:00, +1,1,2537,2026,1,1,,0,,,4,16,17,4/16/26 16:00, +1,1,2538,2026,1,1,,0,,,4,16,18,4/16/26 17:00, +1,1,2539,2026,1,1,,0,,,4,16,19,4/16/26 18:00, +1,1,2540,2026,1,1,,0,,,4,16,20,4/16/26 19:00, +1,1,2541,2026,1,1,,0,,,4,16,21,4/16/26 20:00, +1,1,2542,2026,1,1,,0,,,4,16,22,4/16/26 21:00, +1,1,2543,2026,1,1,,0,,,4,16,23,4/16/26 22:00, +1,1,2544,2026,1,1,,0,,,4,16,24,4/16/26 23:00, +1,1,2545,2026,1,1,,0,,,4,17,1,4/17/26 0:00, +1,1,2546,2026,1,1,,0,,,4,17,2,4/17/26 1:00, +1,1,2547,2026,1,1,,0,,,4,17,3,4/17/26 2:00, +1,1,2548,2026,1,1,,0,,,4,17,4,4/17/26 3:00, +1,1,2549,2026,1,1,,0,,,4,17,5,4/17/26 4:00, +1,1,2550,2026,1,1,,0,,,4,17,6,4/17/26 5:00, +1,1,2551,2026,1,1,,0,,,4,17,7,4/17/26 6:00, +1,1,2552,2026,1,1,,0,,,4,17,8,4/17/26 7:00, +1,1,2553,2026,1,1,,0,,,4,17,9,4/17/26 8:00, +1,1,2554,2026,1,1,,0,,,4,17,10,4/17/26 9:00, +1,1,2555,2026,1,1,,0,,,4,17,11,4/17/26 10:00, +1,1,2556,2026,1,1,,0,,,4,17,12,4/17/26 11:00, +1,1,2557,2026,1,1,,0,,,4,17,13,4/17/26 12:00, +1,1,2558,2026,1,1,,0,,,4,17,14,4/17/26 13:00, +1,1,2559,2026,1,1,,0,,,4,17,15,4/17/26 14:00, +1,1,2560,2026,1,1,,0,,,4,17,16,4/17/26 15:00, +1,1,2561,2026,1,1,,0,,,4,17,17,4/17/26 16:00, +1,1,2562,2026,1,1,,0,,,4,17,18,4/17/26 17:00, +1,1,2563,2026,1,1,,0,,,4,17,19,4/17/26 18:00, +1,1,2564,2026,1,1,,0,,,4,17,20,4/17/26 19:00, +1,1,2565,2026,1,1,,0,,,4,17,21,4/17/26 20:00, +1,1,2566,2026,1,1,,0,,,4,17,22,4/17/26 21:00, +1,1,2567,2026,1,1,,0,,,4,17,23,4/17/26 22:00, +1,1,2568,2026,1,1,,0,,,4,17,24,4/17/26 23:00, +1,1,2569,2026,1,1,,0,,,4,18,1,4/18/26 0:00, +1,1,2570,2026,1,1,,0,,,4,18,2,4/18/26 1:00, +1,1,2571,2026,1,1,,0,,,4,18,3,4/18/26 2:00, +1,1,2572,2026,1,1,,0,,,4,18,4,4/18/26 3:00, +1,1,2573,2026,1,1,,0,,,4,18,5,4/18/26 4:00, +1,1,2574,2026,1,1,,0,,,4,18,6,4/18/26 5:00, +1,1,2575,2026,1,1,,0,,,4,18,7,4/18/26 6:00, +1,1,2576,2026,1,1,,0,,,4,18,8,4/18/26 7:00, +1,1,2577,2026,1,1,,0,,,4,18,9,4/18/26 8:00, +1,1,2578,2026,1,1,,0,,,4,18,10,4/18/26 9:00, +1,1,2579,2026,1,1,,0,,,4,18,11,4/18/26 10:00, +1,1,2580,2026,1,1,,0,,,4,18,12,4/18/26 11:00, +1,1,2581,2026,1,1,,0,,,4,18,13,4/18/26 12:00, +1,1,2582,2026,1,1,,0,,,4,18,14,4/18/26 13:00, +1,1,2583,2026,1,1,,0,,,4,18,15,4/18/26 14:00, +1,1,2584,2026,1,1,,0,,,4,18,16,4/18/26 15:00, +1,1,2585,2026,1,1,,0,,,4,18,17,4/18/26 16:00, +1,1,2586,2026,1,1,,0,,,4,18,18,4/18/26 17:00, +1,1,2587,2026,1,1,,0,,,4,18,19,4/18/26 18:00, +1,1,2588,2026,1,1,,0,,,4,18,20,4/18/26 19:00, +1,1,2589,2026,1,1,,0,,,4,18,21,4/18/26 20:00, +1,1,2590,2026,1,1,,0,,,4,18,22,4/18/26 21:00, +1,1,2591,2026,1,1,,0,,,4,18,23,4/18/26 22:00, +1,1,2592,2026,1,1,,0,,,4,18,24,4/18/26 23:00, +1,1,2593,2026,1,1,,0,,,4,19,1,4/19/26 0:00, +1,1,2594,2026,1,1,,0,,,4,19,2,4/19/26 1:00, +1,1,2595,2026,1,1,,0,,,4,19,3,4/19/26 2:00, +1,1,2596,2026,1,1,,0,,,4,19,4,4/19/26 3:00, +1,1,2597,2026,1,1,,0,,,4,19,5,4/19/26 4:00, +1,1,2598,2026,1,1,,0,,,4,19,6,4/19/26 5:00, +1,1,2599,2026,1,1,,0,,,4,19,7,4/19/26 6:00, +1,1,2600,2026,1,1,,0,,,4,19,8,4/19/26 7:00, +1,1,2601,2026,1,1,,0,,,4,19,9,4/19/26 8:00, +1,1,2602,2026,1,1,,0,,,4,19,10,4/19/26 9:00, +1,1,2603,2026,1,1,,0,,,4,19,11,4/19/26 10:00, +1,1,2604,2026,1,1,,0,,,4,19,12,4/19/26 11:00, +1,1,2605,2026,1,1,,0,,,4,19,13,4/19/26 12:00, +1,1,2606,2026,1,1,,0,,,4,19,14,4/19/26 13:00, +1,1,2607,2026,1,1,,0,,,4,19,15,4/19/26 14:00, +1,1,2608,2026,1,1,,0,,,4,19,16,4/19/26 15:00, +1,1,2609,2026,1,1,,0,,,4,19,17,4/19/26 16:00, +1,1,2610,2026,1,1,,0,,,4,19,18,4/19/26 17:00, +1,1,2611,2026,1,1,,0,,,4,19,19,4/19/26 18:00, +1,1,2612,2026,1,1,,0,,,4,19,20,4/19/26 19:00, +1,1,2613,2026,1,1,,0,,,4,19,21,4/19/26 20:00, +1,1,2614,2026,1,1,,0,,,4,19,22,4/19/26 21:00, +1,1,2615,2026,1,1,,0,,,4,19,23,4/19/26 22:00, +1,1,2616,2026,1,1,,0,,,4,19,24,4/19/26 23:00, +1,1,2617,2026,1,1,,0,,,4,20,1,4/20/26 0:00, +1,1,2618,2026,1,1,,0,,,4,20,2,4/20/26 1:00, +1,1,2619,2026,1,1,,0,,,4,20,3,4/20/26 2:00, +1,1,2620,2026,1,1,,0,,,4,20,4,4/20/26 3:00, +1,1,2621,2026,1,1,,0,,,4,20,5,4/20/26 4:00, +1,1,2622,2026,1,1,,0,,,4,20,6,4/20/26 5:00, +1,1,2623,2026,1,1,,0,,,4,20,7,4/20/26 6:00, +1,1,2624,2026,1,1,,0,,,4,20,8,4/20/26 7:00, +1,1,2625,2026,1,1,,0,,,4,20,9,4/20/26 8:00, +1,1,2626,2026,1,1,,0,,,4,20,10,4/20/26 9:00, +1,1,2627,2026,1,1,,0,,,4,20,11,4/20/26 10:00, +1,1,2628,2026,1,1,,0,,,4,20,12,4/20/26 11:00, +1,1,2629,2026,1,1,,0,,,4,20,13,4/20/26 12:00, +1,1,2630,2026,1,1,,0,,,4,20,14,4/20/26 13:00, +1,1,2631,2026,1,1,,0,,,4,20,15,4/20/26 14:00, +1,1,2632,2026,1,1,,0,,,4,20,16,4/20/26 15:00, +1,1,2633,2026,1,1,,0,,,4,20,17,4/20/26 16:00, +1,1,2634,2026,1,1,,0,,,4,20,18,4/20/26 17:00, +1,1,2635,2026,1,1,,0,,,4,20,19,4/20/26 18:00, +1,1,2636,2026,1,1,,0,,,4,20,20,4/20/26 19:00, +1,1,2637,2026,1,1,,0,,,4,20,21,4/20/26 20:00, +1,1,2638,2026,1,1,,0,,,4,20,22,4/20/26 21:00, +1,1,2639,2026,1,1,,0,,,4,20,23,4/20/26 22:00, +1,1,2640,2026,1,1,,0,,,4,20,24,4/20/26 23:00, +1,1,2641,2026,1,1,,0,,,4,21,1,4/21/26 0:00, +1,1,2642,2026,1,1,,0,,,4,21,2,4/21/26 1:00, +1,1,2643,2026,1,1,,0,,,4,21,3,4/21/26 2:00, +1,1,2644,2026,1,1,,0,,,4,21,4,4/21/26 3:00, +1,1,2645,2026,1,1,,0,,,4,21,5,4/21/26 4:00, +1,1,2646,2026,1,1,,0,,,4,21,6,4/21/26 5:00, +1,1,2647,2026,1,1,,0,,,4,21,7,4/21/26 6:00, +1,1,2648,2026,1,1,,0,,,4,21,8,4/21/26 7:00, +1,1,2649,2026,1,1,,0,,,4,21,9,4/21/26 8:00, +1,1,2650,2026,1,1,,0,,,4,21,10,4/21/26 9:00, +1,1,2651,2026,1,1,,0,,,4,21,11,4/21/26 10:00, +1,1,2652,2026,1,1,,0,,,4,21,12,4/21/26 11:00, +1,1,2653,2026,1,1,,0,,,4,21,13,4/21/26 12:00, +1,1,2654,2026,1,1,,0,,,4,21,14,4/21/26 13:00, +1,1,2655,2026,1,1,,0,,,4,21,15,4/21/26 14:00, +1,1,2656,2026,1,1,,0,,,4,21,16,4/21/26 15:00, +1,1,2657,2026,1,1,,0,,,4,21,17,4/21/26 16:00, +1,1,2658,2026,1,1,,0,,,4,21,18,4/21/26 17:00, +1,1,2659,2026,1,1,,0,,,4,21,19,4/21/26 18:00, +1,1,2660,2026,1,1,,0,,,4,21,20,4/21/26 19:00, +1,1,2661,2026,1,1,,0,,,4,21,21,4/21/26 20:00, +1,1,2662,2026,1,1,,0,,,4,21,22,4/21/26 21:00, +1,1,2663,2026,1,1,,0,,,4,21,23,4/21/26 22:00, +1,1,2664,2026,1,1,,0,,,4,21,24,4/21/26 23:00, +1,1,2665,2026,1,1,,0,,,4,22,1,4/22/26 0:00, +1,1,2666,2026,1,1,,0,,,4,22,2,4/22/26 1:00, +1,1,2667,2026,1,1,,0,,,4,22,3,4/22/26 2:00, +1,1,2668,2026,1,1,,0,,,4,22,4,4/22/26 3:00, +1,1,2669,2026,1,1,,0,,,4,22,5,4/22/26 4:00, +1,1,2670,2026,1,1,,0,,,4,22,6,4/22/26 5:00, +1,1,2671,2026,1,1,,0,,,4,22,7,4/22/26 6:00, +1,1,2672,2026,1,1,,0,,,4,22,8,4/22/26 7:00, +1,1,2673,2026,1,1,,0,,,4,22,9,4/22/26 8:00, +1,1,2674,2026,1,1,,0,,,4,22,10,4/22/26 9:00, +1,1,2675,2026,1,1,,0,,,4,22,11,4/22/26 10:00, +1,1,2676,2026,1,1,,0,,,4,22,12,4/22/26 11:00, +1,1,2677,2026,1,1,,0,,,4,22,13,4/22/26 12:00, +1,1,2678,2026,1,1,,0,,,4,22,14,4/22/26 13:00, +1,1,2679,2026,1,1,,0,,,4,22,15,4/22/26 14:00, +1,1,2680,2026,1,1,,0,,,4,22,16,4/22/26 15:00, +1,1,2681,2026,1,1,,0,,,4,22,17,4/22/26 16:00, +1,1,2682,2026,1,1,,0,,,4,22,18,4/22/26 17:00, +1,1,2683,2026,1,1,,0,,,4,22,19,4/22/26 18:00, +1,1,2684,2026,1,1,,0,,,4,22,20,4/22/26 19:00, +1,1,2685,2026,1,1,,0,,,4,22,21,4/22/26 20:00, +1,1,2686,2026,1,1,,0,,,4,22,22,4/22/26 21:00, +1,1,2687,2026,1,1,,0,,,4,22,23,4/22/26 22:00, +1,1,2688,2026,1,1,,0,,,4,22,24,4/22/26 23:00, +1,1,2689,2026,1,1,,0,,,4,23,1,4/23/26 0:00, +1,1,2690,2026,1,1,,0,,,4,23,2,4/23/26 1:00, +1,1,2691,2026,1,1,,0,,,4,23,3,4/23/26 2:00, +1,1,2692,2026,1,1,,0,,,4,23,4,4/23/26 3:00, +1,1,2693,2026,1,1,,0,,,4,23,5,4/23/26 4:00, +1,1,2694,2026,1,1,,0,,,4,23,6,4/23/26 5:00, +1,1,2695,2026,1,1,,0,,,4,23,7,4/23/26 6:00, +1,1,2696,2026,1,1,,0,,,4,23,8,4/23/26 7:00, +1,1,2697,2026,1,1,,0,,,4,23,9,4/23/26 8:00, +1,1,2698,2026,1,1,,0,,,4,23,10,4/23/26 9:00, +1,1,2699,2026,1,1,,0,,,4,23,11,4/23/26 10:00, +1,1,2700,2026,1,1,,0,,,4,23,12,4/23/26 11:00, +1,1,2701,2026,1,1,,0,,,4,23,13,4/23/26 12:00, +1,1,2702,2026,1,1,,0,,,4,23,14,4/23/26 13:00, +1,1,2703,2026,1,1,,0,,,4,23,15,4/23/26 14:00, +1,1,2704,2026,1,1,,0,,,4,23,16,4/23/26 15:00, +1,1,2705,2026,1,1,,0,,,4,23,17,4/23/26 16:00, +1,1,2706,2026,1,1,,0,,,4,23,18,4/23/26 17:00, +1,1,2707,2026,1,1,,0,,,4,23,19,4/23/26 18:00, +1,1,2708,2026,1,1,,0,,,4,23,20,4/23/26 19:00, +1,1,2709,2026,1,1,,0,,,4,23,21,4/23/26 20:00, +1,1,2710,2026,1,1,,0,,,4,23,22,4/23/26 21:00, +1,1,2711,2026,1,1,,0,,,4,23,23,4/23/26 22:00, +1,1,2712,2026,1,1,,0,,,4,23,24,4/23/26 23:00, +1,1,2713,2026,1,1,,0,,,4,24,1,4/24/26 0:00, +1,1,2714,2026,1,1,,0,,,4,24,2,4/24/26 1:00, +1,1,2715,2026,1,1,,0,,,4,24,3,4/24/26 2:00, +1,1,2716,2026,1,1,,0,,,4,24,4,4/24/26 3:00, +1,1,2717,2026,1,1,,0,,,4,24,5,4/24/26 4:00, +1,1,2718,2026,1,1,,0,,,4,24,6,4/24/26 5:00, +1,1,2719,2026,1,1,,0,,,4,24,7,4/24/26 6:00, +1,1,2720,2026,1,1,,0,,,4,24,8,4/24/26 7:00, +1,1,2721,2026,1,1,,0,,,4,24,9,4/24/26 8:00, +1,1,2722,2026,1,1,,0,,,4,24,10,4/24/26 9:00, +1,1,2723,2026,1,1,,0,,,4,24,11,4/24/26 10:00, +1,1,2724,2026,1,1,,0,,,4,24,12,4/24/26 11:00, +1,1,2725,2026,1,1,,0,,,4,24,13,4/24/26 12:00, +1,1,2726,2026,1,1,,0,,,4,24,14,4/24/26 13:00, +1,1,2727,2026,1,1,,0,,,4,24,15,4/24/26 14:00, +1,1,2728,2026,1,1,,0,,,4,24,16,4/24/26 15:00, +1,1,2729,2026,1,1,,0,,,4,24,17,4/24/26 16:00, +1,1,2730,2026,1,1,,0,,,4,24,18,4/24/26 17:00, +1,1,2731,2026,1,1,,0,,,4,24,19,4/24/26 18:00, +1,1,2732,2026,1,1,,0,,,4,24,20,4/24/26 19:00, +1,1,2733,2026,1,1,,0,,,4,24,21,4/24/26 20:00, +1,1,2734,2026,1,1,,0,,,4,24,22,4/24/26 21:00, +1,1,2735,2026,1,1,,0,,,4,24,23,4/24/26 22:00, +1,1,2736,2026,1,1,,0,,,4,24,24,4/24/26 23:00, +1,1,2737,2026,1,1,,0,,,4,25,1,4/25/26 0:00, +1,1,2738,2026,1,1,,0,,,4,25,2,4/25/26 1:00, +1,1,2739,2026,1,1,,0,,,4,25,3,4/25/26 2:00, +1,1,2740,2026,1,1,,0,,,4,25,4,4/25/26 3:00, +1,1,2741,2026,1,1,,0,,,4,25,5,4/25/26 4:00, +1,1,2742,2026,1,1,,0,,,4,25,6,4/25/26 5:00, +1,1,2743,2026,1,1,,0,,,4,25,7,4/25/26 6:00, +1,1,2744,2026,1,1,,0,,,4,25,8,4/25/26 7:00, +1,1,2745,2026,1,1,,0,,,4,25,9,4/25/26 8:00, +1,1,2746,2026,1,1,,0,,,4,25,10,4/25/26 9:00, +1,1,2747,2026,1,1,,0,,,4,25,11,4/25/26 10:00, +1,1,2748,2026,1,1,,0,,,4,25,12,4/25/26 11:00, +1,1,2749,2026,1,1,,0,,,4,25,13,4/25/26 12:00, +1,1,2750,2026,1,1,,0,,,4,25,14,4/25/26 13:00, +1,1,2751,2026,1,1,,0,,,4,25,15,4/25/26 14:00, +1,1,2752,2026,1,1,,0,,,4,25,16,4/25/26 15:00, +1,1,2753,2026,1,1,,0,,,4,25,17,4/25/26 16:00, +1,1,2754,2026,1,1,,0,,,4,25,18,4/25/26 17:00, +1,1,2755,2026,1,1,,0,,,4,25,19,4/25/26 18:00, +1,1,2756,2026,1,1,,0,,,4,25,20,4/25/26 19:00, +1,1,2757,2026,1,1,,0,,,4,25,21,4/25/26 20:00, +1,1,2758,2026,1,1,,0,,,4,25,22,4/25/26 21:00, +1,1,2759,2026,1,1,,0,,,4,25,23,4/25/26 22:00, +1,1,2760,2026,1,1,,0,,,4,25,24,4/25/26 23:00, +1,1,2761,2026,1,1,,0,,,4,26,1,4/26/26 0:00, +1,1,2762,2026,1,1,,0,,,4,26,2,4/26/26 1:00, +1,1,2763,2026,1,1,,0,,,4,26,3,4/26/26 2:00, +1,1,2764,2026,1,1,,0,,,4,26,4,4/26/26 3:00, +1,1,2765,2026,1,1,,0,,,4,26,5,4/26/26 4:00, +1,1,2766,2026,1,1,,0,,,4,26,6,4/26/26 5:00, +1,1,2767,2026,1,1,,0,,,4,26,7,4/26/26 6:00, +1,1,2768,2026,1,1,,0,,,4,26,8,4/26/26 7:00, +1,1,2769,2026,1,1,,0,,,4,26,9,4/26/26 8:00, +1,1,2770,2026,1,1,,0,,,4,26,10,4/26/26 9:00, +1,1,2771,2026,1,1,,0,,,4,26,11,4/26/26 10:00, +1,1,2772,2026,1,1,,0,,,4,26,12,4/26/26 11:00, +1,1,2773,2026,1,1,,0,,,4,26,13,4/26/26 12:00, +1,1,2774,2026,1,1,,0,,,4,26,14,4/26/26 13:00, +1,1,2775,2026,1,1,,0,,,4,26,15,4/26/26 14:00, +1,1,2776,2026,1,1,,0,,,4,26,16,4/26/26 15:00, +1,1,2777,2026,1,1,,0,,,4,26,17,4/26/26 16:00, +1,1,2778,2026,1,1,,0,,,4,26,18,4/26/26 17:00, +1,1,2779,2026,1,1,,0,,,4,26,19,4/26/26 18:00, +1,1,2780,2026,1,1,,0,,,4,26,20,4/26/26 19:00, +1,1,2781,2026,1,1,,0,,,4,26,21,4/26/26 20:00, +1,1,2782,2026,1,1,,0,,,4,26,22,4/26/26 21:00, +1,1,2783,2026,1,1,,0,,,4,26,23,4/26/26 22:00, +1,1,2784,2026,1,1,,0,,,4,26,24,4/26/26 23:00, +1,1,2785,2026,1,1,,0,,,4,27,1,4/27/26 0:00, +1,1,2786,2026,1,1,,0,,,4,27,2,4/27/26 1:00, +1,1,2787,2026,1,1,,0,,,4,27,3,4/27/26 2:00, +1,1,2788,2026,1,1,,0,,,4,27,4,4/27/26 3:00, +1,1,2789,2026,1,1,,0,,,4,27,5,4/27/26 4:00, +1,1,2790,2026,1,1,,0,,,4,27,6,4/27/26 5:00, +1,1,2791,2026,1,1,,0,,,4,27,7,4/27/26 6:00, +1,1,2792,2026,1,1,,0,,,4,27,8,4/27/26 7:00, +1,1,2793,2026,1,1,,0,,,4,27,9,4/27/26 8:00, +1,1,2794,2026,1,1,,0,,,4,27,10,4/27/26 9:00, +1,1,2795,2026,1,1,,0,,,4,27,11,4/27/26 10:00, +1,1,2796,2026,1,1,,0,,,4,27,12,4/27/26 11:00, +1,1,2797,2026,1,1,,0,,,4,27,13,4/27/26 12:00, +1,1,2798,2026,1,1,,0,,,4,27,14,4/27/26 13:00, +1,1,2799,2026,1,1,,0,,,4,27,15,4/27/26 14:00, +1,1,2800,2026,1,1,,0,,,4,27,16,4/27/26 15:00, +1,1,2801,2026,1,1,,0,,,4,27,17,4/27/26 16:00, +1,1,2802,2026,1,1,,0,,,4,27,18,4/27/26 17:00, +1,1,2803,2026,1,1,,0,,,4,27,19,4/27/26 18:00, +1,1,2804,2026,1,1,,0,,,4,27,20,4/27/26 19:00, +1,1,2805,2026,1,1,,0,,,4,27,21,4/27/26 20:00, +1,1,2806,2026,1,1,,0,,,4,27,22,4/27/26 21:00, +1,1,2807,2026,1,1,,0,,,4,27,23,4/27/26 22:00, +1,1,2808,2026,1,1,,0,,,4,27,24,4/27/26 23:00, +1,1,2809,2026,1,1,,0,,,4,28,1,4/28/26 0:00, +1,1,2810,2026,1,1,,0,,,4,28,2,4/28/26 1:00, +1,1,2811,2026,1,1,,0,,,4,28,3,4/28/26 2:00, +1,1,2812,2026,1,1,,0,,,4,28,4,4/28/26 3:00, +1,1,2813,2026,1,1,,0,,,4,28,5,4/28/26 4:00, +1,1,2814,2026,1,1,,0,,,4,28,6,4/28/26 5:00, +1,1,2815,2026,1,1,,0,,,4,28,7,4/28/26 6:00, +1,1,2816,2026,1,1,,0,,,4,28,8,4/28/26 7:00, +1,1,2817,2026,1,1,,0,,,4,28,9,4/28/26 8:00, +1,1,2818,2026,1,1,,0,,,4,28,10,4/28/26 9:00, +1,1,2819,2026,1,1,,0,,,4,28,11,4/28/26 10:00, +1,1,2820,2026,1,1,,0,,,4,28,12,4/28/26 11:00, +1,1,2821,2026,1,1,,0,,,4,28,13,4/28/26 12:00, +1,1,2822,2026,1,1,,0,,,4,28,14,4/28/26 13:00, +1,1,2823,2026,1,1,,0,,,4,28,15,4/28/26 14:00, +1,1,2824,2026,1,1,,0,,,4,28,16,4/28/26 15:00, +1,1,2825,2026,1,1,,0,,,4,28,17,4/28/26 16:00, +1,1,2826,2026,1,1,,0,,,4,28,18,4/28/26 17:00, +1,1,2827,2026,1,1,,0,,,4,28,19,4/28/26 18:00, +1,1,2828,2026,1,1,,0,,,4,28,20,4/28/26 19:00, +1,1,2829,2026,1,1,,0,,,4,28,21,4/28/26 20:00, +1,1,2830,2026,1,1,,0,,,4,28,22,4/28/26 21:00, +1,1,2831,2026,1,1,,0,,,4,28,23,4/28/26 22:00, +1,1,2832,2026,1,1,,0,,,4,28,24,4/28/26 23:00, +1,1,2833,2026,1,1,,0,,,4,29,1,4/29/26 0:00, +1,1,2834,2026,1,1,,0,,,4,29,2,4/29/26 1:00, +1,1,2835,2026,1,1,,0,,,4,29,3,4/29/26 2:00, +1,1,2836,2026,1,1,,0,,,4,29,4,4/29/26 3:00, +1,1,2837,2026,1,1,,0,,,4,29,5,4/29/26 4:00, +1,1,2838,2026,1,1,,0,,,4,29,6,4/29/26 5:00, +1,1,2839,2026,1,1,,0,,,4,29,7,4/29/26 6:00, +1,1,2840,2026,1,1,,0,,,4,29,8,4/29/26 7:00, +1,1,2841,2026,1,1,,0,,,4,29,9,4/29/26 8:00, +1,1,2842,2026,1,1,,0,,,4,29,10,4/29/26 9:00, +1,1,2843,2026,1,1,,0,,,4,29,11,4/29/26 10:00, +1,1,2844,2026,1,1,,0,,,4,29,12,4/29/26 11:00, +1,1,2845,2026,1,1,,0,,,4,29,13,4/29/26 12:00, +1,1,2846,2026,1,1,,0,,,4,29,14,4/29/26 13:00, +1,1,2847,2026,1,1,,0,,,4,29,15,4/29/26 14:00, +1,1,2848,2026,1,1,,0,,,4,29,16,4/29/26 15:00, +1,1,2849,2026,1,1,,0,,,4,29,17,4/29/26 16:00, +1,1,2850,2026,1,1,,0,,,4,29,18,4/29/26 17:00, +1,1,2851,2026,1,1,,0,,,4,29,19,4/29/26 18:00, +1,1,2852,2026,1,1,,0,,,4,29,20,4/29/26 19:00, +1,1,2853,2026,1,1,,0,,,4,29,21,4/29/26 20:00, +1,1,2854,2026,1,1,,0,,,4,29,22,4/29/26 21:00, +1,1,2855,2026,1,1,,0,,,4,29,23,4/29/26 22:00, +1,1,2856,2026,1,1,,0,,,4,29,24,4/29/26 23:00, +1,1,2857,2026,1,1,,0,,,4,30,1,4/30/26 0:00, +1,1,2858,2026,1,1,,0,,,4,30,2,4/30/26 1:00, +1,1,2859,2026,1,1,,0,,,4,30,3,4/30/26 2:00, +1,1,2860,2026,1,1,,0,,,4,30,4,4/30/26 3:00, +1,1,2861,2026,1,1,,0,,,4,30,5,4/30/26 4:00, +1,1,2862,2026,1,1,,0,,,4,30,6,4/30/26 5:00, +1,1,2863,2026,1,1,,0,,,4,30,7,4/30/26 6:00, +1,1,2864,2026,1,1,,0,,,4,30,8,4/30/26 7:00, +1,1,2865,2026,1,1,,0,,,4,30,9,4/30/26 8:00, +1,1,2866,2026,1,1,,0,,,4,30,10,4/30/26 9:00, +1,1,2867,2026,1,1,,0,,,4,30,11,4/30/26 10:00, +1,1,2868,2026,1,1,,0,,,4,30,12,4/30/26 11:00, +1,1,2869,2026,1,1,,0,,,4,30,13,4/30/26 12:00, +1,1,2870,2026,1,1,,0,,,4,30,14,4/30/26 13:00, +1,1,2871,2026,1,1,,0,,,4,30,15,4/30/26 14:00, +1,1,2872,2026,1,1,,0,,,4,30,16,4/30/26 15:00, +1,1,2873,2026,1,1,,0,,,4,30,17,4/30/26 16:00, +1,1,2874,2026,1,1,,0,,,4,30,18,4/30/26 17:00, +1,1,2875,2026,1,1,,0,,,4,30,19,4/30/26 18:00, +1,1,2876,2026,1,1,,0,,,4,30,20,4/30/26 19:00, +1,1,2877,2026,1,1,,0,,,4,30,21,4/30/26 20:00, +1,1,2878,2026,1,1,,0,,,4,30,22,4/30/26 21:00, +1,1,2879,2026,1,1,,0,,,4,30,23,4/30/26 22:00, +1,1,2880,2026,1,1,,0,,,4,30,24,4/30/26 23:00, +1,1,2881,2026,1,1,,0,,,5,1,1,5/1/26 0:00, +1,1,2882,2026,1,1,,0,,,5,1,2,5/1/26 1:00, +1,1,2883,2026,1,1,,0,,,5,1,3,5/1/26 2:00, +1,1,2884,2026,1,1,,0,,,5,1,4,5/1/26 3:00, +1,1,2885,2026,1,1,,0,,,5,1,5,5/1/26 4:00, +1,1,2886,2026,1,1,,0,,,5,1,6,5/1/26 5:00, +1,1,2887,2026,1,1,,0,,,5,1,7,5/1/26 6:00, +1,1,2888,2026,1,1,,0,,,5,1,8,5/1/26 7:00, +1,1,2889,2026,1,1,,0,,,5,1,9,5/1/26 8:00, +1,1,2890,2026,1,1,,0,,,5,1,10,5/1/26 9:00, +1,1,2891,2026,1,1,,0,,,5,1,11,5/1/26 10:00, +1,1,2892,2026,1,1,,0,,,5,1,12,5/1/26 11:00, +1,1,2893,2026,1,1,,0,,,5,1,13,5/1/26 12:00, +1,1,2894,2026,1,1,,0,,,5,1,14,5/1/26 13:00, +1,1,2895,2026,1,1,,0,,,5,1,15,5/1/26 14:00, +1,1,2896,2026,1,1,,0,,,5,1,16,5/1/26 15:00, +1,1,2897,2026,1,1,,0,,,5,1,17,5/1/26 16:00, +1,1,2898,2026,1,1,,0,,,5,1,18,5/1/26 17:00, +1,1,2899,2026,1,1,,0,,,5,1,19,5/1/26 18:00, +1,1,2900,2026,1,1,,0,,,5,1,20,5/1/26 19:00, +1,1,2901,2026,1,1,,0,,,5,1,21,5/1/26 20:00, +1,1,2902,2026,1,1,,0,,,5,1,22,5/1/26 21:00, +1,1,2903,2026,1,1,,0,,,5,1,23,5/1/26 22:00, +1,1,2904,2026,1,1,,0,,,5,1,24,5/1/26 23:00, +1,1,2905,2026,1,1,,0,,,5,2,1,5/2/26 0:00, +1,1,2906,2026,1,1,,0,,,5,2,2,5/2/26 1:00, +1,1,2907,2026,1,1,,0,,,5,2,3,5/2/26 2:00, +1,1,2908,2026,1,1,,0,,,5,2,4,5/2/26 3:00, +1,1,2909,2026,1,1,,0,,,5,2,5,5/2/26 4:00, +1,1,2910,2026,1,1,,0,,,5,2,6,5/2/26 5:00, +1,1,2911,2026,1,1,,0,,,5,2,7,5/2/26 6:00, +1,1,2912,2026,1,1,,0,,,5,2,8,5/2/26 7:00, +1,1,2913,2026,1,1,,0,,,5,2,9,5/2/26 8:00, +1,1,2914,2026,1,1,,0,,,5,2,10,5/2/26 9:00, +1,1,2915,2026,1,1,,0,,,5,2,11,5/2/26 10:00, +1,1,2916,2026,1,1,,0,,,5,2,12,5/2/26 11:00, +1,1,2917,2026,1,1,,0,,,5,2,13,5/2/26 12:00, +1,1,2918,2026,1,1,,0,,,5,2,14,5/2/26 13:00, +1,1,2919,2026,1,1,,0,,,5,2,15,5/2/26 14:00, +1,1,2920,2026,1,1,,0,,,5,2,16,5/2/26 15:00, +1,1,2921,2026,1,1,,0,,,5,2,17,5/2/26 16:00, +1,1,2922,2026,1,1,,0,,,5,2,18,5/2/26 17:00, +1,1,2923,2026,1,1,,0,,,5,2,19,5/2/26 18:00, +1,1,2924,2026,1,1,,0,,,5,2,20,5/2/26 19:00, +1,1,2925,2026,1,1,,0,,,5,2,21,5/2/26 20:00, +1,1,2926,2026,1,1,,0,,,5,2,22,5/2/26 21:00, +1,1,2927,2026,1,1,,0,,,5,2,23,5/2/26 22:00, +1,1,2928,2026,1,1,,0,,,5,2,24,5/2/26 23:00, +1,1,2929,2026,1,1,,0,,,5,3,1,5/3/26 0:00, +1,1,2930,2026,1,1,,0,,,5,3,2,5/3/26 1:00, +1,1,2931,2026,1,1,,0,,,5,3,3,5/3/26 2:00, +1,1,2932,2026,1,1,,0,,,5,3,4,5/3/26 3:00, +1,1,2933,2026,1,1,,0,,,5,3,5,5/3/26 4:00, +1,1,2934,2026,1,1,,0,,,5,3,6,5/3/26 5:00, +1,1,2935,2026,1,1,,0,,,5,3,7,5/3/26 6:00, +1,1,2936,2026,1,1,,0,,,5,3,8,5/3/26 7:00, +1,1,2937,2026,1,1,,0,,,5,3,9,5/3/26 8:00, +1,1,2938,2026,1,1,,0,,,5,3,10,5/3/26 9:00, +1,1,2939,2026,1,1,,0,,,5,3,11,5/3/26 10:00, +1,1,2940,2026,1,1,,0,,,5,3,12,5/3/26 11:00, +1,1,2941,2026,1,1,,0,,,5,3,13,5/3/26 12:00, +1,1,2942,2026,1,1,,0,,,5,3,14,5/3/26 13:00, +1,1,2943,2026,1,1,,0,,,5,3,15,5/3/26 14:00, +1,1,2944,2026,1,1,,0,,,5,3,16,5/3/26 15:00, +1,1,2945,2026,1,1,,0,,,5,3,17,5/3/26 16:00, +1,1,2946,2026,1,1,,0,,,5,3,18,5/3/26 17:00, +1,1,2947,2026,1,1,,0,,,5,3,19,5/3/26 18:00, +1,1,2948,2026,1,1,,0,,,5,3,20,5/3/26 19:00, +1,1,2949,2026,1,1,,0,,,5,3,21,5/3/26 20:00, +1,1,2950,2026,1,1,,0,,,5,3,22,5/3/26 21:00, +1,1,2951,2026,1,1,,0,,,5,3,23,5/3/26 22:00, +1,1,2952,2026,1,1,,0,,,5,3,24,5/3/26 23:00, +1,1,2953,2026,1,1,,0,,,5,4,1,5/4/26 0:00, +1,1,2954,2026,1,1,,0,,,5,4,2,5/4/26 1:00, +1,1,2955,2026,1,1,,0,,,5,4,3,5/4/26 2:00, +1,1,2956,2026,1,1,,0,,,5,4,4,5/4/26 3:00, +1,1,2957,2026,1,1,,0,,,5,4,5,5/4/26 4:00, +1,1,2958,2026,1,1,,0,,,5,4,6,5/4/26 5:00, +1,1,2959,2026,1,1,,0,,,5,4,7,5/4/26 6:00, +1,1,2960,2026,1,1,,0,,,5,4,8,5/4/26 7:00, +1,1,2961,2026,1,1,,0,,,5,4,9,5/4/26 8:00, +1,1,2962,2026,1,1,,0,,,5,4,10,5/4/26 9:00, +1,1,2963,2026,1,1,,0,,,5,4,11,5/4/26 10:00, +1,1,2964,2026,1,1,,0,,,5,4,12,5/4/26 11:00, +1,1,2965,2026,1,1,,0,,,5,4,13,5/4/26 12:00, +1,1,2966,2026,1,1,,0,,,5,4,14,5/4/26 13:00, +1,1,2967,2026,1,1,,0,,,5,4,15,5/4/26 14:00, +1,1,2968,2026,1,1,,0,,,5,4,16,5/4/26 15:00, +1,1,2969,2026,1,1,,0,,,5,4,17,5/4/26 16:00, +1,1,2970,2026,1,1,,0,,,5,4,18,5/4/26 17:00, +1,1,2971,2026,1,1,,0,,,5,4,19,5/4/26 18:00, +1,1,2972,2026,1,1,,0,,,5,4,20,5/4/26 19:00, +1,1,2973,2026,1,1,,0,,,5,4,21,5/4/26 20:00, +1,1,2974,2026,1,1,,0,,,5,4,22,5/4/26 21:00, +1,1,2975,2026,1,1,,0,,,5,4,23,5/4/26 22:00, +1,1,2976,2026,1,1,,0,,,5,4,24,5/4/26 23:00, +1,1,2977,2026,1,1,,0,,,5,5,1,5/5/26 0:00, +1,1,2978,2026,1,1,,0,,,5,5,2,5/5/26 1:00, +1,1,2979,2026,1,1,,0,,,5,5,3,5/5/26 2:00, +1,1,2980,2026,1,1,,0,,,5,5,4,5/5/26 3:00, +1,1,2981,2026,1,1,,0,,,5,5,5,5/5/26 4:00, +1,1,2982,2026,1,1,,0,,,5,5,6,5/5/26 5:00, +1,1,2983,2026,1,1,,0,,,5,5,7,5/5/26 6:00, +1,1,2984,2026,1,1,,0,,,5,5,8,5/5/26 7:00, +1,1,2985,2026,1,1,,0,,,5,5,9,5/5/26 8:00, +1,1,2986,2026,1,1,,0,,,5,5,10,5/5/26 9:00, +1,1,2987,2026,1,1,,0,,,5,5,11,5/5/26 10:00, +1,1,2988,2026,1,1,,0,,,5,5,12,5/5/26 11:00, +1,1,2989,2026,1,1,,0,,,5,5,13,5/5/26 12:00, +1,1,2990,2026,1,1,,0,,,5,5,14,5/5/26 13:00, +1,1,2991,2026,1,1,,0,,,5,5,15,5/5/26 14:00, +1,1,2992,2026,1,1,,0,,,5,5,16,5/5/26 15:00, +1,1,2993,2026,1,1,,0,,,5,5,17,5/5/26 16:00, +1,1,2994,2026,1,1,,0,,,5,5,18,5/5/26 17:00, +1,1,2995,2026,1,1,,0,,,5,5,19,5/5/26 18:00, +1,1,2996,2026,1,1,,0,,,5,5,20,5/5/26 19:00, +1,1,2997,2026,1,1,,0,,,5,5,21,5/5/26 20:00, +1,1,2998,2026,1,1,,0,,,5,5,22,5/5/26 21:00, +1,1,2999,2026,1,1,,0,,,5,5,23,5/5/26 22:00, +1,1,3000,2026,1,1,,0,,,5,5,24,5/5/26 23:00, +1,1,3001,2026,1,1,,0,,,5,6,1,5/6/26 0:00, +1,1,3002,2026,1,1,,0,,,5,6,2,5/6/26 1:00, +1,1,3003,2026,1,1,,0,,,5,6,3,5/6/26 2:00, +1,1,3004,2026,1,1,,0,,,5,6,4,5/6/26 3:00, +1,1,3005,2026,1,1,,0,,,5,6,5,5/6/26 4:00, +1,1,3006,2026,1,1,,0,,,5,6,6,5/6/26 5:00, +1,1,3007,2026,1,1,,0,,,5,6,7,5/6/26 6:00, +1,1,3008,2026,1,1,,0,,,5,6,8,5/6/26 7:00, +1,1,3009,2026,1,1,,0,,,5,6,9,5/6/26 8:00, +1,1,3010,2026,1,1,,0,,,5,6,10,5/6/26 9:00, +1,1,3011,2026,1,1,,0,,,5,6,11,5/6/26 10:00, +1,1,3012,2026,1,1,,0,,,5,6,12,5/6/26 11:00, +1,1,3013,2026,1,1,,0,,,5,6,13,5/6/26 12:00, +1,1,3014,2026,1,1,,0,,,5,6,14,5/6/26 13:00, +1,1,3015,2026,1,1,,0,,,5,6,15,5/6/26 14:00, +1,1,3016,2026,1,1,,0,,,5,6,16,5/6/26 15:00, +1,1,3017,2026,1,1,,0,,,5,6,17,5/6/26 16:00, +1,1,3018,2026,1,1,,0,,,5,6,18,5/6/26 17:00, +1,1,3019,2026,1,1,,0,,,5,6,19,5/6/26 18:00, +1,1,3020,2026,1,1,,0,,,5,6,20,5/6/26 19:00, +1,1,3021,2026,1,1,,0,,,5,6,21,5/6/26 20:00, +1,1,3022,2026,1,1,,0,,,5,6,22,5/6/26 21:00, +1,1,3023,2026,1,1,,0,,,5,6,23,5/6/26 22:00, +1,1,3024,2026,1,1,,0,,,5,6,24,5/6/26 23:00, +1,1,3025,2026,1,1,,0,,,5,7,1,5/7/26 0:00, +1,1,3026,2026,1,1,,0,,,5,7,2,5/7/26 1:00, +1,1,3027,2026,1,1,,0,,,5,7,3,5/7/26 2:00, +1,1,3028,2026,1,1,,0,,,5,7,4,5/7/26 3:00, +1,1,3029,2026,1,1,,0,,,5,7,5,5/7/26 4:00, +1,1,3030,2026,1,1,,0,,,5,7,6,5/7/26 5:00, +1,1,3031,2026,1,1,,0,,,5,7,7,5/7/26 6:00, +1,1,3032,2026,1,1,,0,,,5,7,8,5/7/26 7:00, +1,1,3033,2026,1,1,,0,,,5,7,9,5/7/26 8:00, +1,1,3034,2026,1,1,,0,,,5,7,10,5/7/26 9:00, +1,1,3035,2026,1,1,,0,,,5,7,11,5/7/26 10:00, +1,1,3036,2026,1,1,,0,,,5,7,12,5/7/26 11:00, +1,1,3037,2026,1,1,,0,,,5,7,13,5/7/26 12:00, +1,1,3038,2026,1,1,,0,,,5,7,14,5/7/26 13:00, +1,1,3039,2026,1,1,,0,,,5,7,15,5/7/26 14:00, +1,1,3040,2026,1,1,,0,,,5,7,16,5/7/26 15:00, +1,1,3041,2026,1,1,,0,,,5,7,17,5/7/26 16:00, +1,1,3042,2026,1,1,,0,,,5,7,18,5/7/26 17:00, +1,1,3043,2026,1,1,,0,,,5,7,19,5/7/26 18:00, +1,1,3044,2026,1,1,,0,,,5,7,20,5/7/26 19:00, +1,1,3045,2026,1,1,,0,,,5,7,21,5/7/26 20:00, +1,1,3046,2026,1,1,,0,,,5,7,22,5/7/26 21:00, +1,1,3047,2026,1,1,,0,,,5,7,23,5/7/26 22:00, +1,1,3048,2026,1,1,,0,,,5,7,24,5/7/26 23:00, +1,1,3049,2026,1,1,,0,,,5,8,1,5/8/26 0:00, +1,1,3050,2026,1,1,,0,,,5,8,2,5/8/26 1:00, +1,1,3051,2026,1,1,,0,,,5,8,3,5/8/26 2:00, +1,1,3052,2026,1,1,,0,,,5,8,4,5/8/26 3:00, +1,1,3053,2026,1,1,,0,,,5,8,5,5/8/26 4:00, +1,1,3054,2026,1,1,,0,,,5,8,6,5/8/26 5:00, +1,1,3055,2026,1,1,,0,,,5,8,7,5/8/26 6:00, +1,1,3056,2026,1,1,,0,,,5,8,8,5/8/26 7:00, +1,1,3057,2026,1,1,,0,,,5,8,9,5/8/26 8:00, +1,1,3058,2026,1,1,,0,,,5,8,10,5/8/26 9:00, +1,1,3059,2026,1,1,,0,,,5,8,11,5/8/26 10:00, +1,1,3060,2026,1,1,,0,,,5,8,12,5/8/26 11:00, +1,1,3061,2026,1,1,,0,,,5,8,13,5/8/26 12:00, +1,1,3062,2026,1,1,,0,,,5,8,14,5/8/26 13:00, +1,1,3063,2026,1,1,,0,,,5,8,15,5/8/26 14:00, +1,1,3064,2026,1,1,,0,,,5,8,16,5/8/26 15:00, +1,1,3065,2026,1,1,,0,,,5,8,17,5/8/26 16:00, +1,1,3066,2026,1,1,,0,,,5,8,18,5/8/26 17:00, +1,1,3067,2026,1,1,,0,,,5,8,19,5/8/26 18:00, +1,1,3068,2026,1,1,,0,,,5,8,20,5/8/26 19:00, +1,1,3069,2026,1,1,,0,,,5,8,21,5/8/26 20:00, +1,1,3070,2026,1,1,,0,,,5,8,22,5/8/26 21:00, +1,1,3071,2026,1,1,,0,,,5,8,23,5/8/26 22:00, +1,1,3072,2026,1,1,,0,,,5,8,24,5/8/26 23:00, +1,1,3073,2026,1,1,,0,,,5,9,1,5/9/26 0:00, +1,1,3074,2026,1,1,,0,,,5,9,2,5/9/26 1:00, +1,1,3075,2026,1,1,,0,,,5,9,3,5/9/26 2:00, +1,1,3076,2026,1,1,,0,,,5,9,4,5/9/26 3:00, +1,1,3077,2026,1,1,,0,,,5,9,5,5/9/26 4:00, +1,1,3078,2026,1,1,,0,,,5,9,6,5/9/26 5:00, +1,1,3079,2026,1,1,,0,,,5,9,7,5/9/26 6:00, +1,1,3080,2026,1,1,,0,,,5,9,8,5/9/26 7:00, +1,1,3081,2026,1,1,,0,,,5,9,9,5/9/26 8:00, +1,1,3082,2026,1,1,,0,,,5,9,10,5/9/26 9:00, +1,1,3083,2026,1,1,,0,,,5,9,11,5/9/26 10:00, +1,1,3084,2026,1,1,,0,,,5,9,12,5/9/26 11:00, +1,1,3085,2026,1,1,,0,,,5,9,13,5/9/26 12:00, +1,1,3086,2026,1,1,,0,,,5,9,14,5/9/26 13:00, +1,1,3087,2026,1,1,,0,,,5,9,15,5/9/26 14:00, +1,1,3088,2026,1,1,,0,,,5,9,16,5/9/26 15:00, +1,1,3089,2026,1,1,,0,,,5,9,17,5/9/26 16:00, +1,1,3090,2026,1,1,,0,,,5,9,18,5/9/26 17:00, +1,1,3091,2026,1,1,,0,,,5,9,19,5/9/26 18:00, +1,1,3092,2026,1,1,,0,,,5,9,20,5/9/26 19:00, +1,1,3093,2026,1,1,,0,,,5,9,21,5/9/26 20:00, +1,1,3094,2026,1,1,,0,,,5,9,22,5/9/26 21:00, +1,1,3095,2026,1,1,,0,,,5,9,23,5/9/26 22:00, +1,1,3096,2026,1,1,,0,,,5,9,24,5/9/26 23:00, +1,1,3097,2026,1,1,,0,,,5,10,1,5/10/26 0:00, +1,1,3098,2026,1,1,,0,,,5,10,2,5/10/26 1:00, +1,1,3099,2026,1,1,,0,,,5,10,3,5/10/26 2:00, +1,1,3100,2026,1,1,,0,,,5,10,4,5/10/26 3:00, +1,1,3101,2026,1,1,,0,,,5,10,5,5/10/26 4:00, +1,1,3102,2026,1,1,,0,,,5,10,6,5/10/26 5:00, +1,1,3103,2026,1,1,,0,,,5,10,7,5/10/26 6:00, +1,1,3104,2026,1,1,,0,,,5,10,8,5/10/26 7:00, +1,1,3105,2026,1,1,,0,,,5,10,9,5/10/26 8:00, +1,1,3106,2026,1,1,,0,,,5,10,10,5/10/26 9:00, +1,1,3107,2026,1,1,,0,,,5,10,11,5/10/26 10:00, +1,1,3108,2026,1,1,,0,,,5,10,12,5/10/26 11:00, +1,1,3109,2026,1,1,,0,,,5,10,13,5/10/26 12:00, +1,1,3110,2026,1,1,,0,,,5,10,14,5/10/26 13:00, +1,1,3111,2026,1,1,,0,,,5,10,15,5/10/26 14:00, +1,1,3112,2026,1,1,,0,,,5,10,16,5/10/26 15:00, +1,1,3113,2026,1,1,,0,,,5,10,17,5/10/26 16:00, +1,1,3114,2026,1,1,,0,,,5,10,18,5/10/26 17:00, +1,1,3115,2026,1,1,,0,,,5,10,19,5/10/26 18:00, +1,1,3116,2026,1,1,,0,,,5,10,20,5/10/26 19:00, +1,1,3117,2026,1,1,,0,,,5,10,21,5/10/26 20:00, +1,1,3118,2026,1,1,,0,,,5,10,22,5/10/26 21:00, +1,1,3119,2026,1,1,,0,,,5,10,23,5/10/26 22:00, +1,1,3120,2026,1,1,,0,,,5,10,24,5/10/26 23:00, +1,1,3121,2026,1,1,,0,,,5,11,1,5/11/26 0:00, +1,1,3122,2026,1,1,,0,,,5,11,2,5/11/26 1:00, +1,1,3123,2026,1,1,,0,,,5,11,3,5/11/26 2:00, +1,1,3124,2026,1,1,,0,,,5,11,4,5/11/26 3:00, +1,1,3125,2026,1,1,,0,,,5,11,5,5/11/26 4:00, +1,1,3126,2026,1,1,,0,,,5,11,6,5/11/26 5:00, +1,1,3127,2026,1,1,,0,,,5,11,7,5/11/26 6:00, +1,1,3128,2026,1,1,,0,,,5,11,8,5/11/26 7:00, +1,1,3129,2026,1,1,,0,,,5,11,9,5/11/26 8:00, +1,1,3130,2026,1,1,,0,,,5,11,10,5/11/26 9:00, +1,1,3131,2026,1,1,,0,,,5,11,11,5/11/26 10:00, +1,1,3132,2026,1,1,,0,,,5,11,12,5/11/26 11:00, +1,1,3133,2026,1,1,,0,,,5,11,13,5/11/26 12:00, +1,1,3134,2026,1,1,,0,,,5,11,14,5/11/26 13:00, +1,1,3135,2026,1,1,,0,,,5,11,15,5/11/26 14:00, +1,1,3136,2026,1,1,,0,,,5,11,16,5/11/26 15:00, +1,1,3137,2026,1,1,,0,,,5,11,17,5/11/26 16:00, +1,1,3138,2026,1,1,,0,,,5,11,18,5/11/26 17:00, +1,1,3139,2026,1,1,,0,,,5,11,19,5/11/26 18:00, +1,1,3140,2026,1,1,,0,,,5,11,20,5/11/26 19:00, +1,1,3141,2026,1,1,,0,,,5,11,21,5/11/26 20:00, +1,1,3142,2026,1,1,,0,,,5,11,22,5/11/26 21:00, +1,1,3143,2026,1,1,,0,,,5,11,23,5/11/26 22:00, +1,1,3144,2026,1,1,,0,,,5,11,24,5/11/26 23:00, +1,1,3145,2026,1,1,,0,,,5,12,1,5/12/26 0:00, +1,1,3146,2026,1,1,,0,,,5,12,2,5/12/26 1:00, +1,1,3147,2026,1,1,,0,,,5,12,3,5/12/26 2:00, +1,1,3148,2026,1,1,,0,,,5,12,4,5/12/26 3:00, +1,1,3149,2026,1,1,,0,,,5,12,5,5/12/26 4:00, +1,1,3150,2026,1,1,,0,,,5,12,6,5/12/26 5:00, +1,1,3151,2026,1,1,,0,,,5,12,7,5/12/26 6:00, +1,1,3152,2026,1,1,,0,,,5,12,8,5/12/26 7:00, +1,1,3153,2026,1,1,,0,,,5,12,9,5/12/26 8:00, +1,1,3154,2026,1,1,,0,,,5,12,10,5/12/26 9:00, +1,1,3155,2026,1,1,,0,,,5,12,11,5/12/26 10:00, +1,1,3156,2026,1,1,,0,,,5,12,12,5/12/26 11:00, +1,1,3157,2026,1,1,,0,,,5,12,13,5/12/26 12:00, +1,1,3158,2026,1,1,,0,,,5,12,14,5/12/26 13:00, +1,1,3159,2026,1,1,,0,,,5,12,15,5/12/26 14:00, +1,1,3160,2026,1,1,,0,,,5,12,16,5/12/26 15:00, +1,1,3161,2026,1,1,,0,,,5,12,17,5/12/26 16:00, +1,1,3162,2026,1,1,,0,,,5,12,18,5/12/26 17:00, +1,1,3163,2026,1,1,,0,,,5,12,19,5/12/26 18:00, +1,1,3164,2026,1,1,,0,,,5,12,20,5/12/26 19:00, +1,1,3165,2026,1,1,,0,,,5,12,21,5/12/26 20:00, +1,1,3166,2026,1,1,,0,,,5,12,22,5/12/26 21:00, +1,1,3167,2026,1,1,,0,,,5,12,23,5/12/26 22:00, +1,1,3168,2026,1,1,,0,,,5,12,24,5/12/26 23:00, +1,1,3169,2026,1,1,,0,,,5,13,1,5/13/26 0:00, +1,1,3170,2026,1,1,,0,,,5,13,2,5/13/26 1:00, +1,1,3171,2026,1,1,,0,,,5,13,3,5/13/26 2:00, +1,1,3172,2026,1,1,,0,,,5,13,4,5/13/26 3:00, +1,1,3173,2026,1,1,,0,,,5,13,5,5/13/26 4:00, +1,1,3174,2026,1,1,,0,,,5,13,6,5/13/26 5:00, +1,1,3175,2026,1,1,,0,,,5,13,7,5/13/26 6:00, +1,1,3176,2026,1,1,,0,,,5,13,8,5/13/26 7:00, +1,1,3177,2026,1,1,,0,,,5,13,9,5/13/26 8:00, +1,1,3178,2026,1,1,,0,,,5,13,10,5/13/26 9:00, +1,1,3179,2026,1,1,,0,,,5,13,11,5/13/26 10:00, +1,1,3180,2026,1,1,,0,,,5,13,12,5/13/26 11:00, +1,1,3181,2026,1,1,,0,,,5,13,13,5/13/26 12:00, +1,1,3182,2026,1,1,,0,,,5,13,14,5/13/26 13:00, +1,1,3183,2026,1,1,,0,,,5,13,15,5/13/26 14:00, +1,1,3184,2026,1,1,,0,,,5,13,16,5/13/26 15:00, +1,1,3185,2026,1,1,,0,,,5,13,17,5/13/26 16:00, +1,1,3186,2026,1,1,,0,,,5,13,18,5/13/26 17:00, +1,1,3187,2026,1,1,,0,,,5,13,19,5/13/26 18:00, +1,1,3188,2026,1,1,,0,,,5,13,20,5/13/26 19:00, +1,1,3189,2026,1,1,,0,,,5,13,21,5/13/26 20:00, +1,1,3190,2026,1,1,,0,,,5,13,22,5/13/26 21:00, +1,1,3191,2026,1,1,,0,,,5,13,23,5/13/26 22:00, +1,1,3192,2026,1,1,,0,,,5,13,24,5/13/26 23:00, +1,1,3193,2026,1,1,,0,,,5,14,1,5/14/26 0:00, +1,1,3194,2026,1,1,,0,,,5,14,2,5/14/26 1:00, +1,1,3195,2026,1,1,,0,,,5,14,3,5/14/26 2:00, +1,1,3196,2026,1,1,,0,,,5,14,4,5/14/26 3:00, +1,1,3197,2026,1,1,,0,,,5,14,5,5/14/26 4:00, +1,1,3198,2026,1,1,,0,,,5,14,6,5/14/26 5:00, +1,1,3199,2026,1,1,,0,,,5,14,7,5/14/26 6:00, +1,1,3200,2026,1,1,,0,,,5,14,8,5/14/26 7:00, +1,1,3201,2026,1,1,,0,,,5,14,9,5/14/26 8:00, +1,1,3202,2026,1,1,,0,,,5,14,10,5/14/26 9:00, +1,1,3203,2026,1,1,,0,,,5,14,11,5/14/26 10:00, +1,1,3204,2026,1,1,,0,,,5,14,12,5/14/26 11:00, +1,1,3205,2026,1,1,,0,,,5,14,13,5/14/26 12:00, +1,1,3206,2026,1,1,,0,,,5,14,14,5/14/26 13:00, +1,1,3207,2026,1,1,,0,,,5,14,15,5/14/26 14:00, +1,1,3208,2026,1,1,,0,,,5,14,16,5/14/26 15:00, +1,1,3209,2026,1,1,,0,,,5,14,17,5/14/26 16:00, +1,1,3210,2026,1,1,,0,,,5,14,18,5/14/26 17:00, +1,1,3211,2026,1,1,,0,,,5,14,19,5/14/26 18:00, +1,1,3212,2026,1,1,,0,,,5,14,20,5/14/26 19:00, +1,1,3213,2026,1,1,,0,,,5,14,21,5/14/26 20:00, +1,1,3214,2026,1,1,,0,,,5,14,22,5/14/26 21:00, +1,1,3215,2026,1,1,,0,,,5,14,23,5/14/26 22:00, +1,1,3216,2026,1,1,,0,,,5,14,24,5/14/26 23:00, +1,1,3217,2026,1,1,,0,,,5,15,1,5/15/26 0:00, +1,1,3218,2026,1,1,,0,,,5,15,2,5/15/26 1:00, +1,1,3219,2026,1,1,,0,,,5,15,3,5/15/26 2:00, +1,1,3220,2026,1,1,,0,,,5,15,4,5/15/26 3:00, +1,1,3221,2026,1,1,,0,,,5,15,5,5/15/26 4:00, +1,1,3222,2026,1,1,,0,,,5,15,6,5/15/26 5:00, +1,1,3223,2026,1,1,,0,,,5,15,7,5/15/26 6:00, +1,1,3224,2026,1,1,,0,,,5,15,8,5/15/26 7:00, +1,1,3225,2026,1,1,,0,,,5,15,9,5/15/26 8:00, +1,1,3226,2026,1,1,,0,,,5,15,10,5/15/26 9:00, +1,1,3227,2026,1,1,,0,,,5,15,11,5/15/26 10:00, +1,1,3228,2026,1,1,,0,,,5,15,12,5/15/26 11:00, +1,1,3229,2026,1,1,,0,,,5,15,13,5/15/26 12:00, +1,1,3230,2026,1,1,,0,,,5,15,14,5/15/26 13:00, +1,1,3231,2026,1,1,,0,,,5,15,15,5/15/26 14:00, +1,1,3232,2026,1,1,,0,,,5,15,16,5/15/26 15:00, +1,1,3233,2026,1,1,,0,,,5,15,17,5/15/26 16:00, +1,1,3234,2026,1,1,,0,,,5,15,18,5/15/26 17:00, +1,1,3235,2026,1,1,,0,,,5,15,19,5/15/26 18:00, +1,1,3236,2026,1,1,,0,,,5,15,20,5/15/26 19:00, +1,1,3237,2026,1,1,,0,,,5,15,21,5/15/26 20:00, +1,1,3238,2026,1,1,,0,,,5,15,22,5/15/26 21:00, +1,1,3239,2026,1,1,,0,,,5,15,23,5/15/26 22:00, +1,1,3240,2026,1,1,,0,,,5,15,24,5/15/26 23:00, +1,1,3241,2026,1,1,,0,,,5,16,1,5/16/26 0:00, +1,1,3242,2026,1,1,,0,,,5,16,2,5/16/26 1:00, +1,1,3243,2026,1,1,,0,,,5,16,3,5/16/26 2:00, +1,1,3244,2026,1,1,,0,,,5,16,4,5/16/26 3:00, +1,1,3245,2026,1,1,,0,,,5,16,5,5/16/26 4:00, +1,1,3246,2026,1,1,,0,,,5,16,6,5/16/26 5:00, +1,1,3247,2026,1,1,,0,,,5,16,7,5/16/26 6:00, +1,1,3248,2026,1,1,,0,,,5,16,8,5/16/26 7:00, +1,1,3249,2026,1,1,,0,,,5,16,9,5/16/26 8:00, +1,1,3250,2026,1,1,,0,,,5,16,10,5/16/26 9:00, +1,1,3251,2026,1,1,,0,,,5,16,11,5/16/26 10:00, +1,1,3252,2026,1,1,,0,,,5,16,12,5/16/26 11:00, +1,1,3253,2026,1,1,,0,,,5,16,13,5/16/26 12:00, +1,1,3254,2026,1,1,,0,,,5,16,14,5/16/26 13:00, +1,1,3255,2026,1,1,,0,,,5,16,15,5/16/26 14:00, +1,1,3256,2026,1,1,,0,,,5,16,16,5/16/26 15:00, +1,1,3257,2026,1,1,,0,,,5,16,17,5/16/26 16:00, +1,1,3258,2026,1,1,,0,,,5,16,18,5/16/26 17:00, +1,1,3259,2026,1,1,,0,,,5,16,19,5/16/26 18:00, +1,1,3260,2026,1,1,,0,,,5,16,20,5/16/26 19:00, +1,1,3261,2026,1,1,,0,,,5,16,21,5/16/26 20:00, +1,1,3262,2026,1,1,,0,,,5,16,22,5/16/26 21:00, +1,1,3263,2026,1,1,,0,,,5,16,23,5/16/26 22:00, +1,1,3264,2026,1,1,,0,,,5,16,24,5/16/26 23:00, +1,1,3265,2026,1,1,,0,,,5,17,1,5/17/26 0:00, +1,1,3266,2026,1,1,,0,,,5,17,2,5/17/26 1:00, +1,1,3267,2026,1,1,,0,,,5,17,3,5/17/26 2:00, +1,1,3268,2026,1,1,,0,,,5,17,4,5/17/26 3:00, +1,1,3269,2026,1,1,,0,,,5,17,5,5/17/26 4:00, +1,1,3270,2026,1,1,,0,,,5,17,6,5/17/26 5:00, +1,1,3271,2026,1,1,,0,,,5,17,7,5/17/26 6:00, +1,1,3272,2026,1,1,,0,,,5,17,8,5/17/26 7:00, +1,1,3273,2026,1,1,,0,,,5,17,9,5/17/26 8:00, +1,1,3274,2026,1,1,,0,,,5,17,10,5/17/26 9:00, +1,1,3275,2026,1,1,,0,,,5,17,11,5/17/26 10:00, +1,1,3276,2026,1,1,,0,,,5,17,12,5/17/26 11:00, +1,1,3277,2026,1,1,,0,,,5,17,13,5/17/26 12:00, +1,1,3278,2026,1,1,,0,,,5,17,14,5/17/26 13:00, +1,1,3279,2026,1,1,,0,,,5,17,15,5/17/26 14:00, +1,1,3280,2026,1,1,,0,,,5,17,16,5/17/26 15:00, +1,1,3281,2026,1,1,,0,,,5,17,17,5/17/26 16:00, +1,1,3282,2026,1,1,,0,,,5,17,18,5/17/26 17:00, +1,1,3283,2026,1,1,,0,,,5,17,19,5/17/26 18:00, +1,1,3284,2026,1,1,,0,,,5,17,20,5/17/26 19:00, +1,1,3285,2026,1,1,,0,,,5,17,21,5/17/26 20:00, +1,1,3286,2026,1,1,,0,,,5,17,22,5/17/26 21:00, +1,1,3287,2026,1,1,,0,,,5,17,23,5/17/26 22:00, +1,1,3288,2026,1,1,,0,,,5,17,24,5/17/26 23:00, +1,1,3289,2026,1,1,,0,,,5,18,1,5/18/26 0:00, +1,1,3290,2026,1,1,,0,,,5,18,2,5/18/26 1:00, +1,1,3291,2026,1,1,,0,,,5,18,3,5/18/26 2:00, +1,1,3292,2026,1,1,,0,,,5,18,4,5/18/26 3:00, +1,1,3293,2026,1,1,,0,,,5,18,5,5/18/26 4:00, +1,1,3294,2026,1,1,,0,,,5,18,6,5/18/26 5:00, +1,1,3295,2026,1,1,,0,,,5,18,7,5/18/26 6:00, +1,1,3296,2026,1,1,,0,,,5,18,8,5/18/26 7:00, +1,1,3297,2026,1,1,,0,,,5,18,9,5/18/26 8:00, +1,1,3298,2026,1,1,,0,,,5,18,10,5/18/26 9:00, +1,1,3299,2026,1,1,,0,,,5,18,11,5/18/26 10:00, +1,1,3300,2026,1,1,,0,,,5,18,12,5/18/26 11:00, +1,1,3301,2026,1,1,,0,,,5,18,13,5/18/26 12:00, +1,1,3302,2026,1,1,,0,,,5,18,14,5/18/26 13:00, +1,1,3303,2026,1,1,,0,,,5,18,15,5/18/26 14:00, +1,1,3304,2026,1,1,,0,,,5,18,16,5/18/26 15:00, +1,1,3305,2026,1,1,,0,,,5,18,17,5/18/26 16:00, +1,1,3306,2026,1,1,,0,,,5,18,18,5/18/26 17:00, +1,1,3307,2026,1,1,,0,,,5,18,19,5/18/26 18:00, +1,1,3308,2026,1,1,,0,,,5,18,20,5/18/26 19:00, +1,1,3309,2026,1,1,,0,,,5,18,21,5/18/26 20:00, +1,1,3310,2026,1,1,,0,,,5,18,22,5/18/26 21:00, +1,1,3311,2026,1,1,,0,,,5,18,23,5/18/26 22:00, +1,1,3312,2026,1,1,,0,,,5,18,24,5/18/26 23:00, +1,1,3313,2026,1,1,,0,,,5,19,1,5/19/26 0:00, +1,1,3314,2026,1,1,,0,,,5,19,2,5/19/26 1:00, +1,1,3315,2026,1,1,,0,,,5,19,3,5/19/26 2:00, +1,1,3316,2026,1,1,,0,,,5,19,4,5/19/26 3:00, +1,1,3317,2026,1,1,,0,,,5,19,5,5/19/26 4:00, +1,1,3318,2026,1,1,,0,,,5,19,6,5/19/26 5:00, +1,1,3319,2026,1,1,,0,,,5,19,7,5/19/26 6:00, +1,1,3320,2026,1,1,,0,,,5,19,8,5/19/26 7:00, +1,1,3321,2026,1,1,,0,,,5,19,9,5/19/26 8:00, +1,1,3322,2026,1,1,,0,,,5,19,10,5/19/26 9:00, +1,1,3323,2026,1,1,,0,,,5,19,11,5/19/26 10:00, +1,1,3324,2026,1,1,,0,,,5,19,12,5/19/26 11:00, +1,1,3325,2026,1,1,,0,,,5,19,13,5/19/26 12:00, +1,1,3326,2026,1,1,,0,,,5,19,14,5/19/26 13:00, +1,1,3327,2026,1,1,,0,,,5,19,15,5/19/26 14:00, +1,1,3328,2026,1,1,,0,,,5,19,16,5/19/26 15:00, +1,1,3329,2026,1,1,,0,,,5,19,17,5/19/26 16:00, +1,1,3330,2026,1,1,,0,,,5,19,18,5/19/26 17:00, +1,1,3331,2026,1,1,,0,,,5,19,19,5/19/26 18:00, +1,1,3332,2026,1,1,,0,,,5,19,20,5/19/26 19:00, +1,1,3333,2026,1,1,,0,,,5,19,21,5/19/26 20:00, +1,1,3334,2026,1,1,,0,,,5,19,22,5/19/26 21:00, +1,1,3335,2026,1,1,,0,,,5,19,23,5/19/26 22:00, +1,1,3336,2026,1,1,,0,,,5,19,24,5/19/26 23:00, +1,1,3337,2026,1,1,,0,,,5,20,1,5/20/26 0:00, +1,1,3338,2026,1,1,,0,,,5,20,2,5/20/26 1:00, +1,1,3339,2026,1,1,,0,,,5,20,3,5/20/26 2:00, +1,1,3340,2026,1,1,,0,,,5,20,4,5/20/26 3:00, +1,1,3341,2026,1,1,,0,,,5,20,5,5/20/26 4:00, +1,1,3342,2026,1,1,,0,,,5,20,6,5/20/26 5:00, +1,1,3343,2026,1,1,,0,,,5,20,7,5/20/26 6:00, +1,1,3344,2026,1,1,,0,,,5,20,8,5/20/26 7:00, +1,1,3345,2026,1,1,,0,,,5,20,9,5/20/26 8:00, +1,1,3346,2026,1,1,,0,,,5,20,10,5/20/26 9:00, +1,1,3347,2026,1,1,,0,,,5,20,11,5/20/26 10:00, +1,1,3348,2026,1,1,,0,,,5,20,12,5/20/26 11:00, +1,1,3349,2026,1,1,,0,,,5,20,13,5/20/26 12:00, +1,1,3350,2026,1,1,,0,,,5,20,14,5/20/26 13:00, +1,1,3351,2026,1,1,,0,,,5,20,15,5/20/26 14:00, +1,1,3352,2026,1,1,,0,,,5,20,16,5/20/26 15:00, +1,1,3353,2026,1,1,,0,,,5,20,17,5/20/26 16:00, +1,1,3354,2026,1,1,,0,,,5,20,18,5/20/26 17:00, +1,1,3355,2026,1,1,,0,,,5,20,19,5/20/26 18:00, +1,1,3356,2026,1,1,,0,,,5,20,20,5/20/26 19:00, +1,1,3357,2026,1,1,,0,,,5,20,21,5/20/26 20:00, +1,1,3358,2026,1,1,,0,,,5,20,22,5/20/26 21:00, +1,1,3359,2026,1,1,,0,,,5,20,23,5/20/26 22:00, +1,1,3360,2026,1,1,,0,,,5,20,24,5/20/26 23:00, +1,1,3361,2026,1,1,,0,,,5,21,1,5/21/26 0:00, +1,1,3362,2026,1,1,,0,,,5,21,2,5/21/26 1:00, +1,1,3363,2026,1,1,,0,,,5,21,3,5/21/26 2:00, +1,1,3364,2026,1,1,,0,,,5,21,4,5/21/26 3:00, +1,1,3365,2026,1,1,,0,,,5,21,5,5/21/26 4:00, +1,1,3366,2026,1,1,,0,,,5,21,6,5/21/26 5:00, +1,1,3367,2026,1,1,,0,,,5,21,7,5/21/26 6:00, +1,1,3368,2026,1,1,,0,,,5,21,8,5/21/26 7:00, +1,1,3369,2026,1,1,,0,,,5,21,9,5/21/26 8:00, +1,1,3370,2026,1,1,,0,,,5,21,10,5/21/26 9:00, +1,1,3371,2026,1,1,,0,,,5,21,11,5/21/26 10:00, +1,1,3372,2026,1,1,,0,,,5,21,12,5/21/26 11:00, +1,1,3373,2026,1,1,,0,,,5,21,13,5/21/26 12:00, +1,1,3374,2026,1,1,,0,,,5,21,14,5/21/26 13:00, +1,1,3375,2026,1,1,,0,,,5,21,15,5/21/26 14:00, +1,1,3376,2026,1,1,,0,,,5,21,16,5/21/26 15:00, +1,1,3377,2026,1,1,,0,,,5,21,17,5/21/26 16:00, +1,1,3378,2026,1,1,,0,,,5,21,18,5/21/26 17:00, +1,1,3379,2026,1,1,,0,,,5,21,19,5/21/26 18:00, +1,1,3380,2026,1,1,,0,,,5,21,20,5/21/26 19:00, +1,1,3381,2026,1,1,,0,,,5,21,21,5/21/26 20:00, +1,1,3382,2026,1,1,,0,,,5,21,22,5/21/26 21:00, +1,1,3383,2026,1,1,,0,,,5,21,23,5/21/26 22:00, +1,1,3384,2026,1,1,,0,,,5,21,24,5/21/26 23:00, +1,1,3385,2026,1,1,,0,,,5,22,1,5/22/26 0:00, +1,1,3386,2026,1,1,,0,,,5,22,2,5/22/26 1:00, +1,1,3387,2026,1,1,,0,,,5,22,3,5/22/26 2:00, +1,1,3388,2026,1,1,,0,,,5,22,4,5/22/26 3:00, +1,1,3389,2026,1,1,,0,,,5,22,5,5/22/26 4:00, +1,1,3390,2026,1,1,,0,,,5,22,6,5/22/26 5:00, +1,1,3391,2026,1,1,,0,,,5,22,7,5/22/26 6:00, +1,1,3392,2026,1,1,,0,,,5,22,8,5/22/26 7:00, +1,1,3393,2026,1,1,,0,,,5,22,9,5/22/26 8:00, +1,1,3394,2026,1,1,,0,,,5,22,10,5/22/26 9:00, +1,1,3395,2026,1,1,,0,,,5,22,11,5/22/26 10:00, +1,1,3396,2026,1,1,,0,,,5,22,12,5/22/26 11:00, +1,1,3397,2026,1,1,,0,,,5,22,13,5/22/26 12:00, +1,1,3398,2026,1,1,,0,,,5,22,14,5/22/26 13:00, +1,1,3399,2026,1,1,,0,,,5,22,15,5/22/26 14:00, +1,1,3400,2026,1,1,,0,,,5,22,16,5/22/26 15:00, +1,1,3401,2026,1,1,,0,,,5,22,17,5/22/26 16:00, +1,1,3402,2026,1,1,,0,,,5,22,18,5/22/26 17:00, +1,1,3403,2026,1,1,,0,,,5,22,19,5/22/26 18:00, +1,1,3404,2026,1,1,,0,,,5,22,20,5/22/26 19:00, +1,1,3405,2026,1,1,,0,,,5,22,21,5/22/26 20:00, +1,1,3406,2026,1,1,,0,,,5,22,22,5/22/26 21:00, +1,1,3407,2026,1,1,,0,,,5,22,23,5/22/26 22:00, +1,1,3408,2026,1,1,,0,,,5,22,24,5/22/26 23:00, +1,1,3409,2026,1,1,,0,,,5,23,1,5/23/26 0:00, +1,1,3410,2026,1,1,,0,,,5,23,2,5/23/26 1:00, +1,1,3411,2026,1,1,,0,,,5,23,3,5/23/26 2:00, +1,1,3412,2026,1,1,,0,,,5,23,4,5/23/26 3:00, +1,1,3413,2026,1,1,,0,,,5,23,5,5/23/26 4:00, +1,1,3414,2026,1,1,,0,,,5,23,6,5/23/26 5:00, +1,1,3415,2026,1,1,,0,,,5,23,7,5/23/26 6:00, +1,1,3416,2026,1,1,,0,,,5,23,8,5/23/26 7:00, +1,1,3417,2026,1,1,,0,,,5,23,9,5/23/26 8:00, +1,1,3418,2026,1,1,,0,,,5,23,10,5/23/26 9:00, +1,1,3419,2026,1,1,,0,,,5,23,11,5/23/26 10:00, +1,1,3420,2026,1,1,,0,,,5,23,12,5/23/26 11:00, +1,1,3421,2026,1,1,,0,,,5,23,13,5/23/26 12:00, +1,1,3422,2026,1,1,,0,,,5,23,14,5/23/26 13:00, +1,1,3423,2026,1,1,,0,,,5,23,15,5/23/26 14:00, +1,1,3424,2026,1,1,,0,,,5,23,16,5/23/26 15:00, +1,1,3425,2026,1,1,,0,,,5,23,17,5/23/26 16:00, +1,1,3426,2026,1,1,,0,,,5,23,18,5/23/26 17:00, +1,1,3427,2026,1,1,,0,,,5,23,19,5/23/26 18:00, +1,1,3428,2026,1,1,,0,,,5,23,20,5/23/26 19:00, +1,1,3429,2026,1,1,,0,,,5,23,21,5/23/26 20:00, +1,1,3430,2026,1,1,,0,,,5,23,22,5/23/26 21:00, +1,1,3431,2026,1,1,,0,,,5,23,23,5/23/26 22:00, +1,1,3432,2026,1,1,,0,,,5,23,24,5/23/26 23:00, +1,1,3433,2026,1,1,,0,,,5,24,1,5/24/26 0:00, +1,1,3434,2026,1,1,,0,,,5,24,2,5/24/26 1:00, +1,1,3435,2026,1,1,,0,,,5,24,3,5/24/26 2:00, +1,1,3436,2026,1,1,,0,,,5,24,4,5/24/26 3:00, +1,1,3437,2026,1,1,,0,,,5,24,5,5/24/26 4:00, +1,1,3438,2026,1,1,,0,,,5,24,6,5/24/26 5:00, +1,1,3439,2026,1,1,,0,,,5,24,7,5/24/26 6:00, +1,1,3440,2026,1,1,,0,,,5,24,8,5/24/26 7:00, +1,1,3441,2026,1,1,,0,,,5,24,9,5/24/26 8:00, +1,1,3442,2026,1,1,,0,,,5,24,10,5/24/26 9:00, +1,1,3443,2026,1,1,,0,,,5,24,11,5/24/26 10:00, +1,1,3444,2026,1,1,,0,,,5,24,12,5/24/26 11:00, +1,1,3445,2026,1,1,,0,,,5,24,13,5/24/26 12:00, +1,1,3446,2026,1,1,,0,,,5,24,14,5/24/26 13:00, +1,1,3447,2026,1,1,,0,,,5,24,15,5/24/26 14:00, +1,1,3448,2026,1,1,,0,,,5,24,16,5/24/26 15:00, +1,1,3449,2026,1,1,,0,,,5,24,17,5/24/26 16:00, +1,1,3450,2026,1,1,,0,,,5,24,18,5/24/26 17:00, +1,1,3451,2026,1,1,,0,,,5,24,19,5/24/26 18:00, +1,1,3452,2026,1,1,,0,,,5,24,20,5/24/26 19:00, +1,1,3453,2026,1,1,,0,,,5,24,21,5/24/26 20:00, +1,1,3454,2026,1,1,,0,,,5,24,22,5/24/26 21:00, +1,1,3455,2026,1,1,,0,,,5,24,23,5/24/26 22:00, +1,1,3456,2026,1,1,,0,,,5,24,24,5/24/26 23:00, +1,1,3457,2026,1,1,,0,,,5,25,1,5/25/26 0:00, +1,1,3458,2026,1,1,,0,,,5,25,2,5/25/26 1:00, +1,1,3459,2026,1,1,,0,,,5,25,3,5/25/26 2:00, +1,1,3460,2026,1,1,,0,,,5,25,4,5/25/26 3:00, +1,1,3461,2026,1,1,,0,,,5,25,5,5/25/26 4:00, +1,1,3462,2026,1,1,,0,,,5,25,6,5/25/26 5:00, +1,1,3463,2026,1,1,,0,,,5,25,7,5/25/26 6:00, +1,1,3464,2026,1,1,,0,,,5,25,8,5/25/26 7:00, +1,1,3465,2026,1,1,,0,,,5,25,9,5/25/26 8:00, +1,1,3466,2026,1,1,,0,,,5,25,10,5/25/26 9:00, +1,1,3467,2026,1,1,,0,,,5,25,11,5/25/26 10:00, +1,1,3468,2026,1,1,,0,,,5,25,12,5/25/26 11:00, +1,1,3469,2026,1,1,,0,,,5,25,13,5/25/26 12:00, +1,1,3470,2026,1,1,,0,,,5,25,14,5/25/26 13:00, +1,1,3471,2026,1,1,,0,,,5,25,15,5/25/26 14:00, +1,1,3472,2026,1,1,,0,,,5,25,16,5/25/26 15:00, +1,1,3473,2026,1,1,,0,,,5,25,17,5/25/26 16:00, +1,1,3474,2026,1,1,,0,,,5,25,18,5/25/26 17:00, +1,1,3475,2026,1,1,,0,,,5,25,19,5/25/26 18:00, +1,1,3476,2026,1,1,,0,,,5,25,20,5/25/26 19:00, +1,1,3477,2026,1,1,,0,,,5,25,21,5/25/26 20:00, +1,1,3478,2026,1,1,,0,,,5,25,22,5/25/26 21:00, +1,1,3479,2026,1,1,,0,,,5,25,23,5/25/26 22:00, +1,1,3480,2026,1,1,,0,,,5,25,24,5/25/26 23:00, +1,1,3481,2026,1,1,,0,,,5,26,1,5/26/26 0:00, +1,1,3482,2026,1,1,,0,,,5,26,2,5/26/26 1:00, +1,1,3483,2026,1,1,,0,,,5,26,3,5/26/26 2:00, +1,1,3484,2026,1,1,,0,,,5,26,4,5/26/26 3:00, +1,1,3485,2026,1,1,,0,,,5,26,5,5/26/26 4:00, +1,1,3486,2026,1,1,,0,,,5,26,6,5/26/26 5:00, +1,1,3487,2026,1,1,,0,,,5,26,7,5/26/26 6:00, +1,1,3488,2026,1,1,,0,,,5,26,8,5/26/26 7:00, +1,1,3489,2026,1,1,,0,,,5,26,9,5/26/26 8:00, +1,1,3490,2026,1,1,,0,,,5,26,10,5/26/26 9:00, +1,1,3491,2026,1,1,,0,,,5,26,11,5/26/26 10:00, +1,1,3492,2026,1,1,,0,,,5,26,12,5/26/26 11:00, +1,1,3493,2026,1,1,,0,,,5,26,13,5/26/26 12:00, +1,1,3494,2026,1,1,,0,,,5,26,14,5/26/26 13:00, +1,1,3495,2026,1,1,,0,,,5,26,15,5/26/26 14:00, +1,1,3496,2026,1,1,,0,,,5,26,16,5/26/26 15:00, +1,1,3497,2026,1,1,,0,,,5,26,17,5/26/26 16:00, +1,1,3498,2026,1,1,,0,,,5,26,18,5/26/26 17:00, +1,1,3499,2026,1,1,,0,,,5,26,19,5/26/26 18:00, +1,1,3500,2026,1,1,,0,,,5,26,20,5/26/26 19:00, +1,1,3501,2026,1,1,,0,,,5,26,21,5/26/26 20:00, +1,1,3502,2026,1,1,,0,,,5,26,22,5/26/26 21:00, +1,1,3503,2026,1,1,,0,,,5,26,23,5/26/26 22:00, +1,1,3504,2026,1,1,,0,,,5,26,24,5/26/26 23:00, +1,1,3505,2026,1,1,,0,,,5,27,1,5/27/26 0:00, +1,1,3506,2026,1,1,,0,,,5,27,2,5/27/26 1:00, +1,1,3507,2026,1,1,,0,,,5,27,3,5/27/26 2:00, +1,1,3508,2026,1,1,,0,,,5,27,4,5/27/26 3:00, +1,1,3509,2026,1,1,,0,,,5,27,5,5/27/26 4:00, +1,1,3510,2026,1,1,,0,,,5,27,6,5/27/26 5:00, +1,1,3511,2026,1,1,,0,,,5,27,7,5/27/26 6:00, +1,1,3512,2026,1,1,,0,,,5,27,8,5/27/26 7:00, +1,1,3513,2026,1,1,,0,,,5,27,9,5/27/26 8:00, +1,1,3514,2026,1,1,,0,,,5,27,10,5/27/26 9:00, +1,1,3515,2026,1,1,,0,,,5,27,11,5/27/26 10:00, +1,1,3516,2026,1,1,,0,,,5,27,12,5/27/26 11:00, +1,1,3517,2026,1,1,,0,,,5,27,13,5/27/26 12:00, +1,1,3518,2026,1,1,,0,,,5,27,14,5/27/26 13:00, +1,1,3519,2026,1,1,,0,,,5,27,15,5/27/26 14:00, +1,1,3520,2026,1,1,,0,,,5,27,16,5/27/26 15:00, +1,1,3521,2026,1,1,,0,,,5,27,17,5/27/26 16:00, +1,1,3522,2026,1,1,,0,,,5,27,18,5/27/26 17:00, +1,1,3523,2026,1,1,,0,,,5,27,19,5/27/26 18:00, +1,1,3524,2026,1,1,,0,,,5,27,20,5/27/26 19:00, +1,1,3525,2026,1,1,,0,,,5,27,21,5/27/26 20:00, +1,1,3526,2026,1,1,,0,,,5,27,22,5/27/26 21:00, +1,1,3527,2026,1,1,,0,,,5,27,23,5/27/26 22:00, +1,1,3528,2026,1,1,,0,,,5,27,24,5/27/26 23:00, +1,1,3529,2026,1,1,,0,,,5,28,1,5/28/26 0:00, +1,1,3530,2026,1,1,,0,,,5,28,2,5/28/26 1:00, +1,1,3531,2026,1,1,,0,,,5,28,3,5/28/26 2:00, +1,1,3532,2026,1,1,,0,,,5,28,4,5/28/26 3:00, +1,1,3533,2026,1,1,,0,,,5,28,5,5/28/26 4:00, +1,1,3534,2026,1,1,,0,,,5,28,6,5/28/26 5:00, +1,1,3535,2026,1,1,,0,,,5,28,7,5/28/26 6:00, +1,1,3536,2026,1,1,,0,,,5,28,8,5/28/26 7:00, +1,1,3537,2026,1,1,,0,,,5,28,9,5/28/26 8:00, +1,1,3538,2026,1,1,,0,,,5,28,10,5/28/26 9:00, +1,1,3539,2026,1,1,,0,,,5,28,11,5/28/26 10:00, +1,1,3540,2026,1,1,,0,,,5,28,12,5/28/26 11:00, +1,1,3541,2026,1,1,,0,,,5,28,13,5/28/26 12:00, +1,1,3542,2026,1,1,,0,,,5,28,14,5/28/26 13:00, +1,1,3543,2026,1,1,,0,,,5,28,15,5/28/26 14:00, +1,1,3544,2026,1,1,,0,,,5,28,16,5/28/26 15:00, +1,1,3545,2026,1,1,,0,,,5,28,17,5/28/26 16:00, +1,1,3546,2026,1,1,,0,,,5,28,18,5/28/26 17:00, +1,1,3547,2026,1,1,,0,,,5,28,19,5/28/26 18:00, +1,1,3548,2026,1,1,,0,,,5,28,20,5/28/26 19:00, +1,1,3549,2026,1,1,,0,,,5,28,21,5/28/26 20:00, +1,1,3550,2026,1,1,,0,,,5,28,22,5/28/26 21:00, +1,1,3551,2026,1,1,,0,,,5,28,23,5/28/26 22:00, +1,1,3552,2026,1,1,,0,,,5,28,24,5/28/26 23:00, +1,1,3553,2026,1,1,,0,,,5,29,1,5/29/26 0:00, +1,1,3554,2026,1,1,,0,,,5,29,2,5/29/26 1:00, +1,1,3555,2026,1,1,,0,,,5,29,3,5/29/26 2:00, +1,1,3556,2026,1,1,,0,,,5,29,4,5/29/26 3:00, +1,1,3557,2026,1,1,,0,,,5,29,5,5/29/26 4:00, +1,1,3558,2026,1,1,,0,,,5,29,6,5/29/26 5:00, +1,1,3559,2026,1,1,,0,,,5,29,7,5/29/26 6:00, +1,1,3560,2026,1,1,,0,,,5,29,8,5/29/26 7:00, +1,1,3561,2026,1,1,,0,,,5,29,9,5/29/26 8:00, +1,1,3562,2026,1,1,,0,,,5,29,10,5/29/26 9:00, +1,1,3563,2026,1,1,,0,,,5,29,11,5/29/26 10:00, +1,1,3564,2026,1,1,,0,,,5,29,12,5/29/26 11:00, +1,1,3565,2026,1,1,,0,,,5,29,13,5/29/26 12:00, +1,1,3566,2026,1,1,,0,,,5,29,14,5/29/26 13:00, +1,1,3567,2026,1,1,,0,,,5,29,15,5/29/26 14:00, +1,1,3568,2026,1,1,,0,,,5,29,16,5/29/26 15:00, +1,1,3569,2026,1,1,,0,,,5,29,17,5/29/26 16:00, +1,1,3570,2026,1,1,,0,,,5,29,18,5/29/26 17:00, +1,1,3571,2026,1,1,,0,,,5,29,19,5/29/26 18:00, +1,1,3572,2026,1,1,,0,,,5,29,20,5/29/26 19:00, +1,1,3573,2026,1,1,,0,,,5,29,21,5/29/26 20:00, +1,1,3574,2026,1,1,,0,,,5,29,22,5/29/26 21:00, +1,1,3575,2026,1,1,,0,,,5,29,23,5/29/26 22:00, +1,1,3576,2026,1,1,,0,,,5,29,24,5/29/26 23:00, +1,1,3577,2026,1,1,,0,,,5,30,1,5/30/26 0:00, +1,1,3578,2026,1,1,,0,,,5,30,2,5/30/26 1:00, +1,1,3579,2026,1,1,,0,,,5,30,3,5/30/26 2:00, +1,1,3580,2026,1,1,,0,,,5,30,4,5/30/26 3:00, +1,1,3581,2026,1,1,,0,,,5,30,5,5/30/26 4:00, +1,1,3582,2026,1,1,,0,,,5,30,6,5/30/26 5:00, +1,1,3583,2026,1,1,,0,,,5,30,7,5/30/26 6:00, +1,1,3584,2026,1,1,,0,,,5,30,8,5/30/26 7:00, +1,1,3585,2026,1,1,,0,,,5,30,9,5/30/26 8:00, +1,1,3586,2026,1,1,,0,,,5,30,10,5/30/26 9:00, +1,1,3587,2026,1,1,,0,,,5,30,11,5/30/26 10:00, +1,1,3588,2026,1,1,,0,,,5,30,12,5/30/26 11:00, +1,1,3589,2026,1,1,,0,,,5,30,13,5/30/26 12:00, +1,1,3590,2026,1,1,,0,,,5,30,14,5/30/26 13:00, +1,1,3591,2026,1,1,,0,,,5,30,15,5/30/26 14:00, +1,1,3592,2026,1,1,,0,,,5,30,16,5/30/26 15:00, +1,1,3593,2026,1,1,,0,,,5,30,17,5/30/26 16:00, +1,1,3594,2026,1,1,,0,,,5,30,18,5/30/26 17:00, +1,1,3595,2026,1,1,,0,,,5,30,19,5/30/26 18:00, +1,1,3596,2026,1,1,,0,,,5,30,20,5/30/26 19:00, +1,1,3597,2026,1,1,,0,,,5,30,21,5/30/26 20:00, +1,1,3598,2026,1,1,,0,,,5,30,22,5/30/26 21:00, +1,1,3599,2026,1,1,,0,,,5,30,23,5/30/26 22:00, +1,1,3600,2026,1,1,,0,,,5,30,24,5/30/26 23:00, +1,1,3601,2026,1,1,,0,,,5,31,1,5/31/26 0:00, +1,1,3602,2026,1,1,,0,,,5,31,2,5/31/26 1:00, +1,1,3603,2026,1,1,,0,,,5,31,3,5/31/26 2:00, +1,1,3604,2026,1,1,,0,,,5,31,4,5/31/26 3:00, +1,1,3605,2026,1,1,,0,,,5,31,5,5/31/26 4:00, +1,1,3606,2026,1,1,,0,,,5,31,6,5/31/26 5:00, +1,1,3607,2026,1,1,,0,,,5,31,7,5/31/26 6:00, +1,1,3608,2026,1,1,,0,,,5,31,8,5/31/26 7:00, +1,1,3609,2026,1,1,,0,,,5,31,9,5/31/26 8:00, +1,1,3610,2026,1,1,,0,,,5,31,10,5/31/26 9:00, +1,1,3611,2026,1,1,,0,,,5,31,11,5/31/26 10:00, +1,1,3612,2026,1,1,,0,,,5,31,12,5/31/26 11:00, +1,1,3613,2026,1,1,,0,,,5,31,13,5/31/26 12:00, +1,1,3614,2026,1,1,,0,,,5,31,14,5/31/26 13:00, +1,1,3615,2026,1,1,,0,,,5,31,15,5/31/26 14:00, +1,1,3616,2026,1,1,,0,,,5,31,16,5/31/26 15:00, +1,1,3617,2026,1,1,,0,,,5,31,17,5/31/26 16:00, +1,1,3618,2026,1,1,,0,,,5,31,18,5/31/26 17:00, +1,1,3619,2026,1,1,,0,,,5,31,19,5/31/26 18:00, +1,1,3620,2026,1,1,,0,,,5,31,20,5/31/26 19:00, +1,1,3621,2026,1,1,,0,,,5,31,21,5/31/26 20:00, +1,1,3622,2026,1,1,,0,,,5,31,22,5/31/26 21:00, +1,1,3623,2026,1,1,,0,,,5,31,23,5/31/26 22:00, +1,1,3624,2026,1,1,,0,,,5,31,24,5/31/26 23:00, +1,1,3625,2026,1,1,,0,,,6,1,1,6/1/26 0:00, +1,1,3626,2026,1,1,,0,,,6,1,2,6/1/26 1:00, +1,1,3627,2026,1,1,,0,,,6,1,3,6/1/26 2:00, +1,1,3628,2026,1,1,,0,,,6,1,4,6/1/26 3:00, +1,1,3629,2026,1,1,,0,,,6,1,5,6/1/26 4:00, +1,1,3630,2026,1,1,,0,,,6,1,6,6/1/26 5:00, +1,1,3631,2026,1,1,,0,,,6,1,7,6/1/26 6:00, +1,1,3632,2026,1,1,,0,,,6,1,8,6/1/26 7:00, +1,1,3633,2026,1,1,,0,,,6,1,9,6/1/26 8:00, +1,1,3634,2026,1,1,,0,,,6,1,10,6/1/26 9:00, +1,1,3635,2026,1,1,,0,,,6,1,11,6/1/26 10:00, +1,1,3636,2026,1,1,,0,,,6,1,12,6/1/26 11:00, +1,1,3637,2026,1,1,,0,,,6,1,13,6/1/26 12:00, +1,1,3638,2026,1,1,,0,,,6,1,14,6/1/26 13:00, +1,1,3639,2026,1,1,,0,,,6,1,15,6/1/26 14:00, +1,1,3640,2026,1,1,,0,,,6,1,16,6/1/26 15:00, +1,1,3641,2026,1,1,,0,,,6,1,17,6/1/26 16:00, +1,1,3642,2026,1,1,,0,,,6,1,18,6/1/26 17:00, +1,1,3643,2026,1,1,,0,,,6,1,19,6/1/26 18:00, +1,1,3644,2026,1,1,,0,,,6,1,20,6/1/26 19:00, +1,1,3645,2026,1,1,,0,,,6,1,21,6/1/26 20:00, +1,1,3646,2026,1,1,,0,,,6,1,22,6/1/26 21:00, +1,1,3647,2026,1,1,,0,,,6,1,23,6/1/26 22:00, +1,1,3648,2026,1,1,,0,,,6,1,24,6/1/26 23:00, +1,1,3649,2026,1,1,,0,,,6,2,1,6/2/26 0:00, +1,1,3650,2026,1,1,,0,,,6,2,2,6/2/26 1:00, +1,1,3651,2026,1,1,,0,,,6,2,3,6/2/26 2:00, +1,1,3652,2026,1,1,,0,,,6,2,4,6/2/26 3:00, +1,1,3653,2026,1,1,,0,,,6,2,5,6/2/26 4:00, +1,1,3654,2026,1,1,,0,,,6,2,6,6/2/26 5:00, +1,1,3655,2026,1,1,,0,,,6,2,7,6/2/26 6:00, +1,1,3656,2026,1,1,,0,,,6,2,8,6/2/26 7:00, +1,1,3657,2026,1,1,,0,,,6,2,9,6/2/26 8:00, +1,1,3658,2026,1,1,,0,,,6,2,10,6/2/26 9:00, +1,1,3659,2026,1,1,,0,,,6,2,11,6/2/26 10:00, +1,1,3660,2026,1,1,,0,,,6,2,12,6/2/26 11:00, +1,1,3661,2026,1,1,,0,,,6,2,13,6/2/26 12:00, +1,1,3662,2026,1,1,,0,,,6,2,14,6/2/26 13:00, +1,1,3663,2026,1,1,,0,,,6,2,15,6/2/26 14:00, +1,1,3664,2026,1,1,,0,,,6,2,16,6/2/26 15:00, +1,1,3665,2026,1,1,,0,,,6,2,17,6/2/26 16:00, +1,1,3666,2026,1,1,,0,,,6,2,18,6/2/26 17:00, +1,1,3667,2026,1,1,,0,,,6,2,19,6/2/26 18:00, +1,1,3668,2026,1,1,,0,,,6,2,20,6/2/26 19:00, +1,1,3669,2026,1,1,,0,,,6,2,21,6/2/26 20:00, +1,1,3670,2026,1,1,,0,,,6,2,22,6/2/26 21:00, +1,1,3671,2026,1,1,,0,,,6,2,23,6/2/26 22:00, +1,1,3672,2026,1,1,,0,,,6,2,24,6/2/26 23:00, +1,1,3673,2026,1,1,,0,,,6,3,1,6/3/26 0:00, +1,1,3674,2026,1,1,,0,,,6,3,2,6/3/26 1:00, +1,1,3675,2026,1,1,,0,,,6,3,3,6/3/26 2:00, +1,1,3676,2026,1,1,,0,,,6,3,4,6/3/26 3:00, +1,1,3677,2026,1,1,,0,,,6,3,5,6/3/26 4:00, +1,1,3678,2026,1,1,,0,,,6,3,6,6/3/26 5:00, +1,1,3679,2026,1,1,,0,,,6,3,7,6/3/26 6:00, +1,1,3680,2026,1,1,,0,,,6,3,8,6/3/26 7:00, +1,1,3681,2026,1,1,,0,,,6,3,9,6/3/26 8:00, +1,1,3682,2026,1,1,,0,,,6,3,10,6/3/26 9:00, +1,1,3683,2026,1,1,,0,,,6,3,11,6/3/26 10:00, +1,1,3684,2026,1,1,,0,,,6,3,12,6/3/26 11:00, +1,1,3685,2026,1,1,,0,,,6,3,13,6/3/26 12:00, +1,1,3686,2026,1,1,,0,,,6,3,14,6/3/26 13:00, +1,1,3687,2026,1,1,,0,,,6,3,15,6/3/26 14:00, +1,1,3688,2026,1,1,,0,,,6,3,16,6/3/26 15:00, +1,1,3689,2026,1,1,,0,,,6,3,17,6/3/26 16:00, +1,1,3690,2026,1,1,,0,,,6,3,18,6/3/26 17:00, +1,1,3691,2026,1,1,,0,,,6,3,19,6/3/26 18:00, +1,1,3692,2026,1,1,,0,,,6,3,20,6/3/26 19:00, +1,1,3693,2026,1,1,,0,,,6,3,21,6/3/26 20:00, +1,1,3694,2026,1,1,,0,,,6,3,22,6/3/26 21:00, +1,1,3695,2026,1,1,,0,,,6,3,23,6/3/26 22:00, +1,1,3696,2026,1,1,,0,,,6,3,24,6/3/26 23:00, +1,1,3697,2026,1,1,,0,,,6,4,1,6/4/26 0:00, +1,1,3698,2026,1,1,,0,,,6,4,2,6/4/26 1:00, +1,1,3699,2026,1,1,,0,,,6,4,3,6/4/26 2:00, +1,1,3700,2026,1,1,,0,,,6,4,4,6/4/26 3:00, +1,1,3701,2026,1,1,,0,,,6,4,5,6/4/26 4:00, +1,1,3702,2026,1,1,,0,,,6,4,6,6/4/26 5:00, +1,1,3703,2026,1,1,,0,,,6,4,7,6/4/26 6:00, +1,1,3704,2026,1,1,,0,,,6,4,8,6/4/26 7:00, +1,1,3705,2026,1,1,,0,,,6,4,9,6/4/26 8:00, +1,1,3706,2026,1,1,,0,,,6,4,10,6/4/26 9:00, +1,1,3707,2026,1,1,,0,,,6,4,11,6/4/26 10:00, +1,1,3708,2026,1,1,,0,,,6,4,12,6/4/26 11:00, +1,1,3709,2026,1,1,,0,,,6,4,13,6/4/26 12:00, +1,1,3710,2026,1,1,,0,,,6,4,14,6/4/26 13:00, +1,1,3711,2026,1,1,,0,,,6,4,15,6/4/26 14:00, +1,1,3712,2026,1,1,,0,,,6,4,16,6/4/26 15:00, +1,1,3713,2026,1,1,,0,,,6,4,17,6/4/26 16:00, +1,1,3714,2026,1,1,,0,,,6,4,18,6/4/26 17:00, +1,1,3715,2026,1,1,,0,,,6,4,19,6/4/26 18:00, +1,1,3716,2026,1,1,,0,,,6,4,20,6/4/26 19:00, +1,1,3717,2026,1,1,,0,,,6,4,21,6/4/26 20:00, +1,1,3718,2026,1,1,,0,,,6,4,22,6/4/26 21:00, +1,1,3719,2026,1,1,,0,,,6,4,23,6/4/26 22:00, +1,1,3720,2026,1,1,,0,,,6,4,24,6/4/26 23:00, +1,1,3721,2026,1,1,,0,,,6,5,1,6/5/26 0:00, +1,1,3722,2026,1,1,,0,,,6,5,2,6/5/26 1:00, +1,1,3723,2026,1,1,,0,,,6,5,3,6/5/26 2:00, +1,1,3724,2026,1,1,,0,,,6,5,4,6/5/26 3:00, +1,1,3725,2026,1,1,,0,,,6,5,5,6/5/26 4:00, +1,1,3726,2026,1,1,,0,,,6,5,6,6/5/26 5:00, +1,1,3727,2026,1,1,,0,,,6,5,7,6/5/26 6:00, +1,1,3728,2026,1,1,,0,,,6,5,8,6/5/26 7:00, +1,1,3729,2026,1,1,,0,,,6,5,9,6/5/26 8:00, +1,1,3730,2026,1,1,,0,,,6,5,10,6/5/26 9:00, +1,1,3731,2026,1,1,,0,,,6,5,11,6/5/26 10:00, +1,1,3732,2026,1,1,,0,,,6,5,12,6/5/26 11:00, +1,1,3733,2026,1,1,,0,,,6,5,13,6/5/26 12:00, +1,1,3734,2026,1,1,,0,,,6,5,14,6/5/26 13:00, +1,1,3735,2026,1,1,,0,,,6,5,15,6/5/26 14:00, +1,1,3736,2026,1,1,,0,,,6,5,16,6/5/26 15:00, +1,1,3737,2026,1,1,,0,,,6,5,17,6/5/26 16:00, +1,1,3738,2026,1,1,,0,,,6,5,18,6/5/26 17:00, +1,1,3739,2026,1,1,,0,,,6,5,19,6/5/26 18:00, +1,1,3740,2026,1,1,,0,,,6,5,20,6/5/26 19:00, +1,1,3741,2026,1,1,,0,,,6,5,21,6/5/26 20:00, +1,1,3742,2026,1,1,,0,,,6,5,22,6/5/26 21:00, +1,1,3743,2026,1,1,,0,,,6,5,23,6/5/26 22:00, +1,1,3744,2026,1,1,,0,,,6,5,24,6/5/26 23:00, +1,1,3745,2026,1,1,,0,,,6,6,1,6/6/26 0:00, +1,1,3746,2026,1,1,,0,,,6,6,2,6/6/26 1:00, +1,1,3747,2026,1,1,,0,,,6,6,3,6/6/26 2:00, +1,1,3748,2026,1,1,,0,,,6,6,4,6/6/26 3:00, +1,1,3749,2026,1,1,,0,,,6,6,5,6/6/26 4:00, +1,1,3750,2026,1,1,,0,,,6,6,6,6/6/26 5:00, +1,1,3751,2026,1,1,,0,,,6,6,7,6/6/26 6:00, +1,1,3752,2026,1,1,,0,,,6,6,8,6/6/26 7:00, +1,1,3753,2026,1,1,,0,,,6,6,9,6/6/26 8:00, +1,1,3754,2026,1,1,,0,,,6,6,10,6/6/26 9:00, +1,1,3755,2026,1,1,,0,,,6,6,11,6/6/26 10:00, +1,1,3756,2026,1,1,,0,,,6,6,12,6/6/26 11:00, +1,1,3757,2026,1,1,,0,,,6,6,13,6/6/26 12:00, +1,1,3758,2026,1,1,,0,,,6,6,14,6/6/26 13:00, +1,1,3759,2026,1,1,,0,,,6,6,15,6/6/26 14:00, +1,1,3760,2026,1,1,,0,,,6,6,16,6/6/26 15:00, +1,1,3761,2026,1,1,,0,,,6,6,17,6/6/26 16:00, +1,1,3762,2026,1,1,,0,,,6,6,18,6/6/26 17:00, +1,1,3763,2026,1,1,,0,,,6,6,19,6/6/26 18:00, +1,1,3764,2026,1,1,,0,,,6,6,20,6/6/26 19:00, +1,1,3765,2026,1,1,,0,,,6,6,21,6/6/26 20:00, +1,1,3766,2026,1,1,,0,,,6,6,22,6/6/26 21:00, +1,1,3767,2026,1,1,,0,,,6,6,23,6/6/26 22:00, +1,1,3768,2026,1,1,,0,,,6,6,24,6/6/26 23:00, +1,1,3769,2026,1,1,,0,,,6,7,1,6/7/26 0:00, +1,1,3770,2026,1,1,,0,,,6,7,2,6/7/26 1:00, +1,1,3771,2026,1,1,,0,,,6,7,3,6/7/26 2:00, +1,1,3772,2026,1,1,,0,,,6,7,4,6/7/26 3:00, +1,1,3773,2026,1,1,,0,,,6,7,5,6/7/26 4:00, +1,1,3774,2026,1,1,,0,,,6,7,6,6/7/26 5:00, +1,1,3775,2026,1,1,,0,,,6,7,7,6/7/26 6:00, +1,1,3776,2026,1,1,,0,,,6,7,8,6/7/26 7:00, +1,1,3777,2026,1,1,,0,,,6,7,9,6/7/26 8:00, +1,1,3778,2026,1,1,,0,,,6,7,10,6/7/26 9:00, +1,1,3779,2026,1,1,,0,,,6,7,11,6/7/26 10:00, +1,1,3780,2026,1,1,,0,,,6,7,12,6/7/26 11:00, +1,1,3781,2026,1,1,,0,,,6,7,13,6/7/26 12:00, +1,1,3782,2026,1,1,,0,,,6,7,14,6/7/26 13:00, +1,1,3783,2026,1,1,,0,,,6,7,15,6/7/26 14:00, +1,1,3784,2026,1,1,,0,,,6,7,16,6/7/26 15:00, +1,1,3785,2026,1,1,,0,,,6,7,17,6/7/26 16:00, +1,1,3786,2026,1,1,,0,,,6,7,18,6/7/26 17:00, +1,1,3787,2026,1,1,,0,,,6,7,19,6/7/26 18:00, +1,1,3788,2026,1,1,,0,,,6,7,20,6/7/26 19:00, +1,1,3789,2026,1,1,,0,,,6,7,21,6/7/26 20:00, +1,1,3790,2026,1,1,,0,,,6,7,22,6/7/26 21:00, +1,1,3791,2026,1,1,,0,,,6,7,23,6/7/26 22:00, +1,1,3792,2026,1,1,,0,,,6,7,24,6/7/26 23:00, +1,1,3793,2026,1,1,,0,,,6,8,1,6/8/26 0:00, +1,1,3794,2026,1,1,,0,,,6,8,2,6/8/26 1:00, +1,1,3795,2026,1,1,,0,,,6,8,3,6/8/26 2:00, +1,1,3796,2026,1,1,,0,,,6,8,4,6/8/26 3:00, +1,1,3797,2026,1,1,,0,,,6,8,5,6/8/26 4:00, +1,1,3798,2026,1,1,,0,,,6,8,6,6/8/26 5:00, +1,1,3799,2026,1,1,,0,,,6,8,7,6/8/26 6:00, +1,1,3800,2026,1,1,,0,,,6,8,8,6/8/26 7:00, +1,1,3801,2026,1,1,,0,,,6,8,9,6/8/26 8:00, +1,1,3802,2026,1,1,,0,,,6,8,10,6/8/26 9:00, +1,1,3803,2026,1,1,,0,,,6,8,11,6/8/26 10:00, +1,1,3804,2026,1,1,,0,,,6,8,12,6/8/26 11:00, +1,1,3805,2026,1,1,,0,,,6,8,13,6/8/26 12:00, +1,1,3806,2026,1,1,,0,,,6,8,14,6/8/26 13:00, +1,1,3807,2026,1,1,,0,,,6,8,15,6/8/26 14:00, +1,1,3808,2026,1,1,,0,,,6,8,16,6/8/26 15:00, +1,1,3809,2026,1,1,,0,,,6,8,17,6/8/26 16:00, +1,1,3810,2026,1,1,,0,,,6,8,18,6/8/26 17:00, +1,1,3811,2026,1,1,,0,,,6,8,19,6/8/26 18:00, +1,1,3812,2026,1,1,,0,,,6,8,20,6/8/26 19:00, +1,1,3813,2026,1,1,,0,,,6,8,21,6/8/26 20:00, +1,1,3814,2026,1,1,,0,,,6,8,22,6/8/26 21:00, +1,1,3815,2026,1,1,,0,,,6,8,23,6/8/26 22:00, +1,1,3816,2026,1,1,,0,,,6,8,24,6/8/26 23:00, +1,1,3817,2026,1,1,,0,,,6,9,1,6/9/26 0:00, +1,1,3818,2026,1,1,,0,,,6,9,2,6/9/26 1:00, +1,1,3819,2026,1,1,,0,,,6,9,3,6/9/26 2:00, +1,1,3820,2026,1,1,,0,,,6,9,4,6/9/26 3:00, +1,1,3821,2026,1,1,,0,,,6,9,5,6/9/26 4:00, +1,1,3822,2026,1,1,,0,,,6,9,6,6/9/26 5:00, +1,1,3823,2026,1,1,,0,,,6,9,7,6/9/26 6:00, +1,1,3824,2026,1,1,,0,,,6,9,8,6/9/26 7:00, +1,1,3825,2026,1,1,,0,,,6,9,9,6/9/26 8:00, +1,1,3826,2026,1,1,,0,,,6,9,10,6/9/26 9:00, +1,1,3827,2026,1,1,,0,,,6,9,11,6/9/26 10:00, +1,1,3828,2026,1,1,,0,,,6,9,12,6/9/26 11:00, +1,1,3829,2026,1,1,,0,,,6,9,13,6/9/26 12:00, +1,1,3830,2026,1,1,,0,,,6,9,14,6/9/26 13:00, +1,1,3831,2026,1,1,,0,,,6,9,15,6/9/26 14:00, +1,1,3832,2026,1,1,,0,,,6,9,16,6/9/26 15:00, +1,1,3833,2026,1,1,,0,,,6,9,17,6/9/26 16:00, +1,1,3834,2026,1,1,,0,,,6,9,18,6/9/26 17:00, +1,1,3835,2026,1,1,,0,,,6,9,19,6/9/26 18:00, +1,1,3836,2026,1,1,,0,,,6,9,20,6/9/26 19:00, +1,1,3837,2026,1,1,,0,,,6,9,21,6/9/26 20:00, +1,1,3838,2026,1,1,,0,,,6,9,22,6/9/26 21:00, +1,1,3839,2026,1,1,,0,,,6,9,23,6/9/26 22:00, +1,1,3840,2026,1,1,,0,,,6,9,24,6/9/26 23:00, +1,1,3841,2026,1,1,,0,,,6,10,1,6/10/26 0:00, +1,1,3842,2026,1,1,,0,,,6,10,2,6/10/26 1:00, +1,1,3843,2026,1,1,,0,,,6,10,3,6/10/26 2:00, +1,1,3844,2026,1,1,,0,,,6,10,4,6/10/26 3:00, +1,1,3845,2026,1,1,,0,,,6,10,5,6/10/26 4:00, +1,1,3846,2026,1,1,,0,,,6,10,6,6/10/26 5:00, +1,1,3847,2026,1,1,,0,,,6,10,7,6/10/26 6:00, +1,1,3848,2026,1,1,,0,,,6,10,8,6/10/26 7:00, +1,1,3849,2026,1,1,,0,,,6,10,9,6/10/26 8:00, +1,1,3850,2026,1,1,,0,,,6,10,10,6/10/26 9:00, +1,1,3851,2026,1,1,,0,,,6,10,11,6/10/26 10:00, +1,1,3852,2026,1,1,,0,,,6,10,12,6/10/26 11:00, +1,1,3853,2026,1,1,,0,,,6,10,13,6/10/26 12:00, +1,1,3854,2026,1,1,,0,,,6,10,14,6/10/26 13:00, +1,1,3855,2026,1,1,,0,,,6,10,15,6/10/26 14:00, +1,1,3856,2026,1,1,,0,,,6,10,16,6/10/26 15:00, +1,1,3857,2026,1,1,,0,,,6,10,17,6/10/26 16:00, +1,1,3858,2026,1,1,,0,,,6,10,18,6/10/26 17:00, +1,1,3859,2026,1,1,,0,,,6,10,19,6/10/26 18:00, +1,1,3860,2026,1,1,,0,,,6,10,20,6/10/26 19:00, +1,1,3861,2026,1,1,,0,,,6,10,21,6/10/26 20:00, +1,1,3862,2026,1,1,,0,,,6,10,22,6/10/26 21:00, +1,1,3863,2026,1,1,,0,,,6,10,23,6/10/26 22:00, +1,1,3864,2026,1,1,,0,,,6,10,24,6/10/26 23:00, +1,1,3865,2026,1,1,,0,,,6,11,1,6/11/26 0:00, +1,1,3866,2026,1,1,,0,,,6,11,2,6/11/26 1:00, +1,1,3867,2026,1,1,,0,,,6,11,3,6/11/26 2:00, +1,1,3868,2026,1,1,,0,,,6,11,4,6/11/26 3:00, +1,1,3869,2026,1,1,,0,,,6,11,5,6/11/26 4:00, +1,1,3870,2026,1,1,,0,,,6,11,6,6/11/26 5:00, +1,1,3871,2026,1,1,,0,,,6,11,7,6/11/26 6:00, +1,1,3872,2026,1,1,,0,,,6,11,8,6/11/26 7:00, +1,1,3873,2026,1,1,,0,,,6,11,9,6/11/26 8:00, +1,1,3874,2026,1,1,,0,,,6,11,10,6/11/26 9:00, +1,1,3875,2026,1,1,,0,,,6,11,11,6/11/26 10:00, +1,1,3876,2026,1,1,,0,,,6,11,12,6/11/26 11:00, +1,1,3877,2026,1,1,,0,,,6,11,13,6/11/26 12:00, +1,1,3878,2026,1,1,,0,,,6,11,14,6/11/26 13:00, +1,1,3879,2026,1,1,,0,,,6,11,15,6/11/26 14:00, +1,1,3880,2026,1,1,,0,,,6,11,16,6/11/26 15:00, +1,1,3881,2026,1,1,,0,,,6,11,17,6/11/26 16:00, +1,1,3882,2026,1,1,,0,,,6,11,18,6/11/26 17:00, +1,1,3883,2026,1,1,,0,,,6,11,19,6/11/26 18:00, +1,1,3884,2026,1,1,,0,,,6,11,20,6/11/26 19:00, +1,1,3885,2026,1,1,,0,,,6,11,21,6/11/26 20:00, +1,1,3886,2026,1,1,,0,,,6,11,22,6/11/26 21:00, +1,1,3887,2026,1,1,,0,,,6,11,23,6/11/26 22:00, +1,1,3888,2026,1,1,,0,,,6,11,24,6/11/26 23:00, +1,1,3889,2026,1,1,,0,,,6,12,1,6/12/26 0:00, +1,1,3890,2026,1,1,,0,,,6,12,2,6/12/26 1:00, +1,1,3891,2026,1,1,,0,,,6,12,3,6/12/26 2:00, +1,1,3892,2026,1,1,,0,,,6,12,4,6/12/26 3:00, +1,1,3893,2026,1,1,,0,,,6,12,5,6/12/26 4:00, +1,1,3894,2026,1,1,,0,,,6,12,6,6/12/26 5:00, +1,1,3895,2026,1,1,,0,,,6,12,7,6/12/26 6:00, +1,1,3896,2026,1,1,,0,,,6,12,8,6/12/26 7:00, +1,1,3897,2026,1,1,,0,,,6,12,9,6/12/26 8:00, +1,1,3898,2026,1,1,,0,,,6,12,10,6/12/26 9:00, +1,1,3899,2026,1,1,,0,,,6,12,11,6/12/26 10:00, +1,1,3900,2026,1,1,,0,,,6,12,12,6/12/26 11:00, +1,1,3901,2026,1,1,,0,,,6,12,13,6/12/26 12:00, +1,1,3902,2026,1,1,,0,,,6,12,14,6/12/26 13:00, +1,1,3903,2026,1,1,,0,,,6,12,15,6/12/26 14:00, +1,1,3904,2026,1,1,,0,,,6,12,16,6/12/26 15:00, +1,1,3905,2026,1,1,,0,,,6,12,17,6/12/26 16:00, +1,1,3906,2026,1,1,,0,,,6,12,18,6/12/26 17:00, +1,1,3907,2026,1,1,,0,,,6,12,19,6/12/26 18:00, +1,1,3908,2026,1,1,,0,,,6,12,20,6/12/26 19:00, +1,1,3909,2026,1,1,,0,,,6,12,21,6/12/26 20:00, +1,1,3910,2026,1,1,,0,,,6,12,22,6/12/26 21:00, +1,1,3911,2026,1,1,,0,,,6,12,23,6/12/26 22:00, +1,1,3912,2026,1,1,,0,,,6,12,24,6/12/26 23:00, +1,1,3913,2026,1,1,,0,,,6,13,1,6/13/26 0:00, +1,1,3914,2026,1,1,,0,,,6,13,2,6/13/26 1:00, +1,1,3915,2026,1,1,,0,,,6,13,3,6/13/26 2:00, +1,1,3916,2026,1,1,,0,,,6,13,4,6/13/26 3:00, +1,1,3917,2026,1,1,,0,,,6,13,5,6/13/26 4:00, +1,1,3918,2026,1,1,,0,,,6,13,6,6/13/26 5:00, +1,1,3919,2026,1,1,,0,,,6,13,7,6/13/26 6:00, +1,1,3920,2026,1,1,,0,,,6,13,8,6/13/26 7:00, +1,1,3921,2026,1,1,,0,,,6,13,9,6/13/26 8:00, +1,1,3922,2026,1,1,,0,,,6,13,10,6/13/26 9:00, +1,1,3923,2026,1,1,,0,,,6,13,11,6/13/26 10:00, +1,1,3924,2026,1,1,,0,,,6,13,12,6/13/26 11:00, +1,1,3925,2026,1,1,,0,,,6,13,13,6/13/26 12:00, +1,1,3926,2026,1,1,,0,,,6,13,14,6/13/26 13:00, +1,1,3927,2026,1,1,,0,,,6,13,15,6/13/26 14:00, +1,1,3928,2026,1,1,,0,,,6,13,16,6/13/26 15:00, +1,1,3929,2026,1,1,,0,,,6,13,17,6/13/26 16:00, +1,1,3930,2026,1,1,,0,,,6,13,18,6/13/26 17:00, +1,1,3931,2026,1,1,,0,,,6,13,19,6/13/26 18:00, +1,1,3932,2026,1,1,,0,,,6,13,20,6/13/26 19:00, +1,1,3933,2026,1,1,,0,,,6,13,21,6/13/26 20:00, +1,1,3934,2026,1,1,,0,,,6,13,22,6/13/26 21:00, +1,1,3935,2026,1,1,,0,,,6,13,23,6/13/26 22:00, +1,1,3936,2026,1,1,,0,,,6,13,24,6/13/26 23:00, +1,1,3937,2026,1,1,,0,,,6,14,1,6/14/26 0:00, +1,1,3938,2026,1,1,,0,,,6,14,2,6/14/26 1:00, +1,1,3939,2026,1,1,,0,,,6,14,3,6/14/26 2:00, +1,1,3940,2026,1,1,,0,,,6,14,4,6/14/26 3:00, +1,1,3941,2026,1,1,,0,,,6,14,5,6/14/26 4:00, +1,1,3942,2026,1,1,,0,,,6,14,6,6/14/26 5:00, +1,1,3943,2026,1,1,,0,,,6,14,7,6/14/26 6:00, +1,1,3944,2026,1,1,,0,,,6,14,8,6/14/26 7:00, +1,1,3945,2026,1,1,,0,,,6,14,9,6/14/26 8:00, +1,1,3946,2026,1,1,,0,,,6,14,10,6/14/26 9:00, +1,1,3947,2026,1,1,,0,,,6,14,11,6/14/26 10:00, +1,1,3948,2026,1,1,,0,,,6,14,12,6/14/26 11:00, +1,1,3949,2026,1,1,,0,,,6,14,13,6/14/26 12:00, +1,1,3950,2026,1,1,,0,,,6,14,14,6/14/26 13:00, +1,1,3951,2026,1,1,,0,,,6,14,15,6/14/26 14:00, +1,1,3952,2026,1,1,,0,,,6,14,16,6/14/26 15:00, +1,1,3953,2026,1,1,,0,,,6,14,17,6/14/26 16:00, +1,1,3954,2026,1,1,,0,,,6,14,18,6/14/26 17:00, +1,1,3955,2026,1,1,,0,,,6,14,19,6/14/26 18:00, +1,1,3956,2026,1,1,,0,,,6,14,20,6/14/26 19:00, +1,1,3957,2026,1,1,,0,,,6,14,21,6/14/26 20:00, +1,1,3958,2026,1,1,,0,,,6,14,22,6/14/26 21:00, +1,1,3959,2026,1,1,,0,,,6,14,23,6/14/26 22:00, +1,1,3960,2026,1,1,,0,,,6,14,24,6/14/26 23:00, +1,1,3961,2026,1,1,,0,,,6,15,1,6/15/26 0:00, +1,1,3962,2026,1,1,,0,,,6,15,2,6/15/26 1:00, +1,1,3963,2026,1,1,,0,,,6,15,3,6/15/26 2:00, +1,1,3964,2026,1,1,,0,,,6,15,4,6/15/26 3:00, +1,1,3965,2026,1,1,,0,,,6,15,5,6/15/26 4:00, +1,1,3966,2026,1,1,,0,,,6,15,6,6/15/26 5:00, +1,1,3967,2026,1,1,,0,,,6,15,7,6/15/26 6:00, +1,1,3968,2026,1,1,,0,,,6,15,8,6/15/26 7:00, +1,1,3969,2026,1,1,,0,,,6,15,9,6/15/26 8:00, +1,1,3970,2026,1,1,,0,,,6,15,10,6/15/26 9:00, +1,1,3971,2026,1,1,,0,,,6,15,11,6/15/26 10:00, +1,1,3972,2026,1,1,,0,,,6,15,12,6/15/26 11:00, +1,1,3973,2026,1,1,,0,,,6,15,13,6/15/26 12:00, +1,1,3974,2026,1,1,,0,,,6,15,14,6/15/26 13:00, +1,1,3975,2026,1,1,,0,,,6,15,15,6/15/26 14:00, +1,1,3976,2026,1,1,,0,,,6,15,16,6/15/26 15:00, +1,1,3977,2026,1,1,,0,,,6,15,17,6/15/26 16:00, +1,1,3978,2026,1,1,,0,,,6,15,18,6/15/26 17:00, +1,1,3979,2026,1,1,,0,,,6,15,19,6/15/26 18:00, +1,1,3980,2026,1,1,,0,,,6,15,20,6/15/26 19:00, +1,1,3981,2026,1,1,,0,,,6,15,21,6/15/26 20:00, +1,1,3982,2026,1,1,,0,,,6,15,22,6/15/26 21:00, +1,1,3983,2026,1,1,,0,,,6,15,23,6/15/26 22:00, +1,1,3984,2026,1,1,,0,,,6,15,24,6/15/26 23:00, +1,1,3985,2026,1,1,,0,,,6,16,1,6/16/26 0:00, +1,1,3986,2026,1,1,,0,,,6,16,2,6/16/26 1:00, +1,1,3987,2026,1,1,,0,,,6,16,3,6/16/26 2:00, +1,1,3988,2026,1,1,,0,,,6,16,4,6/16/26 3:00, +1,1,3989,2026,1,1,,0,,,6,16,5,6/16/26 4:00, +1,1,3990,2026,1,1,,0,,,6,16,6,6/16/26 5:00, +1,1,3991,2026,1,1,,0,,,6,16,7,6/16/26 6:00, +1,1,3992,2026,1,1,,0,,,6,16,8,6/16/26 7:00, +1,1,3993,2026,1,1,,0,,,6,16,9,6/16/26 8:00, +1,1,3994,2026,1,1,,0,,,6,16,10,6/16/26 9:00, +1,1,3995,2026,1,1,,0,,,6,16,11,6/16/26 10:00, +1,1,3996,2026,1,1,,0,,,6,16,12,6/16/26 11:00, +1,1,3997,2026,1,1,,0,,,6,16,13,6/16/26 12:00, +1,1,3998,2026,1,1,,0,,,6,16,14,6/16/26 13:00, +1,1,3999,2026,1,1,,0,,,6,16,15,6/16/26 14:00, +1,1,4000,2026,1,1,,0,,,6,16,16,6/16/26 15:00, +1,1,4001,2026,1,1,,0,,,6,16,17,6/16/26 16:00, +1,1,4002,2026,1,1,,0,,,6,16,18,6/16/26 17:00, +1,1,4003,2026,1,1,,0,,,6,16,19,6/16/26 18:00, +1,1,4004,2026,1,1,,0,,,6,16,20,6/16/26 19:00, +1,1,4005,2026,1,1,,0,,,6,16,21,6/16/26 20:00, +1,1,4006,2026,1,1,,0,,,6,16,22,6/16/26 21:00, +1,1,4007,2026,1,1,,0,,,6,16,23,6/16/26 22:00, +1,1,4008,2026,1,1,,0,,,6,16,24,6/16/26 23:00, +1,1,4009,2026,1,1,,0,,,6,17,1,6/17/26 0:00, +1,1,4010,2026,1,1,,0,,,6,17,2,6/17/26 1:00, +1,1,4011,2026,1,1,,0,,,6,17,3,6/17/26 2:00, +1,1,4012,2026,1,1,,0,,,6,17,4,6/17/26 3:00, +1,1,4013,2026,1,1,,0,,,6,17,5,6/17/26 4:00, +1,1,4014,2026,1,1,,0,,,6,17,6,6/17/26 5:00, +1,1,4015,2026,1,1,,0,,,6,17,7,6/17/26 6:00, +1,1,4016,2026,1,1,,0,,,6,17,8,6/17/26 7:00, +1,1,4017,2026,1,1,,0,,,6,17,9,6/17/26 8:00, +1,1,4018,2026,1,1,,0,,,6,17,10,6/17/26 9:00, +1,1,4019,2026,1,1,,0,,,6,17,11,6/17/26 10:00, +1,1,4020,2026,1,1,,0,,,6,17,12,6/17/26 11:00, +1,1,4021,2026,1,1,,0,,,6,17,13,6/17/26 12:00, +1,1,4022,2026,1,1,,0,,,6,17,14,6/17/26 13:00, +1,1,4023,2026,1,1,,0,,,6,17,15,6/17/26 14:00, +1,1,4024,2026,1,1,,0,,,6,17,16,6/17/26 15:00, +1,1,4025,2026,1,1,,0,,,6,17,17,6/17/26 16:00, +1,1,4026,2026,1,1,,0,,,6,17,18,6/17/26 17:00, +1,1,4027,2026,1,1,,0,,,6,17,19,6/17/26 18:00, +1,1,4028,2026,1,1,,0,,,6,17,20,6/17/26 19:00, +1,1,4029,2026,1,1,,0,,,6,17,21,6/17/26 20:00, +1,1,4030,2026,1,1,,0,,,6,17,22,6/17/26 21:00, +1,1,4031,2026,1,1,,0,,,6,17,23,6/17/26 22:00, +1,1,4032,2026,1,1,,0,,,6,17,24,6/17/26 23:00, +1,1,4033,2026,1,1,,0,,,6,18,1,6/18/26 0:00, +1,1,4034,2026,1,1,,0,,,6,18,2,6/18/26 1:00, +1,1,4035,2026,1,1,,0,,,6,18,3,6/18/26 2:00, +1,1,4036,2026,1,1,,0,,,6,18,4,6/18/26 3:00, +1,1,4037,2026,1,1,,0,,,6,18,5,6/18/26 4:00, +1,1,4038,2026,1,1,,0,,,6,18,6,6/18/26 5:00, +1,1,4039,2026,1,1,,0,,,6,18,7,6/18/26 6:00, +1,1,4040,2026,1,1,,0,,,6,18,8,6/18/26 7:00, +1,1,4041,2026,1,1,,0,,,6,18,9,6/18/26 8:00, +1,1,4042,2026,1,1,,0,,,6,18,10,6/18/26 9:00, +1,1,4043,2026,1,1,,0,,,6,18,11,6/18/26 10:00, +1,1,4044,2026,1,1,,0,,,6,18,12,6/18/26 11:00, +1,1,4045,2026,1,1,,0,,,6,18,13,6/18/26 12:00, +1,1,4046,2026,1,1,,0,,,6,18,14,6/18/26 13:00, +1,1,4047,2026,1,1,,0,,,6,18,15,6/18/26 14:00, +1,1,4048,2026,1,1,,0,,,6,18,16,6/18/26 15:00, +1,1,4049,2026,1,1,,0,,,6,18,17,6/18/26 16:00, +1,1,4050,2026,1,1,,0,,,6,18,18,6/18/26 17:00, +1,1,4051,2026,1,1,,0,,,6,18,19,6/18/26 18:00, +1,1,4052,2026,1,1,,0,,,6,18,20,6/18/26 19:00, +1,1,4053,2026,1,1,,0,,,6,18,21,6/18/26 20:00, +1,1,4054,2026,1,1,,0,,,6,18,22,6/18/26 21:00, +1,1,4055,2026,1,1,,0,,,6,18,23,6/18/26 22:00, +1,1,4056,2026,1,1,,0,,,6,18,24,6/18/26 23:00, +1,1,4057,2026,1,1,,0,,,6,19,1,6/19/26 0:00, +1,1,4058,2026,1,1,,0,,,6,19,2,6/19/26 1:00, +1,1,4059,2026,1,1,,0,,,6,19,3,6/19/26 2:00, +1,1,4060,2026,1,1,,0,,,6,19,4,6/19/26 3:00, +1,1,4061,2026,1,1,,0,,,6,19,5,6/19/26 4:00, +1,1,4062,2026,1,1,,0,,,6,19,6,6/19/26 5:00, +1,1,4063,2026,1,1,,0,,,6,19,7,6/19/26 6:00, +1,1,4064,2026,1,1,,0,,,6,19,8,6/19/26 7:00, +1,1,4065,2026,1,1,,0,,,6,19,9,6/19/26 8:00, +1,1,4066,2026,1,1,,0,,,6,19,10,6/19/26 9:00, +1,1,4067,2026,1,1,,0,,,6,19,11,6/19/26 10:00, +1,1,4068,2026,1,1,,0,,,6,19,12,6/19/26 11:00, +1,1,4069,2026,1,1,,0,,,6,19,13,6/19/26 12:00, +1,1,4070,2026,1,1,,0,,,6,19,14,6/19/26 13:00, +1,1,4071,2026,1,1,,0,,,6,19,15,6/19/26 14:00, +1,1,4072,2026,1,1,,0,,,6,19,16,6/19/26 15:00, +1,1,4073,2026,1,1,,0,,,6,19,17,6/19/26 16:00, +1,1,4074,2026,1,1,,0,,,6,19,18,6/19/26 17:00, +1,1,4075,2026,1,1,,0,,,6,19,19,6/19/26 18:00, +1,1,4076,2026,1,1,,0,,,6,19,20,6/19/26 19:00, +1,1,4077,2026,1,1,,0,,,6,19,21,6/19/26 20:00, +1,1,4078,2026,1,1,,0,,,6,19,22,6/19/26 21:00, +1,1,4079,2026,1,1,,0,,,6,19,23,6/19/26 22:00, +1,1,4080,2026,1,1,,0,,,6,19,24,6/19/26 23:00, +1,1,4081,2026,1,1,,0,,,6,20,1,6/20/26 0:00, +1,1,4082,2026,1,1,,0,,,6,20,2,6/20/26 1:00, +1,1,4083,2026,1,1,,0,,,6,20,3,6/20/26 2:00, +1,1,4084,2026,1,1,,0,,,6,20,4,6/20/26 3:00, +1,1,4085,2026,1,1,,0,,,6,20,5,6/20/26 4:00, +1,1,4086,2026,1,1,,0,,,6,20,6,6/20/26 5:00, +1,1,4087,2026,1,1,,0,,,6,20,7,6/20/26 6:00, +1,1,4088,2026,1,1,,0,,,6,20,8,6/20/26 7:00, +1,1,4089,2026,1,1,,0,,,6,20,9,6/20/26 8:00, +1,1,4090,2026,1,1,,0,,,6,20,10,6/20/26 9:00, +1,1,4091,2026,1,1,,0,,,6,20,11,6/20/26 10:00, +1,1,4092,2026,1,1,,0,,,6,20,12,6/20/26 11:00, +1,1,4093,2026,1,1,,0,,,6,20,13,6/20/26 12:00, +1,1,4094,2026,1,1,,0,,,6,20,14,6/20/26 13:00, +1,1,4095,2026,1,1,,0,,,6,20,15,6/20/26 14:00, +1,1,4096,2026,1,1,,0,,,6,20,16,6/20/26 15:00, +1,1,4097,2026,1,1,,0,,,6,20,17,6/20/26 16:00, +1,1,4098,2026,1,1,,0,,,6,20,18,6/20/26 17:00, +1,1,4099,2026,1,1,,0,,,6,20,19,6/20/26 18:00, +1,1,4100,2026,1,1,,0,,,6,20,20,6/20/26 19:00, +1,1,4101,2026,1,1,,0,,,6,20,21,6/20/26 20:00, +1,1,4102,2026,1,1,,0,,,6,20,22,6/20/26 21:00, +1,1,4103,2026,1,1,,0,,,6,20,23,6/20/26 22:00, +1,1,4104,2026,1,1,,0,,,6,20,24,6/20/26 23:00, +1,1,4105,2026,1,1,,0,,,6,21,1,6/21/26 0:00, +1,1,4106,2026,1,1,,0,,,6,21,2,6/21/26 1:00, +1,1,4107,2026,1,1,,0,,,6,21,3,6/21/26 2:00, +1,1,4108,2026,1,1,,0,,,6,21,4,6/21/26 3:00, +1,1,4109,2026,1,1,,0,,,6,21,5,6/21/26 4:00, +1,1,4110,2026,1,1,,0,,,6,21,6,6/21/26 5:00, +1,1,4111,2026,1,1,,0,,,6,21,7,6/21/26 6:00, +1,1,4112,2026,1,1,,0,,,6,21,8,6/21/26 7:00, +1,1,4113,2026,1,1,,0,,,6,21,9,6/21/26 8:00, +1,1,4114,2026,1,1,,0,,,6,21,10,6/21/26 9:00, +1,1,4115,2026,1,1,,0,,,6,21,11,6/21/26 10:00, +1,1,4116,2026,1,1,,0,,,6,21,12,6/21/26 11:00, +1,1,4117,2026,1,1,,0,,,6,21,13,6/21/26 12:00, +1,1,4118,2026,1,1,,0,,,6,21,14,6/21/26 13:00, +1,1,4119,2026,1,1,,0,,,6,21,15,6/21/26 14:00, +1,1,4120,2026,1,1,,0,,,6,21,16,6/21/26 15:00, +1,1,4121,2026,1,1,,0,,,6,21,17,6/21/26 16:00, +1,1,4122,2026,1,1,,0,,,6,21,18,6/21/26 17:00, +1,1,4123,2026,1,1,,0,,,6,21,19,6/21/26 18:00, +1,1,4124,2026,1,1,,0,,,6,21,20,6/21/26 19:00, +1,1,4125,2026,1,1,,0,,,6,21,21,6/21/26 20:00, +1,1,4126,2026,1,1,,0,,,6,21,22,6/21/26 21:00, +1,1,4127,2026,1,1,,0,,,6,21,23,6/21/26 22:00, +1,1,4128,2026,1,1,,0,,,6,21,24,6/21/26 23:00, +1,1,4129,2026,1,1,,0,,,6,22,1,6/22/26 0:00, +1,1,4130,2026,1,1,,0,,,6,22,2,6/22/26 1:00, +1,1,4131,2026,1,1,,0,,,6,22,3,6/22/26 2:00, +1,1,4132,2026,1,1,,0,,,6,22,4,6/22/26 3:00, +1,1,4133,2026,1,1,,0,,,6,22,5,6/22/26 4:00, +1,1,4134,2026,1,1,,0,,,6,22,6,6/22/26 5:00, +1,1,4135,2026,1,1,,0,,,6,22,7,6/22/26 6:00, +1,1,4136,2026,1,1,,0,,,6,22,8,6/22/26 7:00, +1,1,4137,2026,1,1,,0,,,6,22,9,6/22/26 8:00, +1,1,4138,2026,1,1,,0,,,6,22,10,6/22/26 9:00, +1,1,4139,2026,1,1,,0,,,6,22,11,6/22/26 10:00, +1,1,4140,2026,1,1,,0,,,6,22,12,6/22/26 11:00, +1,1,4141,2026,1,1,,0,,,6,22,13,6/22/26 12:00, +1,1,4142,2026,1,1,,0,,,6,22,14,6/22/26 13:00, +1,1,4143,2026,1,1,,0,,,6,22,15,6/22/26 14:00, +1,1,4144,2026,1,1,,0,,,6,22,16,6/22/26 15:00, +1,1,4145,2026,1,1,,0,,,6,22,17,6/22/26 16:00, +1,1,4146,2026,1,1,,0,,,6,22,18,6/22/26 17:00, +1,1,4147,2026,1,1,,0,,,6,22,19,6/22/26 18:00, +1,1,4148,2026,1,1,,0,,,6,22,20,6/22/26 19:00, +1,1,4149,2026,1,1,,0,,,6,22,21,6/22/26 20:00, +1,1,4150,2026,1,1,,0,,,6,22,22,6/22/26 21:00, +1,1,4151,2026,1,1,,0,,,6,22,23,6/22/26 22:00, +1,1,4152,2026,1,1,,0,,,6,22,24,6/22/26 23:00, +1,1,4153,2026,1,1,,0,,,6,23,1,6/23/26 0:00, +1,1,4154,2026,1,1,,0,,,6,23,2,6/23/26 1:00, +1,1,4155,2026,1,1,,0,,,6,23,3,6/23/26 2:00, +1,1,4156,2026,1,1,,0,,,6,23,4,6/23/26 3:00, +1,1,4157,2026,1,1,,0,,,6,23,5,6/23/26 4:00, +1,1,4158,2026,1,1,,0,,,6,23,6,6/23/26 5:00, +1,1,4159,2026,1,1,,0,,,6,23,7,6/23/26 6:00, +1,1,4160,2026,1,1,,0,,,6,23,8,6/23/26 7:00, +1,1,4161,2026,1,1,,0,,,6,23,9,6/23/26 8:00, +1,1,4162,2026,1,1,,0,,,6,23,10,6/23/26 9:00, +1,1,4163,2026,1,1,,0,,,6,23,11,6/23/26 10:00, +1,1,4164,2026,1,1,,0,,,6,23,12,6/23/26 11:00, +1,1,4165,2026,1,1,,0,,,6,23,13,6/23/26 12:00, +1,1,4166,2026,1,1,,0,,,6,23,14,6/23/26 13:00, +1,1,4167,2026,1,1,,0,,,6,23,15,6/23/26 14:00, +1,1,4168,2026,1,1,,0,,,6,23,16,6/23/26 15:00, +1,1,4169,2026,1,1,,0,,,6,23,17,6/23/26 16:00, +1,1,4170,2026,1,1,,0,,,6,23,18,6/23/26 17:00, +1,1,4171,2026,1,1,,0,,,6,23,19,6/23/26 18:00, +1,1,4172,2026,1,1,,0,,,6,23,20,6/23/26 19:00, +1,1,4173,2026,1,1,,0,,,6,23,21,6/23/26 20:00, +1,1,4174,2026,1,1,,0,,,6,23,22,6/23/26 21:00, +1,1,4175,2026,1,1,,0,,,6,23,23,6/23/26 22:00, +1,1,4176,2026,1,1,,0,,,6,23,24,6/23/26 23:00, +1,1,4177,2026,1,1,,0,,,6,24,1,6/24/26 0:00, +1,1,4178,2026,1,1,,0,,,6,24,2,6/24/26 1:00, +1,1,4179,2026,1,1,,0,,,6,24,3,6/24/26 2:00, +1,1,4180,2026,1,1,,0,,,6,24,4,6/24/26 3:00, +1,1,4181,2026,1,1,,0,,,6,24,5,6/24/26 4:00, +1,1,4182,2026,1,1,,0,,,6,24,6,6/24/26 5:00, +1,1,4183,2026,1,1,,0,,,6,24,7,6/24/26 6:00, +1,1,4184,2026,1,1,,0,,,6,24,8,6/24/26 7:00, +1,1,4185,2026,1,1,,0,,,6,24,9,6/24/26 8:00, +1,1,4186,2026,1,1,,0,,,6,24,10,6/24/26 9:00, +1,1,4187,2026,1,1,,0,,,6,24,11,6/24/26 10:00, +1,1,4188,2026,1,1,,0,,,6,24,12,6/24/26 11:00, +1,1,4189,2026,1,1,,0,,,6,24,13,6/24/26 12:00, +1,1,4190,2026,1,1,,0,,,6,24,14,6/24/26 13:00, +1,1,4191,2026,1,1,,0,,,6,24,15,6/24/26 14:00, +1,1,4192,2026,1,1,,0,,,6,24,16,6/24/26 15:00, +1,1,4193,2026,1,1,,0,,,6,24,17,6/24/26 16:00, +1,1,4194,2026,1,1,,0,,,6,24,18,6/24/26 17:00, +1,1,4195,2026,1,1,,0,,,6,24,19,6/24/26 18:00, +1,1,4196,2026,1,1,,0,,,6,24,20,6/24/26 19:00, +1,1,4197,2026,1,1,,0,,,6,24,21,6/24/26 20:00, +1,1,4198,2026,1,1,,0,,,6,24,22,6/24/26 21:00, +1,1,4199,2026,1,1,,0,,,6,24,23,6/24/26 22:00, +1,1,4200,2026,1,1,,0,,,6,24,24,6/24/26 23:00, +1,1,4201,2026,1,1,,0,,,6,25,1,6/25/26 0:00, +1,1,4202,2026,1,1,,0,,,6,25,2,6/25/26 1:00, +1,1,4203,2026,1,1,,0,,,6,25,3,6/25/26 2:00, +1,1,4204,2026,1,1,,0,,,6,25,4,6/25/26 3:00, +1,1,4205,2026,1,1,,0,,,6,25,5,6/25/26 4:00, +1,1,4206,2026,1,1,,0,,,6,25,6,6/25/26 5:00, +1,1,4207,2026,1,1,,0,,,6,25,7,6/25/26 6:00, +1,1,4208,2026,1,1,,0,,,6,25,8,6/25/26 7:00, +1,1,4209,2026,1,1,,0,,,6,25,9,6/25/26 8:00, +1,1,4210,2026,1,1,,0,,,6,25,10,6/25/26 9:00, +1,1,4211,2026,1,1,,0,,,6,25,11,6/25/26 10:00, +1,1,4212,2026,1,1,,0,,,6,25,12,6/25/26 11:00, +1,1,4213,2026,1,1,,0,,,6,25,13,6/25/26 12:00, +1,1,4214,2026,1,1,,0,,,6,25,14,6/25/26 13:00, +1,1,4215,2026,1,1,,0,,,6,25,15,6/25/26 14:00, +1,1,4216,2026,1,1,,0,,,6,25,16,6/25/26 15:00, +1,1,4217,2026,1,1,,0,,,6,25,17,6/25/26 16:00, +1,1,4218,2026,1,1,,0,,,6,25,18,6/25/26 17:00, +1,1,4219,2026,1,1,,0,,,6,25,19,6/25/26 18:00, +1,1,4220,2026,1,1,,0,,,6,25,20,6/25/26 19:00, +1,1,4221,2026,1,1,,0,,,6,25,21,6/25/26 20:00, +1,1,4222,2026,1,1,,0,,,6,25,22,6/25/26 21:00, +1,1,4223,2026,1,1,,0,,,6,25,23,6/25/26 22:00, +1,1,4224,2026,1,1,,0,,,6,25,24,6/25/26 23:00, +1,1,4225,2026,1,1,,0,,,6,26,1,6/26/26 0:00, +1,1,4226,2026,1,1,,0,,,6,26,2,6/26/26 1:00, +1,1,4227,2026,1,1,,0,,,6,26,3,6/26/26 2:00, +1,1,4228,2026,1,1,,0,,,6,26,4,6/26/26 3:00, +1,1,4229,2026,1,1,,0,,,6,26,5,6/26/26 4:00, +1,1,4230,2026,1,1,,0,,,6,26,6,6/26/26 5:00, +1,1,4231,2026,1,1,,0,,,6,26,7,6/26/26 6:00, +1,1,4232,2026,1,1,,0,,,6,26,8,6/26/26 7:00, +1,1,4233,2026,1,1,,0,,,6,26,9,6/26/26 8:00, +1,1,4234,2026,1,1,,0,,,6,26,10,6/26/26 9:00, +1,1,4235,2026,1,1,,0,,,6,26,11,6/26/26 10:00, +1,1,4236,2026,1,1,,0,,,6,26,12,6/26/26 11:00, +1,1,4237,2026,1,1,,0,,,6,26,13,6/26/26 12:00, +1,1,4238,2026,1,1,,0,,,6,26,14,6/26/26 13:00, +1,1,4239,2026,1,1,,0,,,6,26,15,6/26/26 14:00, +1,1,4240,2026,1,1,,0,,,6,26,16,6/26/26 15:00, +1,1,4241,2026,1,1,,0,,,6,26,17,6/26/26 16:00, +1,1,4242,2026,1,1,,0,,,6,26,18,6/26/26 17:00, +1,1,4243,2026,1,1,,0,,,6,26,19,6/26/26 18:00, +1,1,4244,2026,1,1,,0,,,6,26,20,6/26/26 19:00, +1,1,4245,2026,1,1,,0,,,6,26,21,6/26/26 20:00, +1,1,4246,2026,1,1,,0,,,6,26,22,6/26/26 21:00, +1,1,4247,2026,1,1,,0,,,6,26,23,6/26/26 22:00, +1,1,4248,2026,1,1,,0,,,6,26,24,6/26/26 23:00, +1,1,4249,2026,1,1,,0,,,6,27,1,6/27/26 0:00, +1,1,4250,2026,1,1,,0,,,6,27,2,6/27/26 1:00, +1,1,4251,2026,1,1,,0,,,6,27,3,6/27/26 2:00, +1,1,4252,2026,1,1,,0,,,6,27,4,6/27/26 3:00, +1,1,4253,2026,1,1,,0,,,6,27,5,6/27/26 4:00, +1,1,4254,2026,1,1,,0,,,6,27,6,6/27/26 5:00, +1,1,4255,2026,1,1,,0,,,6,27,7,6/27/26 6:00, +1,1,4256,2026,1,1,,0,,,6,27,8,6/27/26 7:00, +1,1,4257,2026,1,1,,0,,,6,27,9,6/27/26 8:00, +1,1,4258,2026,1,1,,0,,,6,27,10,6/27/26 9:00, +1,1,4259,2026,1,1,,0,,,6,27,11,6/27/26 10:00, +1,1,4260,2026,1,1,,0,,,6,27,12,6/27/26 11:00, +1,1,4261,2026,1,1,,0,,,6,27,13,6/27/26 12:00, +1,1,4262,2026,1,1,,0,,,6,27,14,6/27/26 13:00, +1,1,4263,2026,1,1,,0,,,6,27,15,6/27/26 14:00, +1,1,4264,2026,1,1,,0,,,6,27,16,6/27/26 15:00, +1,1,4265,2026,1,1,,0,,,6,27,17,6/27/26 16:00, +1,1,4266,2026,1,1,,0,,,6,27,18,6/27/26 17:00, +1,1,4267,2026,1,1,,0,,,6,27,19,6/27/26 18:00, +1,1,4268,2026,1,1,,0,,,6,27,20,6/27/26 19:00, +1,1,4269,2026,1,1,,0,,,6,27,21,6/27/26 20:00, +1,1,4270,2026,1,1,,0,,,6,27,22,6/27/26 21:00, +1,1,4271,2026,1,1,,0,,,6,27,23,6/27/26 22:00, +1,1,4272,2026,1,1,,0,,,6,27,24,6/27/26 23:00, +1,1,4273,2026,1,1,,0,,,6,28,1,6/28/26 0:00, +1,1,4274,2026,1,1,,0,,,6,28,2,6/28/26 1:00, +1,1,4275,2026,1,1,,0,,,6,28,3,6/28/26 2:00, +1,1,4276,2026,1,1,,0,,,6,28,4,6/28/26 3:00, +1,1,4277,2026,1,1,,0,,,6,28,5,6/28/26 4:00, +1,1,4278,2026,1,1,,0,,,6,28,6,6/28/26 5:00, +1,1,4279,2026,1,1,,0,,,6,28,7,6/28/26 6:00, +1,1,4280,2026,1,1,,0,,,6,28,8,6/28/26 7:00, +1,1,4281,2026,1,1,,0,,,6,28,9,6/28/26 8:00, +1,1,4282,2026,1,1,,0,,,6,28,10,6/28/26 9:00, +1,1,4283,2026,1,1,,0,,,6,28,11,6/28/26 10:00, +1,1,4284,2026,1,1,,0,,,6,28,12,6/28/26 11:00, +1,1,4285,2026,1,1,,0,,,6,28,13,6/28/26 12:00, +1,1,4286,2026,1,1,,0,,,6,28,14,6/28/26 13:00, +1,1,4287,2026,1,1,,0,,,6,28,15,6/28/26 14:00, +1,1,4288,2026,1,1,,0,,,6,28,16,6/28/26 15:00, +1,1,4289,2026,1,1,,0,,,6,28,17,6/28/26 16:00, +1,1,4290,2026,1,1,,0,,,6,28,18,6/28/26 17:00, +1,1,4291,2026,1,1,,0,,,6,28,19,6/28/26 18:00, +1,1,4292,2026,1,1,,0,,,6,28,20,6/28/26 19:00, +1,1,4293,2026,1,1,,0,,,6,28,21,6/28/26 20:00, +1,1,4294,2026,1,1,,0,,,6,28,22,6/28/26 21:00, +1,1,4295,2026,1,1,,0,,,6,28,23,6/28/26 22:00, +1,1,4296,2026,1,1,,0,,,6,28,24,6/28/26 23:00, +1,1,4297,2026,1,1,,0,,,6,29,1,6/29/26 0:00, +1,1,4298,2026,1,1,,0,,,6,29,2,6/29/26 1:00, +1,1,4299,2026,1,1,,0,,,6,29,3,6/29/26 2:00, +1,1,4300,2026,1,1,,0,,,6,29,4,6/29/26 3:00, +1,1,4301,2026,1,1,,0,,,6,29,5,6/29/26 4:00, +1,1,4302,2026,1,1,,0,,,6,29,6,6/29/26 5:00, +1,1,4303,2026,1,1,,0,,,6,29,7,6/29/26 6:00, +1,1,4304,2026,1,1,,0,,,6,29,8,6/29/26 7:00, +1,1,4305,2026,1,1,,0,,,6,29,9,6/29/26 8:00, +1,1,4306,2026,1,1,,0,,,6,29,10,6/29/26 9:00, +1,1,4307,2026,1,1,,0,,,6,29,11,6/29/26 10:00, +1,1,4308,2026,1,1,,0,,,6,29,12,6/29/26 11:00, +1,1,4309,2026,1,1,,0,,,6,29,13,6/29/26 12:00, +1,1,4310,2026,1,1,,0,,,6,29,14,6/29/26 13:00, +1,1,4311,2026,1,1,,0,,,6,29,15,6/29/26 14:00, +1,1,4312,2026,1,1,,0,,,6,29,16,6/29/26 15:00, +1,1,4313,2026,1,1,,0,,,6,29,17,6/29/26 16:00, +1,1,4314,2026,1,1,,0,,,6,29,18,6/29/26 17:00, +1,1,4315,2026,1,1,,0,,,6,29,19,6/29/26 18:00, +1,1,4316,2026,1,1,,0,,,6,29,20,6/29/26 19:00, +1,1,4317,2026,1,1,,0,,,6,29,21,6/29/26 20:00, +1,1,4318,2026,1,1,,0,,,6,29,22,6/29/26 21:00, +1,1,4319,2026,1,1,,0,,,6,29,23,6/29/26 22:00, +1,1,4320,2026,1,1,,0,,,6,29,24,6/29/26 23:00, +1,1,4321,2026,1,1,,0,,,6,30,1,6/30/26 0:00, +1,1,4322,2026,1,1,,0,,,6,30,2,6/30/26 1:00, +1,1,4323,2026,1,1,,0,,,6,30,3,6/30/26 2:00, +1,1,4324,2026,1,1,,0,,,6,30,4,6/30/26 3:00, +1,1,4325,2026,1,1,,0,,,6,30,5,6/30/26 4:00, +1,1,4326,2026,1,1,,0,,,6,30,6,6/30/26 5:00, +1,1,4327,2026,1,1,,0,,,6,30,7,6/30/26 6:00, +1,1,4328,2026,1,1,,0,,,6,30,8,6/30/26 7:00, +1,1,4329,2026,1,1,,0,,,6,30,9,6/30/26 8:00, +1,1,4330,2026,1,1,,0,,,6,30,10,6/30/26 9:00, +1,1,4331,2026,1,1,,0,,,6,30,11,6/30/26 10:00, +1,1,4332,2026,1,1,,0,,,6,30,12,6/30/26 11:00, +1,1,4333,2026,1,1,,0,,,6,30,13,6/30/26 12:00, +1,1,4334,2026,1,1,,0,,,6,30,14,6/30/26 13:00, +1,1,4335,2026,1,1,,0,,,6,30,15,6/30/26 14:00, +1,1,4336,2026,1,1,,0,,,6,30,16,6/30/26 15:00, +1,1,4337,2026,1,1,,0,,,6,30,17,6/30/26 16:00, +1,1,4338,2026,1,1,,0,,,6,30,18,6/30/26 17:00, +1,1,4339,2026,1,1,,0,,,6,30,19,6/30/26 18:00, +1,1,4340,2026,1,1,,0,,,6,30,20,6/30/26 19:00, +1,1,4341,2026,1,1,,0,,,6,30,21,6/30/26 20:00, +1,1,4342,2026,1,1,,0,,,6,30,22,6/30/26 21:00, +1,1,4343,2026,1,1,,0,,,6,30,23,6/30/26 22:00, +1,1,4344,2026,1,1,,0,,,6,30,24,6/30/26 23:00, +1,1,4345,2026,1,1,,0,,,7,1,1,7/1/26 0:00, +1,1,4346,2026,1,1,,0,,,7,1,2,7/1/26 1:00, +1,1,4347,2026,1,1,,0,,,7,1,3,7/1/26 2:00, +1,1,4348,2026,1,1,,0,,,7,1,4,7/1/26 3:00, +1,1,4349,2026,1,1,,0,,,7,1,5,7/1/26 4:00, +1,1,4350,2026,1,1,,0,,,7,1,6,7/1/26 5:00, +1,1,4351,2026,1,1,,0,,,7,1,7,7/1/26 6:00, +1,1,4352,2026,1,1,,0,,,7,1,8,7/1/26 7:00, +1,1,4353,2026,1,1,,0,,,7,1,9,7/1/26 8:00, +1,1,4354,2026,1,1,,0,,,7,1,10,7/1/26 9:00, +1,1,4355,2026,1,1,,0,,,7,1,11,7/1/26 10:00, +1,1,4356,2026,1,1,,0,,,7,1,12,7/1/26 11:00, +1,1,4357,2026,1,1,,0,,,7,1,13,7/1/26 12:00, +1,1,4358,2026,1,1,,0,,,7,1,14,7/1/26 13:00, +1,1,4359,2026,1,1,,0,,,7,1,15,7/1/26 14:00, +1,1,4360,2026,1,1,,0,,,7,1,16,7/1/26 15:00, +1,1,4361,2026,1,1,,0,,,7,1,17,7/1/26 16:00, +1,1,4362,2026,1,1,,0,,,7,1,18,7/1/26 17:00, +1,1,4363,2026,1,1,,0,,,7,1,19,7/1/26 18:00, +1,1,4364,2026,1,1,,0,,,7,1,20,7/1/26 19:00, +1,1,4365,2026,1,1,,0,,,7,1,21,7/1/26 20:00, +1,1,4366,2026,1,1,,0,,,7,1,22,7/1/26 21:00, +1,1,4367,2026,1,1,,0,,,7,1,23,7/1/26 22:00, +1,1,4368,2026,1,1,,0,,,7,1,24,7/1/26 23:00, +1,1,4369,2026,1,1,,0,,,7,2,1,7/2/26 0:00, +1,1,4370,2026,1,1,,0,,,7,2,2,7/2/26 1:00, +1,1,4371,2026,1,1,,0,,,7,2,3,7/2/26 2:00, +1,1,4372,2026,1,1,,0,,,7,2,4,7/2/26 3:00, +1,1,4373,2026,1,1,,0,,,7,2,5,7/2/26 4:00, +1,1,4374,2026,1,1,,0,,,7,2,6,7/2/26 5:00, +1,1,4375,2026,1,1,,0,,,7,2,7,7/2/26 6:00, +1,1,4376,2026,1,1,,0,,,7,2,8,7/2/26 7:00, +1,1,4377,2026,1,1,,0,,,7,2,9,7/2/26 8:00, +1,1,4378,2026,1,1,,0,,,7,2,10,7/2/26 9:00, +1,1,4379,2026,1,1,,0,,,7,2,11,7/2/26 10:00, +1,1,4380,2026,1,1,,0,,,7,2,12,7/2/26 11:00, +1,1,4381,2026,1,1,,0,,,7,2,13,7/2/26 12:00, +1,1,4382,2026,1,1,,0,,,7,2,14,7/2/26 13:00, +1,1,4383,2026,1,1,,0,,,7,2,15,7/2/26 14:00, +1,1,4384,2026,1,1,,0,,,7,2,16,7/2/26 15:00, +1,1,4385,2026,1,1,,0,,,7,2,17,7/2/26 16:00, +1,1,4386,2026,1,1,,0,,,7,2,18,7/2/26 17:00, +1,1,4387,2026,1,1,,0,,,7,2,19,7/2/26 18:00, +1,1,4388,2026,1,1,,0,,,7,2,20,7/2/26 19:00, +1,1,4389,2026,1,1,,0,,,7,2,21,7/2/26 20:00, +1,1,4390,2026,1,1,,0,,,7,2,22,7/2/26 21:00, +1,1,4391,2026,1,1,,0,,,7,2,23,7/2/26 22:00, +1,1,4392,2026,1,1,,0,,,7,2,24,7/2/26 23:00, +1,1,4393,2026,1,1,,0,,,7,3,1,7/3/26 0:00, +1,1,4394,2026,1,1,,0,,,7,3,2,7/3/26 1:00, +1,1,4395,2026,1,1,,0,,,7,3,3,7/3/26 2:00, +1,1,4396,2026,1,1,,0,,,7,3,4,7/3/26 3:00, +1,1,4397,2026,1,1,,0,,,7,3,5,7/3/26 4:00, +1,1,4398,2026,1,1,,0,,,7,3,6,7/3/26 5:00, +1,1,4399,2026,1,1,,0,,,7,3,7,7/3/26 6:00, +1,1,4400,2026,1,1,,0,,,7,3,8,7/3/26 7:00, +1,1,4401,2026,1,1,,0,,,7,3,9,7/3/26 8:00, +1,1,4402,2026,1,1,,0,,,7,3,10,7/3/26 9:00, +1,1,4403,2026,1,1,,0,,,7,3,11,7/3/26 10:00, +1,1,4404,2026,1,1,,0,,,7,3,12,7/3/26 11:00, +1,1,4405,2026,1,1,,0,,,7,3,13,7/3/26 12:00, +1,1,4406,2026,1,1,,0,,,7,3,14,7/3/26 13:00, +1,1,4407,2026,1,1,,0,,,7,3,15,7/3/26 14:00, +1,1,4408,2026,1,1,,0,,,7,3,16,7/3/26 15:00, +1,1,4409,2026,1,1,,0,,,7,3,17,7/3/26 16:00, +1,1,4410,2026,1,1,,0,,,7,3,18,7/3/26 17:00, +1,1,4411,2026,1,1,,0,,,7,3,19,7/3/26 18:00, +1,1,4412,2026,1,1,,0,,,7,3,20,7/3/26 19:00, +1,1,4413,2026,1,1,,0,,,7,3,21,7/3/26 20:00, +1,1,4414,2026,1,1,,0,,,7,3,22,7/3/26 21:00, +1,1,4415,2026,1,1,,0,,,7,3,23,7/3/26 22:00, +1,1,4416,2026,1,1,,0,,,7,3,24,7/3/26 23:00, +1,1,4417,2026,1,1,,0,,,7,4,1,7/4/26 0:00, +1,1,4418,2026,1,1,,0,,,7,4,2,7/4/26 1:00, +1,1,4419,2026,1,1,,0,,,7,4,3,7/4/26 2:00, +1,1,4420,2026,1,1,,0,,,7,4,4,7/4/26 3:00, +1,1,4421,2026,1,1,,0,,,7,4,5,7/4/26 4:00, +1,1,4422,2026,1,1,,0,,,7,4,6,7/4/26 5:00, +1,1,4423,2026,1,1,,0,,,7,4,7,7/4/26 6:00, +1,1,4424,2026,1,1,,0,,,7,4,8,7/4/26 7:00, +1,1,4425,2026,1,1,,0,,,7,4,9,7/4/26 8:00, +1,1,4426,2026,1,1,,0,,,7,4,10,7/4/26 9:00, +1,1,4427,2026,1,1,,0,,,7,4,11,7/4/26 10:00, +1,1,4428,2026,1,1,,0,,,7,4,12,7/4/26 11:00, +1,1,4429,2026,1,1,,0,,,7,4,13,7/4/26 12:00, +1,1,4430,2026,1,1,,0,,,7,4,14,7/4/26 13:00, +1,1,4431,2026,1,1,,0,,,7,4,15,7/4/26 14:00, +1,1,4432,2026,1,1,,0,,,7,4,16,7/4/26 15:00, +1,1,4433,2026,1,1,,0,,,7,4,17,7/4/26 16:00, +1,1,4434,2026,1,1,,0,,,7,4,18,7/4/26 17:00, +1,1,4435,2026,1,1,,0,,,7,4,19,7/4/26 18:00, +1,1,4436,2026,1,1,,0,,,7,4,20,7/4/26 19:00, +1,1,4437,2026,1,1,,0,,,7,4,21,7/4/26 20:00, +1,1,4438,2026,1,1,,0,,,7,4,22,7/4/26 21:00, +1,1,4439,2026,1,1,,0,,,7,4,23,7/4/26 22:00, +1,1,4440,2026,1,1,,0,,,7,4,24,7/4/26 23:00, +1,1,4441,2026,1,1,,0,,,7,5,1,7/5/26 0:00, +1,1,4442,2026,1,1,,0,,,7,5,2,7/5/26 1:00, +1,1,4443,2026,1,1,,0,,,7,5,3,7/5/26 2:00, +1,1,4444,2026,1,1,,0,,,7,5,4,7/5/26 3:00, +1,1,4445,2026,1,1,,0,,,7,5,5,7/5/26 4:00, +1,1,4446,2026,1,1,,0,,,7,5,6,7/5/26 5:00, +1,1,4447,2026,1,1,,0,,,7,5,7,7/5/26 6:00, +1,1,4448,2026,1,1,,0,,,7,5,8,7/5/26 7:00, +1,1,4449,2026,1,1,,0,,,7,5,9,7/5/26 8:00, +1,1,4450,2026,1,1,,0,,,7,5,10,7/5/26 9:00, +1,1,4451,2026,1,1,,0,,,7,5,11,7/5/26 10:00, +1,1,4452,2026,1,1,,0,,,7,5,12,7/5/26 11:00, +1,1,4453,2026,1,1,,0,,,7,5,13,7/5/26 12:00, +1,1,4454,2026,1,1,,0,,,7,5,14,7/5/26 13:00, +1,1,4455,2026,1,1,,0,,,7,5,15,7/5/26 14:00, +1,1,4456,2026,1,1,,0,,,7,5,16,7/5/26 15:00, +1,1,4457,2026,1,1,,0,,,7,5,17,7/5/26 16:00, +1,1,4458,2026,1,1,,0,,,7,5,18,7/5/26 17:00, +1,1,4459,2026,1,1,,0,,,7,5,19,7/5/26 18:00, +1,1,4460,2026,1,1,,0,,,7,5,20,7/5/26 19:00, +1,1,4461,2026,1,1,,0,,,7,5,21,7/5/26 20:00, +1,1,4462,2026,1,1,,0,,,7,5,22,7/5/26 21:00, +1,1,4463,2026,1,1,,0,,,7,5,23,7/5/26 22:00, +1,1,4464,2026,1,1,,0,,,7,5,24,7/5/26 23:00, +1,1,4465,2026,1,1,,0,,,7,6,1,7/6/26 0:00, +1,1,4466,2026,1,1,,0,,,7,6,2,7/6/26 1:00, +1,1,4467,2026,1,1,,0,,,7,6,3,7/6/26 2:00, +1,1,4468,2026,1,1,,0,,,7,6,4,7/6/26 3:00, +1,1,4469,2026,1,1,,0,,,7,6,5,7/6/26 4:00, +1,1,4470,2026,1,1,,0,,,7,6,6,7/6/26 5:00, +1,1,4471,2026,1,1,,0,,,7,6,7,7/6/26 6:00, +1,1,4472,2026,1,1,,0,,,7,6,8,7/6/26 7:00, +1,1,4473,2026,1,1,,0,,,7,6,9,7/6/26 8:00, +1,1,4474,2026,1,1,,0,,,7,6,10,7/6/26 9:00, +1,1,4475,2026,1,1,,0,,,7,6,11,7/6/26 10:00, +1,1,4476,2026,1,1,,0,,,7,6,12,7/6/26 11:00, +1,1,4477,2026,1,1,,0,,,7,6,13,7/6/26 12:00, +1,1,4478,2026,1,1,,0,,,7,6,14,7/6/26 13:00, +1,1,4479,2026,1,1,,0,,,7,6,15,7/6/26 14:00, +1,1,4480,2026,1,1,,0,,,7,6,16,7/6/26 15:00, +1,1,4481,2026,1,1,,0,,,7,6,17,7/6/26 16:00, +1,1,4482,2026,1,1,,0,,,7,6,18,7/6/26 17:00, +1,1,4483,2026,1,1,,0,,,7,6,19,7/6/26 18:00, +1,1,4484,2026,1,1,,0,,,7,6,20,7/6/26 19:00, +1,1,4485,2026,1,1,,0,,,7,6,21,7/6/26 20:00, +1,1,4486,2026,1,1,,0,,,7,6,22,7/6/26 21:00, +1,1,4487,2026,1,1,,0,,,7,6,23,7/6/26 22:00, +1,1,4488,2026,1,1,,0,,,7,6,24,7/6/26 23:00, +1,1,4489,2026,1,1,,0,,,7,7,1,7/7/26 0:00, +1,1,4490,2026,1,1,,0,,,7,7,2,7/7/26 1:00, +1,1,4491,2026,1,1,,0,,,7,7,3,7/7/26 2:00, +1,1,4492,2026,1,1,,0,,,7,7,4,7/7/26 3:00, +1,1,4493,2026,1,1,,0,,,7,7,5,7/7/26 4:00, +1,1,4494,2026,1,1,,0,,,7,7,6,7/7/26 5:00, +1,1,4495,2026,1,1,,0,,,7,7,7,7/7/26 6:00, +1,1,4496,2026,1,1,,0,,,7,7,8,7/7/26 7:00, +1,1,4497,2026,1,1,,0,,,7,7,9,7/7/26 8:00, +1,1,4498,2026,1,1,,0,,,7,7,10,7/7/26 9:00, +1,1,4499,2026,1,1,,0,,,7,7,11,7/7/26 10:00, +1,1,4500,2026,1,1,,0,,,7,7,12,7/7/26 11:00, +1,1,4501,2026,1,1,,0,,,7,7,13,7/7/26 12:00, +1,1,4502,2026,1,1,,0,,,7,7,14,7/7/26 13:00, +1,1,4503,2026,1,1,,0,,,7,7,15,7/7/26 14:00, +1,1,4504,2026,1,1,,0,,,7,7,16,7/7/26 15:00, +1,1,4505,2026,1,1,,0,,,7,7,17,7/7/26 16:00, +1,1,4506,2026,1,1,,0,,,7,7,18,7/7/26 17:00, +1,1,4507,2026,1,1,,0,,,7,7,19,7/7/26 18:00, +1,1,4508,2026,1,1,,0,,,7,7,20,7/7/26 19:00, +1,1,4509,2026,1,1,,0,,,7,7,21,7/7/26 20:00, +1,1,4510,2026,1,1,,0,,,7,7,22,7/7/26 21:00, +1,1,4511,2026,1,1,,0,,,7,7,23,7/7/26 22:00, +1,1,4512,2026,1,1,,0,,,7,7,24,7/7/26 23:00, +1,1,4513,2026,1,1,,0,,,7,8,1,7/8/26 0:00, +1,1,4514,2026,1,1,,0,,,7,8,2,7/8/26 1:00, +1,1,4515,2026,1,1,,0,,,7,8,3,7/8/26 2:00, +1,1,4516,2026,1,1,,0,,,7,8,4,7/8/26 3:00, +1,1,4517,2026,1,1,,0,,,7,8,5,7/8/26 4:00, +1,1,4518,2026,1,1,,0,,,7,8,6,7/8/26 5:00, +1,1,4519,2026,1,1,,0,,,7,8,7,7/8/26 6:00, +1,1,4520,2026,1,1,,0,,,7,8,8,7/8/26 7:00, +1,1,4521,2026,1,1,,0,,,7,8,9,7/8/26 8:00, +1,1,4522,2026,1,1,,0,,,7,8,10,7/8/26 9:00, +1,1,4523,2026,1,1,,0,,,7,8,11,7/8/26 10:00, +1,1,4524,2026,1,1,,0,,,7,8,12,7/8/26 11:00, +1,1,4525,2026,1,1,,0,,,7,8,13,7/8/26 12:00, +1,1,4526,2026,1,1,,0,,,7,8,14,7/8/26 13:00, +1,1,4527,2026,1,1,,0,,,7,8,15,7/8/26 14:00, +1,1,4528,2026,1,1,,0,,,7,8,16,7/8/26 15:00, +1,1,4529,2026,1,1,,0,,,7,8,17,7/8/26 16:00, +1,1,4530,2026,1,1,,0,,,7,8,18,7/8/26 17:00, +1,1,4531,2026,1,1,,0,,,7,8,19,7/8/26 18:00, +1,1,4532,2026,1,1,,0,,,7,8,20,7/8/26 19:00, +1,1,4533,2026,1,1,,0,,,7,8,21,7/8/26 20:00, +1,1,4534,2026,1,1,,0,,,7,8,22,7/8/26 21:00, +1,1,4535,2026,1,1,,0,,,7,8,23,7/8/26 22:00, +1,1,4536,2026,1,1,,0,,,7,8,24,7/8/26 23:00, +1,1,4537,2026,1,1,,0,,,7,9,1,7/9/26 0:00, +1,1,4538,2026,1,1,,0,,,7,9,2,7/9/26 1:00, +1,1,4539,2026,1,1,,0,,,7,9,3,7/9/26 2:00, +1,1,4540,2026,1,1,,0,,,7,9,4,7/9/26 3:00, +1,1,4541,2026,1,1,,0,,,7,9,5,7/9/26 4:00, +1,1,4542,2026,1,1,,0,,,7,9,6,7/9/26 5:00, +1,1,4543,2026,1,1,,0,,,7,9,7,7/9/26 6:00, +1,1,4544,2026,1,1,,0,,,7,9,8,7/9/26 7:00, +1,1,4545,2026,1,1,,0,,,7,9,9,7/9/26 8:00, +1,1,4546,2026,1,1,,0,,,7,9,10,7/9/26 9:00, +1,1,4547,2026,1,1,,0,,,7,9,11,7/9/26 10:00, +1,1,4548,2026,1,1,,0,,,7,9,12,7/9/26 11:00, +1,1,4549,2026,1,1,,0,,,7,9,13,7/9/26 12:00, +1,1,4550,2026,1,1,,0,,,7,9,14,7/9/26 13:00, +1,1,4551,2026,1,1,,0,,,7,9,15,7/9/26 14:00, +1,1,4552,2026,1,1,,0,,,7,9,16,7/9/26 15:00, +1,1,4553,2026,1,1,,0,,,7,9,17,7/9/26 16:00, +1,1,4554,2026,1,1,,0,,,7,9,18,7/9/26 17:00, +1,1,4555,2026,1,1,,0,,,7,9,19,7/9/26 18:00, +1,1,4556,2026,1,1,,0,,,7,9,20,7/9/26 19:00, +1,1,4557,2026,1,1,,0,,,7,9,21,7/9/26 20:00, +1,1,4558,2026,1,1,,0,,,7,9,22,7/9/26 21:00, +1,1,4559,2026,1,1,,0,,,7,9,23,7/9/26 22:00, +1,1,4560,2026,1,1,,0,,,7,9,24,7/9/26 23:00, +1,1,4561,2026,1,1,,0,,,7,10,1,7/10/26 0:00, +1,1,4562,2026,1,1,,0,,,7,10,2,7/10/26 1:00, +1,1,4563,2026,1,1,,0,,,7,10,3,7/10/26 2:00, +1,1,4564,2026,1,1,,0,,,7,10,4,7/10/26 3:00, +1,1,4565,2026,1,1,,0,,,7,10,5,7/10/26 4:00, +1,1,4566,2026,1,1,,0,,,7,10,6,7/10/26 5:00, +1,1,4567,2026,1,1,,0,,,7,10,7,7/10/26 6:00, +1,1,4568,2026,1,1,,0,,,7,10,8,7/10/26 7:00, +1,1,4569,2026,1,1,,0,,,7,10,9,7/10/26 8:00, +1,1,4570,2026,1,1,,0,,,7,10,10,7/10/26 9:00, +1,1,4571,2026,1,1,,0,,,7,10,11,7/10/26 10:00, +1,1,4572,2026,1,1,,0,,,7,10,12,7/10/26 11:00, +1,1,4573,2026,1,1,,0,,,7,10,13,7/10/26 12:00, +1,1,4574,2026,1,1,,0,,,7,10,14,7/10/26 13:00, +1,1,4575,2026,1,1,,0,,,7,10,15,7/10/26 14:00, +1,1,4576,2026,1,1,,0,,,7,10,16,7/10/26 15:00, +1,1,4577,2026,1,1,,0,,,7,10,17,7/10/26 16:00, +1,1,4578,2026,1,1,,0,,,7,10,18,7/10/26 17:00, +1,1,4579,2026,1,1,,0,,,7,10,19,7/10/26 18:00, +1,1,4580,2026,1,1,,0,,,7,10,20,7/10/26 19:00, +1,1,4581,2026,1,1,,0,,,7,10,21,7/10/26 20:00, +1,1,4582,2026,1,1,,0,,,7,10,22,7/10/26 21:00, +1,1,4583,2026,1,1,,0,,,7,10,23,7/10/26 22:00, +1,1,4584,2026,1,1,,0,,,7,10,24,7/10/26 23:00, +1,1,4585,2026,1,1,,0,,,7,11,1,7/11/26 0:00, +1,1,4586,2026,1,1,,0,,,7,11,2,7/11/26 1:00, +1,1,4587,2026,1,1,,0,,,7,11,3,7/11/26 2:00, +1,1,4588,2026,1,1,,0,,,7,11,4,7/11/26 3:00, +1,1,4589,2026,1,1,,0,,,7,11,5,7/11/26 4:00, +1,1,4590,2026,1,1,,0,,,7,11,6,7/11/26 5:00, +1,1,4591,2026,1,1,,0,,,7,11,7,7/11/26 6:00, +1,1,4592,2026,1,1,,0,,,7,11,8,7/11/26 7:00, +1,1,4593,2026,1,1,,0,,,7,11,9,7/11/26 8:00, +1,1,4594,2026,1,1,,0,,,7,11,10,7/11/26 9:00, +1,1,4595,2026,1,1,,0,,,7,11,11,7/11/26 10:00, +1,1,4596,2026,1,1,,0,,,7,11,12,7/11/26 11:00, +1,1,4597,2026,1,1,,0,,,7,11,13,7/11/26 12:00, +1,1,4598,2026,1,1,,0,,,7,11,14,7/11/26 13:00, +1,1,4599,2026,1,1,,0,,,7,11,15,7/11/26 14:00, +1,1,4600,2026,1,1,,0,,,7,11,16,7/11/26 15:00, +1,1,4601,2026,1,1,,0,,,7,11,17,7/11/26 16:00, +1,1,4602,2026,1,1,,0,,,7,11,18,7/11/26 17:00, +1,1,4603,2026,1,1,,0,,,7,11,19,7/11/26 18:00, +1,1,4604,2026,1,1,,0,,,7,11,20,7/11/26 19:00, +1,1,4605,2026,1,1,,0,,,7,11,21,7/11/26 20:00, +1,1,4606,2026,1,1,,0,,,7,11,22,7/11/26 21:00, +1,1,4607,2026,1,1,,0,,,7,11,23,7/11/26 22:00, +1,1,4608,2026,1,1,,0,,,7,11,24,7/11/26 23:00, +1,1,4609,2026,1,1,,0,,,7,12,1,7/12/26 0:00, +1,1,4610,2026,1,1,,0,,,7,12,2,7/12/26 1:00, +1,1,4611,2026,1,1,,0,,,7,12,3,7/12/26 2:00, +1,1,4612,2026,1,1,,0,,,7,12,4,7/12/26 3:00, +1,1,4613,2026,1,1,,0,,,7,12,5,7/12/26 4:00, +1,1,4614,2026,1,1,,0,,,7,12,6,7/12/26 5:00, +1,1,4615,2026,1,1,,0,,,7,12,7,7/12/26 6:00, +1,1,4616,2026,1,1,,0,,,7,12,8,7/12/26 7:00, +1,1,4617,2026,1,1,,0,,,7,12,9,7/12/26 8:00, +1,1,4618,2026,1,1,,0,,,7,12,10,7/12/26 9:00, +1,1,4619,2026,1,1,,0,,,7,12,11,7/12/26 10:00, +1,1,4620,2026,1,1,,0,,,7,12,12,7/12/26 11:00, +1,1,4621,2026,1,1,,0,,,7,12,13,7/12/26 12:00, +1,1,4622,2026,1,1,,0,,,7,12,14,7/12/26 13:00, +1,1,4623,2026,1,1,,0,,,7,12,15,7/12/26 14:00, +1,1,4624,2026,1,1,,0,,,7,12,16,7/12/26 15:00, +1,1,4625,2026,1,1,,0,,,7,12,17,7/12/26 16:00, +1,1,4626,2026,1,1,,0,,,7,12,18,7/12/26 17:00, +1,1,4627,2026,1,1,,0,,,7,12,19,7/12/26 18:00, +1,1,4628,2026,1,1,,0,,,7,12,20,7/12/26 19:00, +1,1,4629,2026,1,1,,0,,,7,12,21,7/12/26 20:00, +1,1,4630,2026,1,1,,0,,,7,12,22,7/12/26 21:00, +1,1,4631,2026,1,1,,0,,,7,12,23,7/12/26 22:00, +1,1,4632,2026,1,1,,0,,,7,12,24,7/12/26 23:00, +1,1,4633,2026,1,1,,0,,,7,13,1,7/13/26 0:00, +1,1,4634,2026,1,1,,0,,,7,13,2,7/13/26 1:00, +1,1,4635,2026,1,1,,0,,,7,13,3,7/13/26 2:00, +1,1,4636,2026,1,1,,0,,,7,13,4,7/13/26 3:00, +1,1,4637,2026,1,1,,0,,,7,13,5,7/13/26 4:00, +1,1,4638,2026,1,1,,0,,,7,13,6,7/13/26 5:00, +1,1,4639,2026,1,1,,0,,,7,13,7,7/13/26 6:00, +1,1,4640,2026,1,1,,0,,,7,13,8,7/13/26 7:00, +1,1,4641,2026,1,1,,0,,,7,13,9,7/13/26 8:00, +1,1,4642,2026,1,1,,0,,,7,13,10,7/13/26 9:00, +1,1,4643,2026,1,1,,0,,,7,13,11,7/13/26 10:00, +1,1,4644,2026,1,1,,0,,,7,13,12,7/13/26 11:00, +1,1,4645,2026,1,1,,0,,,7,13,13,7/13/26 12:00, +1,1,4646,2026,1,1,,0,,,7,13,14,7/13/26 13:00, +1,1,4647,2026,1,1,,0,,,7,13,15,7/13/26 14:00, +1,1,4648,2026,1,1,,0,,,7,13,16,7/13/26 15:00, +1,1,4649,2026,1,1,,0,,,7,13,17,7/13/26 16:00, +1,1,4650,2026,1,1,,0,,,7,13,18,7/13/26 17:00, +1,1,4651,2026,1,1,,0,,,7,13,19,7/13/26 18:00, +1,1,4652,2026,1,1,,0,,,7,13,20,7/13/26 19:00, +1,1,4653,2026,1,1,,0,,,7,13,21,7/13/26 20:00, +1,1,4654,2026,1,1,,0,,,7,13,22,7/13/26 21:00, +1,1,4655,2026,1,1,,0,,,7,13,23,7/13/26 22:00, +1,1,4656,2026,1,1,,0,,,7,13,24,7/13/26 23:00, +1,1,4657,2026,1,1,,0,,,7,14,1,7/14/26 0:00, +1,1,4658,2026,1,1,,0,,,7,14,2,7/14/26 1:00, +1,1,4659,2026,1,1,,0,,,7,14,3,7/14/26 2:00, +1,1,4660,2026,1,1,,0,,,7,14,4,7/14/26 3:00, +1,1,4661,2026,1,1,,0,,,7,14,5,7/14/26 4:00, +1,1,4662,2026,1,1,,0,,,7,14,6,7/14/26 5:00, +1,1,4663,2026,1,1,,0,,,7,14,7,7/14/26 6:00, +1,1,4664,2026,1,1,,0,,,7,14,8,7/14/26 7:00, +1,1,4665,2026,1,1,,0,,,7,14,9,7/14/26 8:00, +1,1,4666,2026,1,1,,0,,,7,14,10,7/14/26 9:00, +1,1,4667,2026,1,1,,0,,,7,14,11,7/14/26 10:00, +1,1,4668,2026,1,1,,0,,,7,14,12,7/14/26 11:00, +1,1,4669,2026,1,1,,0,,,7,14,13,7/14/26 12:00, +1,1,4670,2026,1,1,,0,,,7,14,14,7/14/26 13:00, +1,1,4671,2026,1,1,,0,,,7,14,15,7/14/26 14:00, +1,1,4672,2026,1,1,,0,,,7,14,16,7/14/26 15:00, +1,1,4673,2026,1,1,,0,,,7,14,17,7/14/26 16:00, +1,1,4674,2026,1,1,,0,,,7,14,18,7/14/26 17:00, +1,1,4675,2026,1,1,,0,,,7,14,19,7/14/26 18:00, +1,1,4676,2026,1,1,,0,,,7,14,20,7/14/26 19:00, +1,1,4677,2026,1,1,,0,,,7,14,21,7/14/26 20:00, +1,1,4678,2026,1,1,,0,,,7,14,22,7/14/26 21:00, +1,1,4679,2026,1,1,,0,,,7,14,23,7/14/26 22:00, +1,1,4680,2026,1,1,,0,,,7,14,24,7/14/26 23:00, +1,1,4681,2026,1,1,,0,,,7,15,1,7/15/26 0:00, +1,1,4682,2026,1,1,,0,,,7,15,2,7/15/26 1:00, +1,1,4683,2026,1,1,,0,,,7,15,3,7/15/26 2:00, +1,1,4684,2026,1,1,,0,,,7,15,4,7/15/26 3:00, +1,1,4685,2026,1,1,,0,,,7,15,5,7/15/26 4:00, +1,1,4686,2026,1,1,,0,,,7,15,6,7/15/26 5:00, +1,1,4687,2026,1,1,,0,,,7,15,7,7/15/26 6:00, +1,1,4688,2026,1,1,,0,,,7,15,8,7/15/26 7:00, +1,1,4689,2026,1,1,,0,,,7,15,9,7/15/26 8:00, +1,1,4690,2026,1,1,,0,,,7,15,10,7/15/26 9:00, +1,1,4691,2026,1,1,,0,,,7,15,11,7/15/26 10:00, +1,1,4692,2026,1,1,,0,,,7,15,12,7/15/26 11:00, +1,1,4693,2026,1,1,,0,,,7,15,13,7/15/26 12:00, +1,1,4694,2026,1,1,,0,,,7,15,14,7/15/26 13:00, +1,1,4695,2026,1,1,,0,,,7,15,15,7/15/26 14:00, +1,1,4696,2026,1,1,,0,,,7,15,16,7/15/26 15:00, +1,1,4697,2026,1,1,,0,,,7,15,17,7/15/26 16:00, +1,1,4698,2026,1,1,,0,,,7,15,18,7/15/26 17:00, +1,1,4699,2026,1,1,,0,,,7,15,19,7/15/26 18:00, +1,1,4700,2026,1,1,,0,,,7,15,20,7/15/26 19:00, +1,1,4701,2026,1,1,,0,,,7,15,21,7/15/26 20:00, +1,1,4702,2026,1,1,,0,,,7,15,22,7/15/26 21:00, +1,1,4703,2026,1,1,,0,,,7,15,23,7/15/26 22:00, +1,1,4704,2026,1,1,,0,,,7,15,24,7/15/26 23:00, +1,1,4705,2026,1,1,,0,,,7,16,1,7/16/26 0:00, +1,1,4706,2026,1,1,,0,,,7,16,2,7/16/26 1:00, +1,1,4707,2026,1,1,,0,,,7,16,3,7/16/26 2:00, +1,1,4708,2026,1,1,,0,,,7,16,4,7/16/26 3:00, +1,1,4709,2026,1,1,,0,,,7,16,5,7/16/26 4:00, +1,1,4710,2026,1,1,,0,,,7,16,6,7/16/26 5:00, +1,1,4711,2026,1,1,,0,,,7,16,7,7/16/26 6:00, +1,1,4712,2026,1,1,,0,,,7,16,8,7/16/26 7:00, +1,1,4713,2026,1,1,,0,,,7,16,9,7/16/26 8:00, +1,1,4714,2026,1,1,,0,,,7,16,10,7/16/26 9:00, +1,1,4715,2026,1,1,,0,,,7,16,11,7/16/26 10:00, +1,1,4716,2026,1,1,,0,,,7,16,12,7/16/26 11:00, +1,1,4717,2026,1,1,,0,,,7,16,13,7/16/26 12:00, +1,1,4718,2026,1,1,,0,,,7,16,14,7/16/26 13:00, +1,1,4719,2026,1,1,,0,,,7,16,15,7/16/26 14:00, +1,1,4720,2026,1,1,,0,,,7,16,16,7/16/26 15:00, +1,1,4721,2026,1,1,,0,,,7,16,17,7/16/26 16:00, +1,1,4722,2026,1,1,,0,,,7,16,18,7/16/26 17:00, +1,1,4723,2026,1,1,,0,,,7,16,19,7/16/26 18:00, +1,1,4724,2026,1,1,,0,,,7,16,20,7/16/26 19:00, +1,1,4725,2026,1,1,,0,,,7,16,21,7/16/26 20:00, +1,1,4726,2026,1,1,,0,,,7,16,22,7/16/26 21:00, +1,1,4727,2026,1,1,,0,,,7,16,23,7/16/26 22:00, +1,1,4728,2026,1,1,,0,,,7,16,24,7/16/26 23:00, +1,1,4729,2026,1,1,,0,,,7,17,1,7/17/26 0:00, +1,1,4730,2026,1,1,,0,,,7,17,2,7/17/26 1:00, +1,1,4731,2026,1,1,,0,,,7,17,3,7/17/26 2:00, +1,1,4732,2026,1,1,,0,,,7,17,4,7/17/26 3:00, +1,1,4733,2026,1,1,,0,,,7,17,5,7/17/26 4:00, +1,1,4734,2026,1,1,,0,,,7,17,6,7/17/26 5:00, +1,1,4735,2026,1,1,,0,,,7,17,7,7/17/26 6:00, +1,1,4736,2026,1,1,,0,,,7,17,8,7/17/26 7:00, +1,1,4737,2026,1,1,,0,,,7,17,9,7/17/26 8:00, +1,1,4738,2026,1,1,,0,,,7,17,10,7/17/26 9:00, +1,1,4739,2026,1,1,,0,,,7,17,11,7/17/26 10:00, +1,1,4740,2026,1,1,,0,,,7,17,12,7/17/26 11:00, +1,1,4741,2026,1,1,,0,,,7,17,13,7/17/26 12:00, +1,1,4742,2026,1,1,,0,,,7,17,14,7/17/26 13:00, +1,1,4743,2026,1,1,,0,,,7,17,15,7/17/26 14:00, +1,1,4744,2026,1,1,,0,,,7,17,16,7/17/26 15:00, +1,1,4745,2026,1,1,,0,,,7,17,17,7/17/26 16:00, +1,1,4746,2026,1,1,,0,,,7,17,18,7/17/26 17:00, +1,1,4747,2026,1,1,,0,,,7,17,19,7/17/26 18:00, +1,1,4748,2026,1,1,,0,,,7,17,20,7/17/26 19:00, +1,1,4749,2026,1,1,,0,,,7,17,21,7/17/26 20:00, +1,1,4750,2026,1,1,,0,,,7,17,22,7/17/26 21:00, +1,1,4751,2026,1,1,,0,,,7,17,23,7/17/26 22:00, +1,1,4752,2026,1,1,,0,,,7,17,24,7/17/26 23:00, +1,1,4753,2026,1,1,,0,,,7,18,1,7/18/26 0:00, +1,1,4754,2026,1,1,,0,,,7,18,2,7/18/26 1:00, +1,1,4755,2026,1,1,,0,,,7,18,3,7/18/26 2:00, +1,1,4756,2026,1,1,,0,,,7,18,4,7/18/26 3:00, +1,1,4757,2026,1,1,,0,,,7,18,5,7/18/26 4:00, +1,1,4758,2026,1,1,,0,,,7,18,6,7/18/26 5:00, +1,1,4759,2026,1,1,,0,,,7,18,7,7/18/26 6:00, +1,1,4760,2026,1,1,,0,,,7,18,8,7/18/26 7:00, +1,1,4761,2026,1,1,,0,,,7,18,9,7/18/26 8:00, +1,1,4762,2026,1,1,,0,,,7,18,10,7/18/26 9:00, +1,1,4763,2026,1,1,,0,,,7,18,11,7/18/26 10:00, +1,1,4764,2026,1,1,,0,,,7,18,12,7/18/26 11:00, +1,1,4765,2026,1,1,,0,,,7,18,13,7/18/26 12:00, +1,1,4766,2026,1,1,,0,,,7,18,14,7/18/26 13:00, +1,1,4767,2026,1,1,,0,,,7,18,15,7/18/26 14:00, +1,1,4768,2026,1,1,,0,,,7,18,16,7/18/26 15:00, +1,1,4769,2026,1,1,,0,,,7,18,17,7/18/26 16:00, +1,1,4770,2026,1,1,,0,,,7,18,18,7/18/26 17:00, +1,1,4771,2026,1,1,,0,,,7,18,19,7/18/26 18:00, +1,1,4772,2026,1,1,,0,,,7,18,20,7/18/26 19:00, +1,1,4773,2026,1,1,,0,,,7,18,21,7/18/26 20:00, +1,1,4774,2026,1,1,,0,,,7,18,22,7/18/26 21:00, +1,1,4775,2026,1,1,,0,,,7,18,23,7/18/26 22:00, +1,1,4776,2026,1,1,,0,,,7,18,24,7/18/26 23:00, +1,1,4777,2026,1,1,,0,,,7,19,1,7/19/26 0:00, +1,1,4778,2026,1,1,,0,,,7,19,2,7/19/26 1:00, +1,1,4779,2026,1,1,,0,,,7,19,3,7/19/26 2:00, +1,1,4780,2026,1,1,,0,,,7,19,4,7/19/26 3:00, +1,1,4781,2026,1,1,,0,,,7,19,5,7/19/26 4:00, +1,1,4782,2026,1,1,,0,,,7,19,6,7/19/26 5:00, +1,1,4783,2026,1,1,,0,,,7,19,7,7/19/26 6:00, +1,1,4784,2026,1,1,,0,,,7,19,8,7/19/26 7:00, +1,1,4785,2026,1,1,,0,,,7,19,9,7/19/26 8:00, +1,1,4786,2026,1,1,,0,,,7,19,10,7/19/26 9:00, +1,1,4787,2026,1,1,,0,,,7,19,11,7/19/26 10:00, +1,1,4788,2026,1,1,,0,,,7,19,12,7/19/26 11:00, +1,1,4789,2026,1,1,,0,,,7,19,13,7/19/26 12:00, +1,1,4790,2026,1,1,,0,,,7,19,14,7/19/26 13:00, +1,1,4791,2026,1,1,,0,,,7,19,15,7/19/26 14:00, +1,1,4792,2026,1,1,,0,,,7,19,16,7/19/26 15:00, +1,1,4793,2026,1,1,,0,,,7,19,17,7/19/26 16:00, +1,1,4794,2026,1,1,,0,,,7,19,18,7/19/26 17:00, +1,1,4795,2026,1,1,,0,,,7,19,19,7/19/26 18:00, +1,1,4796,2026,1,1,,0,,,7,19,20,7/19/26 19:00, +1,1,4797,2026,1,1,,0,,,7,19,21,7/19/26 20:00, +1,1,4798,2026,1,1,,0,,,7,19,22,7/19/26 21:00, +1,1,4799,2026,1,1,,0,,,7,19,23,7/19/26 22:00, +1,1,4800,2026,1,1,,0,,,7,19,24,7/19/26 23:00, +1,1,4801,2026,1,1,,0,,,7,20,1,7/20/26 0:00, +1,1,4802,2026,1,1,,0,,,7,20,2,7/20/26 1:00, +1,1,4803,2026,1,1,,0,,,7,20,3,7/20/26 2:00, +1,1,4804,2026,1,1,,0,,,7,20,4,7/20/26 3:00, +1,1,4805,2026,1,1,,0,,,7,20,5,7/20/26 4:00, +1,1,4806,2026,1,1,,0,,,7,20,6,7/20/26 5:00, +1,1,4807,2026,1,1,,0,,,7,20,7,7/20/26 6:00, +1,1,4808,2026,1,1,,0,,,7,20,8,7/20/26 7:00, +1,1,4809,2026,1,1,,0,,,7,20,9,7/20/26 8:00, +1,1,4810,2026,1,1,,0,,,7,20,10,7/20/26 9:00, +1,1,4811,2026,1,1,,0,,,7,20,11,7/20/26 10:00, +1,1,4812,2026,1,1,,0,,,7,20,12,7/20/26 11:00, +1,1,4813,2026,1,1,,0,,,7,20,13,7/20/26 12:00, +1,1,4814,2026,1,1,,0,,,7,20,14,7/20/26 13:00, +1,1,4815,2026,1,1,,0,,,7,20,15,7/20/26 14:00, +1,1,4816,2026,1,1,,0,,,7,20,16,7/20/26 15:00, +1,1,4817,2026,1,1,,0,,,7,20,17,7/20/26 16:00, +1,1,4818,2026,1,1,,0,,,7,20,18,7/20/26 17:00, +1,1,4819,2026,1,1,,0,,,7,20,19,7/20/26 18:00, +1,1,4820,2026,1,1,,0,,,7,20,20,7/20/26 19:00, +1,1,4821,2026,1,1,,0,,,7,20,21,7/20/26 20:00, +1,1,4822,2026,1,1,,0,,,7,20,22,7/20/26 21:00, +1,1,4823,2026,1,1,,0,,,7,20,23,7/20/26 22:00, +1,1,4824,2026,1,1,,0,,,7,20,24,7/20/26 23:00, +1,1,4825,2026,1,1,,0,,,7,21,1,7/21/26 0:00, +1,1,4826,2026,1,1,,0,,,7,21,2,7/21/26 1:00, +1,1,4827,2026,1,1,,0,,,7,21,3,7/21/26 2:00, +1,1,4828,2026,1,1,,0,,,7,21,4,7/21/26 3:00, +1,1,4829,2026,1,1,,0,,,7,21,5,7/21/26 4:00, +1,1,4830,2026,1,1,,0,,,7,21,6,7/21/26 5:00, +1,1,4831,2026,1,1,,0,,,7,21,7,7/21/26 6:00, +1,1,4832,2026,1,1,,0,,,7,21,8,7/21/26 7:00, +1,1,4833,2026,1,1,,0,,,7,21,9,7/21/26 8:00, +1,1,4834,2026,1,1,,0,,,7,21,10,7/21/26 9:00, +1,1,4835,2026,1,1,,0,,,7,21,11,7/21/26 10:00, +1,1,4836,2026,1,1,,0,,,7,21,12,7/21/26 11:00, +1,1,4837,2026,1,1,,0,,,7,21,13,7/21/26 12:00, +1,1,4838,2026,1,1,,0,,,7,21,14,7/21/26 13:00, +1,1,4839,2026,1,1,,0,,,7,21,15,7/21/26 14:00, +1,1,4840,2026,1,1,,0,,,7,21,16,7/21/26 15:00, +1,1,4841,2026,1,1,,0,,,7,21,17,7/21/26 16:00, +1,1,4842,2026,1,1,,0,,,7,21,18,7/21/26 17:00, +1,1,4843,2026,1,1,,0,,,7,21,19,7/21/26 18:00, +1,1,4844,2026,1,1,,0,,,7,21,20,7/21/26 19:00, +1,1,4845,2026,1,1,,0,,,7,21,21,7/21/26 20:00, +1,1,4846,2026,1,1,,0,,,7,21,22,7/21/26 21:00, +1,1,4847,2026,1,1,,0,,,7,21,23,7/21/26 22:00, +1,1,4848,2026,1,1,,0,,,7,21,24,7/21/26 23:00, +1,1,4849,2026,1,1,,0,,,7,22,1,7/22/26 0:00, +1,1,4850,2026,1,1,,0,,,7,22,2,7/22/26 1:00, +1,1,4851,2026,1,1,,0,,,7,22,3,7/22/26 2:00, +1,1,4852,2026,1,1,,0,,,7,22,4,7/22/26 3:00, +1,1,4853,2026,1,1,,0,,,7,22,5,7/22/26 4:00, +1,1,4854,2026,1,1,,0,,,7,22,6,7/22/26 5:00, +1,1,4855,2026,1,1,,0,,,7,22,7,7/22/26 6:00, +1,1,4856,2026,1,1,,0,,,7,22,8,7/22/26 7:00, +1,1,4857,2026,1,1,,0,,,7,22,9,7/22/26 8:00, +1,1,4858,2026,1,1,,0,,,7,22,10,7/22/26 9:00, +1,1,4859,2026,1,1,,0,,,7,22,11,7/22/26 10:00, +1,1,4860,2026,1,1,,0,,,7,22,12,7/22/26 11:00, +1,1,4861,2026,1,1,,0,,,7,22,13,7/22/26 12:00, +1,1,4862,2026,1,1,,0,,,7,22,14,7/22/26 13:00, +1,1,4863,2026,1,1,,0,,,7,22,15,7/22/26 14:00, +1,1,4864,2026,1,1,,0,,,7,22,16,7/22/26 15:00, +1,1,4865,2026,1,1,,0,,,7,22,17,7/22/26 16:00, +1,1,4866,2026,1,1,,0,,,7,22,18,7/22/26 17:00, +1,1,4867,2026,1,1,,0,,,7,22,19,7/22/26 18:00, +1,1,4868,2026,1,1,,0,,,7,22,20,7/22/26 19:00, +1,1,4869,2026,1,1,,0,,,7,22,21,7/22/26 20:00, +1,1,4870,2026,1,1,,0,,,7,22,22,7/22/26 21:00, +1,1,4871,2026,1,1,,0,,,7,22,23,7/22/26 22:00, +1,1,4872,2026,1,1,,0,,,7,22,24,7/22/26 23:00, +1,1,4873,2026,1,1,,0,,,7,23,1,7/23/26 0:00, +1,1,4874,2026,1,1,,0,,,7,23,2,7/23/26 1:00, +1,1,4875,2026,1,1,,0,,,7,23,3,7/23/26 2:00, +1,1,4876,2026,1,1,,0,,,7,23,4,7/23/26 3:00, +1,1,4877,2026,1,1,,0,,,7,23,5,7/23/26 4:00, +1,1,4878,2026,1,1,,0,,,7,23,6,7/23/26 5:00, +1,1,4879,2026,1,1,,0,,,7,23,7,7/23/26 6:00, +1,1,4880,2026,1,1,,0,,,7,23,8,7/23/26 7:00, +1,1,4881,2026,1,1,,0,,,7,23,9,7/23/26 8:00, +1,1,4882,2026,1,1,,0,,,7,23,10,7/23/26 9:00, +1,1,4883,2026,1,1,,0,,,7,23,11,7/23/26 10:00, +1,1,4884,2026,1,1,,0,,,7,23,12,7/23/26 11:00, +1,1,4885,2026,1,1,,0,,,7,23,13,7/23/26 12:00, +1,1,4886,2026,1,1,,0,,,7,23,14,7/23/26 13:00, +1,1,4887,2026,1,1,,0,,,7,23,15,7/23/26 14:00, +1,1,4888,2026,1,1,,0,,,7,23,16,7/23/26 15:00, +1,1,4889,2026,1,1,,0,,,7,23,17,7/23/26 16:00, +1,1,4890,2026,1,1,,0,,,7,23,18,7/23/26 17:00, +1,1,4891,2026,1,1,,0,,,7,23,19,7/23/26 18:00, +1,1,4892,2026,1,1,,0,,,7,23,20,7/23/26 19:00, +1,1,4893,2026,1,1,,0,,,7,23,21,7/23/26 20:00, +1,1,4894,2026,1,1,,0,,,7,23,22,7/23/26 21:00, +1,1,4895,2026,1,1,,0,,,7,23,23,7/23/26 22:00, +1,1,4896,2026,1,1,,0,,,7,23,24,7/23/26 23:00, +1,1,4897,2026,1,1,,0,,,7,24,1,7/24/26 0:00, +1,1,4898,2026,1,1,,0,,,7,24,2,7/24/26 1:00, +1,1,4899,2026,1,1,,0,,,7,24,3,7/24/26 2:00, +1,1,4900,2026,1,1,,0,,,7,24,4,7/24/26 3:00, +1,1,4901,2026,1,1,,0,,,7,24,5,7/24/26 4:00, +1,1,4902,2026,1,1,,0,,,7,24,6,7/24/26 5:00, +1,1,4903,2026,1,1,,0,,,7,24,7,7/24/26 6:00, +1,1,4904,2026,1,1,,0,,,7,24,8,7/24/26 7:00, +1,1,4905,2026,1,1,,0,,,7,24,9,7/24/26 8:00, +1,1,4906,2026,1,1,,0,,,7,24,10,7/24/26 9:00, +1,1,4907,2026,1,1,,0,,,7,24,11,7/24/26 10:00, +1,1,4908,2026,1,1,,0,,,7,24,12,7/24/26 11:00, +1,1,4909,2026,1,1,,0,,,7,24,13,7/24/26 12:00, +1,1,4910,2026,1,1,,0,,,7,24,14,7/24/26 13:00, +1,1,4911,2026,1,1,,0,,,7,24,15,7/24/26 14:00, +1,1,4912,2026,1,1,,0,,,7,24,16,7/24/26 15:00, +1,1,4913,2026,1,1,,0,,,7,24,17,7/24/26 16:00, +1,1,4914,2026,1,1,,0,,,7,24,18,7/24/26 17:00, +1,1,4915,2026,1,1,,0,,,7,24,19,7/24/26 18:00, +1,1,4916,2026,1,1,,0,,,7,24,20,7/24/26 19:00, +1,1,4917,2026,1,1,,0,,,7,24,21,7/24/26 20:00, +1,1,4918,2026,1,1,,0,,,7,24,22,7/24/26 21:00, +1,1,4919,2026,1,1,,0,,,7,24,23,7/24/26 22:00, +1,1,4920,2026,1,1,,0,,,7,24,24,7/24/26 23:00, +1,1,4921,2026,1,1,,0,,,7,25,1,7/25/26 0:00, +1,1,4922,2026,1,1,,0,,,7,25,2,7/25/26 1:00, +1,1,4923,2026,1,1,,0,,,7,25,3,7/25/26 2:00, +1,1,4924,2026,1,1,,0,,,7,25,4,7/25/26 3:00, +1,1,4925,2026,1,1,,0,,,7,25,5,7/25/26 4:00, +1,1,4926,2026,1,1,,0,,,7,25,6,7/25/26 5:00, +1,1,4927,2026,1,1,,0,,,7,25,7,7/25/26 6:00, +1,1,4928,2026,1,1,,0,,,7,25,8,7/25/26 7:00, +1,1,4929,2026,1,1,,0,,,7,25,9,7/25/26 8:00, +1,1,4930,2026,1,1,,0,,,7,25,10,7/25/26 9:00, +1,1,4931,2026,1,1,,0,,,7,25,11,7/25/26 10:00, +1,1,4932,2026,1,1,,0,,,7,25,12,7/25/26 11:00, +1,1,4933,2026,1,1,,0,,,7,25,13,7/25/26 12:00, +1,1,4934,2026,1,1,,0,,,7,25,14,7/25/26 13:00, +1,1,4935,2026,1,1,,0,,,7,25,15,7/25/26 14:00, +1,1,4936,2026,1,1,,0,,,7,25,16,7/25/26 15:00, +1,1,4937,2026,1,1,,0,,,7,25,17,7/25/26 16:00, +1,1,4938,2026,1,1,,0,,,7,25,18,7/25/26 17:00, +1,1,4939,2026,1,1,,0,,,7,25,19,7/25/26 18:00, +1,1,4940,2026,1,1,,0,,,7,25,20,7/25/26 19:00, +1,1,4941,2026,1,1,,0,,,7,25,21,7/25/26 20:00, +1,1,4942,2026,1,1,,0,,,7,25,22,7/25/26 21:00, +1,1,4943,2026,1,1,,0,,,7,25,23,7/25/26 22:00, +1,1,4944,2026,1,1,,0,,,7,25,24,7/25/26 23:00, +1,1,4945,2026,1,1,,0,,,7,26,1,7/26/26 0:00, +1,1,4946,2026,1,1,,0,,,7,26,2,7/26/26 1:00, +1,1,4947,2026,1,1,,0,,,7,26,3,7/26/26 2:00, +1,1,4948,2026,1,1,,0,,,7,26,4,7/26/26 3:00, +1,1,4949,2026,1,1,,0,,,7,26,5,7/26/26 4:00, +1,1,4950,2026,1,1,,0,,,7,26,6,7/26/26 5:00, +1,1,4951,2026,1,1,,0,,,7,26,7,7/26/26 6:00, +1,1,4952,2026,1,1,,0,,,7,26,8,7/26/26 7:00, +1,1,4953,2026,1,1,,0,,,7,26,9,7/26/26 8:00, +1,1,4954,2026,1,1,,0,,,7,26,10,7/26/26 9:00, +1,1,4955,2026,1,1,,0,,,7,26,11,7/26/26 10:00, +1,1,4956,2026,1,1,,0,,,7,26,12,7/26/26 11:00, +1,1,4957,2026,1,1,,0,,,7,26,13,7/26/26 12:00, +1,1,4958,2026,1,1,,0,,,7,26,14,7/26/26 13:00, +1,1,4959,2026,1,1,,0,,,7,26,15,7/26/26 14:00, +1,1,4960,2026,1,1,,0,,,7,26,16,7/26/26 15:00, +1,1,4961,2026,1,1,,0,,,7,26,17,7/26/26 16:00, +1,1,4962,2026,1,1,,0,,,7,26,18,7/26/26 17:00, +1,1,4963,2026,1,1,,0,,,7,26,19,7/26/26 18:00, +1,1,4964,2026,1,1,,0,,,7,26,20,7/26/26 19:00, +1,1,4965,2026,1,1,,0,,,7,26,21,7/26/26 20:00, +1,1,4966,2026,1,1,,0,,,7,26,22,7/26/26 21:00, +1,1,4967,2026,1,1,,0,,,7,26,23,7/26/26 22:00, +1,1,4968,2026,1,1,,0,,,7,26,24,7/26/26 23:00, +1,1,4969,2026,1,1,,0,,,7,27,1,7/27/26 0:00, +1,1,4970,2026,1,1,,0,,,7,27,2,7/27/26 1:00, +1,1,4971,2026,1,1,,0,,,7,27,3,7/27/26 2:00, +1,1,4972,2026,1,1,,0,,,7,27,4,7/27/26 3:00, +1,1,4973,2026,1,1,,0,,,7,27,5,7/27/26 4:00, +1,1,4974,2026,1,1,,0,,,7,27,6,7/27/26 5:00, +1,1,4975,2026,1,1,,0,,,7,27,7,7/27/26 6:00, +1,1,4976,2026,1,1,,0,,,7,27,8,7/27/26 7:00, +1,1,4977,2026,1,1,,0,,,7,27,9,7/27/26 8:00, +1,1,4978,2026,1,1,,0,,,7,27,10,7/27/26 9:00, +1,1,4979,2026,1,1,,0,,,7,27,11,7/27/26 10:00, +1,1,4980,2026,1,1,,0,,,7,27,12,7/27/26 11:00, +1,1,4981,2026,1,1,,0,,,7,27,13,7/27/26 12:00, +1,1,4982,2026,1,1,,0,,,7,27,14,7/27/26 13:00, +1,1,4983,2026,1,1,,0,,,7,27,15,7/27/26 14:00, +1,1,4984,2026,1,1,,0,,,7,27,16,7/27/26 15:00, +1,1,4985,2026,1,1,,0,,,7,27,17,7/27/26 16:00, +1,1,4986,2026,1,1,,0,,,7,27,18,7/27/26 17:00, +1,1,4987,2026,1,1,,0,,,7,27,19,7/27/26 18:00, +1,1,4988,2026,1,1,,0,,,7,27,20,7/27/26 19:00, +1,1,4989,2026,1,1,,0,,,7,27,21,7/27/26 20:00, +1,1,4990,2026,1,1,,0,,,7,27,22,7/27/26 21:00, +1,1,4991,2026,1,1,,0,,,7,27,23,7/27/26 22:00, +1,1,4992,2026,1,1,,0,,,7,27,24,7/27/26 23:00, +1,1,4993,2026,1,1,,0,,,7,28,1,7/28/26 0:00, +1,1,4994,2026,1,1,,0,,,7,28,2,7/28/26 1:00, +1,1,4995,2026,1,1,,0,,,7,28,3,7/28/26 2:00, +1,1,4996,2026,1,1,,0,,,7,28,4,7/28/26 3:00, +1,1,4997,2026,1,1,,0,,,7,28,5,7/28/26 4:00, +1,1,4998,2026,1,1,,0,,,7,28,6,7/28/26 5:00, +1,1,4999,2026,1,1,,0,,,7,28,7,7/28/26 6:00, +1,1,5000,2026,1,1,,0,,,7,28,8,7/28/26 7:00, +1,1,5001,2026,1,1,,0,,,7,28,9,7/28/26 8:00, +1,1,5002,2026,1,1,,0,,,7,28,10,7/28/26 9:00, +1,1,5003,2026,1,1,,0,,,7,28,11,7/28/26 10:00, +1,1,5004,2026,1,1,,0,,,7,28,12,7/28/26 11:00, +1,1,5005,2026,1,1,,0,,,7,28,13,7/28/26 12:00, +1,1,5006,2026,1,1,,0,,,7,28,14,7/28/26 13:00, +1,1,5007,2026,1,1,,0,,,7,28,15,7/28/26 14:00, +1,1,5008,2026,1,1,,0,,,7,28,16,7/28/26 15:00, +1,1,5009,2026,1,1,,0,,,7,28,17,7/28/26 16:00, +1,1,5010,2026,1,1,,0,,,7,28,18,7/28/26 17:00, +1,1,5011,2026,1,1,,0,,,7,28,19,7/28/26 18:00, +1,1,5012,2026,1,1,,0,,,7,28,20,7/28/26 19:00, +1,1,5013,2026,1,1,,0,,,7,28,21,7/28/26 20:00, +1,1,5014,2026,1,1,,0,,,7,28,22,7/28/26 21:00, +1,1,5015,2026,1,1,,0,,,7,28,23,7/28/26 22:00, +1,1,5016,2026,1,1,,0,,,7,28,24,7/28/26 23:00, +1,1,5017,2026,1,1,,0,,,7,29,1,7/29/26 0:00, +1,1,5018,2026,1,1,,0,,,7,29,2,7/29/26 1:00, +1,1,5019,2026,1,1,,0,,,7,29,3,7/29/26 2:00, +1,1,5020,2026,1,1,,0,,,7,29,4,7/29/26 3:00, +1,1,5021,2026,1,1,,0,,,7,29,5,7/29/26 4:00, +1,1,5022,2026,1,1,,0,,,7,29,6,7/29/26 5:00, +1,1,5023,2026,1,1,,0,,,7,29,7,7/29/26 6:00, +1,1,5024,2026,1,1,,0,,,7,29,8,7/29/26 7:00, +1,1,5025,2026,1,1,,0,,,7,29,9,7/29/26 8:00, +1,1,5026,2026,1,1,,0,,,7,29,10,7/29/26 9:00, +1,1,5027,2026,1,1,,0,,,7,29,11,7/29/26 10:00, +1,1,5028,2026,1,1,,0,,,7,29,12,7/29/26 11:00, +1,1,5029,2026,1,1,,0,,,7,29,13,7/29/26 12:00, +1,1,5030,2026,1,1,,0,,,7,29,14,7/29/26 13:00, +1,1,5031,2026,1,1,,0,,,7,29,15,7/29/26 14:00, +1,1,5032,2026,1,1,,0,,,7,29,16,7/29/26 15:00, +1,1,5033,2026,1,1,,0,,,7,29,17,7/29/26 16:00, +1,1,5034,2026,1,1,,0,,,7,29,18,7/29/26 17:00, +1,1,5035,2026,1,1,,0,,,7,29,19,7/29/26 18:00, +1,1,5036,2026,1,1,,0,,,7,29,20,7/29/26 19:00, +1,1,5037,2026,1,1,,0,,,7,29,21,7/29/26 20:00, +1,1,5038,2026,1,1,,0,,,7,29,22,7/29/26 21:00, +1,1,5039,2026,1,1,,0,,,7,29,23,7/29/26 22:00, +1,1,5040,2026,1,1,,0,,,7,29,24,7/29/26 23:00, +1,1,5041,2026,1,1,,0,,,7,30,1,7/30/26 0:00, +1,1,5042,2026,1,1,,0,,,7,30,2,7/30/26 1:00, +1,1,5043,2026,1,1,,0,,,7,30,3,7/30/26 2:00, +1,1,5044,2026,1,1,,0,,,7,30,4,7/30/26 3:00, +1,1,5045,2026,1,1,,0,,,7,30,5,7/30/26 4:00, +1,1,5046,2026,1,1,,0,,,7,30,6,7/30/26 5:00, +1,1,5047,2026,1,1,,0,,,7,30,7,7/30/26 6:00, +1,1,5048,2026,1,1,,0,,,7,30,8,7/30/26 7:00, +1,1,5049,2026,1,1,,0,,,7,30,9,7/30/26 8:00, +1,1,5050,2026,1,1,,0,,,7,30,10,7/30/26 9:00, +1,1,5051,2026,1,1,,0,,,7,30,11,7/30/26 10:00, +1,1,5052,2026,1,1,,0,,,7,30,12,7/30/26 11:00, +1,1,5053,2026,1,1,,0,,,7,30,13,7/30/26 12:00, +1,1,5054,2026,1,1,,0,,,7,30,14,7/30/26 13:00, +1,1,5055,2026,1,1,,0,,,7,30,15,7/30/26 14:00, +1,1,5056,2026,1,1,,0,,,7,30,16,7/30/26 15:00, +1,1,5057,2026,1,1,,0,,,7,30,17,7/30/26 16:00, +1,1,5058,2026,1,1,,0,,,7,30,18,7/30/26 17:00, +1,1,5059,2026,1,1,,0,,,7,30,19,7/30/26 18:00, +1,1,5060,2026,1,1,,0,,,7,30,20,7/30/26 19:00, +1,1,5061,2026,1,1,,0,,,7,30,21,7/30/26 20:00, +1,1,5062,2026,1,1,,0,,,7,30,22,7/30/26 21:00, +1,1,5063,2026,1,1,,0,,,7,30,23,7/30/26 22:00, +1,1,5064,2026,1,1,,0,,,7,30,24,7/30/26 23:00, +1,1,5065,2026,1,1,,0,,,7,31,1,7/31/26 0:00, +1,1,5066,2026,1,1,,0,,,7,31,2,7/31/26 1:00, +1,1,5067,2026,1,1,,0,,,7,31,3,7/31/26 2:00, +1,1,5068,2026,1,1,,0,,,7,31,4,7/31/26 3:00, +1,1,5069,2026,1,1,,0,,,7,31,5,7/31/26 4:00, +1,1,5070,2026,1,1,,0,,,7,31,6,7/31/26 5:00, +1,1,5071,2026,1,1,,0,,,7,31,7,7/31/26 6:00, +1,1,5072,2026,1,1,,0,,,7,31,8,7/31/26 7:00, +1,1,5073,2026,1,1,,0,,,7,31,9,7/31/26 8:00, +1,1,5074,2026,1,1,,0,,,7,31,10,7/31/26 9:00, +1,1,5075,2026,1,1,,0,,,7,31,11,7/31/26 10:00, +1,1,5076,2026,1,1,,0,,,7,31,12,7/31/26 11:00, +1,1,5077,2026,1,1,,0,,,7,31,13,7/31/26 12:00, +1,1,5078,2026,1,1,,0,,,7,31,14,7/31/26 13:00, +1,1,5079,2026,1,1,,0,,,7,31,15,7/31/26 14:00, +1,1,5080,2026,1,1,,0,,,7,31,16,7/31/26 15:00, +1,1,5081,2026,1,1,,0,,,7,31,17,7/31/26 16:00, +1,1,5082,2026,1,1,,0,,,7,31,18,7/31/26 17:00, +1,1,5083,2026,1,1,,0,,,7,31,19,7/31/26 18:00, +1,1,5084,2026,1,1,,0,,,7,31,20,7/31/26 19:00, +1,1,5085,2026,1,1,,0,,,7,31,21,7/31/26 20:00, +1,1,5086,2026,1,1,,0,,,7,31,22,7/31/26 21:00, +1,1,5087,2026,1,1,,0,,,7,31,23,7/31/26 22:00, +1,1,5088,2026,1,1,,0,,,7,31,24,7/31/26 23:00, +1,1,5089,2026,1,1,,0,,,8,1,1,8/1/26 0:00, +1,1,5090,2026,1,1,,0,,,8,1,2,8/1/26 1:00, +1,1,5091,2026,1,1,,0,,,8,1,3,8/1/26 2:00, +1,1,5092,2026,1,1,,0,,,8,1,4,8/1/26 3:00, +1,1,5093,2026,1,1,,0,,,8,1,5,8/1/26 4:00, +1,1,5094,2026,1,1,,0,,,8,1,6,8/1/26 5:00, +1,1,5095,2026,1,1,,0,,,8,1,7,8/1/26 6:00, +1,1,5096,2026,1,1,,0,,,8,1,8,8/1/26 7:00, +1,1,5097,2026,1,1,,0,,,8,1,9,8/1/26 8:00, +1,1,5098,2026,1,1,,0,,,8,1,10,8/1/26 9:00, +1,1,5099,2026,1,1,,0,,,8,1,11,8/1/26 10:00, +1,1,5100,2026,1,1,,0,,,8,1,12,8/1/26 11:00, +1,1,5101,2026,1,1,,0,,,8,1,13,8/1/26 12:00, +1,1,5102,2026,1,1,,0,,,8,1,14,8/1/26 13:00, +1,1,5103,2026,1,1,,0,,,8,1,15,8/1/26 14:00, +1,1,5104,2026,1,1,,0,,,8,1,16,8/1/26 15:00, +1,1,5105,2026,1,1,,0,,,8,1,17,8/1/26 16:00, +1,1,5106,2026,1,1,,0,,,8,1,18,8/1/26 17:00, +1,1,5107,2026,1,1,,0,,,8,1,19,8/1/26 18:00, +1,1,5108,2026,1,1,,0,,,8,1,20,8/1/26 19:00, +1,1,5109,2026,1,1,,0,,,8,1,21,8/1/26 20:00, +1,1,5110,2026,1,1,,0,,,8,1,22,8/1/26 21:00, +1,1,5111,2026,1,1,,0,,,8,1,23,8/1/26 22:00, +1,1,5112,2026,1,1,,0,,,8,1,24,8/1/26 23:00, +1,1,5113,2026,1,1,,0,,,8,2,1,8/2/26 0:00, +1,1,5114,2026,1,1,,0,,,8,2,2,8/2/26 1:00, +1,1,5115,2026,1,1,,0,,,8,2,3,8/2/26 2:00, +1,1,5116,2026,1,1,,0,,,8,2,4,8/2/26 3:00, +1,1,5117,2026,1,1,,0,,,8,2,5,8/2/26 4:00, +1,1,5118,2026,1,1,,0,,,8,2,6,8/2/26 5:00, +1,1,5119,2026,1,1,,0,,,8,2,7,8/2/26 6:00, +1,1,5120,2026,1,1,,0,,,8,2,8,8/2/26 7:00, +1,1,5121,2026,1,1,,0,,,8,2,9,8/2/26 8:00, +1,1,5122,2026,1,1,,0,,,8,2,10,8/2/26 9:00, +1,1,5123,2026,1,1,,0,,,8,2,11,8/2/26 10:00, +1,1,5124,2026,1,1,,0,,,8,2,12,8/2/26 11:00, +1,1,5125,2026,1,1,,0,,,8,2,13,8/2/26 12:00, +1,1,5126,2026,1,1,,0,,,8,2,14,8/2/26 13:00, +1,1,5127,2026,1,1,,0,,,8,2,15,8/2/26 14:00, +1,1,5128,2026,1,1,,0,,,8,2,16,8/2/26 15:00, +1,1,5129,2026,1,1,,0,,,8,2,17,8/2/26 16:00, +1,1,5130,2026,1,1,,0,,,8,2,18,8/2/26 17:00, +1,1,5131,2026,1,1,,0,,,8,2,19,8/2/26 18:00, +1,1,5132,2026,1,1,,0,,,8,2,20,8/2/26 19:00, +1,1,5133,2026,1,1,,0,,,8,2,21,8/2/26 20:00, +1,1,5134,2026,1,1,,0,,,8,2,22,8/2/26 21:00, +1,1,5135,2026,1,1,,0,,,8,2,23,8/2/26 22:00, +1,1,5136,2026,1,1,,0,,,8,2,24,8/2/26 23:00, +1,1,5137,2026,1,1,,0,,,8,3,1,8/3/26 0:00, +1,1,5138,2026,1,1,,0,,,8,3,2,8/3/26 1:00, +1,1,5139,2026,1,1,,0,,,8,3,3,8/3/26 2:00, +1,1,5140,2026,1,1,,0,,,8,3,4,8/3/26 3:00, +1,1,5141,2026,1,1,,0,,,8,3,5,8/3/26 4:00, +1,1,5142,2026,1,1,,0,,,8,3,6,8/3/26 5:00, +1,1,5143,2026,1,1,,0,,,8,3,7,8/3/26 6:00, +1,1,5144,2026,1,1,,0,,,8,3,8,8/3/26 7:00, +1,1,5145,2026,1,1,,0,,,8,3,9,8/3/26 8:00, +1,1,5146,2026,1,1,,0,,,8,3,10,8/3/26 9:00, +1,1,5147,2026,1,1,,0,,,8,3,11,8/3/26 10:00, +1,1,5148,2026,1,1,,0,,,8,3,12,8/3/26 11:00, +1,1,5149,2026,1,1,,0,,,8,3,13,8/3/26 12:00, +1,1,5150,2026,1,1,,0,,,8,3,14,8/3/26 13:00, +1,1,5151,2026,1,1,,0,,,8,3,15,8/3/26 14:00, +1,1,5152,2026,1,1,,0,,,8,3,16,8/3/26 15:00, +1,1,5153,2026,1,1,,0,,,8,3,17,8/3/26 16:00, +1,1,5154,2026,1,1,,0,,,8,3,18,8/3/26 17:00, +1,1,5155,2026,1,1,,0,,,8,3,19,8/3/26 18:00, +1,1,5156,2026,1,1,,0,,,8,3,20,8/3/26 19:00, +1,1,5157,2026,1,1,,0,,,8,3,21,8/3/26 20:00, +1,1,5158,2026,1,1,,0,,,8,3,22,8/3/26 21:00, +1,1,5159,2026,1,1,,0,,,8,3,23,8/3/26 22:00, +1,1,5160,2026,1,1,,0,,,8,3,24,8/3/26 23:00, +1,1,5161,2026,1,1,,0,,,8,4,1,8/4/26 0:00, +1,1,5162,2026,1,1,,0,,,8,4,2,8/4/26 1:00, +1,1,5163,2026,1,1,,0,,,8,4,3,8/4/26 2:00, +1,1,5164,2026,1,1,,0,,,8,4,4,8/4/26 3:00, +1,1,5165,2026,1,1,,0,,,8,4,5,8/4/26 4:00, +1,1,5166,2026,1,1,,0,,,8,4,6,8/4/26 5:00, +1,1,5167,2026,1,1,,0,,,8,4,7,8/4/26 6:00, +1,1,5168,2026,1,1,,0,,,8,4,8,8/4/26 7:00, +1,1,5169,2026,1,1,,0,,,8,4,9,8/4/26 8:00, +1,1,5170,2026,1,1,,0,,,8,4,10,8/4/26 9:00, +1,1,5171,2026,1,1,,0,,,8,4,11,8/4/26 10:00, +1,1,5172,2026,1,1,,0,,,8,4,12,8/4/26 11:00, +1,1,5173,2026,1,1,,0,,,8,4,13,8/4/26 12:00, +1,1,5174,2026,1,1,,0,,,8,4,14,8/4/26 13:00, +1,1,5175,2026,1,1,,0,,,8,4,15,8/4/26 14:00, +1,1,5176,2026,1,1,,0,,,8,4,16,8/4/26 15:00, +1,1,5177,2026,1,1,,0,,,8,4,17,8/4/26 16:00, +1,1,5178,2026,1,1,,0,,,8,4,18,8/4/26 17:00, +1,1,5179,2026,1,1,,0,,,8,4,19,8/4/26 18:00, +1,1,5180,2026,1,1,,0,,,8,4,20,8/4/26 19:00, +1,1,5181,2026,1,1,,0,,,8,4,21,8/4/26 20:00, +1,1,5182,2026,1,1,,0,,,8,4,22,8/4/26 21:00, +1,1,5183,2026,1,1,,0,,,8,4,23,8/4/26 22:00, +1,1,5184,2026,1,1,,0,,,8,4,24,8/4/26 23:00, +1,1,5185,2026,1,1,,0,,,8,5,1,8/5/26 0:00, +1,1,5186,2026,1,1,,0,,,8,5,2,8/5/26 1:00, +1,1,5187,2026,1,1,,0,,,8,5,3,8/5/26 2:00, +1,1,5188,2026,1,1,,0,,,8,5,4,8/5/26 3:00, +1,1,5189,2026,1,1,,0,,,8,5,5,8/5/26 4:00, +1,1,5190,2026,1,1,,0,,,8,5,6,8/5/26 5:00, +1,1,5191,2026,1,1,,0,,,8,5,7,8/5/26 6:00, +1,1,5192,2026,1,1,,0,,,8,5,8,8/5/26 7:00, +1,1,5193,2026,1,1,,0,,,8,5,9,8/5/26 8:00, +1,1,5194,2026,1,1,,0,,,8,5,10,8/5/26 9:00, +1,1,5195,2026,1,1,,0,,,8,5,11,8/5/26 10:00, +1,1,5196,2026,1,1,,0,,,8,5,12,8/5/26 11:00, +1,1,5197,2026,1,1,,0,,,8,5,13,8/5/26 12:00, +1,1,5198,2026,1,1,,0,,,8,5,14,8/5/26 13:00, +1,1,5199,2026,1,1,,0,,,8,5,15,8/5/26 14:00, +1,1,5200,2026,1,1,,0,,,8,5,16,8/5/26 15:00, +1,1,5201,2026,1,1,,0,,,8,5,17,8/5/26 16:00, +1,1,5202,2026,1,1,,0,,,8,5,18,8/5/26 17:00, +1,1,5203,2026,1,1,,0,,,8,5,19,8/5/26 18:00, +1,1,5204,2026,1,1,,0,,,8,5,20,8/5/26 19:00, +1,1,5205,2026,1,1,,0,,,8,5,21,8/5/26 20:00, +1,1,5206,2026,1,1,,0,,,8,5,22,8/5/26 21:00, +1,1,5207,2026,1,1,,0,,,8,5,23,8/5/26 22:00, +1,1,5208,2026,1,1,,0,,,8,5,24,8/5/26 23:00, +1,1,5209,2026,1,1,,0,,,8,6,1,8/6/26 0:00, +1,1,5210,2026,1,1,,0,,,8,6,2,8/6/26 1:00, +1,1,5211,2026,1,1,,0,,,8,6,3,8/6/26 2:00, +1,1,5212,2026,1,1,,0,,,8,6,4,8/6/26 3:00, +1,1,5213,2026,1,1,,0,,,8,6,5,8/6/26 4:00, +1,1,5214,2026,1,1,,0,,,8,6,6,8/6/26 5:00, +1,1,5215,2026,1,1,,0,,,8,6,7,8/6/26 6:00, +1,1,5216,2026,1,1,,0,,,8,6,8,8/6/26 7:00, +1,1,5217,2026,1,1,,0,,,8,6,9,8/6/26 8:00, +1,1,5218,2026,1,1,,0,,,8,6,10,8/6/26 9:00, +1,1,5219,2026,1,1,,0,,,8,6,11,8/6/26 10:00, +1,1,5220,2026,1,1,,0,,,8,6,12,8/6/26 11:00, +1,1,5221,2026,1,1,,0,,,8,6,13,8/6/26 12:00, +1,1,5222,2026,1,1,,0,,,8,6,14,8/6/26 13:00, +1,1,5223,2026,1,1,,0,,,8,6,15,8/6/26 14:00, +1,1,5224,2026,1,1,,0,,,8,6,16,8/6/26 15:00, +1,1,5225,2026,1,1,,0,,,8,6,17,8/6/26 16:00, +1,1,5226,2026,1,1,,0,,,8,6,18,8/6/26 17:00, +1,1,5227,2026,1,1,,0,,,8,6,19,8/6/26 18:00, +1,1,5228,2026,1,1,,0,,,8,6,20,8/6/26 19:00, +1,1,5229,2026,1,1,,0,,,8,6,21,8/6/26 20:00, +1,1,5230,2026,1,1,,0,,,8,6,22,8/6/26 21:00, +1,1,5231,2026,1,1,,0,,,8,6,23,8/6/26 22:00, +1,1,5232,2026,1,1,,0,,,8,6,24,8/6/26 23:00, +1,1,5233,2026,1,1,,0,,,8,7,1,8/7/26 0:00, +1,1,5234,2026,1,1,,0,,,8,7,2,8/7/26 1:00, +1,1,5235,2026,1,1,,0,,,8,7,3,8/7/26 2:00, +1,1,5236,2026,1,1,,0,,,8,7,4,8/7/26 3:00, +1,1,5237,2026,1,1,,0,,,8,7,5,8/7/26 4:00, +1,1,5238,2026,1,1,,0,,,8,7,6,8/7/26 5:00, +1,1,5239,2026,1,1,,0,,,8,7,7,8/7/26 6:00, +1,1,5240,2026,1,1,,0,,,8,7,8,8/7/26 7:00, +1,1,5241,2026,1,1,,0,,,8,7,9,8/7/26 8:00, +1,1,5242,2026,1,1,,0,,,8,7,10,8/7/26 9:00, +1,1,5243,2026,1,1,,0,,,8,7,11,8/7/26 10:00, +1,1,5244,2026,1,1,,0,,,8,7,12,8/7/26 11:00, +1,1,5245,2026,1,1,,0,,,8,7,13,8/7/26 12:00, +1,1,5246,2026,1,1,,0,,,8,7,14,8/7/26 13:00, +1,1,5247,2026,1,1,,0,,,8,7,15,8/7/26 14:00, +1,1,5248,2026,1,1,,0,,,8,7,16,8/7/26 15:00, +1,1,5249,2026,1,1,,0,,,8,7,17,8/7/26 16:00, +1,1,5250,2026,1,1,,0,,,8,7,18,8/7/26 17:00, +1,1,5251,2026,1,1,,0,,,8,7,19,8/7/26 18:00, +1,1,5252,2026,1,1,,0,,,8,7,20,8/7/26 19:00, +1,1,5253,2026,1,1,,0,,,8,7,21,8/7/26 20:00, +1,1,5254,2026,1,1,,0,,,8,7,22,8/7/26 21:00, +1,1,5255,2026,1,1,,0,,,8,7,23,8/7/26 22:00, +1,1,5256,2026,1,1,,0,,,8,7,24,8/7/26 23:00, +1,1,5257,2026,1,1,,0,,,8,8,1,8/8/26 0:00, +1,1,5258,2026,1,1,,0,,,8,8,2,8/8/26 1:00, +1,1,5259,2026,1,1,,0,,,8,8,3,8/8/26 2:00, +1,1,5260,2026,1,1,,0,,,8,8,4,8/8/26 3:00, +1,1,5261,2026,1,1,,0,,,8,8,5,8/8/26 4:00, +1,1,5262,2026,1,1,,0,,,8,8,6,8/8/26 5:00, +1,1,5263,2026,1,1,,0,,,8,8,7,8/8/26 6:00, +1,1,5264,2026,1,1,,0,,,8,8,8,8/8/26 7:00, +1,1,5265,2026,1,1,,0,,,8,8,9,8/8/26 8:00, +1,1,5266,2026,1,1,,0,,,8,8,10,8/8/26 9:00, +1,1,5267,2026,1,1,,0,,,8,8,11,8/8/26 10:00, +1,1,5268,2026,1,1,,0,,,8,8,12,8/8/26 11:00, +1,1,5269,2026,1,1,,0,,,8,8,13,8/8/26 12:00, +1,1,5270,2026,1,1,,0,,,8,8,14,8/8/26 13:00, +1,1,5271,2026,1,1,,0,,,8,8,15,8/8/26 14:00, +1,1,5272,2026,1,1,,0,,,8,8,16,8/8/26 15:00, +1,1,5273,2026,1,1,,0,,,8,8,17,8/8/26 16:00, +1,1,5274,2026,1,1,,0,,,8,8,18,8/8/26 17:00, +1,1,5275,2026,1,1,,0,,,8,8,19,8/8/26 18:00, +1,1,5276,2026,1,1,,0,,,8,8,20,8/8/26 19:00, +1,1,5277,2026,1,1,,0,,,8,8,21,8/8/26 20:00, +1,1,5278,2026,1,1,,0,,,8,8,22,8/8/26 21:00, +1,1,5279,2026,1,1,,0,,,8,8,23,8/8/26 22:00, +1,1,5280,2026,1,1,,0,,,8,8,24,8/8/26 23:00, +1,1,5281,2026,1,1,,0,,,8,9,1,8/9/26 0:00, +1,1,5282,2026,1,1,,0,,,8,9,2,8/9/26 1:00, +1,1,5283,2026,1,1,,0,,,8,9,3,8/9/26 2:00, +1,1,5284,2026,1,1,,0,,,8,9,4,8/9/26 3:00, +1,1,5285,2026,1,1,,0,,,8,9,5,8/9/26 4:00, +1,1,5286,2026,1,1,,0,,,8,9,6,8/9/26 5:00, +1,1,5287,2026,1,1,,0,,,8,9,7,8/9/26 6:00, +1,1,5288,2026,1,1,,0,,,8,9,8,8/9/26 7:00, +1,1,5289,2026,1,1,,0,,,8,9,9,8/9/26 8:00, +1,1,5290,2026,1,1,,0,,,8,9,10,8/9/26 9:00, +1,1,5291,2026,1,1,,0,,,8,9,11,8/9/26 10:00, +1,1,5292,2026,1,1,,0,,,8,9,12,8/9/26 11:00, +1,1,5293,2026,1,1,,0,,,8,9,13,8/9/26 12:00, +1,1,5294,2026,1,1,,0,,,8,9,14,8/9/26 13:00, +1,1,5295,2026,1,1,,0,,,8,9,15,8/9/26 14:00, +1,1,5296,2026,1,1,,0,,,8,9,16,8/9/26 15:00, +1,1,5297,2026,1,1,,0,,,8,9,17,8/9/26 16:00, +1,1,5298,2026,1,1,,0,,,8,9,18,8/9/26 17:00, +1,1,5299,2026,1,1,,0,,,8,9,19,8/9/26 18:00, +1,1,5300,2026,1,1,,0,,,8,9,20,8/9/26 19:00, +1,1,5301,2026,1,1,,0,,,8,9,21,8/9/26 20:00, +1,1,5302,2026,1,1,,0,,,8,9,22,8/9/26 21:00, +1,1,5303,2026,1,1,,0,,,8,9,23,8/9/26 22:00, +1,1,5304,2026,1,1,,0,,,8,9,24,8/9/26 23:00, +1,1,5305,2026,1,1,,0,,,8,10,1,8/10/26 0:00, +1,1,5306,2026,1,1,,0,,,8,10,2,8/10/26 1:00, +1,1,5307,2026,1,1,,0,,,8,10,3,8/10/26 2:00, +1,1,5308,2026,1,1,,0,,,8,10,4,8/10/26 3:00, +1,1,5309,2026,1,1,,0,,,8,10,5,8/10/26 4:00, +1,1,5310,2026,1,1,,0,,,8,10,6,8/10/26 5:00, +1,1,5311,2026,1,1,,0,,,8,10,7,8/10/26 6:00, +1,1,5312,2026,1,1,,0,,,8,10,8,8/10/26 7:00, +1,1,5313,2026,1,1,,0,,,8,10,9,8/10/26 8:00, +1,1,5314,2026,1,1,,0,,,8,10,10,8/10/26 9:00, +1,1,5315,2026,1,1,,0,,,8,10,11,8/10/26 10:00, +1,1,5316,2026,1,1,,0,,,8,10,12,8/10/26 11:00, +1,1,5317,2026,1,1,,0,,,8,10,13,8/10/26 12:00, +1,1,5318,2026,1,1,,0,,,8,10,14,8/10/26 13:00, +1,1,5319,2026,1,1,,0,,,8,10,15,8/10/26 14:00, +1,1,5320,2026,1,1,,0,,,8,10,16,8/10/26 15:00, +1,1,5321,2026,1,1,,0,,,8,10,17,8/10/26 16:00, +1,1,5322,2026,1,1,,0,,,8,10,18,8/10/26 17:00, +1,1,5323,2026,1,1,,0,,,8,10,19,8/10/26 18:00, +1,1,5324,2026,1,1,,0,,,8,10,20,8/10/26 19:00, +1,1,5325,2026,1,1,,0,,,8,10,21,8/10/26 20:00, +1,1,5326,2026,1,1,,0,,,8,10,22,8/10/26 21:00, +1,1,5327,2026,1,1,,0,,,8,10,23,8/10/26 22:00, +1,1,5328,2026,1,1,,0,,,8,10,24,8/10/26 23:00, +1,1,5329,2026,1,1,,0,,,8,11,1,8/11/26 0:00, +1,1,5330,2026,1,1,,0,,,8,11,2,8/11/26 1:00, +1,1,5331,2026,1,1,,0,,,8,11,3,8/11/26 2:00, +1,1,5332,2026,1,1,,0,,,8,11,4,8/11/26 3:00, +1,1,5333,2026,1,1,,0,,,8,11,5,8/11/26 4:00, +1,1,5334,2026,1,1,,0,,,8,11,6,8/11/26 5:00, +1,1,5335,2026,1,1,,0,,,8,11,7,8/11/26 6:00, +1,1,5336,2026,1,1,,0,,,8,11,8,8/11/26 7:00, +1,1,5337,2026,1,1,,0,,,8,11,9,8/11/26 8:00, +1,1,5338,2026,1,1,,0,,,8,11,10,8/11/26 9:00, +1,1,5339,2026,1,1,,0,,,8,11,11,8/11/26 10:00, +1,1,5340,2026,1,1,,0,,,8,11,12,8/11/26 11:00, +1,1,5341,2026,1,1,,0,,,8,11,13,8/11/26 12:00, +1,1,5342,2026,1,1,,0,,,8,11,14,8/11/26 13:00, +1,1,5343,2026,1,1,,0,,,8,11,15,8/11/26 14:00, +1,1,5344,2026,1,1,,0,,,8,11,16,8/11/26 15:00, +1,1,5345,2026,1,1,,0,,,8,11,17,8/11/26 16:00, +1,1,5346,2026,1,1,,0,,,8,11,18,8/11/26 17:00, +1,1,5347,2026,1,1,,0,,,8,11,19,8/11/26 18:00, +1,1,5348,2026,1,1,,0,,,8,11,20,8/11/26 19:00, +1,1,5349,2026,1,1,,0,,,8,11,21,8/11/26 20:00, +1,1,5350,2026,1,1,,0,,,8,11,22,8/11/26 21:00, +1,1,5351,2026,1,1,,0,,,8,11,23,8/11/26 22:00, +1,1,5352,2026,1,1,,0,,,8,11,24,8/11/26 23:00, +1,1,5353,2026,1,1,,0,,,8,12,1,8/12/26 0:00, +1,1,5354,2026,1,1,,0,,,8,12,2,8/12/26 1:00, +1,1,5355,2026,1,1,,0,,,8,12,3,8/12/26 2:00, +1,1,5356,2026,1,1,,0,,,8,12,4,8/12/26 3:00, +1,1,5357,2026,1,1,,0,,,8,12,5,8/12/26 4:00, +1,1,5358,2026,1,1,,0,,,8,12,6,8/12/26 5:00, +1,1,5359,2026,1,1,,0,,,8,12,7,8/12/26 6:00, +1,1,5360,2026,1,1,,0,,,8,12,8,8/12/26 7:00, +1,1,5361,2026,1,1,,0,,,8,12,9,8/12/26 8:00, +1,1,5362,2026,1,1,,0,,,8,12,10,8/12/26 9:00, +1,1,5363,2026,1,1,,0,,,8,12,11,8/12/26 10:00, +1,1,5364,2026,1,1,,0,,,8,12,12,8/12/26 11:00, +1,1,5365,2026,1,1,,0,,,8,12,13,8/12/26 12:00, +1,1,5366,2026,1,1,,0,,,8,12,14,8/12/26 13:00, +1,1,5367,2026,1,1,,0,,,8,12,15,8/12/26 14:00, +1,1,5368,2026,1,1,,0,,,8,12,16,8/12/26 15:00, +1,1,5369,2026,1,1,,0,,,8,12,17,8/12/26 16:00, +1,1,5370,2026,1,1,,0,,,8,12,18,8/12/26 17:00, +1,1,5371,2026,1,1,,0,,,8,12,19,8/12/26 18:00, +1,1,5372,2026,1,1,,0,,,8,12,20,8/12/26 19:00, +1,1,5373,2026,1,1,,0,,,8,12,21,8/12/26 20:00, +1,1,5374,2026,1,1,,0,,,8,12,22,8/12/26 21:00, +1,1,5375,2026,1,1,,0,,,8,12,23,8/12/26 22:00, +1,1,5376,2026,1,1,,0,,,8,12,24,8/12/26 23:00, +1,1,5377,2026,1,1,,0,,,8,13,1,8/13/26 0:00, +1,1,5378,2026,1,1,,0,,,8,13,2,8/13/26 1:00, +1,1,5379,2026,1,1,,0,,,8,13,3,8/13/26 2:00, +1,1,5380,2026,1,1,,0,,,8,13,4,8/13/26 3:00, +1,1,5381,2026,1,1,,0,,,8,13,5,8/13/26 4:00, +1,1,5382,2026,1,1,,0,,,8,13,6,8/13/26 5:00, +1,1,5383,2026,1,1,,0,,,8,13,7,8/13/26 6:00, +1,1,5384,2026,1,1,,0,,,8,13,8,8/13/26 7:00, +1,1,5385,2026,1,1,,0,,,8,13,9,8/13/26 8:00, +1,1,5386,2026,1,1,,0,,,8,13,10,8/13/26 9:00, +1,1,5387,2026,1,1,,0,,,8,13,11,8/13/26 10:00, +1,1,5388,2026,1,1,,0,,,8,13,12,8/13/26 11:00, +1,1,5389,2026,1,1,,0,,,8,13,13,8/13/26 12:00, +1,1,5390,2026,1,1,,0,,,8,13,14,8/13/26 13:00, +1,1,5391,2026,1,1,,0,,,8,13,15,8/13/26 14:00, +1,1,5392,2026,1,1,,0,,,8,13,16,8/13/26 15:00, +1,1,5393,2026,1,1,,0,,,8,13,17,8/13/26 16:00, +1,1,5394,2026,1,1,,0,,,8,13,18,8/13/26 17:00, +1,1,5395,2026,1,1,,0,,,8,13,19,8/13/26 18:00, +1,1,5396,2026,1,1,,0,,,8,13,20,8/13/26 19:00, +1,1,5397,2026,1,1,,0,,,8,13,21,8/13/26 20:00, +1,1,5398,2026,1,1,,0,,,8,13,22,8/13/26 21:00, +1,1,5399,2026,1,1,,0,,,8,13,23,8/13/26 22:00, +1,1,5400,2026,1,1,,0,,,8,13,24,8/13/26 23:00, +1,1,5401,2026,1,1,,0,,,8,14,1,8/14/26 0:00, +1,1,5402,2026,1,1,,0,,,8,14,2,8/14/26 1:00, +1,1,5403,2026,1,1,,0,,,8,14,3,8/14/26 2:00, +1,1,5404,2026,1,1,,0,,,8,14,4,8/14/26 3:00, +1,1,5405,2026,1,1,,0,,,8,14,5,8/14/26 4:00, +1,1,5406,2026,1,1,,0,,,8,14,6,8/14/26 5:00, +1,1,5407,2026,1,1,,0,,,8,14,7,8/14/26 6:00, +1,1,5408,2026,1,1,,0,,,8,14,8,8/14/26 7:00, +1,1,5409,2026,1,1,,0,,,8,14,9,8/14/26 8:00, +1,1,5410,2026,1,1,,0,,,8,14,10,8/14/26 9:00, +1,1,5411,2026,1,1,,0,,,8,14,11,8/14/26 10:00, +1,1,5412,2026,1,1,,0,,,8,14,12,8/14/26 11:00, +1,1,5413,2026,1,1,,0,,,8,14,13,8/14/26 12:00, +1,1,5414,2026,1,1,,0,,,8,14,14,8/14/26 13:00, +1,1,5415,2026,1,1,,0,,,8,14,15,8/14/26 14:00, +1,1,5416,2026,1,1,,0,,,8,14,16,8/14/26 15:00, +1,1,5417,2026,1,1,,0,,,8,14,17,8/14/26 16:00, +1,1,5418,2026,1,1,,0,,,8,14,18,8/14/26 17:00, +1,1,5419,2026,1,1,,0,,,8,14,19,8/14/26 18:00, +1,1,5420,2026,1,1,,0,,,8,14,20,8/14/26 19:00, +1,1,5421,2026,1,1,,0,,,8,14,21,8/14/26 20:00, +1,1,5422,2026,1,1,,0,,,8,14,22,8/14/26 21:00, +1,1,5423,2026,1,1,,0,,,8,14,23,8/14/26 22:00, +1,1,5424,2026,1,1,,0,,,8,14,24,8/14/26 23:00, +1,1,5425,2026,1,1,,0,,,8,15,1,8/15/26 0:00, +1,1,5426,2026,1,1,,0,,,8,15,2,8/15/26 1:00, +1,1,5427,2026,1,1,,0,,,8,15,3,8/15/26 2:00, +1,1,5428,2026,1,1,,0,,,8,15,4,8/15/26 3:00, +1,1,5429,2026,1,1,,0,,,8,15,5,8/15/26 4:00, +1,1,5430,2026,1,1,,0,,,8,15,6,8/15/26 5:00, +1,1,5431,2026,1,1,,0,,,8,15,7,8/15/26 6:00, +1,1,5432,2026,1,1,,0,,,8,15,8,8/15/26 7:00, +1,1,5433,2026,1,1,,0,,,8,15,9,8/15/26 8:00, +1,1,5434,2026,1,1,,0,,,8,15,10,8/15/26 9:00, +1,1,5435,2026,1,1,,0,,,8,15,11,8/15/26 10:00, +1,1,5436,2026,1,1,,0,,,8,15,12,8/15/26 11:00, +1,1,5437,2026,1,1,,0,,,8,15,13,8/15/26 12:00, +1,1,5438,2026,1,1,,0,,,8,15,14,8/15/26 13:00, +1,1,5439,2026,1,1,,0,,,8,15,15,8/15/26 14:00, +1,1,5440,2026,1,1,,0,,,8,15,16,8/15/26 15:00, +1,1,5441,2026,1,1,,0,,,8,15,17,8/15/26 16:00, +1,1,5442,2026,1,1,,0,,,8,15,18,8/15/26 17:00, +1,1,5443,2026,1,1,,0,,,8,15,19,8/15/26 18:00, +1,1,5444,2026,1,1,,0,,,8,15,20,8/15/26 19:00, +1,1,5445,2026,1,1,,0,,,8,15,21,8/15/26 20:00, +1,1,5446,2026,1,1,,0,,,8,15,22,8/15/26 21:00, +1,1,5447,2026,1,1,,0,,,8,15,23,8/15/26 22:00, +1,1,5448,2026,1,1,,0,,,8,15,24,8/15/26 23:00, +1,1,5449,2026,1,1,,0,,,8,16,1,8/16/26 0:00, +1,1,5450,2026,1,1,,0,,,8,16,2,8/16/26 1:00, +1,1,5451,2026,1,1,,0,,,8,16,3,8/16/26 2:00, +1,1,5452,2026,1,1,,0,,,8,16,4,8/16/26 3:00, +1,1,5453,2026,1,1,,0,,,8,16,5,8/16/26 4:00, +1,1,5454,2026,1,1,,0,,,8,16,6,8/16/26 5:00, +1,1,5455,2026,1,1,,0,,,8,16,7,8/16/26 6:00, +1,1,5456,2026,1,1,,0,,,8,16,8,8/16/26 7:00, +1,1,5457,2026,1,1,,0,,,8,16,9,8/16/26 8:00, +1,1,5458,2026,1,1,,0,,,8,16,10,8/16/26 9:00, +1,1,5459,2026,1,1,,0,,,8,16,11,8/16/26 10:00, +1,1,5460,2026,1,1,,0,,,8,16,12,8/16/26 11:00, +1,1,5461,2026,1,1,,0,,,8,16,13,8/16/26 12:00, +1,1,5462,2026,1,1,,0,,,8,16,14,8/16/26 13:00, +1,1,5463,2026,1,1,,0,,,8,16,15,8/16/26 14:00, +1,1,5464,2026,1,1,,0,,,8,16,16,8/16/26 15:00, +1,1,5465,2026,1,1,,0,,,8,16,17,8/16/26 16:00, +1,1,5466,2026,1,1,,0,,,8,16,18,8/16/26 17:00, +1,1,5467,2026,1,1,,0,,,8,16,19,8/16/26 18:00, +1,1,5468,2026,1,1,,0,,,8,16,20,8/16/26 19:00, +1,1,5469,2026,1,1,,0,,,8,16,21,8/16/26 20:00, +1,1,5470,2026,1,1,,0,,,8,16,22,8/16/26 21:00, +1,1,5471,2026,1,1,,0,,,8,16,23,8/16/26 22:00, +1,1,5472,2026,1,1,,0,,,8,16,24,8/16/26 23:00, +1,1,5473,2026,1,1,,0,,,8,17,1,8/17/26 0:00, +1,1,5474,2026,1,1,,0,,,8,17,2,8/17/26 1:00, +1,1,5475,2026,1,1,,0,,,8,17,3,8/17/26 2:00, +1,1,5476,2026,1,1,,0,,,8,17,4,8/17/26 3:00, +1,1,5477,2026,1,1,,0,,,8,17,5,8/17/26 4:00, +1,1,5478,2026,1,1,,0,,,8,17,6,8/17/26 5:00, +1,1,5479,2026,1,1,,0,,,8,17,7,8/17/26 6:00, +1,1,5480,2026,1,1,,0,,,8,17,8,8/17/26 7:00, +1,1,5481,2026,1,1,,0,,,8,17,9,8/17/26 8:00, +1,1,5482,2026,1,1,,0,,,8,17,10,8/17/26 9:00, +1,1,5483,2026,1,1,,0,,,8,17,11,8/17/26 10:00, +1,1,5484,2026,1,1,,0,,,8,17,12,8/17/26 11:00, +1,1,5485,2026,1,1,,0,,,8,17,13,8/17/26 12:00, +1,1,5486,2026,1,1,,0,,,8,17,14,8/17/26 13:00, +1,1,5487,2026,1,1,,0,,,8,17,15,8/17/26 14:00, +1,1,5488,2026,1,1,,0,,,8,17,16,8/17/26 15:00, +1,1,5489,2026,1,1,,0,,,8,17,17,8/17/26 16:00, +1,1,5490,2026,1,1,,0,,,8,17,18,8/17/26 17:00, +1,1,5491,2026,1,1,,0,,,8,17,19,8/17/26 18:00, +1,1,5492,2026,1,1,,0,,,8,17,20,8/17/26 19:00, +1,1,5493,2026,1,1,,0,,,8,17,21,8/17/26 20:00, +1,1,5494,2026,1,1,,0,,,8,17,22,8/17/26 21:00, +1,1,5495,2026,1,1,,0,,,8,17,23,8/17/26 22:00, +1,1,5496,2026,1,1,,0,,,8,17,24,8/17/26 23:00, +1,1,5497,2026,1,1,,0,,,8,18,1,8/18/26 0:00, +1,1,5498,2026,1,1,,0,,,8,18,2,8/18/26 1:00, +1,1,5499,2026,1,1,,0,,,8,18,3,8/18/26 2:00, +1,1,5500,2026,1,1,,0,,,8,18,4,8/18/26 3:00, +1,1,5501,2026,1,1,,0,,,8,18,5,8/18/26 4:00, +1,1,5502,2026,1,1,,0,,,8,18,6,8/18/26 5:00, +1,1,5503,2026,1,1,,0,,,8,18,7,8/18/26 6:00, +1,1,5504,2026,1,1,,0,,,8,18,8,8/18/26 7:00, +1,1,5505,2026,1,1,,0,,,8,18,9,8/18/26 8:00, +1,1,5506,2026,1,1,,0,,,8,18,10,8/18/26 9:00, +1,1,5507,2026,1,1,,0,,,8,18,11,8/18/26 10:00, +1,1,5508,2026,1,1,,0,,,8,18,12,8/18/26 11:00, +1,1,5509,2026,1,1,,0,,,8,18,13,8/18/26 12:00, +1,1,5510,2026,1,1,,0,,,8,18,14,8/18/26 13:00, +1,1,5511,2026,1,1,,0,,,8,18,15,8/18/26 14:00, +1,1,5512,2026,1,1,,0,,,8,18,16,8/18/26 15:00, +1,1,5513,2026,1,1,,0,,,8,18,17,8/18/26 16:00, +1,1,5514,2026,1,1,,0,,,8,18,18,8/18/26 17:00, +1,1,5515,2026,1,1,,0,,,8,18,19,8/18/26 18:00, +1,1,5516,2026,1,1,,0,,,8,18,20,8/18/26 19:00, +1,1,5517,2026,1,1,,0,,,8,18,21,8/18/26 20:00, +1,1,5518,2026,1,1,,0,,,8,18,22,8/18/26 21:00, +1,1,5519,2026,1,1,,0,,,8,18,23,8/18/26 22:00, +1,1,5520,2026,1,1,,0,,,8,18,24,8/18/26 23:00, +1,1,5521,2026,1,1,,0,,,8,19,1,8/19/26 0:00, +1,1,5522,2026,1,1,,0,,,8,19,2,8/19/26 1:00, +1,1,5523,2026,1,1,,0,,,8,19,3,8/19/26 2:00, +1,1,5524,2026,1,1,,0,,,8,19,4,8/19/26 3:00, +1,1,5525,2026,1,1,,0,,,8,19,5,8/19/26 4:00, +1,1,5526,2026,1,1,,0,,,8,19,6,8/19/26 5:00, +1,1,5527,2026,1,1,,0,,,8,19,7,8/19/26 6:00, +1,1,5528,2026,1,1,,0,,,8,19,8,8/19/26 7:00, +1,1,5529,2026,1,1,,0,,,8,19,9,8/19/26 8:00, +1,1,5530,2026,1,1,,0,,,8,19,10,8/19/26 9:00, +1,1,5531,2026,1,1,,0,,,8,19,11,8/19/26 10:00, +1,1,5532,2026,1,1,,0,,,8,19,12,8/19/26 11:00, +1,1,5533,2026,1,1,,0,,,8,19,13,8/19/26 12:00, +1,1,5534,2026,1,1,,0,,,8,19,14,8/19/26 13:00, +1,1,5535,2026,1,1,,0,,,8,19,15,8/19/26 14:00, +1,1,5536,2026,1,1,,0,,,8,19,16,8/19/26 15:00, +1,1,5537,2026,1,1,,0,,,8,19,17,8/19/26 16:00, +1,1,5538,2026,1,1,,0,,,8,19,18,8/19/26 17:00, +1,1,5539,2026,1,1,,0,,,8,19,19,8/19/26 18:00, +1,1,5540,2026,1,1,,0,,,8,19,20,8/19/26 19:00, +1,1,5541,2026,1,1,,0,,,8,19,21,8/19/26 20:00, +1,1,5542,2026,1,1,,0,,,8,19,22,8/19/26 21:00, +1,1,5543,2026,1,1,,0,,,8,19,23,8/19/26 22:00, +1,1,5544,2026,1,1,,0,,,8,19,24,8/19/26 23:00, +1,1,5545,2026,1,1,,0,,,8,20,1,8/20/26 0:00, +1,1,5546,2026,1,1,,0,,,8,20,2,8/20/26 1:00, +1,1,5547,2026,1,1,,0,,,8,20,3,8/20/26 2:00, +1,1,5548,2026,1,1,,0,,,8,20,4,8/20/26 3:00, +1,1,5549,2026,1,1,,0,,,8,20,5,8/20/26 4:00, +1,1,5550,2026,1,1,,0,,,8,20,6,8/20/26 5:00, +1,1,5551,2026,1,1,,0,,,8,20,7,8/20/26 6:00, +1,1,5552,2026,1,1,,0,,,8,20,8,8/20/26 7:00, +1,1,5553,2026,1,1,,0,,,8,20,9,8/20/26 8:00, +1,1,5554,2026,1,1,,0,,,8,20,10,8/20/26 9:00, +1,1,5555,2026,1,1,,0,,,8,20,11,8/20/26 10:00, +1,1,5556,2026,1,1,,0,,,8,20,12,8/20/26 11:00, +1,1,5557,2026,1,1,,0,,,8,20,13,8/20/26 12:00, +1,1,5558,2026,1,1,,0,,,8,20,14,8/20/26 13:00, +1,1,5559,2026,1,1,,0,,,8,20,15,8/20/26 14:00, +1,1,5560,2026,1,1,,0,,,8,20,16,8/20/26 15:00, +1,1,5561,2026,1,1,,0,,,8,20,17,8/20/26 16:00, +1,1,5562,2026,1,1,,0,,,8,20,18,8/20/26 17:00, +1,1,5563,2026,1,1,,0,,,8,20,19,8/20/26 18:00, +1,1,5564,2026,1,1,,0,,,8,20,20,8/20/26 19:00, +1,1,5565,2026,1,1,,0,,,8,20,21,8/20/26 20:00, +1,1,5566,2026,1,1,,0,,,8,20,22,8/20/26 21:00, +1,1,5567,2026,1,1,,0,,,8,20,23,8/20/26 22:00, +1,1,5568,2026,1,1,,0,,,8,20,24,8/20/26 23:00, +1,1,5569,2026,1,1,,0,,,8,21,1,8/21/26 0:00, +1,1,5570,2026,1,1,,0,,,8,21,2,8/21/26 1:00, +1,1,5571,2026,1,1,,0,,,8,21,3,8/21/26 2:00, +1,1,5572,2026,1,1,,0,,,8,21,4,8/21/26 3:00, +1,1,5573,2026,1,1,,0,,,8,21,5,8/21/26 4:00, +1,1,5574,2026,1,1,,0,,,8,21,6,8/21/26 5:00, +1,1,5575,2026,1,1,,0,,,8,21,7,8/21/26 6:00, +1,1,5576,2026,1,1,,0,,,8,21,8,8/21/26 7:00, +1,1,5577,2026,1,1,,0,,,8,21,9,8/21/26 8:00, +1,1,5578,2026,1,1,,0,,,8,21,10,8/21/26 9:00, +1,1,5579,2026,1,1,,0,,,8,21,11,8/21/26 10:00, +1,1,5580,2026,1,1,,0,,,8,21,12,8/21/26 11:00, +1,1,5581,2026,1,1,,0,,,8,21,13,8/21/26 12:00, +1,1,5582,2026,1,1,,0,,,8,21,14,8/21/26 13:00, +1,1,5583,2026,1,1,,0,,,8,21,15,8/21/26 14:00, +1,1,5584,2026,1,1,,0,,,8,21,16,8/21/26 15:00, +1,1,5585,2026,1,1,,0,,,8,21,17,8/21/26 16:00, +1,1,5586,2026,1,1,,0,,,8,21,18,8/21/26 17:00, +1,1,5587,2026,1,1,,0,,,8,21,19,8/21/26 18:00, +1,1,5588,2026,1,1,,0,,,8,21,20,8/21/26 19:00, +1,1,5589,2026,1,1,,0,,,8,21,21,8/21/26 20:00, +1,1,5590,2026,1,1,,0,,,8,21,22,8/21/26 21:00, +1,1,5591,2026,1,1,,0,,,8,21,23,8/21/26 22:00, +1,1,5592,2026,1,1,,0,,,8,21,24,8/21/26 23:00, +1,1,5593,2026,1,1,,0,,,8,22,1,8/22/26 0:00, +1,1,5594,2026,1,1,,0,,,8,22,2,8/22/26 1:00, +1,1,5595,2026,1,1,,0,,,8,22,3,8/22/26 2:00, +1,1,5596,2026,1,1,,0,,,8,22,4,8/22/26 3:00, +1,1,5597,2026,1,1,,0,,,8,22,5,8/22/26 4:00, +1,1,5598,2026,1,1,,0,,,8,22,6,8/22/26 5:00, +1,1,5599,2026,1,1,,0,,,8,22,7,8/22/26 6:00, +1,1,5600,2026,1,1,,0,,,8,22,8,8/22/26 7:00, +1,1,5601,2026,1,1,,0,,,8,22,9,8/22/26 8:00, +1,1,5602,2026,1,1,,0,,,8,22,10,8/22/26 9:00, +1,1,5603,2026,1,1,,0,,,8,22,11,8/22/26 10:00, +1,1,5604,2026,1,1,,0,,,8,22,12,8/22/26 11:00, +1,1,5605,2026,1,1,,0,,,8,22,13,8/22/26 12:00, +1,1,5606,2026,1,1,,0,,,8,22,14,8/22/26 13:00, +1,1,5607,2026,1,1,,0,,,8,22,15,8/22/26 14:00, +1,1,5608,2026,1,1,,0,,,8,22,16,8/22/26 15:00, +1,1,5609,2026,1,1,,0,,,8,22,17,8/22/26 16:00, +1,1,5610,2026,1,1,,0,,,8,22,18,8/22/26 17:00, +1,1,5611,2026,1,1,,0,,,8,22,19,8/22/26 18:00, +1,1,5612,2026,1,1,,0,,,8,22,20,8/22/26 19:00, +1,1,5613,2026,1,1,,0,,,8,22,21,8/22/26 20:00, +1,1,5614,2026,1,1,,0,,,8,22,22,8/22/26 21:00, +1,1,5615,2026,1,1,,0,,,8,22,23,8/22/26 22:00, +1,1,5616,2026,1,1,,0,,,8,22,24,8/22/26 23:00, +1,1,5617,2026,1,1,,0,,,8,23,1,8/23/26 0:00, +1,1,5618,2026,1,1,,0,,,8,23,2,8/23/26 1:00, +1,1,5619,2026,1,1,,0,,,8,23,3,8/23/26 2:00, +1,1,5620,2026,1,1,,0,,,8,23,4,8/23/26 3:00, +1,1,5621,2026,1,1,,0,,,8,23,5,8/23/26 4:00, +1,1,5622,2026,1,1,,0,,,8,23,6,8/23/26 5:00, +1,1,5623,2026,1,1,,0,,,8,23,7,8/23/26 6:00, +1,1,5624,2026,1,1,,0,,,8,23,8,8/23/26 7:00, +1,1,5625,2026,1,1,,0,,,8,23,9,8/23/26 8:00, +1,1,5626,2026,1,1,,0,,,8,23,10,8/23/26 9:00, +1,1,5627,2026,1,1,,0,,,8,23,11,8/23/26 10:00, +1,1,5628,2026,1,1,,0,,,8,23,12,8/23/26 11:00, +1,1,5629,2026,1,1,,0,,,8,23,13,8/23/26 12:00, +1,1,5630,2026,1,1,,0,,,8,23,14,8/23/26 13:00, +1,1,5631,2026,1,1,,0,,,8,23,15,8/23/26 14:00, +1,1,5632,2026,1,1,,0,,,8,23,16,8/23/26 15:00, +1,1,5633,2026,1,1,,0,,,8,23,17,8/23/26 16:00, +1,1,5634,2026,1,1,,0,,,8,23,18,8/23/26 17:00, +1,1,5635,2026,1,1,,0,,,8,23,19,8/23/26 18:00, +1,1,5636,2026,1,1,,0,,,8,23,20,8/23/26 19:00, +1,1,5637,2026,1,1,,0,,,8,23,21,8/23/26 20:00, +1,1,5638,2026,1,1,,0,,,8,23,22,8/23/26 21:00, +1,1,5639,2026,1,1,,0,,,8,23,23,8/23/26 22:00, +1,1,5640,2026,1,1,,0,,,8,23,24,8/23/26 23:00, +1,1,5641,2026,1,1,,0,,,8,24,1,8/24/26 0:00, +1,1,5642,2026,1,1,,0,,,8,24,2,8/24/26 1:00, +1,1,5643,2026,1,1,,0,,,8,24,3,8/24/26 2:00, +1,1,5644,2026,1,1,,0,,,8,24,4,8/24/26 3:00, +1,1,5645,2026,1,1,,0,,,8,24,5,8/24/26 4:00, +1,1,5646,2026,1,1,,0,,,8,24,6,8/24/26 5:00, +1,1,5647,2026,1,1,,0,,,8,24,7,8/24/26 6:00, +1,1,5648,2026,1,1,,0,,,8,24,8,8/24/26 7:00, +1,1,5649,2026,1,1,,0,,,8,24,9,8/24/26 8:00, +1,1,5650,2026,1,1,,0,,,8,24,10,8/24/26 9:00, +1,1,5651,2026,1,1,,0,,,8,24,11,8/24/26 10:00, +1,1,5652,2026,1,1,,0,,,8,24,12,8/24/26 11:00, +1,1,5653,2026,1,1,,0,,,8,24,13,8/24/26 12:00, +1,1,5654,2026,1,1,,0,,,8,24,14,8/24/26 13:00, +1,1,5655,2026,1,1,,0,,,8,24,15,8/24/26 14:00, +1,1,5656,2026,1,1,,0,,,8,24,16,8/24/26 15:00, +1,1,5657,2026,1,1,,0,,,8,24,17,8/24/26 16:00, +1,1,5658,2026,1,1,,0,,,8,24,18,8/24/26 17:00, +1,1,5659,2026,1,1,,0,,,8,24,19,8/24/26 18:00, +1,1,5660,2026,1,1,,0,,,8,24,20,8/24/26 19:00, +1,1,5661,2026,1,1,,0,,,8,24,21,8/24/26 20:00, +1,1,5662,2026,1,1,,0,,,8,24,22,8/24/26 21:00, +1,1,5663,2026,1,1,,0,,,8,24,23,8/24/26 22:00, +1,1,5664,2026,1,1,,0,,,8,24,24,8/24/26 23:00, +1,1,5665,2026,1,1,,0,,,8,25,1,8/25/26 0:00, +1,1,5666,2026,1,1,,0,,,8,25,2,8/25/26 1:00, +1,1,5667,2026,1,1,,0,,,8,25,3,8/25/26 2:00, +1,1,5668,2026,1,1,,0,,,8,25,4,8/25/26 3:00, +1,1,5669,2026,1,1,,0,,,8,25,5,8/25/26 4:00, +1,1,5670,2026,1,1,,0,,,8,25,6,8/25/26 5:00, +1,1,5671,2026,1,1,,0,,,8,25,7,8/25/26 6:00, +1,1,5672,2026,1,1,,0,,,8,25,8,8/25/26 7:00, +1,1,5673,2026,1,1,,0,,,8,25,9,8/25/26 8:00, +1,1,5674,2026,1,1,,0,,,8,25,10,8/25/26 9:00, +1,1,5675,2026,1,1,,0,,,8,25,11,8/25/26 10:00, +1,1,5676,2026,1,1,,0,,,8,25,12,8/25/26 11:00, +1,1,5677,2026,1,1,,0,,,8,25,13,8/25/26 12:00, +1,1,5678,2026,1,1,,0,,,8,25,14,8/25/26 13:00, +1,1,5679,2026,1,1,,0,,,8,25,15,8/25/26 14:00, +1,1,5680,2026,1,1,,0,,,8,25,16,8/25/26 15:00, +1,1,5681,2026,1,1,,0,,,8,25,17,8/25/26 16:00, +1,1,5682,2026,1,1,,0,,,8,25,18,8/25/26 17:00, +1,1,5683,2026,1,1,,0,,,8,25,19,8/25/26 18:00, +1,1,5684,2026,1,1,,0,,,8,25,20,8/25/26 19:00, +1,1,5685,2026,1,1,,0,,,8,25,21,8/25/26 20:00, +1,1,5686,2026,1,1,,0,,,8,25,22,8/25/26 21:00, +1,1,5687,2026,1,1,,0,,,8,25,23,8/25/26 22:00, +1,1,5688,2026,1,1,,0,,,8,25,24,8/25/26 23:00, +1,1,5689,2026,1,1,,0,,,8,26,1,8/26/26 0:00, +1,1,5690,2026,1,1,,0,,,8,26,2,8/26/26 1:00, +1,1,5691,2026,1,1,,0,,,8,26,3,8/26/26 2:00, +1,1,5692,2026,1,1,,0,,,8,26,4,8/26/26 3:00, +1,1,5693,2026,1,1,,0,,,8,26,5,8/26/26 4:00, +1,1,5694,2026,1,1,,0,,,8,26,6,8/26/26 5:00, +1,1,5695,2026,1,1,,0,,,8,26,7,8/26/26 6:00, +1,1,5696,2026,1,1,,0,,,8,26,8,8/26/26 7:00, +1,1,5697,2026,1,1,,0,,,8,26,9,8/26/26 8:00, +1,1,5698,2026,1,1,,0,,,8,26,10,8/26/26 9:00, +1,1,5699,2026,1,1,,0,,,8,26,11,8/26/26 10:00, +1,1,5700,2026,1,1,,0,,,8,26,12,8/26/26 11:00, +1,1,5701,2026,1,1,,0,,,8,26,13,8/26/26 12:00, +1,1,5702,2026,1,1,,0,,,8,26,14,8/26/26 13:00, +1,1,5703,2026,1,1,,0,,,8,26,15,8/26/26 14:00, +1,1,5704,2026,1,1,,0,,,8,26,16,8/26/26 15:00, +1,1,5705,2026,1,1,,0,,,8,26,17,8/26/26 16:00, +1,1,5706,2026,1,1,,0,,,8,26,18,8/26/26 17:00, +1,1,5707,2026,1,1,,0,,,8,26,19,8/26/26 18:00, +1,1,5708,2026,1,1,,0,,,8,26,20,8/26/26 19:00, +1,1,5709,2026,1,1,,0,,,8,26,21,8/26/26 20:00, +1,1,5710,2026,1,1,,0,,,8,26,22,8/26/26 21:00, +1,1,5711,2026,1,1,,0,,,8,26,23,8/26/26 22:00, +1,1,5712,2026,1,1,,0,,,8,26,24,8/26/26 23:00, +1,1,5713,2026,1,1,,0,,,8,27,1,8/27/26 0:00, +1,1,5714,2026,1,1,,0,,,8,27,2,8/27/26 1:00, +1,1,5715,2026,1,1,,0,,,8,27,3,8/27/26 2:00, +1,1,5716,2026,1,1,,0,,,8,27,4,8/27/26 3:00, +1,1,5717,2026,1,1,,0,,,8,27,5,8/27/26 4:00, +1,1,5718,2026,1,1,,0,,,8,27,6,8/27/26 5:00, +1,1,5719,2026,1,1,,0,,,8,27,7,8/27/26 6:00, +1,1,5720,2026,1,1,,0,,,8,27,8,8/27/26 7:00, +1,1,5721,2026,1,1,,0,,,8,27,9,8/27/26 8:00, +1,1,5722,2026,1,1,,0,,,8,27,10,8/27/26 9:00, +1,1,5723,2026,1,1,,0,,,8,27,11,8/27/26 10:00, +1,1,5724,2026,1,1,,0,,,8,27,12,8/27/26 11:00, +1,1,5725,2026,1,1,,0,,,8,27,13,8/27/26 12:00, +1,1,5726,2026,1,1,,0,,,8,27,14,8/27/26 13:00, +1,1,5727,2026,1,1,,0,,,8,27,15,8/27/26 14:00, +1,1,5728,2026,1,1,,0,,,8,27,16,8/27/26 15:00, +1,1,5729,2026,1,1,,0,,,8,27,17,8/27/26 16:00, +1,1,5730,2026,1,1,,0,,,8,27,18,8/27/26 17:00, +1,1,5731,2026,1,1,,0,,,8,27,19,8/27/26 18:00, +1,1,5732,2026,1,1,,0,,,8,27,20,8/27/26 19:00, +1,1,5733,2026,1,1,,0,,,8,27,21,8/27/26 20:00, +1,1,5734,2026,1,1,,0,,,8,27,22,8/27/26 21:00, +1,1,5735,2026,1,1,,0,,,8,27,23,8/27/26 22:00, +1,1,5736,2026,1,1,,0,,,8,27,24,8/27/26 23:00, +1,1,5737,2026,1,1,,0,,,8,28,1,8/28/26 0:00, +1,1,5738,2026,1,1,,0,,,8,28,2,8/28/26 1:00, +1,1,5739,2026,1,1,,0,,,8,28,3,8/28/26 2:00, +1,1,5740,2026,1,1,,0,,,8,28,4,8/28/26 3:00, +1,1,5741,2026,1,1,,0,,,8,28,5,8/28/26 4:00, +1,1,5742,2026,1,1,,0,,,8,28,6,8/28/26 5:00, +1,1,5743,2026,1,1,,0,,,8,28,7,8/28/26 6:00, +1,1,5744,2026,1,1,,0,,,8,28,8,8/28/26 7:00, +1,1,5745,2026,1,1,,0,,,8,28,9,8/28/26 8:00, +1,1,5746,2026,1,1,,0,,,8,28,10,8/28/26 9:00, +1,1,5747,2026,1,1,,0,,,8,28,11,8/28/26 10:00, +1,1,5748,2026,1,1,,0,,,8,28,12,8/28/26 11:00, +1,1,5749,2026,1,1,,0,,,8,28,13,8/28/26 12:00, +1,1,5750,2026,1,1,,0,,,8,28,14,8/28/26 13:00, +1,1,5751,2026,1,1,,0,,,8,28,15,8/28/26 14:00, +1,1,5752,2026,1,1,,0,,,8,28,16,8/28/26 15:00, +1,1,5753,2026,1,1,,0,,,8,28,17,8/28/26 16:00, +1,1,5754,2026,1,1,,0,,,8,28,18,8/28/26 17:00, +1,1,5755,2026,1,1,,0,,,8,28,19,8/28/26 18:00, +1,1,5756,2026,1,1,,0,,,8,28,20,8/28/26 19:00, +1,1,5757,2026,1,1,,0,,,8,28,21,8/28/26 20:00, +1,1,5758,2026,1,1,,0,,,8,28,22,8/28/26 21:00, +1,1,5759,2026,1,1,,0,,,8,28,23,8/28/26 22:00, +1,1,5760,2026,1,1,,0,,,8,28,24,8/28/26 23:00, +1,1,5761,2026,1,1,,0,,,8,29,1,8/29/26 0:00, +1,1,5762,2026,1,1,,0,,,8,29,2,8/29/26 1:00, +1,1,5763,2026,1,1,,0,,,8,29,3,8/29/26 2:00, +1,1,5764,2026,1,1,,0,,,8,29,4,8/29/26 3:00, +1,1,5765,2026,1,1,,0,,,8,29,5,8/29/26 4:00, +1,1,5766,2026,1,1,,0,,,8,29,6,8/29/26 5:00, +1,1,5767,2026,1,1,,0,,,8,29,7,8/29/26 6:00, +1,1,5768,2026,1,1,,0,,,8,29,8,8/29/26 7:00, +1,1,5769,2026,1,1,,0,,,8,29,9,8/29/26 8:00, +1,1,5770,2026,1,1,,0,,,8,29,10,8/29/26 9:00, +1,1,5771,2026,1,1,,0,,,8,29,11,8/29/26 10:00, +1,1,5772,2026,1,1,,0,,,8,29,12,8/29/26 11:00, +1,1,5773,2026,1,1,,0,,,8,29,13,8/29/26 12:00, +1,1,5774,2026,1,1,,0,,,8,29,14,8/29/26 13:00, +1,1,5775,2026,1,1,,0,,,8,29,15,8/29/26 14:00, +1,1,5776,2026,1,1,,0,,,8,29,16,8/29/26 15:00, +1,1,5777,2026,1,1,,0,,,8,29,17,8/29/26 16:00, +1,1,5778,2026,1,1,,0,,,8,29,18,8/29/26 17:00, +1,1,5779,2026,1,1,,0,,,8,29,19,8/29/26 18:00, +1,1,5780,2026,1,1,,0,,,8,29,20,8/29/26 19:00, +1,1,5781,2026,1,1,,0,,,8,29,21,8/29/26 20:00, +1,1,5782,2026,1,1,,0,,,8,29,22,8/29/26 21:00, +1,1,5783,2026,1,1,,0,,,8,29,23,8/29/26 22:00, +1,1,5784,2026,1,1,,0,,,8,29,24,8/29/26 23:00, +1,1,5785,2026,1,1,,0,,,8,30,1,8/30/26 0:00, +1,1,5786,2026,1,1,,0,,,8,30,2,8/30/26 1:00, +1,1,5787,2026,1,1,,0,,,8,30,3,8/30/26 2:00, +1,1,5788,2026,1,1,,0,,,8,30,4,8/30/26 3:00, +1,1,5789,2026,1,1,,0,,,8,30,5,8/30/26 4:00, +1,1,5790,2026,1,1,,0,,,8,30,6,8/30/26 5:00, +1,1,5791,2026,1,1,,0,,,8,30,7,8/30/26 6:00, +1,1,5792,2026,1,1,,0,,,8,30,8,8/30/26 7:00, +1,1,5793,2026,1,1,,0,,,8,30,9,8/30/26 8:00, +1,1,5794,2026,1,1,,0,,,8,30,10,8/30/26 9:00, +1,1,5795,2026,1,1,,0,,,8,30,11,8/30/26 10:00, +1,1,5796,2026,1,1,,0,,,8,30,12,8/30/26 11:00, +1,1,5797,2026,1,1,,0,,,8,30,13,8/30/26 12:00, +1,1,5798,2026,1,1,,0,,,8,30,14,8/30/26 13:00, +1,1,5799,2026,1,1,,0,,,8,30,15,8/30/26 14:00, +1,1,5800,2026,1,1,,0,,,8,30,16,8/30/26 15:00, +1,1,5801,2026,1,1,,0,,,8,30,17,8/30/26 16:00, +1,1,5802,2026,1,1,,0,,,8,30,18,8/30/26 17:00, +1,1,5803,2026,1,1,,0,,,8,30,19,8/30/26 18:00, +1,1,5804,2026,1,1,,0,,,8,30,20,8/30/26 19:00, +1,1,5805,2026,1,1,,0,,,8,30,21,8/30/26 20:00, +1,1,5806,2026,1,1,,0,,,8,30,22,8/30/26 21:00, +1,1,5807,2026,1,1,,0,,,8,30,23,8/30/26 22:00, +1,1,5808,2026,1,1,,0,,,8,30,24,8/30/26 23:00, +1,1,5809,2026,1,1,,0,,,8,31,1,8/31/26 0:00, +1,1,5810,2026,1,1,,0,,,8,31,2,8/31/26 1:00, +1,1,5811,2026,1,1,,0,,,8,31,3,8/31/26 2:00, +1,1,5812,2026,1,1,,0,,,8,31,4,8/31/26 3:00, +1,1,5813,2026,1,1,,0,,,8,31,5,8/31/26 4:00, +1,1,5814,2026,1,1,,0,,,8,31,6,8/31/26 5:00, +1,1,5815,2026,1,1,,0,,,8,31,7,8/31/26 6:00, +1,1,5816,2026,1,1,,0,,,8,31,8,8/31/26 7:00, +1,1,5817,2026,1,1,,0,,,8,31,9,8/31/26 8:00, +1,1,5818,2026,1,1,,0,,,8,31,10,8/31/26 9:00, +1,1,5819,2026,1,1,,0,,,8,31,11,8/31/26 10:00, +1,1,5820,2026,1,1,,0,,,8,31,12,8/31/26 11:00, +1,1,5821,2026,1,1,,0,,,8,31,13,8/31/26 12:00, +1,1,5822,2026,1,1,,0,,,8,31,14,8/31/26 13:00, +1,1,5823,2026,1,1,,0,,,8,31,15,8/31/26 14:00, +1,1,5824,2026,1,1,,0,,,8,31,16,8/31/26 15:00, +1,1,5825,2026,1,1,,0,,,8,31,17,8/31/26 16:00, +1,1,5826,2026,1,1,,0,,,8,31,18,8/31/26 17:00, +1,1,5827,2026,1,1,,0,,,8,31,19,8/31/26 18:00, +1,1,5828,2026,1,1,,0,,,8,31,20,8/31/26 19:00, +1,1,5829,2026,1,1,,0,,,8,31,21,8/31/26 20:00, +1,1,5830,2026,1,1,,0,,,8,31,22,8/31/26 21:00, +1,1,5831,2026,1,1,,0,,,8,31,23,8/31/26 22:00, +1,1,5832,2026,1,1,,0,,,8,31,24,8/31/26 23:00, +1,1,5833,2026,1,1,,0,,,9,1,1,9/1/26 0:00, +1,1,5834,2026,1,1,,0,,,9,1,2,9/1/26 1:00, +1,1,5835,2026,1,1,,0,,,9,1,3,9/1/26 2:00, +1,1,5836,2026,1,1,,0,,,9,1,4,9/1/26 3:00, +1,1,5837,2026,1,1,,0,,,9,1,5,9/1/26 4:00, +1,1,5838,2026,1,1,,0,,,9,1,6,9/1/26 5:00, +1,1,5839,2026,1,1,,0,,,9,1,7,9/1/26 6:00, +1,1,5840,2026,1,1,,0,,,9,1,8,9/1/26 7:00, +1,1,5841,2026,1,1,,0,,,9,1,9,9/1/26 8:00, +1,1,5842,2026,1,1,,0,,,9,1,10,9/1/26 9:00, +1,1,5843,2026,1,1,,0,,,9,1,11,9/1/26 10:00, +1,1,5844,2026,1,1,,0,,,9,1,12,9/1/26 11:00, +1,1,5845,2026,1,1,,0,,,9,1,13,9/1/26 12:00, +1,1,5846,2026,1,1,,0,,,9,1,14,9/1/26 13:00, +1,1,5847,2026,1,1,,0,,,9,1,15,9/1/26 14:00, +1,1,5848,2026,1,1,,0,,,9,1,16,9/1/26 15:00, +1,1,5849,2026,1,1,,0,,,9,1,17,9/1/26 16:00, +1,1,5850,2026,1,1,,0,,,9,1,18,9/1/26 17:00, +1,1,5851,2026,1,1,,0,,,9,1,19,9/1/26 18:00, +1,1,5852,2026,1,1,,0,,,9,1,20,9/1/26 19:00, +1,1,5853,2026,1,1,,0,,,9,1,21,9/1/26 20:00, +1,1,5854,2026,1,1,,0,,,9,1,22,9/1/26 21:00, +1,1,5855,2026,1,1,,0,,,9,1,23,9/1/26 22:00, +1,1,5856,2026,1,1,,0,,,9,1,24,9/1/26 23:00, +1,1,5857,2026,1,1,,0,,,9,2,1,9/2/26 0:00, +1,1,5858,2026,1,1,,0,,,9,2,2,9/2/26 1:00, +1,1,5859,2026,1,1,,0,,,9,2,3,9/2/26 2:00, +1,1,5860,2026,1,1,,0,,,9,2,4,9/2/26 3:00, +1,1,5861,2026,1,1,,0,,,9,2,5,9/2/26 4:00, +1,1,5862,2026,1,1,,0,,,9,2,6,9/2/26 5:00, +1,1,5863,2026,1,1,,0,,,9,2,7,9/2/26 6:00, +1,1,5864,2026,1,1,,0,,,9,2,8,9/2/26 7:00, +1,1,5865,2026,1,1,,0,,,9,2,9,9/2/26 8:00, +1,1,5866,2026,1,1,,0,,,9,2,10,9/2/26 9:00, +1,1,5867,2026,1,1,,0,,,9,2,11,9/2/26 10:00, +1,1,5868,2026,1,1,,0,,,9,2,12,9/2/26 11:00, +1,1,5869,2026,1,1,,0,,,9,2,13,9/2/26 12:00, +1,1,5870,2026,1,1,,0,,,9,2,14,9/2/26 13:00, +1,1,5871,2026,1,1,,0,,,9,2,15,9/2/26 14:00, +1,1,5872,2026,1,1,,0,,,9,2,16,9/2/26 15:00, +1,1,5873,2026,1,1,,0,,,9,2,17,9/2/26 16:00, +1,1,5874,2026,1,1,,0,,,9,2,18,9/2/26 17:00, +1,1,5875,2026,1,1,,0,,,9,2,19,9/2/26 18:00, +1,1,5876,2026,1,1,,0,,,9,2,20,9/2/26 19:00, +1,1,5877,2026,1,1,,0,,,9,2,21,9/2/26 20:00, +1,1,5878,2026,1,1,,0,,,9,2,22,9/2/26 21:00, +1,1,5879,2026,1,1,,0,,,9,2,23,9/2/26 22:00, +1,1,5880,2026,1,1,,0,,,9,2,24,9/2/26 23:00, +1,1,5881,2026,1,1,,0,,,9,3,1,9/3/26 0:00, +1,1,5882,2026,1,1,,0,,,9,3,2,9/3/26 1:00, +1,1,5883,2026,1,1,,0,,,9,3,3,9/3/26 2:00, +1,1,5884,2026,1,1,,0,,,9,3,4,9/3/26 3:00, +1,1,5885,2026,1,1,,0,,,9,3,5,9/3/26 4:00, +1,1,5886,2026,1,1,,0,,,9,3,6,9/3/26 5:00, +1,1,5887,2026,1,1,,0,,,9,3,7,9/3/26 6:00, +1,1,5888,2026,1,1,,0,,,9,3,8,9/3/26 7:00, +1,1,5889,2026,1,1,,0,,,9,3,9,9/3/26 8:00, +1,1,5890,2026,1,1,,0,,,9,3,10,9/3/26 9:00, +1,1,5891,2026,1,1,,0,,,9,3,11,9/3/26 10:00, +1,1,5892,2026,1,1,,0,,,9,3,12,9/3/26 11:00, +1,1,5893,2026,1,1,,0,,,9,3,13,9/3/26 12:00, +1,1,5894,2026,1,1,,0,,,9,3,14,9/3/26 13:00, +1,1,5895,2026,1,1,,0,,,9,3,15,9/3/26 14:00, +1,1,5896,2026,1,1,,0,,,9,3,16,9/3/26 15:00, +1,1,5897,2026,1,1,,0,,,9,3,17,9/3/26 16:00, +1,1,5898,2026,1,1,,0,,,9,3,18,9/3/26 17:00, +1,1,5899,2026,1,1,,0,,,9,3,19,9/3/26 18:00, +1,1,5900,2026,1,1,,0,,,9,3,20,9/3/26 19:00, +1,1,5901,2026,1,1,,0,,,9,3,21,9/3/26 20:00, +1,1,5902,2026,1,1,,0,,,9,3,22,9/3/26 21:00, +1,1,5903,2026,1,1,,0,,,9,3,23,9/3/26 22:00, +1,1,5904,2026,1,1,,0,,,9,3,24,9/3/26 23:00, +1,1,5905,2026,1,1,,0,,,9,4,1,9/4/26 0:00, +1,1,5906,2026,1,1,,0,,,9,4,2,9/4/26 1:00, +1,1,5907,2026,1,1,,0,,,9,4,3,9/4/26 2:00, +1,1,5908,2026,1,1,,0,,,9,4,4,9/4/26 3:00, +1,1,5909,2026,1,1,,0,,,9,4,5,9/4/26 4:00, +1,1,5910,2026,1,1,,0,,,9,4,6,9/4/26 5:00, +1,1,5911,2026,1,1,,0,,,9,4,7,9/4/26 6:00, +1,1,5912,2026,1,1,,0,,,9,4,8,9/4/26 7:00, +1,1,5913,2026,1,1,,0,,,9,4,9,9/4/26 8:00, +1,1,5914,2026,1,1,,0,,,9,4,10,9/4/26 9:00, +1,1,5915,2026,1,1,,0,,,9,4,11,9/4/26 10:00, +1,1,5916,2026,1,1,,0,,,9,4,12,9/4/26 11:00, +1,1,5917,2026,1,1,,0,,,9,4,13,9/4/26 12:00, +1,1,5918,2026,1,1,,0,,,9,4,14,9/4/26 13:00, +1,1,5919,2026,1,1,,0,,,9,4,15,9/4/26 14:00, +1,1,5920,2026,1,1,,0,,,9,4,16,9/4/26 15:00, +1,1,5921,2026,1,1,,0,,,9,4,17,9/4/26 16:00, +1,1,5922,2026,1,1,,0,,,9,4,18,9/4/26 17:00, +1,1,5923,2026,1,1,,0,,,9,4,19,9/4/26 18:00, +1,1,5924,2026,1,1,,0,,,9,4,20,9/4/26 19:00, +1,1,5925,2026,1,1,,0,,,9,4,21,9/4/26 20:00, +1,1,5926,2026,1,1,,0,,,9,4,22,9/4/26 21:00, +1,1,5927,2026,1,1,,0,,,9,4,23,9/4/26 22:00, +1,1,5928,2026,1,1,,0,,,9,4,24,9/4/26 23:00, +1,1,5929,2026,1,1,,0,,,9,5,1,9/5/26 0:00, +1,1,5930,2026,1,1,,0,,,9,5,2,9/5/26 1:00, +1,1,5931,2026,1,1,,0,,,9,5,3,9/5/26 2:00, +1,1,5932,2026,1,1,,0,,,9,5,4,9/5/26 3:00, +1,1,5933,2026,1,1,,0,,,9,5,5,9/5/26 4:00, +1,1,5934,2026,1,1,,0,,,9,5,6,9/5/26 5:00, +1,1,5935,2026,1,1,,0,,,9,5,7,9/5/26 6:00, +1,1,5936,2026,1,1,,0,,,9,5,8,9/5/26 7:00, +1,1,5937,2026,1,1,,0,,,9,5,9,9/5/26 8:00, +1,1,5938,2026,1,1,,0,,,9,5,10,9/5/26 9:00, +1,1,5939,2026,1,1,,0,,,9,5,11,9/5/26 10:00, +1,1,5940,2026,1,1,,0,,,9,5,12,9/5/26 11:00, +1,1,5941,2026,1,1,,0,,,9,5,13,9/5/26 12:00, +1,1,5942,2026,1,1,,0,,,9,5,14,9/5/26 13:00, +1,1,5943,2026,1,1,,0,,,9,5,15,9/5/26 14:00, +1,1,5944,2026,1,1,,0,,,9,5,16,9/5/26 15:00, +1,1,5945,2026,1,1,,0,,,9,5,17,9/5/26 16:00, +1,1,5946,2026,1,1,,0,,,9,5,18,9/5/26 17:00, +1,1,5947,2026,1,1,,0,,,9,5,19,9/5/26 18:00, +1,1,5948,2026,1,1,,0,,,9,5,20,9/5/26 19:00, +1,1,5949,2026,1,1,,0,,,9,5,21,9/5/26 20:00, +1,1,5950,2026,1,1,,0,,,9,5,22,9/5/26 21:00, +1,1,5951,2026,1,1,,0,,,9,5,23,9/5/26 22:00, +1,1,5952,2026,1,1,,0,,,9,5,24,9/5/26 23:00, +1,1,5953,2026,1,1,,0,,,9,6,1,9/6/26 0:00, +1,1,5954,2026,1,1,,0,,,9,6,2,9/6/26 1:00, +1,1,5955,2026,1,1,,0,,,9,6,3,9/6/26 2:00, +1,1,5956,2026,1,1,,0,,,9,6,4,9/6/26 3:00, +1,1,5957,2026,1,1,,0,,,9,6,5,9/6/26 4:00, +1,1,5958,2026,1,1,,0,,,9,6,6,9/6/26 5:00, +1,1,5959,2026,1,1,,0,,,9,6,7,9/6/26 6:00, +1,1,5960,2026,1,1,,0,,,9,6,8,9/6/26 7:00, +1,1,5961,2026,1,1,,0,,,9,6,9,9/6/26 8:00, +1,1,5962,2026,1,1,,0,,,9,6,10,9/6/26 9:00, +1,1,5963,2026,1,1,,0,,,9,6,11,9/6/26 10:00, +1,1,5964,2026,1,1,,0,,,9,6,12,9/6/26 11:00, +1,1,5965,2026,1,1,,0,,,9,6,13,9/6/26 12:00, +1,1,5966,2026,1,1,,0,,,9,6,14,9/6/26 13:00, +1,1,5967,2026,1,1,,0,,,9,6,15,9/6/26 14:00, +1,1,5968,2026,1,1,,0,,,9,6,16,9/6/26 15:00, +1,1,5969,2026,1,1,,0,,,9,6,17,9/6/26 16:00, +1,1,5970,2026,1,1,,0,,,9,6,18,9/6/26 17:00, +1,1,5971,2026,1,1,,0,,,9,6,19,9/6/26 18:00, +1,1,5972,2026,1,1,,0,,,9,6,20,9/6/26 19:00, +1,1,5973,2026,1,1,,0,,,9,6,21,9/6/26 20:00, +1,1,5974,2026,1,1,,0,,,9,6,22,9/6/26 21:00, +1,1,5975,2026,1,1,,0,,,9,6,23,9/6/26 22:00, +1,1,5976,2026,1,1,,0,,,9,6,24,9/6/26 23:00, +1,1,5977,2026,1,1,,0,,,9,7,1,9/7/26 0:00, +1,1,5978,2026,1,1,,0,,,9,7,2,9/7/26 1:00, +1,1,5979,2026,1,1,,0,,,9,7,3,9/7/26 2:00, +1,1,5980,2026,1,1,,0,,,9,7,4,9/7/26 3:00, +1,1,5981,2026,1,1,,0,,,9,7,5,9/7/26 4:00, +1,1,5982,2026,1,1,,0,,,9,7,6,9/7/26 5:00, +1,1,5983,2026,1,1,,0,,,9,7,7,9/7/26 6:00, +1,1,5984,2026,1,1,,0,,,9,7,8,9/7/26 7:00, +1,1,5985,2026,1,1,,0,,,9,7,9,9/7/26 8:00, +1,1,5986,2026,1,1,,0,,,9,7,10,9/7/26 9:00, +1,1,5987,2026,1,1,,0,,,9,7,11,9/7/26 10:00, +1,1,5988,2026,1,1,,0,,,9,7,12,9/7/26 11:00, +1,1,5989,2026,1,1,,0,,,9,7,13,9/7/26 12:00, +1,1,5990,2026,1,1,,0,,,9,7,14,9/7/26 13:00, +1,1,5991,2026,1,1,,0,,,9,7,15,9/7/26 14:00, +1,1,5992,2026,1,1,,0,,,9,7,16,9/7/26 15:00, +1,1,5993,2026,1,1,,0,,,9,7,17,9/7/26 16:00, +1,1,5994,2026,1,1,,0,,,9,7,18,9/7/26 17:00, +1,1,5995,2026,1,1,,0,,,9,7,19,9/7/26 18:00, +1,1,5996,2026,1,1,,0,,,9,7,20,9/7/26 19:00, +1,1,5997,2026,1,1,,0,,,9,7,21,9/7/26 20:00, +1,1,5998,2026,1,1,,0,,,9,7,22,9/7/26 21:00, +1,1,5999,2026,1,1,,0,,,9,7,23,9/7/26 22:00, +1,1,6000,2026,1,1,,0,,,9,7,24,9/7/26 23:00, +1,1,6001,2026,1,1,,0,,,9,8,1,9/8/26 0:00, +1,1,6002,2026,1,1,,0,,,9,8,2,9/8/26 1:00, +1,1,6003,2026,1,1,,0,,,9,8,3,9/8/26 2:00, +1,1,6004,2026,1,1,,0,,,9,8,4,9/8/26 3:00, +1,1,6005,2026,1,1,,0,,,9,8,5,9/8/26 4:00, +1,1,6006,2026,1,1,,0,,,9,8,6,9/8/26 5:00, +1,1,6007,2026,1,1,,0,,,9,8,7,9/8/26 6:00, +1,1,6008,2026,1,1,,0,,,9,8,8,9/8/26 7:00, +1,1,6009,2026,1,1,,0,,,9,8,9,9/8/26 8:00, +1,1,6010,2026,1,1,,0,,,9,8,10,9/8/26 9:00, +1,1,6011,2026,1,1,,0,,,9,8,11,9/8/26 10:00, +1,1,6012,2026,1,1,,0,,,9,8,12,9/8/26 11:00, +1,1,6013,2026,1,1,,0,,,9,8,13,9/8/26 12:00, +1,1,6014,2026,1,1,,0,,,9,8,14,9/8/26 13:00, +1,1,6015,2026,1,1,,0,,,9,8,15,9/8/26 14:00, +1,1,6016,2026,1,1,,0,,,9,8,16,9/8/26 15:00, +1,1,6017,2026,1,1,,0,,,9,8,17,9/8/26 16:00, +1,1,6018,2026,1,1,,0,,,9,8,18,9/8/26 17:00, +1,1,6019,2026,1,1,,0,,,9,8,19,9/8/26 18:00, +1,1,6020,2026,1,1,,0,,,9,8,20,9/8/26 19:00, +1,1,6021,2026,1,1,,0,,,9,8,21,9/8/26 20:00, +1,1,6022,2026,1,1,,0,,,9,8,22,9/8/26 21:00, +1,1,6023,2026,1,1,,0,,,9,8,23,9/8/26 22:00, +1,1,6024,2026,1,1,,0,,,9,8,24,9/8/26 23:00, +1,1,6025,2026,1,1,,0,,,9,9,1,9/9/26 0:00, +1,1,6026,2026,1,1,,0,,,9,9,2,9/9/26 1:00, +1,1,6027,2026,1,1,,0,,,9,9,3,9/9/26 2:00, +1,1,6028,2026,1,1,,0,,,9,9,4,9/9/26 3:00, +1,1,6029,2026,1,1,,0,,,9,9,5,9/9/26 4:00, +1,1,6030,2026,1,1,,0,,,9,9,6,9/9/26 5:00, +1,1,6031,2026,1,1,,0,,,9,9,7,9/9/26 6:00, +1,1,6032,2026,1,1,,0,,,9,9,8,9/9/26 7:00, +1,1,6033,2026,1,1,,0,,,9,9,9,9/9/26 8:00, +1,1,6034,2026,1,1,,0,,,9,9,10,9/9/26 9:00, +1,1,6035,2026,1,1,,0,,,9,9,11,9/9/26 10:00, +1,1,6036,2026,1,1,,0,,,9,9,12,9/9/26 11:00, +1,1,6037,2026,1,1,,0,,,9,9,13,9/9/26 12:00, +1,1,6038,2026,1,1,,0,,,9,9,14,9/9/26 13:00, +1,1,6039,2026,1,1,,0,,,9,9,15,9/9/26 14:00, +1,1,6040,2026,1,1,,0,,,9,9,16,9/9/26 15:00, +1,1,6041,2026,1,1,,0,,,9,9,17,9/9/26 16:00, +1,1,6042,2026,1,1,,0,,,9,9,18,9/9/26 17:00, +1,1,6043,2026,1,1,,0,,,9,9,19,9/9/26 18:00, +1,1,6044,2026,1,1,,0,,,9,9,20,9/9/26 19:00, +1,1,6045,2026,1,1,,0,,,9,9,21,9/9/26 20:00, +1,1,6046,2026,1,1,,0,,,9,9,22,9/9/26 21:00, +1,1,6047,2026,1,1,,0,,,9,9,23,9/9/26 22:00, +1,1,6048,2026,1,1,,0,,,9,9,24,9/9/26 23:00, +1,1,6049,2026,1,1,,0,,,9,10,1,9/10/26 0:00, +1,1,6050,2026,1,1,,0,,,9,10,2,9/10/26 1:00, +1,1,6051,2026,1,1,,0,,,9,10,3,9/10/26 2:00, +1,1,6052,2026,1,1,,0,,,9,10,4,9/10/26 3:00, +1,1,6053,2026,1,1,,0,,,9,10,5,9/10/26 4:00, +1,1,6054,2026,1,1,,0,,,9,10,6,9/10/26 5:00, +1,1,6055,2026,1,1,,0,,,9,10,7,9/10/26 6:00, +1,1,6056,2026,1,1,,0,,,9,10,8,9/10/26 7:00, +1,1,6057,2026,1,1,,0,,,9,10,9,9/10/26 8:00, +1,1,6058,2026,1,1,,0,,,9,10,10,9/10/26 9:00, +1,1,6059,2026,1,1,,0,,,9,10,11,9/10/26 10:00, +1,1,6060,2026,1,1,,0,,,9,10,12,9/10/26 11:00, +1,1,6061,2026,1,1,,0,,,9,10,13,9/10/26 12:00, +1,1,6062,2026,1,1,,0,,,9,10,14,9/10/26 13:00, +1,1,6063,2026,1,1,,0,,,9,10,15,9/10/26 14:00, +1,1,6064,2026,1,1,,0,,,9,10,16,9/10/26 15:00, +1,1,6065,2026,1,1,,0,,,9,10,17,9/10/26 16:00, +1,1,6066,2026,1,1,,0,,,9,10,18,9/10/26 17:00, +1,1,6067,2026,1,1,,0,,,9,10,19,9/10/26 18:00, +1,1,6068,2026,1,1,,0,,,9,10,20,9/10/26 19:00, +1,1,6069,2026,1,1,,0,,,9,10,21,9/10/26 20:00, +1,1,6070,2026,1,1,,0,,,9,10,22,9/10/26 21:00, +1,1,6071,2026,1,1,,0,,,9,10,23,9/10/26 22:00, +1,1,6072,2026,1,1,,0,,,9,10,24,9/10/26 23:00, +1,1,6073,2026,1,1,,0,,,9,11,1,9/11/26 0:00, +1,1,6074,2026,1,1,,0,,,9,11,2,9/11/26 1:00, +1,1,6075,2026,1,1,,0,,,9,11,3,9/11/26 2:00, +1,1,6076,2026,1,1,,0,,,9,11,4,9/11/26 3:00, +1,1,6077,2026,1,1,,0,,,9,11,5,9/11/26 4:00, +1,1,6078,2026,1,1,,0,,,9,11,6,9/11/26 5:00, +1,1,6079,2026,1,1,,0,,,9,11,7,9/11/26 6:00, +1,1,6080,2026,1,1,,0,,,9,11,8,9/11/26 7:00, +1,1,6081,2026,1,1,,0,,,9,11,9,9/11/26 8:00, +1,1,6082,2026,1,1,,0,,,9,11,10,9/11/26 9:00, +1,1,6083,2026,1,1,,0,,,9,11,11,9/11/26 10:00, +1,1,6084,2026,1,1,,0,,,9,11,12,9/11/26 11:00, +1,1,6085,2026,1,1,,0,,,9,11,13,9/11/26 12:00, +1,1,6086,2026,1,1,,0,,,9,11,14,9/11/26 13:00, +1,1,6087,2026,1,1,,0,,,9,11,15,9/11/26 14:00, +1,1,6088,2026,1,1,,0,,,9,11,16,9/11/26 15:00, +1,1,6089,2026,1,1,,0,,,9,11,17,9/11/26 16:00, +1,1,6090,2026,1,1,,0,,,9,11,18,9/11/26 17:00, +1,1,6091,2026,1,1,,0,,,9,11,19,9/11/26 18:00, +1,1,6092,2026,1,1,,0,,,9,11,20,9/11/26 19:00, +1,1,6093,2026,1,1,,0,,,9,11,21,9/11/26 20:00, +1,1,6094,2026,1,1,,0,,,9,11,22,9/11/26 21:00, +1,1,6095,2026,1,1,,0,,,9,11,23,9/11/26 22:00, +1,1,6096,2026,1,1,,0,,,9,11,24,9/11/26 23:00, +1,1,6097,2026,1,1,,0,,,9,12,1,9/12/26 0:00, +1,1,6098,2026,1,1,,0,,,9,12,2,9/12/26 1:00, +1,1,6099,2026,1,1,,0,,,9,12,3,9/12/26 2:00, +1,1,6100,2026,1,1,,0,,,9,12,4,9/12/26 3:00, +1,1,6101,2026,1,1,,0,,,9,12,5,9/12/26 4:00, +1,1,6102,2026,1,1,,0,,,9,12,6,9/12/26 5:00, +1,1,6103,2026,1,1,,0,,,9,12,7,9/12/26 6:00, +1,1,6104,2026,1,1,,0,,,9,12,8,9/12/26 7:00, +1,1,6105,2026,1,1,,0,,,9,12,9,9/12/26 8:00, +1,1,6106,2026,1,1,,0,,,9,12,10,9/12/26 9:00, +1,1,6107,2026,1,1,,0,,,9,12,11,9/12/26 10:00, +1,1,6108,2026,1,1,,0,,,9,12,12,9/12/26 11:00, +1,1,6109,2026,1,1,,0,,,9,12,13,9/12/26 12:00, +1,1,6110,2026,1,1,,0,,,9,12,14,9/12/26 13:00, +1,1,6111,2026,1,1,,0,,,9,12,15,9/12/26 14:00, +1,1,6112,2026,1,1,,0,,,9,12,16,9/12/26 15:00, +1,1,6113,2026,1,1,,0,,,9,12,17,9/12/26 16:00, +1,1,6114,2026,1,1,,0,,,9,12,18,9/12/26 17:00, +1,1,6115,2026,1,1,,0,,,9,12,19,9/12/26 18:00, +1,1,6116,2026,1,1,,0,,,9,12,20,9/12/26 19:00, +1,1,6117,2026,1,1,,0,,,9,12,21,9/12/26 20:00, +1,1,6118,2026,1,1,,0,,,9,12,22,9/12/26 21:00, +1,1,6119,2026,1,1,,0,,,9,12,23,9/12/26 22:00, +1,1,6120,2026,1,1,,0,,,9,12,24,9/12/26 23:00, +1,1,6121,2026,1,1,,0,,,9,13,1,9/13/26 0:00, +1,1,6122,2026,1,1,,0,,,9,13,2,9/13/26 1:00, +1,1,6123,2026,1,1,,0,,,9,13,3,9/13/26 2:00, +1,1,6124,2026,1,1,,0,,,9,13,4,9/13/26 3:00, +1,1,6125,2026,1,1,,0,,,9,13,5,9/13/26 4:00, +1,1,6126,2026,1,1,,0,,,9,13,6,9/13/26 5:00, +1,1,6127,2026,1,1,,0,,,9,13,7,9/13/26 6:00, +1,1,6128,2026,1,1,,0,,,9,13,8,9/13/26 7:00, +1,1,6129,2026,1,1,,0,,,9,13,9,9/13/26 8:00, +1,1,6130,2026,1,1,,0,,,9,13,10,9/13/26 9:00, +1,1,6131,2026,1,1,,0,,,9,13,11,9/13/26 10:00, +1,1,6132,2026,1,1,,0,,,9,13,12,9/13/26 11:00, +1,1,6133,2026,1,1,,0,,,9,13,13,9/13/26 12:00, +1,1,6134,2026,1,1,,0,,,9,13,14,9/13/26 13:00, +1,1,6135,2026,1,1,,0,,,9,13,15,9/13/26 14:00, +1,1,6136,2026,1,1,,0,,,9,13,16,9/13/26 15:00, +1,1,6137,2026,1,1,,0,,,9,13,17,9/13/26 16:00, +1,1,6138,2026,1,1,,0,,,9,13,18,9/13/26 17:00, +1,1,6139,2026,1,1,,0,,,9,13,19,9/13/26 18:00, +1,1,6140,2026,1,1,,0,,,9,13,20,9/13/26 19:00, +1,1,6141,2026,1,1,,0,,,9,13,21,9/13/26 20:00, +1,1,6142,2026,1,1,,0,,,9,13,22,9/13/26 21:00, +1,1,6143,2026,1,1,,0,,,9,13,23,9/13/26 22:00, +1,1,6144,2026,1,1,,0,,,9,13,24,9/13/26 23:00, +1,1,6145,2026,1,1,,0,,,9,14,1,9/14/26 0:00, +1,1,6146,2026,1,1,,0,,,9,14,2,9/14/26 1:00, +1,1,6147,2026,1,1,,0,,,9,14,3,9/14/26 2:00, +1,1,6148,2026,1,1,,0,,,9,14,4,9/14/26 3:00, +1,1,6149,2026,1,1,,0,,,9,14,5,9/14/26 4:00, +1,1,6150,2026,1,1,,0,,,9,14,6,9/14/26 5:00, +1,1,6151,2026,1,1,,0,,,9,14,7,9/14/26 6:00, +1,1,6152,2026,1,1,,0,,,9,14,8,9/14/26 7:00, +1,1,6153,2026,1,1,,0,,,9,14,9,9/14/26 8:00, +1,1,6154,2026,1,1,,0,,,9,14,10,9/14/26 9:00, +1,1,6155,2026,1,1,,0,,,9,14,11,9/14/26 10:00, +1,1,6156,2026,1,1,,0,,,9,14,12,9/14/26 11:00, +1,1,6157,2026,1,1,,0,,,9,14,13,9/14/26 12:00, +1,1,6158,2026,1,1,,0,,,9,14,14,9/14/26 13:00, +1,1,6159,2026,1,1,,0,,,9,14,15,9/14/26 14:00, +1,1,6160,2026,1,1,,0,,,9,14,16,9/14/26 15:00, +1,1,6161,2026,1,1,,0,,,9,14,17,9/14/26 16:00, +1,1,6162,2026,1,1,,0,,,9,14,18,9/14/26 17:00, +1,1,6163,2026,1,1,,0,,,9,14,19,9/14/26 18:00, +1,1,6164,2026,1,1,,0,,,9,14,20,9/14/26 19:00, +1,1,6165,2026,1,1,,0,,,9,14,21,9/14/26 20:00, +1,1,6166,2026,1,1,,0,,,9,14,22,9/14/26 21:00, +1,1,6167,2026,1,1,,0,,,9,14,23,9/14/26 22:00, +1,1,6168,2026,1,1,,0,,,9,14,24,9/14/26 23:00, +1,1,6169,2026,1,1,,0,,,9,15,1,9/15/26 0:00, +1,1,6170,2026,1,1,,0,,,9,15,2,9/15/26 1:00, +1,1,6171,2026,1,1,,0,,,9,15,3,9/15/26 2:00, +1,1,6172,2026,1,1,,0,,,9,15,4,9/15/26 3:00, +1,1,6173,2026,1,1,,0,,,9,15,5,9/15/26 4:00, +1,1,6174,2026,1,1,,0,,,9,15,6,9/15/26 5:00, +1,1,6175,2026,1,1,,0,,,9,15,7,9/15/26 6:00, +1,1,6176,2026,1,1,,0,,,9,15,8,9/15/26 7:00, +1,1,6177,2026,1,1,,0,,,9,15,9,9/15/26 8:00, +1,1,6178,2026,1,1,,0,,,9,15,10,9/15/26 9:00, +1,1,6179,2026,1,1,,0,,,9,15,11,9/15/26 10:00, +1,1,6180,2026,1,1,,0,,,9,15,12,9/15/26 11:00, +1,1,6181,2026,1,1,,0,,,9,15,13,9/15/26 12:00, +1,1,6182,2026,1,1,,0,,,9,15,14,9/15/26 13:00, +1,1,6183,2026,1,1,,0,,,9,15,15,9/15/26 14:00, +1,1,6184,2026,1,1,,0,,,9,15,16,9/15/26 15:00, +1,1,6185,2026,1,1,,0,,,9,15,17,9/15/26 16:00, +1,1,6186,2026,1,1,,0,,,9,15,18,9/15/26 17:00, +1,1,6187,2026,1,1,,0,,,9,15,19,9/15/26 18:00, +1,1,6188,2026,1,1,,0,,,9,15,20,9/15/26 19:00, +1,1,6189,2026,1,1,,0,,,9,15,21,9/15/26 20:00, +1,1,6190,2026,1,1,,0,,,9,15,22,9/15/26 21:00, +1,1,6191,2026,1,1,,0,,,9,15,23,9/15/26 22:00, +1,1,6192,2026,1,1,,0,,,9,15,24,9/15/26 23:00, +1,1,6193,2026,1,1,,0,,,9,16,1,9/16/26 0:00, +1,1,6194,2026,1,1,,0,,,9,16,2,9/16/26 1:00, +1,1,6195,2026,1,1,,0,,,9,16,3,9/16/26 2:00, +1,1,6196,2026,1,1,,0,,,9,16,4,9/16/26 3:00, +1,1,6197,2026,1,1,,0,,,9,16,5,9/16/26 4:00, +1,1,6198,2026,1,1,,0,,,9,16,6,9/16/26 5:00, +1,1,6199,2026,1,1,,0,,,9,16,7,9/16/26 6:00, +1,1,6200,2026,1,1,,0,,,9,16,8,9/16/26 7:00, +1,1,6201,2026,1,1,,0,,,9,16,9,9/16/26 8:00, +1,1,6202,2026,1,1,,0,,,9,16,10,9/16/26 9:00, +1,1,6203,2026,1,1,,0,,,9,16,11,9/16/26 10:00, +1,1,6204,2026,1,1,,0,,,9,16,12,9/16/26 11:00, +1,1,6205,2026,1,1,,0,,,9,16,13,9/16/26 12:00, +1,1,6206,2026,1,1,,0,,,9,16,14,9/16/26 13:00, +1,1,6207,2026,1,1,,0,,,9,16,15,9/16/26 14:00, +1,1,6208,2026,1,1,,0,,,9,16,16,9/16/26 15:00, +1,1,6209,2026,1,1,,0,,,9,16,17,9/16/26 16:00, +1,1,6210,2026,1,1,,0,,,9,16,18,9/16/26 17:00, +1,1,6211,2026,1,1,,0,,,9,16,19,9/16/26 18:00, +1,1,6212,2026,1,1,,0,,,9,16,20,9/16/26 19:00, +1,1,6213,2026,1,1,,0,,,9,16,21,9/16/26 20:00, +1,1,6214,2026,1,1,,0,,,9,16,22,9/16/26 21:00, +1,1,6215,2026,1,1,,0,,,9,16,23,9/16/26 22:00, +1,1,6216,2026,1,1,,0,,,9,16,24,9/16/26 23:00, +1,1,6217,2026,1,1,,0,,,9,17,1,9/17/26 0:00, +1,1,6218,2026,1,1,,0,,,9,17,2,9/17/26 1:00, +1,1,6219,2026,1,1,,0,,,9,17,3,9/17/26 2:00, +1,1,6220,2026,1,1,,0,,,9,17,4,9/17/26 3:00, +1,1,6221,2026,1,1,,0,,,9,17,5,9/17/26 4:00, +1,1,6222,2026,1,1,,0,,,9,17,6,9/17/26 5:00, +1,1,6223,2026,1,1,,0,,,9,17,7,9/17/26 6:00, +1,1,6224,2026,1,1,,0,,,9,17,8,9/17/26 7:00, +1,1,6225,2026,1,1,,0,,,9,17,9,9/17/26 8:00, +1,1,6226,2026,1,1,,0,,,9,17,10,9/17/26 9:00, +1,1,6227,2026,1,1,,0,,,9,17,11,9/17/26 10:00, +1,1,6228,2026,1,1,,0,,,9,17,12,9/17/26 11:00, +1,1,6229,2026,1,1,,0,,,9,17,13,9/17/26 12:00, +1,1,6230,2026,1,1,,0,,,9,17,14,9/17/26 13:00, +1,1,6231,2026,1,1,,0,,,9,17,15,9/17/26 14:00, +1,1,6232,2026,1,1,,0,,,9,17,16,9/17/26 15:00, +1,1,6233,2026,1,1,,0,,,9,17,17,9/17/26 16:00, +1,1,6234,2026,1,1,,0,,,9,17,18,9/17/26 17:00, +1,1,6235,2026,1,1,,0,,,9,17,19,9/17/26 18:00, +1,1,6236,2026,1,1,,0,,,9,17,20,9/17/26 19:00, +1,1,6237,2026,1,1,,0,,,9,17,21,9/17/26 20:00, +1,1,6238,2026,1,1,,0,,,9,17,22,9/17/26 21:00, +1,1,6239,2026,1,1,,0,,,9,17,23,9/17/26 22:00, +1,1,6240,2026,1,1,,0,,,9,17,24,9/17/26 23:00, +1,1,6241,2026,1,1,,0,,,9,18,1,9/18/26 0:00, +1,1,6242,2026,1,1,,0,,,9,18,2,9/18/26 1:00, +1,1,6243,2026,1,1,,0,,,9,18,3,9/18/26 2:00, +1,1,6244,2026,1,1,,0,,,9,18,4,9/18/26 3:00, +1,1,6245,2026,1,1,,0,,,9,18,5,9/18/26 4:00, +1,1,6246,2026,1,1,,0,,,9,18,6,9/18/26 5:00, +1,1,6247,2026,1,1,,0,,,9,18,7,9/18/26 6:00, +1,1,6248,2026,1,1,,0,,,9,18,8,9/18/26 7:00, +1,1,6249,2026,1,1,,0,,,9,18,9,9/18/26 8:00, +1,1,6250,2026,1,1,,0,,,9,18,10,9/18/26 9:00, +1,1,6251,2026,1,1,,0,,,9,18,11,9/18/26 10:00, +1,1,6252,2026,1,1,,0,,,9,18,12,9/18/26 11:00, +1,1,6253,2026,1,1,,0,,,9,18,13,9/18/26 12:00, +1,1,6254,2026,1,1,,0,,,9,18,14,9/18/26 13:00, +1,1,6255,2026,1,1,,0,,,9,18,15,9/18/26 14:00, +1,1,6256,2026,1,1,,0,,,9,18,16,9/18/26 15:00, +1,1,6257,2026,1,1,,0,,,9,18,17,9/18/26 16:00, +1,1,6258,2026,1,1,,0,,,9,18,18,9/18/26 17:00, +1,1,6259,2026,1,1,,0,,,9,18,19,9/18/26 18:00, +1,1,6260,2026,1,1,,0,,,9,18,20,9/18/26 19:00, +1,1,6261,2026,1,1,,0,,,9,18,21,9/18/26 20:00, +1,1,6262,2026,1,1,,0,,,9,18,22,9/18/26 21:00, +1,1,6263,2026,1,1,,0,,,9,18,23,9/18/26 22:00, +1,1,6264,2026,1,1,,0,,,9,18,24,9/18/26 23:00, +1,1,6265,2026,1,1,,0,,,9,19,1,9/19/26 0:00, +1,1,6266,2026,1,1,,0,,,9,19,2,9/19/26 1:00, +1,1,6267,2026,1,1,,0,,,9,19,3,9/19/26 2:00, +1,1,6268,2026,1,1,,0,,,9,19,4,9/19/26 3:00, +1,1,6269,2026,1,1,,0,,,9,19,5,9/19/26 4:00, +1,1,6270,2026,1,1,,0,,,9,19,6,9/19/26 5:00, +1,1,6271,2026,1,1,,0,,,9,19,7,9/19/26 6:00, +1,1,6272,2026,1,1,,0,,,9,19,8,9/19/26 7:00, +1,1,6273,2026,1,1,,0,,,9,19,9,9/19/26 8:00, +1,1,6274,2026,1,1,,0,,,9,19,10,9/19/26 9:00, +1,1,6275,2026,1,1,,0,,,9,19,11,9/19/26 10:00, +1,1,6276,2026,1,1,,0,,,9,19,12,9/19/26 11:00, +1,1,6277,2026,1,1,,0,,,9,19,13,9/19/26 12:00, +1,1,6278,2026,1,1,,0,,,9,19,14,9/19/26 13:00, +1,1,6279,2026,1,1,,0,,,9,19,15,9/19/26 14:00, +1,1,6280,2026,1,1,,0,,,9,19,16,9/19/26 15:00, +1,1,6281,2026,1,1,,0,,,9,19,17,9/19/26 16:00, +1,1,6282,2026,1,1,,0,,,9,19,18,9/19/26 17:00, +1,1,6283,2026,1,1,,0,,,9,19,19,9/19/26 18:00, +1,1,6284,2026,1,1,,0,,,9,19,20,9/19/26 19:00, +1,1,6285,2026,1,1,,0,,,9,19,21,9/19/26 20:00, +1,1,6286,2026,1,1,,0,,,9,19,22,9/19/26 21:00, +1,1,6287,2026,1,1,,0,,,9,19,23,9/19/26 22:00, +1,1,6288,2026,1,1,,0,,,9,19,24,9/19/26 23:00, +1,1,6289,2026,1,1,,0,,,9,20,1,9/20/26 0:00, +1,1,6290,2026,1,1,,0,,,9,20,2,9/20/26 1:00, +1,1,6291,2026,1,1,,0,,,9,20,3,9/20/26 2:00, +1,1,6292,2026,1,1,,0,,,9,20,4,9/20/26 3:00, +1,1,6293,2026,1,1,,0,,,9,20,5,9/20/26 4:00, +1,1,6294,2026,1,1,,0,,,9,20,6,9/20/26 5:00, +1,1,6295,2026,1,1,,0,,,9,20,7,9/20/26 6:00, +1,1,6296,2026,1,1,,0,,,9,20,8,9/20/26 7:00, +1,1,6297,2026,1,1,,0,,,9,20,9,9/20/26 8:00, +1,1,6298,2026,1,1,,0,,,9,20,10,9/20/26 9:00, +1,1,6299,2026,1,1,,0,,,9,20,11,9/20/26 10:00, +1,1,6300,2026,1,1,,0,,,9,20,12,9/20/26 11:00, +1,1,6301,2026,1,1,,0,,,9,20,13,9/20/26 12:00, +1,1,6302,2026,1,1,,0,,,9,20,14,9/20/26 13:00, +1,1,6303,2026,1,1,,0,,,9,20,15,9/20/26 14:00, +1,1,6304,2026,1,1,,0,,,9,20,16,9/20/26 15:00, +1,1,6305,2026,1,1,,0,,,9,20,17,9/20/26 16:00, +1,1,6306,2026,1,1,,0,,,9,20,18,9/20/26 17:00, +1,1,6307,2026,1,1,,0,,,9,20,19,9/20/26 18:00, +1,1,6308,2026,1,1,,0,,,9,20,20,9/20/26 19:00, +1,1,6309,2026,1,1,,0,,,9,20,21,9/20/26 20:00, +1,1,6310,2026,1,1,,0,,,9,20,22,9/20/26 21:00, +1,1,6311,2026,1,1,,0,,,9,20,23,9/20/26 22:00, +1,1,6312,2026,1,1,,0,,,9,20,24,9/20/26 23:00, +1,1,6313,2026,1,1,,0,,,9,21,1,9/21/26 0:00, +1,1,6314,2026,1,1,,0,,,9,21,2,9/21/26 1:00, +1,1,6315,2026,1,1,,0,,,9,21,3,9/21/26 2:00, +1,1,6316,2026,1,1,,0,,,9,21,4,9/21/26 3:00, +1,1,6317,2026,1,1,,0,,,9,21,5,9/21/26 4:00, +1,1,6318,2026,1,1,,0,,,9,21,6,9/21/26 5:00, +1,1,6319,2026,1,1,,0,,,9,21,7,9/21/26 6:00, +1,1,6320,2026,1,1,,0,,,9,21,8,9/21/26 7:00, +1,1,6321,2026,1,1,,0,,,9,21,9,9/21/26 8:00, +1,1,6322,2026,1,1,,0,,,9,21,10,9/21/26 9:00, +1,1,6323,2026,1,1,,0,,,9,21,11,9/21/26 10:00, +1,1,6324,2026,1,1,,0,,,9,21,12,9/21/26 11:00, +1,1,6325,2026,1,1,,0,,,9,21,13,9/21/26 12:00, +1,1,6326,2026,1,1,,0,,,9,21,14,9/21/26 13:00, +1,1,6327,2026,1,1,,0,,,9,21,15,9/21/26 14:00, +1,1,6328,2026,1,1,,0,,,9,21,16,9/21/26 15:00, +1,1,6329,2026,1,1,,0,,,9,21,17,9/21/26 16:00, +1,1,6330,2026,1,1,,0,,,9,21,18,9/21/26 17:00, +1,1,6331,2026,1,1,,0,,,9,21,19,9/21/26 18:00, +1,1,6332,2026,1,1,,0,,,9,21,20,9/21/26 19:00, +1,1,6333,2026,1,1,,0,,,9,21,21,9/21/26 20:00, +1,1,6334,2026,1,1,,0,,,9,21,22,9/21/26 21:00, +1,1,6335,2026,1,1,,0,,,9,21,23,9/21/26 22:00, +1,1,6336,2026,1,1,,0,,,9,21,24,9/21/26 23:00, +1,1,6337,2026,1,1,,0,,,9,22,1,9/22/26 0:00, +1,1,6338,2026,1,1,,0,,,9,22,2,9/22/26 1:00, +1,1,6339,2026,1,1,,0,,,9,22,3,9/22/26 2:00, +1,1,6340,2026,1,1,,0,,,9,22,4,9/22/26 3:00, +1,1,6341,2026,1,1,,0,,,9,22,5,9/22/26 4:00, +1,1,6342,2026,1,1,,0,,,9,22,6,9/22/26 5:00, +1,1,6343,2026,1,1,,0,,,9,22,7,9/22/26 6:00, +1,1,6344,2026,1,1,,0,,,9,22,8,9/22/26 7:00, +1,1,6345,2026,1,1,,0,,,9,22,9,9/22/26 8:00, +1,1,6346,2026,1,1,,0,,,9,22,10,9/22/26 9:00, +1,1,6347,2026,1,1,,0,,,9,22,11,9/22/26 10:00, +1,1,6348,2026,1,1,,0,,,9,22,12,9/22/26 11:00, +1,1,6349,2026,1,1,,0,,,9,22,13,9/22/26 12:00, +1,1,6350,2026,1,1,,0,,,9,22,14,9/22/26 13:00, +1,1,6351,2026,1,1,,0,,,9,22,15,9/22/26 14:00, +1,1,6352,2026,1,1,,0,,,9,22,16,9/22/26 15:00, +1,1,6353,2026,1,1,,0,,,9,22,17,9/22/26 16:00, +1,1,6354,2026,1,1,,0,,,9,22,18,9/22/26 17:00, +1,1,6355,2026,1,1,,0,,,9,22,19,9/22/26 18:00, +1,1,6356,2026,1,1,,0,,,9,22,20,9/22/26 19:00, +1,1,6357,2026,1,1,,0,,,9,22,21,9/22/26 20:00, +1,1,6358,2026,1,1,,0,,,9,22,22,9/22/26 21:00, +1,1,6359,2026,1,1,,0,,,9,22,23,9/22/26 22:00, +1,1,6360,2026,1,1,,0,,,9,22,24,9/22/26 23:00, +1,1,6361,2026,1,1,,0,,,9,23,1,9/23/26 0:00, +1,1,6362,2026,1,1,,0,,,9,23,2,9/23/26 1:00, +1,1,6363,2026,1,1,,0,,,9,23,3,9/23/26 2:00, +1,1,6364,2026,1,1,,0,,,9,23,4,9/23/26 3:00, +1,1,6365,2026,1,1,,0,,,9,23,5,9/23/26 4:00, +1,1,6366,2026,1,1,,0,,,9,23,6,9/23/26 5:00, +1,1,6367,2026,1,1,,0,,,9,23,7,9/23/26 6:00, +1,1,6368,2026,1,1,,0,,,9,23,8,9/23/26 7:00, +1,1,6369,2026,1,1,,0,,,9,23,9,9/23/26 8:00, +1,1,6370,2026,1,1,,0,,,9,23,10,9/23/26 9:00, +1,1,6371,2026,1,1,,0,,,9,23,11,9/23/26 10:00, +1,1,6372,2026,1,1,,0,,,9,23,12,9/23/26 11:00, +1,1,6373,2026,1,1,,0,,,9,23,13,9/23/26 12:00, +1,1,6374,2026,1,1,,0,,,9,23,14,9/23/26 13:00, +1,1,6375,2026,1,1,,0,,,9,23,15,9/23/26 14:00, +1,1,6376,2026,1,1,,0,,,9,23,16,9/23/26 15:00, +1,1,6377,2026,1,1,,0,,,9,23,17,9/23/26 16:00, +1,1,6378,2026,1,1,,0,,,9,23,18,9/23/26 17:00, +1,1,6379,2026,1,1,,0,,,9,23,19,9/23/26 18:00, +1,1,6380,2026,1,1,,0,,,9,23,20,9/23/26 19:00, +1,1,6381,2026,1,1,,0,,,9,23,21,9/23/26 20:00, +1,1,6382,2026,1,1,,0,,,9,23,22,9/23/26 21:00, +1,1,6383,2026,1,1,,0,,,9,23,23,9/23/26 22:00, +1,1,6384,2026,1,1,,0,,,9,23,24,9/23/26 23:00, +1,1,6385,2026,1,1,,0,,,9,24,1,9/24/26 0:00, +1,1,6386,2026,1,1,,0,,,9,24,2,9/24/26 1:00, +1,1,6387,2026,1,1,,0,,,9,24,3,9/24/26 2:00, +1,1,6388,2026,1,1,,0,,,9,24,4,9/24/26 3:00, +1,1,6389,2026,1,1,,0,,,9,24,5,9/24/26 4:00, +1,1,6390,2026,1,1,,0,,,9,24,6,9/24/26 5:00, +1,1,6391,2026,1,1,,0,,,9,24,7,9/24/26 6:00, +1,1,6392,2026,1,1,,0,,,9,24,8,9/24/26 7:00, +1,1,6393,2026,1,1,,0,,,9,24,9,9/24/26 8:00, +1,1,6394,2026,1,1,,0,,,9,24,10,9/24/26 9:00, +1,1,6395,2026,1,1,,0,,,9,24,11,9/24/26 10:00, +1,1,6396,2026,1,1,,0,,,9,24,12,9/24/26 11:00, +1,1,6397,2026,1,1,,0,,,9,24,13,9/24/26 12:00, +1,1,6398,2026,1,1,,0,,,9,24,14,9/24/26 13:00, +1,1,6399,2026,1,1,,0,,,9,24,15,9/24/26 14:00, +1,1,6400,2026,1,1,,0,,,9,24,16,9/24/26 15:00, +1,1,6401,2026,1,1,,0,,,9,24,17,9/24/26 16:00, +1,1,6402,2026,1,1,,0,,,9,24,18,9/24/26 17:00, +1,1,6403,2026,1,1,,0,,,9,24,19,9/24/26 18:00, +1,1,6404,2026,1,1,,0,,,9,24,20,9/24/26 19:00, +1,1,6405,2026,1,1,,0,,,9,24,21,9/24/26 20:00, +1,1,6406,2026,1,1,,0,,,9,24,22,9/24/26 21:00, +1,1,6407,2026,1,1,,0,,,9,24,23,9/24/26 22:00, +1,1,6408,2026,1,1,,0,,,9,24,24,9/24/26 23:00, +1,1,6409,2026,1,1,,0,,,9,25,1,9/25/26 0:00, +1,1,6410,2026,1,1,,0,,,9,25,2,9/25/26 1:00, +1,1,6411,2026,1,1,,0,,,9,25,3,9/25/26 2:00, +1,1,6412,2026,1,1,,0,,,9,25,4,9/25/26 3:00, +1,1,6413,2026,1,1,,0,,,9,25,5,9/25/26 4:00, +1,1,6414,2026,1,1,,0,,,9,25,6,9/25/26 5:00, +1,1,6415,2026,1,1,,0,,,9,25,7,9/25/26 6:00, +1,1,6416,2026,1,1,,0,,,9,25,8,9/25/26 7:00, +1,1,6417,2026,1,1,,0,,,9,25,9,9/25/26 8:00, +1,1,6418,2026,1,1,,0,,,9,25,10,9/25/26 9:00, +1,1,6419,2026,1,1,,0,,,9,25,11,9/25/26 10:00, +1,1,6420,2026,1,1,,0,,,9,25,12,9/25/26 11:00, +1,1,6421,2026,1,1,,0,,,9,25,13,9/25/26 12:00, +1,1,6422,2026,1,1,,0,,,9,25,14,9/25/26 13:00, +1,1,6423,2026,1,1,,0,,,9,25,15,9/25/26 14:00, +1,1,6424,2026,1,1,,0,,,9,25,16,9/25/26 15:00, +1,1,6425,2026,1,1,,0,,,9,25,17,9/25/26 16:00, +1,1,6426,2026,1,1,,0,,,9,25,18,9/25/26 17:00, +1,1,6427,2026,1,1,,0,,,9,25,19,9/25/26 18:00, +1,1,6428,2026,1,1,,0,,,9,25,20,9/25/26 19:00, +1,1,6429,2026,1,1,,0,,,9,25,21,9/25/26 20:00, +1,1,6430,2026,1,1,,0,,,9,25,22,9/25/26 21:00, +1,1,6431,2026,1,1,,0,,,9,25,23,9/25/26 22:00, +1,1,6432,2026,1,1,,0,,,9,25,24,9/25/26 23:00, +1,1,6433,2026,1,1,,0,,,9,26,1,9/26/26 0:00, +1,1,6434,2026,1,1,,0,,,9,26,2,9/26/26 1:00, +1,1,6435,2026,1,1,,0,,,9,26,3,9/26/26 2:00, +1,1,6436,2026,1,1,,0,,,9,26,4,9/26/26 3:00, +1,1,6437,2026,1,1,,0,,,9,26,5,9/26/26 4:00, +1,1,6438,2026,1,1,,0,,,9,26,6,9/26/26 5:00, +1,1,6439,2026,1,1,,0,,,9,26,7,9/26/26 6:00, +1,1,6440,2026,1,1,,0,,,9,26,8,9/26/26 7:00, +1,1,6441,2026,1,1,,0,,,9,26,9,9/26/26 8:00, +1,1,6442,2026,1,1,,0,,,9,26,10,9/26/26 9:00, +1,1,6443,2026,1,1,,0,,,9,26,11,9/26/26 10:00, +1,1,6444,2026,1,1,,0,,,9,26,12,9/26/26 11:00, +1,1,6445,2026,1,1,,0,,,9,26,13,9/26/26 12:00, +1,1,6446,2026,1,1,,0,,,9,26,14,9/26/26 13:00, +1,1,6447,2026,1,1,,0,,,9,26,15,9/26/26 14:00, +1,1,6448,2026,1,1,,0,,,9,26,16,9/26/26 15:00, +1,1,6449,2026,1,1,,0,,,9,26,17,9/26/26 16:00, +1,1,6450,2026,1,1,,0,,,9,26,18,9/26/26 17:00, +1,1,6451,2026,1,1,,0,,,9,26,19,9/26/26 18:00, +1,1,6452,2026,1,1,,0,,,9,26,20,9/26/26 19:00, +1,1,6453,2026,1,1,,0,,,9,26,21,9/26/26 20:00, +1,1,6454,2026,1,1,,0,,,9,26,22,9/26/26 21:00, +1,1,6455,2026,1,1,,0,,,9,26,23,9/26/26 22:00, +1,1,6456,2026,1,1,,0,,,9,26,24,9/26/26 23:00, +1,1,6457,2026,1,1,,0,,,9,27,1,9/27/26 0:00, +1,1,6458,2026,1,1,,0,,,9,27,2,9/27/26 1:00, +1,1,6459,2026,1,1,,0,,,9,27,3,9/27/26 2:00, +1,1,6460,2026,1,1,,0,,,9,27,4,9/27/26 3:00, +1,1,6461,2026,1,1,,0,,,9,27,5,9/27/26 4:00, +1,1,6462,2026,1,1,,0,,,9,27,6,9/27/26 5:00, +1,1,6463,2026,1,1,,0,,,9,27,7,9/27/26 6:00, +1,1,6464,2026,1,1,,0,,,9,27,8,9/27/26 7:00, +1,1,6465,2026,1,1,,0,,,9,27,9,9/27/26 8:00, +1,1,6466,2026,1,1,,0,,,9,27,10,9/27/26 9:00, +1,1,6467,2026,1,1,,0,,,9,27,11,9/27/26 10:00, +1,1,6468,2026,1,1,,0,,,9,27,12,9/27/26 11:00, +1,1,6469,2026,1,1,,0,,,9,27,13,9/27/26 12:00, +1,1,6470,2026,1,1,,0,,,9,27,14,9/27/26 13:00, +1,1,6471,2026,1,1,,0,,,9,27,15,9/27/26 14:00, +1,1,6472,2026,1,1,,0,,,9,27,16,9/27/26 15:00, +1,1,6473,2026,1,1,,0,,,9,27,17,9/27/26 16:00, +1,1,6474,2026,1,1,,0,,,9,27,18,9/27/26 17:00, +1,1,6475,2026,1,1,,0,,,9,27,19,9/27/26 18:00, +1,1,6476,2026,1,1,,0,,,9,27,20,9/27/26 19:00, +1,1,6477,2026,1,1,,0,,,9,27,21,9/27/26 20:00, +1,1,6478,2026,1,1,,0,,,9,27,22,9/27/26 21:00, +1,1,6479,2026,1,1,,0,,,9,27,23,9/27/26 22:00, +1,1,6480,2026,1,1,,0,,,9,27,24,9/27/26 23:00, +1,1,6481,2026,1,1,,0,,,9,28,1,9/28/26 0:00, +1,1,6482,2026,1,1,,0,,,9,28,2,9/28/26 1:00, +1,1,6483,2026,1,1,,0,,,9,28,3,9/28/26 2:00, +1,1,6484,2026,1,1,,0,,,9,28,4,9/28/26 3:00, +1,1,6485,2026,1,1,,0,,,9,28,5,9/28/26 4:00, +1,1,6486,2026,1,1,,0,,,9,28,6,9/28/26 5:00, +1,1,6487,2026,1,1,,0,,,9,28,7,9/28/26 6:00, +1,1,6488,2026,1,1,,0,,,9,28,8,9/28/26 7:00, +1,1,6489,2026,1,1,,0,,,9,28,9,9/28/26 8:00, +1,1,6490,2026,1,1,,0,,,9,28,10,9/28/26 9:00, +1,1,6491,2026,1,1,,0,,,9,28,11,9/28/26 10:00, +1,1,6492,2026,1,1,,0,,,9,28,12,9/28/26 11:00, +1,1,6493,2026,1,1,,0,,,9,28,13,9/28/26 12:00, +1,1,6494,2026,1,1,,0,,,9,28,14,9/28/26 13:00, +1,1,6495,2026,1,1,,0,,,9,28,15,9/28/26 14:00, +1,1,6496,2026,1,1,,0,,,9,28,16,9/28/26 15:00, +1,1,6497,2026,1,1,,0,,,9,28,17,9/28/26 16:00, +1,1,6498,2026,1,1,,0,,,9,28,18,9/28/26 17:00, +1,1,6499,2026,1,1,,0,,,9,28,19,9/28/26 18:00, +1,1,6500,2026,1,1,,0,,,9,28,20,9/28/26 19:00, +1,1,6501,2026,1,1,,0,,,9,28,21,9/28/26 20:00, +1,1,6502,2026,1,1,,0,,,9,28,22,9/28/26 21:00, +1,1,6503,2026,1,1,,0,,,9,28,23,9/28/26 22:00, +1,1,6504,2026,1,1,,0,,,9,28,24,9/28/26 23:00, +1,1,6505,2026,1,1,,0,,,9,29,1,9/29/26 0:00, +1,1,6506,2026,1,1,,0,,,9,29,2,9/29/26 1:00, +1,1,6507,2026,1,1,,0,,,9,29,3,9/29/26 2:00, +1,1,6508,2026,1,1,,0,,,9,29,4,9/29/26 3:00, +1,1,6509,2026,1,1,,0,,,9,29,5,9/29/26 4:00, +1,1,6510,2026,1,1,,0,,,9,29,6,9/29/26 5:00, +1,1,6511,2026,1,1,,0,,,9,29,7,9/29/26 6:00, +1,1,6512,2026,1,1,,0,,,9,29,8,9/29/26 7:00, +1,1,6513,2026,1,1,,0,,,9,29,9,9/29/26 8:00, +1,1,6514,2026,1,1,,0,,,9,29,10,9/29/26 9:00, +1,1,6515,2026,1,1,,0,,,9,29,11,9/29/26 10:00, +1,1,6516,2026,1,1,,0,,,9,29,12,9/29/26 11:00, +1,1,6517,2026,1,1,,0,,,9,29,13,9/29/26 12:00, +1,1,6518,2026,1,1,,0,,,9,29,14,9/29/26 13:00, +1,1,6519,2026,1,1,,0,,,9,29,15,9/29/26 14:00, +1,1,6520,2026,1,1,,0,,,9,29,16,9/29/26 15:00, +1,1,6521,2026,1,1,,0,,,9,29,17,9/29/26 16:00, +1,1,6522,2026,1,1,,0,,,9,29,18,9/29/26 17:00, +1,1,6523,2026,1,1,,0,,,9,29,19,9/29/26 18:00, +1,1,6524,2026,1,1,,0,,,9,29,20,9/29/26 19:00, +1,1,6525,2026,1,1,,0,,,9,29,21,9/29/26 20:00, +1,1,6526,2026,1,1,,0,,,9,29,22,9/29/26 21:00, +1,1,6527,2026,1,1,,0,,,9,29,23,9/29/26 22:00, +1,1,6528,2026,1,1,,0,,,9,29,24,9/29/26 23:00, +1,1,6529,2026,1,1,,0,,,9,30,1,9/30/26 0:00, +1,1,6530,2026,1,1,,0,,,9,30,2,9/30/26 1:00, +1,1,6531,2026,1,1,,0,,,9,30,3,9/30/26 2:00, +1,1,6532,2026,1,1,,0,,,9,30,4,9/30/26 3:00, +1,1,6533,2026,1,1,,0,,,9,30,5,9/30/26 4:00, +1,1,6534,2026,1,1,,0,,,9,30,6,9/30/26 5:00, +1,1,6535,2026,1,1,,0,,,9,30,7,9/30/26 6:00, +1,1,6536,2026,1,1,,0,,,9,30,8,9/30/26 7:00, +1,1,6537,2026,1,1,,0,,,9,30,9,9/30/26 8:00, +1,1,6538,2026,1,1,,0,,,9,30,10,9/30/26 9:00, +1,1,6539,2026,1,1,,0,,,9,30,11,9/30/26 10:00, +1,1,6540,2026,1,1,,0,,,9,30,12,9/30/26 11:00, +1,1,6541,2026,1,1,,0,,,9,30,13,9/30/26 12:00, +1,1,6542,2026,1,1,,0,,,9,30,14,9/30/26 13:00, +1,1,6543,2026,1,1,,0,,,9,30,15,9/30/26 14:00, +1,1,6544,2026,1,1,,0,,,9,30,16,9/30/26 15:00, +1,1,6545,2026,1,1,,0,,,9,30,17,9/30/26 16:00, +1,1,6546,2026,1,1,,0,,,9,30,18,9/30/26 17:00, +1,1,6547,2026,1,1,,0,,,9,30,19,9/30/26 18:00, +1,1,6548,2026,1,1,,0,,,9,30,20,9/30/26 19:00, +1,1,6549,2026,1,1,,0,,,9,30,21,9/30/26 20:00, +1,1,6550,2026,1,1,,0,,,9,30,22,9/30/26 21:00, +1,1,6551,2026,1,1,,0,,,9,30,23,9/30/26 22:00, +1,1,6552,2026,1,1,,0,,,9,30,24,9/30/26 23:00, +1,1,6553,2026,1,1,,0,,,10,1,1,10/1/26 0:00, +1,1,6554,2026,1,1,,0,,,10,1,2,10/1/26 1:00, +1,1,6555,2026,1,1,,0,,,10,1,3,10/1/26 2:00, +1,1,6556,2026,1,1,,0,,,10,1,4,10/1/26 3:00, +1,1,6557,2026,1,1,,0,,,10,1,5,10/1/26 4:00, +1,1,6558,2026,1,1,,0,,,10,1,6,10/1/26 5:00, +1,1,6559,2026,1,1,,0,,,10,1,7,10/1/26 6:00, +1,1,6560,2026,1,1,,0,,,10,1,8,10/1/26 7:00, +1,1,6561,2026,1,1,,0,,,10,1,9,10/1/26 8:00, +1,1,6562,2026,1,1,,0,,,10,1,10,10/1/26 9:00, +1,1,6563,2026,1,1,,0,,,10,1,11,10/1/26 10:00, +1,1,6564,2026,1,1,,0,,,10,1,12,10/1/26 11:00, +1,1,6565,2026,1,1,,0,,,10,1,13,10/1/26 12:00, +1,1,6566,2026,1,1,,0,,,10,1,14,10/1/26 13:00, +1,1,6567,2026,1,1,,0,,,10,1,15,10/1/26 14:00, +1,1,6568,2026,1,1,,0,,,10,1,16,10/1/26 15:00, +1,1,6569,2026,1,1,,0,,,10,1,17,10/1/26 16:00, +1,1,6570,2026,1,1,,0,,,10,1,18,10/1/26 17:00, +1,1,6571,2026,1,1,,0,,,10,1,19,10/1/26 18:00, +1,1,6572,2026,1,1,,0,,,10,1,20,10/1/26 19:00, +1,1,6573,2026,1,1,,0,,,10,1,21,10/1/26 20:00, +1,1,6574,2026,1,1,,0,,,10,1,22,10/1/26 21:00, +1,1,6575,2026,1,1,,0,,,10,1,23,10/1/26 22:00, +1,1,6576,2026,1,1,,0,,,10,1,24,10/1/26 23:00, +1,1,6577,2026,1,1,,0,,,10,2,1,10/2/26 0:00, +1,1,6578,2026,1,1,,0,,,10,2,2,10/2/26 1:00, +1,1,6579,2026,1,1,,0,,,10,2,3,10/2/26 2:00, +1,1,6580,2026,1,1,,0,,,10,2,4,10/2/26 3:00, +1,1,6581,2026,1,1,,0,,,10,2,5,10/2/26 4:00, +1,1,6582,2026,1,1,,0,,,10,2,6,10/2/26 5:00, +1,1,6583,2026,1,1,,0,,,10,2,7,10/2/26 6:00, +1,1,6584,2026,1,1,,0,,,10,2,8,10/2/26 7:00, +1,1,6585,2026,1,1,,0,,,10,2,9,10/2/26 8:00, +1,1,6586,2026,1,1,,0,,,10,2,10,10/2/26 9:00, +1,1,6587,2026,1,1,,0,,,10,2,11,10/2/26 10:00, +1,1,6588,2026,1,1,,0,,,10,2,12,10/2/26 11:00, +1,1,6589,2026,1,1,,0,,,10,2,13,10/2/26 12:00, +1,1,6590,2026,1,1,,0,,,10,2,14,10/2/26 13:00, +1,1,6591,2026,1,1,,0,,,10,2,15,10/2/26 14:00, +1,1,6592,2026,1,1,,0,,,10,2,16,10/2/26 15:00, +1,1,6593,2026,1,1,,0,,,10,2,17,10/2/26 16:00, +1,1,6594,2026,1,1,,0,,,10,2,18,10/2/26 17:00, +1,1,6595,2026,1,1,,0,,,10,2,19,10/2/26 18:00, +1,1,6596,2026,1,1,,0,,,10,2,20,10/2/26 19:00, +1,1,6597,2026,1,1,,0,,,10,2,21,10/2/26 20:00, +1,1,6598,2026,1,1,,0,,,10,2,22,10/2/26 21:00, +1,1,6599,2026,1,1,,0,,,10,2,23,10/2/26 22:00, +1,1,6600,2026,1,1,,0,,,10,2,24,10/2/26 23:00, +1,1,6601,2026,1,1,,0,,,10,3,1,10/3/26 0:00, +1,1,6602,2026,1,1,,0,,,10,3,2,10/3/26 1:00, +1,1,6603,2026,1,1,,0,,,10,3,3,10/3/26 2:00, +1,1,6604,2026,1,1,,0,,,10,3,4,10/3/26 3:00, +1,1,6605,2026,1,1,,0,,,10,3,5,10/3/26 4:00, +1,1,6606,2026,1,1,,0,,,10,3,6,10/3/26 5:00, +1,1,6607,2026,1,1,,0,,,10,3,7,10/3/26 6:00, +1,1,6608,2026,1,1,,0,,,10,3,8,10/3/26 7:00, +1,1,6609,2026,1,1,,0,,,10,3,9,10/3/26 8:00, +1,1,6610,2026,1,1,,0,,,10,3,10,10/3/26 9:00, +1,1,6611,2026,1,1,,0,,,10,3,11,10/3/26 10:00, +1,1,6612,2026,1,1,,0,,,10,3,12,10/3/26 11:00, +1,1,6613,2026,1,1,,0,,,10,3,13,10/3/26 12:00, +1,1,6614,2026,1,1,,0,,,10,3,14,10/3/26 13:00, +1,1,6615,2026,1,1,,0,,,10,3,15,10/3/26 14:00, +1,1,6616,2026,1,1,,0,,,10,3,16,10/3/26 15:00, +1,1,6617,2026,1,1,,0,,,10,3,17,10/3/26 16:00, +1,1,6618,2026,1,1,,0,,,10,3,18,10/3/26 17:00, +1,1,6619,2026,1,1,,0,,,10,3,19,10/3/26 18:00, +1,1,6620,2026,1,1,,0,,,10,3,20,10/3/26 19:00, +1,1,6621,2026,1,1,,0,,,10,3,21,10/3/26 20:00, +1,1,6622,2026,1,1,,0,,,10,3,22,10/3/26 21:00, +1,1,6623,2026,1,1,,0,,,10,3,23,10/3/26 22:00, +1,1,6624,2026,1,1,,0,,,10,3,24,10/3/26 23:00, +1,1,6625,2026,1,1,,0,,,10,4,1,10/4/26 0:00, +1,1,6626,2026,1,1,,0,,,10,4,2,10/4/26 1:00, +1,1,6627,2026,1,1,,0,,,10,4,3,10/4/26 2:00, +1,1,6628,2026,1,1,,0,,,10,4,4,10/4/26 3:00, +1,1,6629,2026,1,1,,0,,,10,4,5,10/4/26 4:00, +1,1,6630,2026,1,1,,0,,,10,4,6,10/4/26 5:00, +1,1,6631,2026,1,1,,0,,,10,4,7,10/4/26 6:00, +1,1,6632,2026,1,1,,0,,,10,4,8,10/4/26 7:00, +1,1,6633,2026,1,1,,0,,,10,4,9,10/4/26 8:00, +1,1,6634,2026,1,1,,0,,,10,4,10,10/4/26 9:00, +1,1,6635,2026,1,1,,0,,,10,4,11,10/4/26 10:00, +1,1,6636,2026,1,1,,0,,,10,4,12,10/4/26 11:00, +1,1,6637,2026,1,1,,0,,,10,4,13,10/4/26 12:00, +1,1,6638,2026,1,1,,0,,,10,4,14,10/4/26 13:00, +1,1,6639,2026,1,1,,0,,,10,4,15,10/4/26 14:00, +1,1,6640,2026,1,1,,0,,,10,4,16,10/4/26 15:00, +1,1,6641,2026,1,1,,0,,,10,4,17,10/4/26 16:00, +1,1,6642,2026,1,1,,0,,,10,4,18,10/4/26 17:00, +1,1,6643,2026,1,1,,0,,,10,4,19,10/4/26 18:00, +1,1,6644,2026,1,1,,0,,,10,4,20,10/4/26 19:00, +1,1,6645,2026,1,1,,0,,,10,4,21,10/4/26 20:00, +1,1,6646,2026,1,1,,0,,,10,4,22,10/4/26 21:00, +1,1,6647,2026,1,1,,0,,,10,4,23,10/4/26 22:00, +1,1,6648,2026,1,1,,0,,,10,4,24,10/4/26 23:00, +1,1,6649,2026,1,1,,0,,,10,5,1,10/5/26 0:00, +1,1,6650,2026,1,1,,0,,,10,5,2,10/5/26 1:00, +1,1,6651,2026,1,1,,0,,,10,5,3,10/5/26 2:00, +1,1,6652,2026,1,1,,0,,,10,5,4,10/5/26 3:00, +1,1,6653,2026,1,1,,0,,,10,5,5,10/5/26 4:00, +1,1,6654,2026,1,1,,0,,,10,5,6,10/5/26 5:00, +1,1,6655,2026,1,1,,0,,,10,5,7,10/5/26 6:00, +1,1,6656,2026,1,1,,0,,,10,5,8,10/5/26 7:00, +1,1,6657,2026,1,1,,0,,,10,5,9,10/5/26 8:00, +1,1,6658,2026,1,1,,0,,,10,5,10,10/5/26 9:00, +1,1,6659,2026,1,1,,0,,,10,5,11,10/5/26 10:00, +1,1,6660,2026,1,1,,0,,,10,5,12,10/5/26 11:00, +1,1,6661,2026,1,1,,0,,,10,5,13,10/5/26 12:00, +1,1,6662,2026,1,1,,0,,,10,5,14,10/5/26 13:00, +1,1,6663,2026,1,1,,0,,,10,5,15,10/5/26 14:00, +1,1,6664,2026,1,1,,0,,,10,5,16,10/5/26 15:00, +1,1,6665,2026,1,1,,0,,,10,5,17,10/5/26 16:00, +1,1,6666,2026,1,1,,0,,,10,5,18,10/5/26 17:00, +1,1,6667,2026,1,1,,0,,,10,5,19,10/5/26 18:00, +1,1,6668,2026,1,1,,0,,,10,5,20,10/5/26 19:00, +1,1,6669,2026,1,1,,0,,,10,5,21,10/5/26 20:00, +1,1,6670,2026,1,1,,0,,,10,5,22,10/5/26 21:00, +1,1,6671,2026,1,1,,0,,,10,5,23,10/5/26 22:00, +1,1,6672,2026,1,1,,0,,,10,5,24,10/5/26 23:00, +1,1,6673,2026,1,1,,0,,,10,6,1,10/6/26 0:00, +1,1,6674,2026,1,1,,0,,,10,6,2,10/6/26 1:00, +1,1,6675,2026,1,1,,0,,,10,6,3,10/6/26 2:00, +1,1,6676,2026,1,1,,0,,,10,6,4,10/6/26 3:00, +1,1,6677,2026,1,1,,0,,,10,6,5,10/6/26 4:00, +1,1,6678,2026,1,1,,0,,,10,6,6,10/6/26 5:00, +1,1,6679,2026,1,1,,0,,,10,6,7,10/6/26 6:00, +1,1,6680,2026,1,1,,0,,,10,6,8,10/6/26 7:00, +1,1,6681,2026,1,1,,0,,,10,6,9,10/6/26 8:00, +1,1,6682,2026,1,1,,0,,,10,6,10,10/6/26 9:00, +1,1,6683,2026,1,1,,0,,,10,6,11,10/6/26 10:00, +1,1,6684,2026,1,1,,0,,,10,6,12,10/6/26 11:00, +1,1,6685,2026,1,1,,0,,,10,6,13,10/6/26 12:00, +1,1,6686,2026,1,1,,0,,,10,6,14,10/6/26 13:00, +1,1,6687,2026,1,1,,0,,,10,6,15,10/6/26 14:00, +1,1,6688,2026,1,1,,0,,,10,6,16,10/6/26 15:00, +1,1,6689,2026,1,1,,0,,,10,6,17,10/6/26 16:00, +1,1,6690,2026,1,1,,0,,,10,6,18,10/6/26 17:00, +1,1,6691,2026,1,1,,0,,,10,6,19,10/6/26 18:00, +1,1,6692,2026,1,1,,0,,,10,6,20,10/6/26 19:00, +1,1,6693,2026,1,1,,0,,,10,6,21,10/6/26 20:00, +1,1,6694,2026,1,1,,0,,,10,6,22,10/6/26 21:00, +1,1,6695,2026,1,1,,0,,,10,6,23,10/6/26 22:00, +1,1,6696,2026,1,1,,0,,,10,6,24,10/6/26 23:00, +1,1,6697,2026,1,1,,0,,,10,7,1,10/7/26 0:00, +1,1,6698,2026,1,1,,0,,,10,7,2,10/7/26 1:00, +1,1,6699,2026,1,1,,0,,,10,7,3,10/7/26 2:00, +1,1,6700,2026,1,1,,0,,,10,7,4,10/7/26 3:00, +1,1,6701,2026,1,1,,0,,,10,7,5,10/7/26 4:00, +1,1,6702,2026,1,1,,0,,,10,7,6,10/7/26 5:00, +1,1,6703,2026,1,1,,0,,,10,7,7,10/7/26 6:00, +1,1,6704,2026,1,1,,0,,,10,7,8,10/7/26 7:00, +1,1,6705,2026,1,1,,0,,,10,7,9,10/7/26 8:00, +1,1,6706,2026,1,1,,0,,,10,7,10,10/7/26 9:00, +1,1,6707,2026,1,1,,0,,,10,7,11,10/7/26 10:00, +1,1,6708,2026,1,1,,0,,,10,7,12,10/7/26 11:00, +1,1,6709,2026,1,1,,0,,,10,7,13,10/7/26 12:00, +1,1,6710,2026,1,1,,0,,,10,7,14,10/7/26 13:00, +1,1,6711,2026,1,1,,0,,,10,7,15,10/7/26 14:00, +1,1,6712,2026,1,1,,0,,,10,7,16,10/7/26 15:00, +1,1,6713,2026,1,1,,0,,,10,7,17,10/7/26 16:00, +1,1,6714,2026,1,1,,0,,,10,7,18,10/7/26 17:00, +1,1,6715,2026,1,1,,0,,,10,7,19,10/7/26 18:00, +1,1,6716,2026,1,1,,0,,,10,7,20,10/7/26 19:00, +1,1,6717,2026,1,1,,0,,,10,7,21,10/7/26 20:00, +1,1,6718,2026,1,1,,0,,,10,7,22,10/7/26 21:00, +1,1,6719,2026,1,1,,0,,,10,7,23,10/7/26 22:00, +1,1,6720,2026,1,1,,0,,,10,7,24,10/7/26 23:00, +1,1,6721,2026,1,1,,0,,,10,8,1,10/8/26 0:00, +1,1,6722,2026,1,1,,0,,,10,8,2,10/8/26 1:00, +1,1,6723,2026,1,1,,0,,,10,8,3,10/8/26 2:00, +1,1,6724,2026,1,1,,0,,,10,8,4,10/8/26 3:00, +1,1,6725,2026,1,1,,0,,,10,8,5,10/8/26 4:00, +1,1,6726,2026,1,1,,0,,,10,8,6,10/8/26 5:00, +1,1,6727,2026,1,1,,0,,,10,8,7,10/8/26 6:00, +1,1,6728,2026,1,1,,0,,,10,8,8,10/8/26 7:00, +1,1,6729,2026,1,1,,0,,,10,8,9,10/8/26 8:00, +1,1,6730,2026,1,1,,0,,,10,8,10,10/8/26 9:00, +1,1,6731,2026,1,1,,0,,,10,8,11,10/8/26 10:00, +1,1,6732,2026,1,1,,0,,,10,8,12,10/8/26 11:00, +1,1,6733,2026,1,1,,0,,,10,8,13,10/8/26 12:00, +1,1,6734,2026,1,1,,0,,,10,8,14,10/8/26 13:00, +1,1,6735,2026,1,1,,0,,,10,8,15,10/8/26 14:00, +1,1,6736,2026,1,1,,0,,,10,8,16,10/8/26 15:00, +1,1,6737,2026,1,1,,0,,,10,8,17,10/8/26 16:00, +1,1,6738,2026,1,1,,0,,,10,8,18,10/8/26 17:00, +1,1,6739,2026,1,1,,0,,,10,8,19,10/8/26 18:00, +1,1,6740,2026,1,1,,0,,,10,8,20,10/8/26 19:00, +1,1,6741,2026,1,1,,0,,,10,8,21,10/8/26 20:00, +1,1,6742,2026,1,1,,0,,,10,8,22,10/8/26 21:00, +1,1,6743,2026,1,1,,0,,,10,8,23,10/8/26 22:00, +1,1,6744,2026,1,1,,0,,,10,8,24,10/8/26 23:00, +1,1,6745,2026,1,1,,0,,,10,9,1,10/9/26 0:00, +1,1,6746,2026,1,1,,0,,,10,9,2,10/9/26 1:00, +1,1,6747,2026,1,1,,0,,,10,9,3,10/9/26 2:00, +1,1,6748,2026,1,1,,0,,,10,9,4,10/9/26 3:00, +1,1,6749,2026,1,1,,0,,,10,9,5,10/9/26 4:00, +1,1,6750,2026,1,1,,0,,,10,9,6,10/9/26 5:00, +1,1,6751,2026,1,1,,0,,,10,9,7,10/9/26 6:00, +1,1,6752,2026,1,1,,0,,,10,9,8,10/9/26 7:00, +1,1,6753,2026,1,1,,0,,,10,9,9,10/9/26 8:00, +1,1,6754,2026,1,1,,0,,,10,9,10,10/9/26 9:00, +1,1,6755,2026,1,1,,0,,,10,9,11,10/9/26 10:00, +1,1,6756,2026,1,1,,0,,,10,9,12,10/9/26 11:00, +1,1,6757,2026,1,1,,0,,,10,9,13,10/9/26 12:00, +1,1,6758,2026,1,1,,0,,,10,9,14,10/9/26 13:00, +1,1,6759,2026,1,1,,0,,,10,9,15,10/9/26 14:00, +1,1,6760,2026,1,1,,0,,,10,9,16,10/9/26 15:00, +1,1,6761,2026,1,1,,0,,,10,9,17,10/9/26 16:00, +1,1,6762,2026,1,1,,0,,,10,9,18,10/9/26 17:00, +1,1,6763,2026,1,1,,0,,,10,9,19,10/9/26 18:00, +1,1,6764,2026,1,1,,0,,,10,9,20,10/9/26 19:00, +1,1,6765,2026,1,1,,0,,,10,9,21,10/9/26 20:00, +1,1,6766,2026,1,1,,0,,,10,9,22,10/9/26 21:00, +1,1,6767,2026,1,1,,0,,,10,9,23,10/9/26 22:00, +1,1,6768,2026,1,1,,0,,,10,9,24,10/9/26 23:00, +1,1,6769,2026,1,1,,0,,,10,10,1,10/10/26 0:00, +1,1,6770,2026,1,1,,0,,,10,10,2,10/10/26 1:00, +1,1,6771,2026,1,1,,0,,,10,10,3,10/10/26 2:00, +1,1,6772,2026,1,1,,0,,,10,10,4,10/10/26 3:00, +1,1,6773,2026,1,1,,0,,,10,10,5,10/10/26 4:00, +1,1,6774,2026,1,1,,0,,,10,10,6,10/10/26 5:00, +1,1,6775,2026,1,1,,0,,,10,10,7,10/10/26 6:00, +1,1,6776,2026,1,1,,0,,,10,10,8,10/10/26 7:00, +1,1,6777,2026,1,1,,0,,,10,10,9,10/10/26 8:00, +1,1,6778,2026,1,1,,0,,,10,10,10,10/10/26 9:00, +1,1,6779,2026,1,1,,0,,,10,10,11,10/10/26 10:00, +1,1,6780,2026,1,1,,0,,,10,10,12,10/10/26 11:00, +1,1,6781,2026,1,1,,0,,,10,10,13,10/10/26 12:00, +1,1,6782,2026,1,1,,0,,,10,10,14,10/10/26 13:00, +1,1,6783,2026,1,1,,0,,,10,10,15,10/10/26 14:00, +1,1,6784,2026,1,1,,0,,,10,10,16,10/10/26 15:00, +1,1,6785,2026,1,1,,0,,,10,10,17,10/10/26 16:00, +1,1,6786,2026,1,1,,0,,,10,10,18,10/10/26 17:00, +1,1,6787,2026,1,1,,0,,,10,10,19,10/10/26 18:00, +1,1,6788,2026,1,1,,0,,,10,10,20,10/10/26 19:00, +1,1,6789,2026,1,1,,0,,,10,10,21,10/10/26 20:00, +1,1,6790,2026,1,1,,0,,,10,10,22,10/10/26 21:00, +1,1,6791,2026,1,1,,0,,,10,10,23,10/10/26 22:00, +1,1,6792,2026,1,1,,0,,,10,10,24,10/10/26 23:00, +1,1,6793,2026,1,1,,0,,,10,11,1,10/11/26 0:00, +1,1,6794,2026,1,1,,0,,,10,11,2,10/11/26 1:00, +1,1,6795,2026,1,1,,0,,,10,11,3,10/11/26 2:00, +1,1,6796,2026,1,1,,0,,,10,11,4,10/11/26 3:00, +1,1,6797,2026,1,1,,0,,,10,11,5,10/11/26 4:00, +1,1,6798,2026,1,1,,0,,,10,11,6,10/11/26 5:00, +1,1,6799,2026,1,1,,0,,,10,11,7,10/11/26 6:00, +1,1,6800,2026,1,1,,0,,,10,11,8,10/11/26 7:00, +1,1,6801,2026,1,1,,0,,,10,11,9,10/11/26 8:00, +1,1,6802,2026,1,1,,0,,,10,11,10,10/11/26 9:00, +1,1,6803,2026,1,1,,0,,,10,11,11,10/11/26 10:00, +1,1,6804,2026,1,1,,0,,,10,11,12,10/11/26 11:00, +1,1,6805,2026,1,1,,0,,,10,11,13,10/11/26 12:00, +1,1,6806,2026,1,1,,0,,,10,11,14,10/11/26 13:00, +1,1,6807,2026,1,1,,0,,,10,11,15,10/11/26 14:00, +1,1,6808,2026,1,1,,0,,,10,11,16,10/11/26 15:00, +1,1,6809,2026,1,1,,0,,,10,11,17,10/11/26 16:00, +1,1,6810,2026,1,1,,0,,,10,11,18,10/11/26 17:00, +1,1,6811,2026,1,1,,0,,,10,11,19,10/11/26 18:00, +1,1,6812,2026,1,1,,0,,,10,11,20,10/11/26 19:00, +1,1,6813,2026,1,1,,0,,,10,11,21,10/11/26 20:00, +1,1,6814,2026,1,1,,0,,,10,11,22,10/11/26 21:00, +1,1,6815,2026,1,1,,0,,,10,11,23,10/11/26 22:00, +1,1,6816,2026,1,1,,0,,,10,11,24,10/11/26 23:00, +1,1,6817,2026,1,1,,0,,,10,12,1,10/12/26 0:00, +1,1,6818,2026,1,1,,0,,,10,12,2,10/12/26 1:00, +1,1,6819,2026,1,1,,0,,,10,12,3,10/12/26 2:00, +1,1,6820,2026,1,1,,0,,,10,12,4,10/12/26 3:00, +1,1,6821,2026,1,1,,0,,,10,12,5,10/12/26 4:00, +1,1,6822,2026,1,1,,0,,,10,12,6,10/12/26 5:00, +1,1,6823,2026,1,1,,0,,,10,12,7,10/12/26 6:00, +1,1,6824,2026,1,1,,0,,,10,12,8,10/12/26 7:00, +1,1,6825,2026,1,1,,0,,,10,12,9,10/12/26 8:00, +1,1,6826,2026,1,1,,0,,,10,12,10,10/12/26 9:00, +1,1,6827,2026,1,1,,0,,,10,12,11,10/12/26 10:00, +1,1,6828,2026,1,1,,0,,,10,12,12,10/12/26 11:00, +1,1,6829,2026,1,1,,0,,,10,12,13,10/12/26 12:00, +1,1,6830,2026,1,1,,0,,,10,12,14,10/12/26 13:00, +1,1,6831,2026,1,1,,0,,,10,12,15,10/12/26 14:00, +1,1,6832,2026,1,1,,0,,,10,12,16,10/12/26 15:00, +1,1,6833,2026,1,1,,0,,,10,12,17,10/12/26 16:00, +1,1,6834,2026,1,1,,0,,,10,12,18,10/12/26 17:00, +1,1,6835,2026,1,1,,0,,,10,12,19,10/12/26 18:00, +1,1,6836,2026,1,1,,0,,,10,12,20,10/12/26 19:00, +1,1,6837,2026,1,1,,0,,,10,12,21,10/12/26 20:00, +1,1,6838,2026,1,1,,0,,,10,12,22,10/12/26 21:00, +1,1,6839,2026,1,1,,0,,,10,12,23,10/12/26 22:00, +1,1,6840,2026,1,1,,0,,,10,12,24,10/12/26 23:00, +1,1,6841,2026,1,1,,0,,,10,13,1,10/13/26 0:00, +1,1,6842,2026,1,1,,0,,,10,13,2,10/13/26 1:00, +1,1,6843,2026,1,1,,0,,,10,13,3,10/13/26 2:00, +1,1,6844,2026,1,1,,0,,,10,13,4,10/13/26 3:00, +1,1,6845,2026,1,1,,0,,,10,13,5,10/13/26 4:00, +1,1,6846,2026,1,1,,0,,,10,13,6,10/13/26 5:00, +1,1,6847,2026,1,1,,0,,,10,13,7,10/13/26 6:00, +1,1,6848,2026,1,1,,0,,,10,13,8,10/13/26 7:00, +1,1,6849,2026,1,1,,0,,,10,13,9,10/13/26 8:00, +1,1,6850,2026,1,1,,0,,,10,13,10,10/13/26 9:00, +1,1,6851,2026,1,1,,0,,,10,13,11,10/13/26 10:00, +1,1,6852,2026,1,1,,0,,,10,13,12,10/13/26 11:00, +1,1,6853,2026,1,1,,0,,,10,13,13,10/13/26 12:00, +1,1,6854,2026,1,1,,0,,,10,13,14,10/13/26 13:00, +1,1,6855,2026,1,1,,0,,,10,13,15,10/13/26 14:00, +1,1,6856,2026,1,1,,0,,,10,13,16,10/13/26 15:00, +1,1,6857,2026,1,1,,0,,,10,13,17,10/13/26 16:00, +1,1,6858,2026,1,1,,0,,,10,13,18,10/13/26 17:00, +1,1,6859,2026,1,1,,0,,,10,13,19,10/13/26 18:00, +1,1,6860,2026,1,1,,0,,,10,13,20,10/13/26 19:00, +1,1,6861,2026,1,1,,0,,,10,13,21,10/13/26 20:00, +1,1,6862,2026,1,1,,0,,,10,13,22,10/13/26 21:00, +1,1,6863,2026,1,1,,0,,,10,13,23,10/13/26 22:00, +1,1,6864,2026,1,1,,0,,,10,13,24,10/13/26 23:00, +1,1,6865,2026,1,1,,0,,,10,14,1,10/14/26 0:00, +1,1,6866,2026,1,1,,0,,,10,14,2,10/14/26 1:00, +1,1,6867,2026,1,1,,0,,,10,14,3,10/14/26 2:00, +1,1,6868,2026,1,1,,0,,,10,14,4,10/14/26 3:00, +1,1,6869,2026,1,1,,0,,,10,14,5,10/14/26 4:00, +1,1,6870,2026,1,1,,0,,,10,14,6,10/14/26 5:00, +1,1,6871,2026,1,1,,0,,,10,14,7,10/14/26 6:00, +1,1,6872,2026,1,1,,0,,,10,14,8,10/14/26 7:00, +1,1,6873,2026,1,1,,0,,,10,14,9,10/14/26 8:00, +1,1,6874,2026,1,1,,0,,,10,14,10,10/14/26 9:00, +1,1,6875,2026,1,1,,0,,,10,14,11,10/14/26 10:00, +1,1,6876,2026,1,1,,0,,,10,14,12,10/14/26 11:00, +1,1,6877,2026,1,1,,0,,,10,14,13,10/14/26 12:00, +1,1,6878,2026,1,1,,0,,,10,14,14,10/14/26 13:00, +1,1,6879,2026,1,1,,0,,,10,14,15,10/14/26 14:00, +1,1,6880,2026,1,1,,0,,,10,14,16,10/14/26 15:00, +1,1,6881,2026,1,1,,0,,,10,14,17,10/14/26 16:00, +1,1,6882,2026,1,1,,0,,,10,14,18,10/14/26 17:00, +1,1,6883,2026,1,1,,0,,,10,14,19,10/14/26 18:00, +1,1,6884,2026,1,1,,0,,,10,14,20,10/14/26 19:00, +1,1,6885,2026,1,1,,0,,,10,14,21,10/14/26 20:00, +1,1,6886,2026,1,1,,0,,,10,14,22,10/14/26 21:00, +1,1,6887,2026,1,1,,0,,,10,14,23,10/14/26 22:00, +1,1,6888,2026,1,1,,0,,,10,14,24,10/14/26 23:00, +1,1,6889,2026,1,1,,0,,,10,15,1,10/15/26 0:00, +1,1,6890,2026,1,1,,0,,,10,15,2,10/15/26 1:00, +1,1,6891,2026,1,1,,0,,,10,15,3,10/15/26 2:00, +1,1,6892,2026,1,1,,0,,,10,15,4,10/15/26 3:00, +1,1,6893,2026,1,1,,0,,,10,15,5,10/15/26 4:00, +1,1,6894,2026,1,1,,0,,,10,15,6,10/15/26 5:00, +1,1,6895,2026,1,1,,0,,,10,15,7,10/15/26 6:00, +1,1,6896,2026,1,1,,0,,,10,15,8,10/15/26 7:00, +1,1,6897,2026,1,1,,0,,,10,15,9,10/15/26 8:00, +1,1,6898,2026,1,1,,0,,,10,15,10,10/15/26 9:00, +1,1,6899,2026,1,1,,0,,,10,15,11,10/15/26 10:00, +1,1,6900,2026,1,1,,0,,,10,15,12,10/15/26 11:00, +1,1,6901,2026,1,1,,0,,,10,15,13,10/15/26 12:00, +1,1,6902,2026,1,1,,0,,,10,15,14,10/15/26 13:00, +1,1,6903,2026,1,1,,0,,,10,15,15,10/15/26 14:00, +1,1,6904,2026,1,1,,0,,,10,15,16,10/15/26 15:00, +1,1,6905,2026,1,1,,0,,,10,15,17,10/15/26 16:00, +1,1,6906,2026,1,1,,0,,,10,15,18,10/15/26 17:00, +1,1,6907,2026,1,1,,0,,,10,15,19,10/15/26 18:00, +1,1,6908,2026,1,1,,0,,,10,15,20,10/15/26 19:00, +1,1,6909,2026,1,1,,0,,,10,15,21,10/15/26 20:00, +1,1,6910,2026,1,1,,0,,,10,15,22,10/15/26 21:00, +1,1,6911,2026,1,1,,0,,,10,15,23,10/15/26 22:00, +1,1,6912,2026,1,1,,0,,,10,15,24,10/15/26 23:00, +1,1,6913,2026,1,1,,0,,,10,16,1,10/16/26 0:00, +1,1,6914,2026,1,1,,0,,,10,16,2,10/16/26 1:00, +1,1,6915,2026,1,1,,0,,,10,16,3,10/16/26 2:00, +1,1,6916,2026,1,1,,0,,,10,16,4,10/16/26 3:00, +1,1,6917,2026,1,1,,0,,,10,16,5,10/16/26 4:00, +1,1,6918,2026,1,1,,0,,,10,16,6,10/16/26 5:00, +1,1,6919,2026,1,1,,0,,,10,16,7,10/16/26 6:00, +1,1,6920,2026,1,1,,0,,,10,16,8,10/16/26 7:00, +1,1,6921,2026,1,1,,0,,,10,16,9,10/16/26 8:00, +1,1,6922,2026,1,1,,0,,,10,16,10,10/16/26 9:00, +1,1,6923,2026,1,1,,0,,,10,16,11,10/16/26 10:00, +1,1,6924,2026,1,1,,0,,,10,16,12,10/16/26 11:00, +1,1,6925,2026,1,1,,0,,,10,16,13,10/16/26 12:00, +1,1,6926,2026,1,1,,0,,,10,16,14,10/16/26 13:00, +1,1,6927,2026,1,1,,0,,,10,16,15,10/16/26 14:00, +1,1,6928,2026,1,1,,0,,,10,16,16,10/16/26 15:00, +1,1,6929,2026,1,1,,0,,,10,16,17,10/16/26 16:00, +1,1,6930,2026,1,1,,0,,,10,16,18,10/16/26 17:00, +1,1,6931,2026,1,1,,0,,,10,16,19,10/16/26 18:00, +1,1,6932,2026,1,1,,0,,,10,16,20,10/16/26 19:00, +1,1,6933,2026,1,1,,0,,,10,16,21,10/16/26 20:00, +1,1,6934,2026,1,1,,0,,,10,16,22,10/16/26 21:00, +1,1,6935,2026,1,1,,0,,,10,16,23,10/16/26 22:00, +1,1,6936,2026,1,1,,0,,,10,16,24,10/16/26 23:00, +1,1,6937,2026,1,1,,0,,,10,17,1,10/17/26 0:00, +1,1,6938,2026,1,1,,0,,,10,17,2,10/17/26 1:00, +1,1,6939,2026,1,1,,0,,,10,17,3,10/17/26 2:00, +1,1,6940,2026,1,1,,0,,,10,17,4,10/17/26 3:00, +1,1,6941,2026,1,1,,0,,,10,17,5,10/17/26 4:00, +1,1,6942,2026,1,1,,0,,,10,17,6,10/17/26 5:00, +1,1,6943,2026,1,1,,0,,,10,17,7,10/17/26 6:00, +1,1,6944,2026,1,1,,0,,,10,17,8,10/17/26 7:00, +1,1,6945,2026,1,1,,0,,,10,17,9,10/17/26 8:00, +1,1,6946,2026,1,1,,0,,,10,17,10,10/17/26 9:00, +1,1,6947,2026,1,1,,0,,,10,17,11,10/17/26 10:00, +1,1,6948,2026,1,1,,0,,,10,17,12,10/17/26 11:00, +1,1,6949,2026,1,1,,0,,,10,17,13,10/17/26 12:00, +1,1,6950,2026,1,1,,0,,,10,17,14,10/17/26 13:00, +1,1,6951,2026,1,1,,0,,,10,17,15,10/17/26 14:00, +1,1,6952,2026,1,1,,0,,,10,17,16,10/17/26 15:00, +1,1,6953,2026,1,1,,0,,,10,17,17,10/17/26 16:00, +1,1,6954,2026,1,1,,0,,,10,17,18,10/17/26 17:00, +1,1,6955,2026,1,1,,0,,,10,17,19,10/17/26 18:00, +1,1,6956,2026,1,1,,0,,,10,17,20,10/17/26 19:00, +1,1,6957,2026,1,1,,0,,,10,17,21,10/17/26 20:00, +1,1,6958,2026,1,1,,0,,,10,17,22,10/17/26 21:00, +1,1,6959,2026,1,1,,0,,,10,17,23,10/17/26 22:00, +1,1,6960,2026,1,1,,0,,,10,17,24,10/17/26 23:00, +1,1,6961,2026,1,1,,0,,,10,18,1,10/18/26 0:00, +1,1,6962,2026,1,1,,0,,,10,18,2,10/18/26 1:00, +1,1,6963,2026,1,1,,0,,,10,18,3,10/18/26 2:00, +1,1,6964,2026,1,1,,0,,,10,18,4,10/18/26 3:00, +1,1,6965,2026,1,1,,0,,,10,18,5,10/18/26 4:00, +1,1,6966,2026,1,1,,0,,,10,18,6,10/18/26 5:00, +1,1,6967,2026,1,1,,0,,,10,18,7,10/18/26 6:00, +1,1,6968,2026,1,1,,0,,,10,18,8,10/18/26 7:00, +1,1,6969,2026,1,1,,0,,,10,18,9,10/18/26 8:00, +1,1,6970,2026,1,1,,0,,,10,18,10,10/18/26 9:00, +1,1,6971,2026,1,1,,0,,,10,18,11,10/18/26 10:00, +1,1,6972,2026,1,1,,0,,,10,18,12,10/18/26 11:00, +1,1,6973,2026,1,1,,0,,,10,18,13,10/18/26 12:00, +1,1,6974,2026,1,1,,0,,,10,18,14,10/18/26 13:00, +1,1,6975,2026,1,1,,0,,,10,18,15,10/18/26 14:00, +1,1,6976,2026,1,1,,0,,,10,18,16,10/18/26 15:00, +1,1,6977,2026,1,1,,0,,,10,18,17,10/18/26 16:00, +1,1,6978,2026,1,1,,0,,,10,18,18,10/18/26 17:00, +1,1,6979,2026,1,1,,0,,,10,18,19,10/18/26 18:00, +1,1,6980,2026,1,1,,0,,,10,18,20,10/18/26 19:00, +1,1,6981,2026,1,1,,0,,,10,18,21,10/18/26 20:00, +1,1,6982,2026,1,1,,0,,,10,18,22,10/18/26 21:00, +1,1,6983,2026,1,1,,0,,,10,18,23,10/18/26 22:00, +1,1,6984,2026,1,1,,0,,,10,18,24,10/18/26 23:00, +1,1,6985,2026,1,1,,0,,,10,19,1,10/19/26 0:00, +1,1,6986,2026,1,1,,0,,,10,19,2,10/19/26 1:00, +1,1,6987,2026,1,1,,0,,,10,19,3,10/19/26 2:00, +1,1,6988,2026,1,1,,0,,,10,19,4,10/19/26 3:00, +1,1,6989,2026,1,1,,0,,,10,19,5,10/19/26 4:00, +1,1,6990,2026,1,1,,0,,,10,19,6,10/19/26 5:00, +1,1,6991,2026,1,1,,0,,,10,19,7,10/19/26 6:00, +1,1,6992,2026,1,1,,0,,,10,19,8,10/19/26 7:00, +1,1,6993,2026,1,1,,0,,,10,19,9,10/19/26 8:00, +1,1,6994,2026,1,1,,0,,,10,19,10,10/19/26 9:00, +1,1,6995,2026,1,1,,0,,,10,19,11,10/19/26 10:00, +1,1,6996,2026,1,1,,0,,,10,19,12,10/19/26 11:00, +1,1,6997,2026,1,1,,0,,,10,19,13,10/19/26 12:00, +1,1,6998,2026,1,1,,0,,,10,19,14,10/19/26 13:00, +1,1,6999,2026,1,1,,0,,,10,19,15,10/19/26 14:00, +1,1,7000,2026,1,1,,0,,,10,19,16,10/19/26 15:00, +1,1,7001,2026,1,1,,0,,,10,19,17,10/19/26 16:00, +1,1,7002,2026,1,1,,0,,,10,19,18,10/19/26 17:00, +1,1,7003,2026,1,1,,0,,,10,19,19,10/19/26 18:00, +1,1,7004,2026,1,1,,0,,,10,19,20,10/19/26 19:00, +1,1,7005,2026,1,1,,0,,,10,19,21,10/19/26 20:00, +1,1,7006,2026,1,1,,0,,,10,19,22,10/19/26 21:00, +1,1,7007,2026,1,1,,0,,,10,19,23,10/19/26 22:00, +1,1,7008,2026,1,1,,0,,,10,19,24,10/19/26 23:00, +1,1,7009,2026,1,1,,0,,,10,20,1,10/20/26 0:00, +1,1,7010,2026,1,1,,0,,,10,20,2,10/20/26 1:00, +1,1,7011,2026,1,1,,0,,,10,20,3,10/20/26 2:00, +1,1,7012,2026,1,1,,0,,,10,20,4,10/20/26 3:00, +1,1,7013,2026,1,1,,0,,,10,20,5,10/20/26 4:00, +1,1,7014,2026,1,1,,0,,,10,20,6,10/20/26 5:00, +1,1,7015,2026,1,1,,0,,,10,20,7,10/20/26 6:00, +1,1,7016,2026,1,1,,0,,,10,20,8,10/20/26 7:00, +1,1,7017,2026,1,1,,0,,,10,20,9,10/20/26 8:00, +1,1,7018,2026,1,1,,0,,,10,20,10,10/20/26 9:00, +1,1,7019,2026,1,1,,0,,,10,20,11,10/20/26 10:00, +1,1,7020,2026,1,1,,0,,,10,20,12,10/20/26 11:00, +1,1,7021,2026,1,1,,0,,,10,20,13,10/20/26 12:00, +1,1,7022,2026,1,1,,0,,,10,20,14,10/20/26 13:00, +1,1,7023,2026,1,1,,0,,,10,20,15,10/20/26 14:00, +1,1,7024,2026,1,1,,0,,,10,20,16,10/20/26 15:00, +1,1,7025,2026,1,1,,0,,,10,20,17,10/20/26 16:00, +1,1,7026,2026,1,1,,0,,,10,20,18,10/20/26 17:00, +1,1,7027,2026,1,1,,0,,,10,20,19,10/20/26 18:00, +1,1,7028,2026,1,1,,0,,,10,20,20,10/20/26 19:00, +1,1,7029,2026,1,1,,0,,,10,20,21,10/20/26 20:00, +1,1,7030,2026,1,1,,0,,,10,20,22,10/20/26 21:00, +1,1,7031,2026,1,1,,0,,,10,20,23,10/20/26 22:00, +1,1,7032,2026,1,1,,0,,,10,20,24,10/20/26 23:00, +1,1,7033,2026,1,1,,0,,,10,21,1,10/21/26 0:00, +1,1,7034,2026,1,1,,0,,,10,21,2,10/21/26 1:00, +1,1,7035,2026,1,1,,0,,,10,21,3,10/21/26 2:00, +1,1,7036,2026,1,1,,0,,,10,21,4,10/21/26 3:00, +1,1,7037,2026,1,1,,0,,,10,21,5,10/21/26 4:00, +1,1,7038,2026,1,1,,0,,,10,21,6,10/21/26 5:00, +1,1,7039,2026,1,1,,0,,,10,21,7,10/21/26 6:00, +1,1,7040,2026,1,1,,0,,,10,21,8,10/21/26 7:00, +1,1,7041,2026,1,1,,0,,,10,21,9,10/21/26 8:00, +1,1,7042,2026,1,1,,0,,,10,21,10,10/21/26 9:00, +1,1,7043,2026,1,1,,0,,,10,21,11,10/21/26 10:00, +1,1,7044,2026,1,1,,0,,,10,21,12,10/21/26 11:00, +1,1,7045,2026,1,1,,0,,,10,21,13,10/21/26 12:00, +1,1,7046,2026,1,1,,0,,,10,21,14,10/21/26 13:00, +1,1,7047,2026,1,1,,0,,,10,21,15,10/21/26 14:00, +1,1,7048,2026,1,1,,0,,,10,21,16,10/21/26 15:00, +1,1,7049,2026,1,1,,0,,,10,21,17,10/21/26 16:00, +1,1,7050,2026,1,1,,0,,,10,21,18,10/21/26 17:00, +1,1,7051,2026,1,1,,0,,,10,21,19,10/21/26 18:00, +1,1,7052,2026,1,1,,0,,,10,21,20,10/21/26 19:00, +1,1,7053,2026,1,1,,0,,,10,21,21,10/21/26 20:00, +1,1,7054,2026,1,1,,0,,,10,21,22,10/21/26 21:00, +1,1,7055,2026,1,1,,0,,,10,21,23,10/21/26 22:00, +1,1,7056,2026,1,1,,0,,,10,21,24,10/21/26 23:00, +1,1,7057,2026,1,1,,0,,,10,22,1,10/22/26 0:00, +1,1,7058,2026,1,1,,0,,,10,22,2,10/22/26 1:00, +1,1,7059,2026,1,1,,0,,,10,22,3,10/22/26 2:00, +1,1,7060,2026,1,1,,0,,,10,22,4,10/22/26 3:00, +1,1,7061,2026,1,1,,0,,,10,22,5,10/22/26 4:00, +1,1,7062,2026,1,1,,0,,,10,22,6,10/22/26 5:00, +1,1,7063,2026,1,1,,0,,,10,22,7,10/22/26 6:00, +1,1,7064,2026,1,1,,0,,,10,22,8,10/22/26 7:00, +1,1,7065,2026,1,1,,0,,,10,22,9,10/22/26 8:00, +1,1,7066,2026,1,1,,0,,,10,22,10,10/22/26 9:00, +1,1,7067,2026,1,1,,0,,,10,22,11,10/22/26 10:00, +1,1,7068,2026,1,1,,0,,,10,22,12,10/22/26 11:00, +1,1,7069,2026,1,1,,0,,,10,22,13,10/22/26 12:00, +1,1,7070,2026,1,1,,0,,,10,22,14,10/22/26 13:00, +1,1,7071,2026,1,1,,0,,,10,22,15,10/22/26 14:00, +1,1,7072,2026,1,1,,0,,,10,22,16,10/22/26 15:00, +1,1,7073,2026,1,1,,0,,,10,22,17,10/22/26 16:00, +1,1,7074,2026,1,1,,0,,,10,22,18,10/22/26 17:00, +1,1,7075,2026,1,1,,0,,,10,22,19,10/22/26 18:00, +1,1,7076,2026,1,1,,0,,,10,22,20,10/22/26 19:00, +1,1,7077,2026,1,1,,0,,,10,22,21,10/22/26 20:00, +1,1,7078,2026,1,1,,0,,,10,22,22,10/22/26 21:00, +1,1,7079,2026,1,1,,0,,,10,22,23,10/22/26 22:00, +1,1,7080,2026,1,1,,0,,,10,22,24,10/22/26 23:00, +1,1,7081,2026,1,1,,0,,,10,23,1,10/23/26 0:00, +1,1,7082,2026,1,1,,0,,,10,23,2,10/23/26 1:00, +1,1,7083,2026,1,1,,0,,,10,23,3,10/23/26 2:00, +1,1,7084,2026,1,1,,0,,,10,23,4,10/23/26 3:00, +1,1,7085,2026,1,1,,0,,,10,23,5,10/23/26 4:00, +1,1,7086,2026,1,1,,0,,,10,23,6,10/23/26 5:00, +1,1,7087,2026,1,1,,0,,,10,23,7,10/23/26 6:00, +1,1,7088,2026,1,1,,0,,,10,23,8,10/23/26 7:00, +1,1,7089,2026,1,1,,0,,,10,23,9,10/23/26 8:00, +1,1,7090,2026,1,1,,0,,,10,23,10,10/23/26 9:00, +1,1,7091,2026,1,1,,0,,,10,23,11,10/23/26 10:00, +1,1,7092,2026,1,1,,0,,,10,23,12,10/23/26 11:00, +1,1,7093,2026,1,1,,0,,,10,23,13,10/23/26 12:00, +1,1,7094,2026,1,1,,0,,,10,23,14,10/23/26 13:00, +1,1,7095,2026,1,1,,0,,,10,23,15,10/23/26 14:00, +1,1,7096,2026,1,1,,0,,,10,23,16,10/23/26 15:00, +1,1,7097,2026,1,1,,0,,,10,23,17,10/23/26 16:00, +1,1,7098,2026,1,1,,0,,,10,23,18,10/23/26 17:00, +1,1,7099,2026,1,1,,0,,,10,23,19,10/23/26 18:00, +1,1,7100,2026,1,1,,0,,,10,23,20,10/23/26 19:00, +1,1,7101,2026,1,1,,0,,,10,23,21,10/23/26 20:00, +1,1,7102,2026,1,1,,0,,,10,23,22,10/23/26 21:00, +1,1,7103,2026,1,1,,0,,,10,23,23,10/23/26 22:00, +1,1,7104,2026,1,1,,0,,,10,23,24,10/23/26 23:00, +1,1,7105,2026,1,1,,0,,,10,24,1,10/24/26 0:00, +1,1,7106,2026,1,1,,0,,,10,24,2,10/24/26 1:00, +1,1,7107,2026,1,1,,0,,,10,24,3,10/24/26 2:00, +1,1,7108,2026,1,1,,0,,,10,24,4,10/24/26 3:00, +1,1,7109,2026,1,1,,0,,,10,24,5,10/24/26 4:00, +1,1,7110,2026,1,1,,0,,,10,24,6,10/24/26 5:00, +1,1,7111,2026,1,1,,0,,,10,24,7,10/24/26 6:00, +1,1,7112,2026,1,1,,0,,,10,24,8,10/24/26 7:00, +1,1,7113,2026,1,1,,0,,,10,24,9,10/24/26 8:00, +1,1,7114,2026,1,1,,0,,,10,24,10,10/24/26 9:00, +1,1,7115,2026,1,1,,0,,,10,24,11,10/24/26 10:00, +1,1,7116,2026,1,1,,0,,,10,24,12,10/24/26 11:00, +1,1,7117,2026,1,1,,0,,,10,24,13,10/24/26 12:00, +1,1,7118,2026,1,1,,0,,,10,24,14,10/24/26 13:00, +1,1,7119,2026,1,1,,0,,,10,24,15,10/24/26 14:00, +1,1,7120,2026,1,1,,0,,,10,24,16,10/24/26 15:00, +1,1,7121,2026,1,1,,0,,,10,24,17,10/24/26 16:00, +1,1,7122,2026,1,1,,0,,,10,24,18,10/24/26 17:00, +1,1,7123,2026,1,1,,0,,,10,24,19,10/24/26 18:00, +1,1,7124,2026,1,1,,0,,,10,24,20,10/24/26 19:00, +1,1,7125,2026,1,1,,0,,,10,24,21,10/24/26 20:00, +1,1,7126,2026,1,1,,0,,,10,24,22,10/24/26 21:00, +1,1,7127,2026,1,1,,0,,,10,24,23,10/24/26 22:00, +1,1,7128,2026,1,1,,0,,,10,24,24,10/24/26 23:00, +1,1,7129,2026,1,1,,0,,,10,25,1,10/25/26 0:00, +1,1,7130,2026,1,1,,0,,,10,25,2,10/25/26 1:00, +1,1,7131,2026,1,1,,0,,,10,25,3,10/25/26 2:00, +1,1,7132,2026,1,1,,0,,,10,25,4,10/25/26 3:00, +1,1,7133,2026,1,1,,0,,,10,25,5,10/25/26 4:00, +1,1,7134,2026,1,1,,0,,,10,25,6,10/25/26 5:00, +1,1,7135,2026,1,1,,0,,,10,25,7,10/25/26 6:00, +1,1,7136,2026,1,1,,0,,,10,25,8,10/25/26 7:00, +1,1,7137,2026,1,1,,0,,,10,25,9,10/25/26 8:00, +1,1,7138,2026,1,1,,0,,,10,25,10,10/25/26 9:00, +1,1,7139,2026,1,1,,0,,,10,25,11,10/25/26 10:00, +1,1,7140,2026,1,1,,0,,,10,25,12,10/25/26 11:00, +1,1,7141,2026,1,1,,0,,,10,25,13,10/25/26 12:00, +1,1,7142,2026,1,1,,0,,,10,25,14,10/25/26 13:00, +1,1,7143,2026,1,1,,0,,,10,25,15,10/25/26 14:00, +1,1,7144,2026,1,1,,0,,,10,25,16,10/25/26 15:00, +1,1,7145,2026,1,1,,0,,,10,25,17,10/25/26 16:00, +1,1,7146,2026,1,1,,0,,,10,25,18,10/25/26 17:00, +1,1,7147,2026,1,1,,0,,,10,25,19,10/25/26 18:00, +1,1,7148,2026,1,1,,0,,,10,25,20,10/25/26 19:00, +1,1,7149,2026,1,1,,0,,,10,25,21,10/25/26 20:00, +1,1,7150,2026,1,1,,0,,,10,25,22,10/25/26 21:00, +1,1,7151,2026,1,1,,0,,,10,25,23,10/25/26 22:00, +1,1,7152,2026,1,1,,0,,,10,25,24,10/25/26 23:00, +1,1,7153,2026,1,1,,0,,,10,26,1,10/26/26 0:00, +1,1,7154,2026,1,1,,0,,,10,26,2,10/26/26 1:00, +1,1,7155,2026,1,1,,0,,,10,26,3,10/26/26 2:00, +1,1,7156,2026,1,1,,0,,,10,26,4,10/26/26 3:00, +1,1,7157,2026,1,1,,0,,,10,26,5,10/26/26 4:00, +1,1,7158,2026,1,1,,0,,,10,26,6,10/26/26 5:00, +1,1,7159,2026,1,1,,0,,,10,26,7,10/26/26 6:00, +1,1,7160,2026,1,1,,0,,,10,26,8,10/26/26 7:00, +1,1,7161,2026,1,1,,0,,,10,26,9,10/26/26 8:00, +1,1,7162,2026,1,1,,0,,,10,26,10,10/26/26 9:00, +1,1,7163,2026,1,1,,0,,,10,26,11,10/26/26 10:00, +1,1,7164,2026,1,1,,0,,,10,26,12,10/26/26 11:00, +1,1,7165,2026,1,1,,0,,,10,26,13,10/26/26 12:00, +1,1,7166,2026,1,1,,0,,,10,26,14,10/26/26 13:00, +1,1,7167,2026,1,1,,0,,,10,26,15,10/26/26 14:00, +1,1,7168,2026,1,1,,0,,,10,26,16,10/26/26 15:00, +1,1,7169,2026,1,1,,0,,,10,26,17,10/26/26 16:00, +1,1,7170,2026,1,1,,0,,,10,26,18,10/26/26 17:00, +1,1,7171,2026,1,1,,0,,,10,26,19,10/26/26 18:00, +1,1,7172,2026,1,1,,0,,,10,26,20,10/26/26 19:00, +1,1,7173,2026,1,1,,0,,,10,26,21,10/26/26 20:00, +1,1,7174,2026,1,1,,0,,,10,26,22,10/26/26 21:00, +1,1,7175,2026,1,1,,0,,,10,26,23,10/26/26 22:00, +1,1,7176,2026,1,1,,0,,,10,26,24,10/26/26 23:00, +1,1,7177,2026,1,1,,0,,,10,27,1,10/27/26 0:00, +1,1,7178,2026,1,1,,0,,,10,27,2,10/27/26 1:00, +1,1,7179,2026,1,1,,0,,,10,27,3,10/27/26 2:00, +1,1,7180,2026,1,1,,0,,,10,27,4,10/27/26 3:00, +1,1,7181,2026,1,1,,0,,,10,27,5,10/27/26 4:00, +1,1,7182,2026,1,1,,0,,,10,27,6,10/27/26 5:00, +1,1,7183,2026,1,1,,0,,,10,27,7,10/27/26 6:00, +1,1,7184,2026,1,1,,0,,,10,27,8,10/27/26 7:00, +1,1,7185,2026,1,1,,0,,,10,27,9,10/27/26 8:00, +1,1,7186,2026,1,1,,0,,,10,27,10,10/27/26 9:00, +1,1,7187,2026,1,1,,0,,,10,27,11,10/27/26 10:00, +1,1,7188,2026,1,1,,0,,,10,27,12,10/27/26 11:00, +1,1,7189,2026,1,1,,0,,,10,27,13,10/27/26 12:00, +1,1,7190,2026,1,1,,0,,,10,27,14,10/27/26 13:00, +1,1,7191,2026,1,1,,0,,,10,27,15,10/27/26 14:00, +1,1,7192,2026,1,1,,0,,,10,27,16,10/27/26 15:00, +1,1,7193,2026,1,1,,0,,,10,27,17,10/27/26 16:00, +1,1,7194,2026,1,1,,0,,,10,27,18,10/27/26 17:00, +1,1,7195,2026,1,1,,0,,,10,27,19,10/27/26 18:00, +1,1,7196,2026,1,1,,0,,,10,27,20,10/27/26 19:00, +1,1,7197,2026,1,1,,0,,,10,27,21,10/27/26 20:00, +1,1,7198,2026,1,1,,0,,,10,27,22,10/27/26 21:00, +1,1,7199,2026,1,1,,0,,,10,27,23,10/27/26 22:00, +1,1,7200,2026,1,1,,0,,,10,27,24,10/27/26 23:00, +1,1,7201,2026,1,1,,0,,,10,28,1,10/28/26 0:00, +1,1,7202,2026,1,1,,0,,,10,28,2,10/28/26 1:00, +1,1,7203,2026,1,1,,0,,,10,28,3,10/28/26 2:00, +1,1,7204,2026,1,1,,0,,,10,28,4,10/28/26 3:00, +1,1,7205,2026,1,1,,0,,,10,28,5,10/28/26 4:00, +1,1,7206,2026,1,1,,0,,,10,28,6,10/28/26 5:00, +1,1,7207,2026,1,1,,0,,,10,28,7,10/28/26 6:00, +1,1,7208,2026,1,1,,0,,,10,28,8,10/28/26 7:00, +1,1,7209,2026,1,1,,0,,,10,28,9,10/28/26 8:00, +1,1,7210,2026,1,1,,0,,,10,28,10,10/28/26 9:00, +1,1,7211,2026,1,1,,0,,,10,28,11,10/28/26 10:00, +1,1,7212,2026,1,1,,0,,,10,28,12,10/28/26 11:00, +1,1,7213,2026,1,1,,0,,,10,28,13,10/28/26 12:00, +1,1,7214,2026,1,1,,0,,,10,28,14,10/28/26 13:00, +1,1,7215,2026,1,1,,0,,,10,28,15,10/28/26 14:00, +1,1,7216,2026,1,1,,0,,,10,28,16,10/28/26 15:00, +1,1,7217,2026,1,1,,0,,,10,28,17,10/28/26 16:00, +1,1,7218,2026,1,1,,0,,,10,28,18,10/28/26 17:00, +1,1,7219,2026,1,1,,0,,,10,28,19,10/28/26 18:00, +1,1,7220,2026,1,1,,0,,,10,28,20,10/28/26 19:00, +1,1,7221,2026,1,1,,0,,,10,28,21,10/28/26 20:00, +1,1,7222,2026,1,1,,0,,,10,28,22,10/28/26 21:00, +1,1,7223,2026,1,1,,0,,,10,28,23,10/28/26 22:00, +1,1,7224,2026,1,1,,0,,,10,28,24,10/28/26 23:00, +1,1,7225,2026,1,1,,0,,,10,29,1,10/29/26 0:00, +1,1,7226,2026,1,1,,0,,,10,29,2,10/29/26 1:00, +1,1,7227,2026,1,1,,0,,,10,29,3,10/29/26 2:00, +1,1,7228,2026,1,1,,0,,,10,29,4,10/29/26 3:00, +1,1,7229,2026,1,1,,0,,,10,29,5,10/29/26 4:00, +1,1,7230,2026,1,1,,0,,,10,29,6,10/29/26 5:00, +1,1,7231,2026,1,1,,0,,,10,29,7,10/29/26 6:00, +1,1,7232,2026,1,1,,0,,,10,29,8,10/29/26 7:00, +1,1,7233,2026,1,1,,0,,,10,29,9,10/29/26 8:00, +1,1,7234,2026,1,1,,0,,,10,29,10,10/29/26 9:00, +1,1,7235,2026,1,1,,0,,,10,29,11,10/29/26 10:00, +1,1,7236,2026,1,1,,0,,,10,29,12,10/29/26 11:00, +1,1,7237,2026,1,1,,0,,,10,29,13,10/29/26 12:00, +1,1,7238,2026,1,1,,0,,,10,29,14,10/29/26 13:00, +1,1,7239,2026,1,1,,0,,,10,29,15,10/29/26 14:00, +1,1,7240,2026,1,1,,0,,,10,29,16,10/29/26 15:00, +1,1,7241,2026,1,1,,0,,,10,29,17,10/29/26 16:00, +1,1,7242,2026,1,1,,0,,,10,29,18,10/29/26 17:00, +1,1,7243,2026,1,1,,0,,,10,29,19,10/29/26 18:00, +1,1,7244,2026,1,1,,0,,,10,29,20,10/29/26 19:00, +1,1,7245,2026,1,1,,0,,,10,29,21,10/29/26 20:00, +1,1,7246,2026,1,1,,0,,,10,29,22,10/29/26 21:00, +1,1,7247,2026,1,1,,0,,,10,29,23,10/29/26 22:00, +1,1,7248,2026,1,1,,0,,,10,29,24,10/29/26 23:00, +1,1,7249,2026,1,1,,0,,,10,30,1,10/30/26 0:00, +1,1,7250,2026,1,1,,0,,,10,30,2,10/30/26 1:00, +1,1,7251,2026,1,1,,0,,,10,30,3,10/30/26 2:00, +1,1,7252,2026,1,1,,0,,,10,30,4,10/30/26 3:00, +1,1,7253,2026,1,1,,0,,,10,30,5,10/30/26 4:00, +1,1,7254,2026,1,1,,0,,,10,30,6,10/30/26 5:00, +1,1,7255,2026,1,1,,0,,,10,30,7,10/30/26 6:00, +1,1,7256,2026,1,1,,0,,,10,30,8,10/30/26 7:00, +1,1,7257,2026,1,1,,0,,,10,30,9,10/30/26 8:00, +1,1,7258,2026,1,1,,0,,,10,30,10,10/30/26 9:00, +1,1,7259,2026,1,1,,0,,,10,30,11,10/30/26 10:00, +1,1,7260,2026,1,1,,0,,,10,30,12,10/30/26 11:00, +1,1,7261,2026,1,1,,0,,,10,30,13,10/30/26 12:00, +1,1,7262,2026,1,1,,0,,,10,30,14,10/30/26 13:00, +1,1,7263,2026,1,1,,0,,,10,30,15,10/30/26 14:00, +1,1,7264,2026,1,1,,0,,,10,30,16,10/30/26 15:00, +1,1,7265,2026,1,1,,0,,,10,30,17,10/30/26 16:00, +1,1,7266,2026,1,1,,0,,,10,30,18,10/30/26 17:00, +1,1,7267,2026,1,1,,0,,,10,30,19,10/30/26 18:00, +1,1,7268,2026,1,1,,0,,,10,30,20,10/30/26 19:00, +1,1,7269,2026,1,1,,0,,,10,30,21,10/30/26 20:00, +1,1,7270,2026,1,1,,0,,,10,30,22,10/30/26 21:00, +1,1,7271,2026,1,1,,0,,,10,30,23,10/30/26 22:00, +1,1,7272,2026,1,1,,0,,,10,30,24,10/30/26 23:00, +1,1,7273,2026,1,1,,0,,,10,31,1,10/31/26 0:00, +1,1,7274,2026,1,1,,0,,,10,31,2,10/31/26 1:00, +1,1,7275,2026,1,1,,0,,,10,31,3,10/31/26 2:00, +1,1,7276,2026,1,1,,0,,,10,31,4,10/31/26 3:00, +1,1,7277,2026,1,1,,0,,,10,31,5,10/31/26 4:00, +1,1,7278,2026,1,1,,0,,,10,31,6,10/31/26 5:00, +1,1,7279,2026,1,1,,0,,,10,31,7,10/31/26 6:00, +1,1,7280,2026,1,1,,0,,,10,31,8,10/31/26 7:00, +1,1,7281,2026,1,1,,0,,,10,31,9,10/31/26 8:00, +1,1,7282,2026,1,1,,0,,,10,31,10,10/31/26 9:00, +1,1,7283,2026,1,1,,0,,,10,31,11,10/31/26 10:00, +1,1,7284,2026,1,1,,0,,,10,31,12,10/31/26 11:00, +1,1,7285,2026,1,1,,0,,,10,31,13,10/31/26 12:00, +1,1,7286,2026,1,1,,0,,,10,31,14,10/31/26 13:00, +1,1,7287,2026,1,1,,0,,,10,31,15,10/31/26 14:00, +1,1,7288,2026,1,1,,0,,,10,31,16,10/31/26 15:00, +1,1,7289,2026,1,1,,0,,,10,31,17,10/31/26 16:00, +1,1,7290,2026,1,1,,0,,,10,31,18,10/31/26 17:00, +1,1,7291,2026,1,1,,0,,,10,31,19,10/31/26 18:00, +1,1,7292,2026,1,1,,0,,,10,31,20,10/31/26 19:00, +1,1,7293,2026,1,1,,0,,,10,31,21,10/31/26 20:00, +1,1,7294,2026,1,1,,0,,,10,31,22,10/31/26 21:00, +1,1,7295,2026,1,1,,0,,,10,31,23,10/31/26 22:00, +1,1,7296,2026,1,1,,0,,,10,31,24,10/31/26 23:00, +1,1,7297,2026,1,1,,0,,,11,1,1,11/1/26 0:00, +1,1,7298,2026,1,1,,0,,,11,1,2,11/1/26 1:00, +1,1,7299,2026,1,1,,0,,,11,1,3,11/1/26 2:00, +1,1,7300,2026,1,1,,0,,,11,1,4,11/1/26 3:00, +1,1,7301,2026,1,1,,0,,,11,1,5,11/1/26 4:00, +1,1,7302,2026,1,1,,0,,,11,1,6,11/1/26 5:00, +1,1,7303,2026,1,1,,0,,,11,1,7,11/1/26 6:00, +1,1,7304,2026,1,1,,0,,,11,1,8,11/1/26 7:00, +1,1,7305,2026,1,1,,0,,,11,1,9,11/1/26 8:00, +1,1,7306,2026,1,1,,0,,,11,1,10,11/1/26 9:00, +1,1,7307,2026,1,1,,0,,,11,1,11,11/1/26 10:00, +1,1,7308,2026,1,1,,0,,,11,1,12,11/1/26 11:00, +1,1,7309,2026,1,1,,0,,,11,1,13,11/1/26 12:00, +1,1,7310,2026,1,1,,0,,,11,1,14,11/1/26 13:00, +1,1,7311,2026,1,1,,0,,,11,1,15,11/1/26 14:00, +1,1,7312,2026,1,1,,0,,,11,1,16,11/1/26 15:00, +1,1,7313,2026,1,1,,0,,,11,1,17,11/1/26 16:00, +1,1,7314,2026,1,1,,0,,,11,1,18,11/1/26 17:00, +1,1,7315,2026,1,1,,0,,,11,1,19,11/1/26 18:00, +1,1,7316,2026,1,1,,0,,,11,1,20,11/1/26 19:00, +1,1,7317,2026,1,1,,0,,,11,1,21,11/1/26 20:00, +1,1,7318,2026,1,1,,0,,,11,1,22,11/1/26 21:00, +1,1,7319,2026,1,1,,0,,,11,1,23,11/1/26 22:00, +1,1,7320,2026,1,1,,0,,,11,1,24,11/1/26 23:00, +1,1,7321,2026,1,1,,0,,,11,2,1,11/2/26 0:00, +1,1,7322,2026,1,1,,0,,,11,2,2,11/2/26 1:00, +1,1,7323,2026,1,1,,0,,,11,2,3,11/2/26 2:00, +1,1,7324,2026,1,1,,0,,,11,2,4,11/2/26 3:00, +1,1,7325,2026,1,1,,0,,,11,2,5,11/2/26 4:00, +1,1,7326,2026,1,1,,0,,,11,2,6,11/2/26 5:00, +1,1,7327,2026,1,1,,0,,,11,2,7,11/2/26 6:00, +1,1,7328,2026,1,1,,0,,,11,2,8,11/2/26 7:00, +1,1,7329,2026,1,1,,0,,,11,2,9,11/2/26 8:00, +1,1,7330,2026,1,1,,0,,,11,2,10,11/2/26 9:00, +1,1,7331,2026,1,1,,0,,,11,2,11,11/2/26 10:00, +1,1,7332,2026,1,1,,0,,,11,2,12,11/2/26 11:00, +1,1,7333,2026,1,1,,0,,,11,2,13,11/2/26 12:00, +1,1,7334,2026,1,1,,0,,,11,2,14,11/2/26 13:00, +1,1,7335,2026,1,1,,0,,,11,2,15,11/2/26 14:00, +1,1,7336,2026,1,1,,0,,,11,2,16,11/2/26 15:00, +1,1,7337,2026,1,1,,0,,,11,2,17,11/2/26 16:00, +1,1,7338,2026,1,1,,0,,,11,2,18,11/2/26 17:00, +1,1,7339,2026,1,1,,0,,,11,2,19,11/2/26 18:00, +1,1,7340,2026,1,1,,0,,,11,2,20,11/2/26 19:00, +1,1,7341,2026,1,1,,0,,,11,2,21,11/2/26 20:00, +1,1,7342,2026,1,1,,0,,,11,2,22,11/2/26 21:00, +1,1,7343,2026,1,1,,0,,,11,2,23,11/2/26 22:00, +1,1,7344,2026,1,1,,0,,,11,2,24,11/2/26 23:00, +1,1,7345,2026,1,1,,0,,,11,3,1,11/3/26 0:00, +1,1,7346,2026,1,1,,0,,,11,3,2,11/3/26 1:00, +1,1,7347,2026,1,1,,0,,,11,3,3,11/3/26 2:00, +1,1,7348,2026,1,1,,0,,,11,3,4,11/3/26 3:00, +1,1,7349,2026,1,1,,0,,,11,3,5,11/3/26 4:00, +1,1,7350,2026,1,1,,0,,,11,3,6,11/3/26 5:00, +1,1,7351,2026,1,1,,0,,,11,3,7,11/3/26 6:00, +1,1,7352,2026,1,1,,0,,,11,3,8,11/3/26 7:00, +1,1,7353,2026,1,1,,0,,,11,3,9,11/3/26 8:00, +1,1,7354,2026,1,1,,0,,,11,3,10,11/3/26 9:00, +1,1,7355,2026,1,1,,0,,,11,3,11,11/3/26 10:00, +1,1,7356,2026,1,1,,0,,,11,3,12,11/3/26 11:00, +1,1,7357,2026,1,1,,0,,,11,3,13,11/3/26 12:00, +1,1,7358,2026,1,1,,0,,,11,3,14,11/3/26 13:00, +1,1,7359,2026,1,1,,0,,,11,3,15,11/3/26 14:00, +1,1,7360,2026,1,1,,0,,,11,3,16,11/3/26 15:00, +1,1,7361,2026,1,1,,0,,,11,3,17,11/3/26 16:00, +1,1,7362,2026,1,1,,0,,,11,3,18,11/3/26 17:00, +1,1,7363,2026,1,1,,0,,,11,3,19,11/3/26 18:00, +1,1,7364,2026,1,1,,0,,,11,3,20,11/3/26 19:00, +1,1,7365,2026,1,1,,0,,,11,3,21,11/3/26 20:00, +1,1,7366,2026,1,1,,0,,,11,3,22,11/3/26 21:00, +1,1,7367,2026,1,1,,0,,,11,3,23,11/3/26 22:00, +1,1,7368,2026,1,1,,0,,,11,3,24,11/3/26 23:00, +1,1,7369,2026,1,1,,0,,,11,4,1,11/4/26 0:00, +1,1,7370,2026,1,1,,0,,,11,4,2,11/4/26 1:00, +1,1,7371,2026,1,1,,0,,,11,4,3,11/4/26 2:00, +1,1,7372,2026,1,1,,0,,,11,4,4,11/4/26 3:00, +1,1,7373,2026,1,1,,0,,,11,4,5,11/4/26 4:00, +1,1,7374,2026,1,1,,0,,,11,4,6,11/4/26 5:00, +1,1,7375,2026,1,1,,0,,,11,4,7,11/4/26 6:00, +1,1,7376,2026,1,1,,0,,,11,4,8,11/4/26 7:00, +1,1,7377,2026,1,1,,0,,,11,4,9,11/4/26 8:00, +1,1,7378,2026,1,1,,0,,,11,4,10,11/4/26 9:00, +1,1,7379,2026,1,1,,0,,,11,4,11,11/4/26 10:00, +1,1,7380,2026,1,1,,0,,,11,4,12,11/4/26 11:00, +1,1,7381,2026,1,1,,0,,,11,4,13,11/4/26 12:00, +1,1,7382,2026,1,1,,0,,,11,4,14,11/4/26 13:00, +1,1,7383,2026,1,1,,0,,,11,4,15,11/4/26 14:00, +1,1,7384,2026,1,1,,0,,,11,4,16,11/4/26 15:00, +1,1,7385,2026,1,1,,0,,,11,4,17,11/4/26 16:00, +1,1,7386,2026,1,1,,0,,,11,4,18,11/4/26 17:00, +1,1,7387,2026,1,1,,0,,,11,4,19,11/4/26 18:00, +1,1,7388,2026,1,1,,0,,,11,4,20,11/4/26 19:00, +1,1,7389,2026,1,1,,0,,,11,4,21,11/4/26 20:00, +1,1,7390,2026,1,1,,0,,,11,4,22,11/4/26 21:00, +1,1,7391,2026,1,1,,0,,,11,4,23,11/4/26 22:00, +1,1,7392,2026,1,1,,0,,,11,4,24,11/4/26 23:00, +1,1,7393,2026,1,1,,0,,,11,5,1,11/5/26 0:00, +1,1,7394,2026,1,1,,0,,,11,5,2,11/5/26 1:00, +1,1,7395,2026,1,1,,0,,,11,5,3,11/5/26 2:00, +1,1,7396,2026,1,1,,0,,,11,5,4,11/5/26 3:00, +1,1,7397,2026,1,1,,0,,,11,5,5,11/5/26 4:00, +1,1,7398,2026,1,1,,0,,,11,5,6,11/5/26 5:00, +1,1,7399,2026,1,1,,0,,,11,5,7,11/5/26 6:00, +1,1,7400,2026,1,1,,0,,,11,5,8,11/5/26 7:00, +1,1,7401,2026,1,1,,0,,,11,5,9,11/5/26 8:00, +1,1,7402,2026,1,1,,0,,,11,5,10,11/5/26 9:00, +1,1,7403,2026,1,1,,0,,,11,5,11,11/5/26 10:00, +1,1,7404,2026,1,1,,0,,,11,5,12,11/5/26 11:00, +1,1,7405,2026,1,1,,0,,,11,5,13,11/5/26 12:00, +1,1,7406,2026,1,1,,0,,,11,5,14,11/5/26 13:00, +1,1,7407,2026,1,1,,0,,,11,5,15,11/5/26 14:00, +1,1,7408,2026,1,1,,0,,,11,5,16,11/5/26 15:00, +1,1,7409,2026,1,1,,0,,,11,5,17,11/5/26 16:00, +1,1,7410,2026,1,1,,0,,,11,5,18,11/5/26 17:00, +1,1,7411,2026,1,1,,0,,,11,5,19,11/5/26 18:00, +1,1,7412,2026,1,1,,0,,,11,5,20,11/5/26 19:00, +1,1,7413,2026,1,1,,0,,,11,5,21,11/5/26 20:00, +1,1,7414,2026,1,1,,0,,,11,5,22,11/5/26 21:00, +1,1,7415,2026,1,1,,0,,,11,5,23,11/5/26 22:00, +1,1,7416,2026,1,1,,0,,,11,5,24,11/5/26 23:00, +1,1,7417,2026,1,1,,0,,,11,6,1,11/6/26 0:00, +1,1,7418,2026,1,1,,0,,,11,6,2,11/6/26 1:00, +1,1,7419,2026,1,1,,0,,,11,6,3,11/6/26 2:00, +1,1,7420,2026,1,1,,0,,,11,6,4,11/6/26 3:00, +1,1,7421,2026,1,1,,0,,,11,6,5,11/6/26 4:00, +1,1,7422,2026,1,1,,0,,,11,6,6,11/6/26 5:00, +1,1,7423,2026,1,1,,0,,,11,6,7,11/6/26 6:00, +1,1,7424,2026,1,1,,0,,,11,6,8,11/6/26 7:00, +1,1,7425,2026,1,1,,0,,,11,6,9,11/6/26 8:00, +1,1,7426,2026,1,1,,0,,,11,6,10,11/6/26 9:00, +1,1,7427,2026,1,1,,0,,,11,6,11,11/6/26 10:00, +1,1,7428,2026,1,1,,0,,,11,6,12,11/6/26 11:00, +1,1,7429,2026,1,1,,0,,,11,6,13,11/6/26 12:00, +1,1,7430,2026,1,1,,0,,,11,6,14,11/6/26 13:00, +1,1,7431,2026,1,1,,0,,,11,6,15,11/6/26 14:00, +1,1,7432,2026,1,1,,0,,,11,6,16,11/6/26 15:00, +1,1,7433,2026,1,1,,0,,,11,6,17,11/6/26 16:00, +1,1,7434,2026,1,1,,0,,,11,6,18,11/6/26 17:00, +1,1,7435,2026,1,1,,0,,,11,6,19,11/6/26 18:00, +1,1,7436,2026,1,1,,0,,,11,6,20,11/6/26 19:00, +1,1,7437,2026,1,1,,0,,,11,6,21,11/6/26 20:00, +1,1,7438,2026,1,1,,0,,,11,6,22,11/6/26 21:00, +1,1,7439,2026,1,1,,0,,,11,6,23,11/6/26 22:00, +1,1,7440,2026,1,1,,0,,,11,6,24,11/6/26 23:00, +1,1,7441,2026,1,1,,0,,,11,7,1,11/7/26 0:00, +1,1,7442,2026,1,1,,0,,,11,7,2,11/7/26 1:00, +1,1,7443,2026,1,1,,0,,,11,7,3,11/7/26 2:00, +1,1,7444,2026,1,1,,0,,,11,7,4,11/7/26 3:00, +1,1,7445,2026,1,1,,0,,,11,7,5,11/7/26 4:00, +1,1,7446,2026,1,1,,0,,,11,7,6,11/7/26 5:00, +1,1,7447,2026,1,1,,0,,,11,7,7,11/7/26 6:00, +1,1,7448,2026,1,1,,0,,,11,7,8,11/7/26 7:00, +1,1,7449,2026,1,1,,0,,,11,7,9,11/7/26 8:00, +1,1,7450,2026,1,1,,0,,,11,7,10,11/7/26 9:00, +1,1,7451,2026,1,1,,0,,,11,7,11,11/7/26 10:00, +1,1,7452,2026,1,1,,0,,,11,7,12,11/7/26 11:00, +1,1,7453,2026,1,1,,0,,,11,7,13,11/7/26 12:00, +1,1,7454,2026,1,1,,0,,,11,7,14,11/7/26 13:00, +1,1,7455,2026,1,1,,0,,,11,7,15,11/7/26 14:00, +1,1,7456,2026,1,1,,0,,,11,7,16,11/7/26 15:00, +1,1,7457,2026,1,1,,0,,,11,7,17,11/7/26 16:00, +1,1,7458,2026,1,1,,0,,,11,7,18,11/7/26 17:00, +1,1,7459,2026,1,1,,0,,,11,7,19,11/7/26 18:00, +1,1,7460,2026,1,1,,0,,,11,7,20,11/7/26 19:00, +1,1,7461,2026,1,1,,0,,,11,7,21,11/7/26 20:00, +1,1,7462,2026,1,1,,0,,,11,7,22,11/7/26 21:00, +1,1,7463,2026,1,1,,0,,,11,7,23,11/7/26 22:00, +1,1,7464,2026,1,1,,0,,,11,7,24,11/7/26 23:00, +1,1,7465,2026,1,1,,0,,,11,8,1,11/8/26 0:00, +1,1,7466,2026,1,1,,0,,,11,8,2,11/8/26 1:00, +1,1,7467,2026,1,1,,0,,,11,8,3,11/8/26 2:00, +1,1,7468,2026,1,1,,0,,,11,8,4,11/8/26 3:00, +1,1,7469,2026,1,1,,0,,,11,8,5,11/8/26 4:00, +1,1,7470,2026,1,1,,0,,,11,8,6,11/8/26 5:00, +1,1,7471,2026,1,1,,0,,,11,8,7,11/8/26 6:00, +1,1,7472,2026,1,1,,0,,,11,8,8,11/8/26 7:00, +1,1,7473,2026,1,1,,0,,,11,8,9,11/8/26 8:00, +1,1,7474,2026,1,1,,0,,,11,8,10,11/8/26 9:00, +1,1,7475,2026,1,1,,0,,,11,8,11,11/8/26 10:00, +1,1,7476,2026,1,1,,0,,,11,8,12,11/8/26 11:00, +1,1,7477,2026,1,1,,0,,,11,8,13,11/8/26 12:00, +1,1,7478,2026,1,1,,0,,,11,8,14,11/8/26 13:00, +1,1,7479,2026,1,1,,0,,,11,8,15,11/8/26 14:00, +1,1,7480,2026,1,1,,0,,,11,8,16,11/8/26 15:00, +1,1,7481,2026,1,1,,0,,,11,8,17,11/8/26 16:00, +1,1,7482,2026,1,1,,0,,,11,8,18,11/8/26 17:00, +1,1,7483,2026,1,1,,0,,,11,8,19,11/8/26 18:00, +1,1,7484,2026,1,1,,0,,,11,8,20,11/8/26 19:00, +1,1,7485,2026,1,1,,0,,,11,8,21,11/8/26 20:00, +1,1,7486,2026,1,1,,0,,,11,8,22,11/8/26 21:00, +1,1,7487,2026,1,1,,0,,,11,8,23,11/8/26 22:00, +1,1,7488,2026,1,1,,0,,,11,8,24,11/8/26 23:00, +1,1,7489,2026,1,1,,0,,,11,9,1,11/9/26 0:00, +1,1,7490,2026,1,1,,0,,,11,9,2,11/9/26 1:00, +1,1,7491,2026,1,1,,0,,,11,9,3,11/9/26 2:00, +1,1,7492,2026,1,1,,0,,,11,9,4,11/9/26 3:00, +1,1,7493,2026,1,1,,0,,,11,9,5,11/9/26 4:00, +1,1,7494,2026,1,1,,0,,,11,9,6,11/9/26 5:00, +1,1,7495,2026,1,1,,0,,,11,9,7,11/9/26 6:00, +1,1,7496,2026,1,1,,0,,,11,9,8,11/9/26 7:00, +1,1,7497,2026,1,1,,0,,,11,9,9,11/9/26 8:00, +1,1,7498,2026,1,1,,0,,,11,9,10,11/9/26 9:00, +1,1,7499,2026,1,1,,0,,,11,9,11,11/9/26 10:00, +1,1,7500,2026,1,1,,0,,,11,9,12,11/9/26 11:00, +1,1,7501,2026,1,1,,0,,,11,9,13,11/9/26 12:00, +1,1,7502,2026,1,1,,0,,,11,9,14,11/9/26 13:00, +1,1,7503,2026,1,1,,0,,,11,9,15,11/9/26 14:00, +1,1,7504,2026,1,1,,0,,,11,9,16,11/9/26 15:00, +1,1,7505,2026,1,1,,0,,,11,9,17,11/9/26 16:00, +1,1,7506,2026,1,1,,0,,,11,9,18,11/9/26 17:00, +1,1,7507,2026,1,1,,0,,,11,9,19,11/9/26 18:00, +1,1,7508,2026,1,1,,0,,,11,9,20,11/9/26 19:00, +1,1,7509,2026,1,1,,0,,,11,9,21,11/9/26 20:00, +1,1,7510,2026,1,1,,0,,,11,9,22,11/9/26 21:00, +1,1,7511,2026,1,1,,0,,,11,9,23,11/9/26 22:00, +1,1,7512,2026,1,1,,0,,,11,9,24,11/9/26 23:00, +1,1,7513,2026,1,1,,0,,,11,10,1,11/10/26 0:00, +1,1,7514,2026,1,1,,0,,,11,10,2,11/10/26 1:00, +1,1,7515,2026,1,1,,0,,,11,10,3,11/10/26 2:00, +1,1,7516,2026,1,1,,0,,,11,10,4,11/10/26 3:00, +1,1,7517,2026,1,1,,0,,,11,10,5,11/10/26 4:00, +1,1,7518,2026,1,1,,0,,,11,10,6,11/10/26 5:00, +1,1,7519,2026,1,1,,0,,,11,10,7,11/10/26 6:00, +1,1,7520,2026,1,1,,0,,,11,10,8,11/10/26 7:00, +1,1,7521,2026,1,1,,0,,,11,10,9,11/10/26 8:00, +1,1,7522,2026,1,1,,0,,,11,10,10,11/10/26 9:00, +1,1,7523,2026,1,1,,0,,,11,10,11,11/10/26 10:00, +1,1,7524,2026,1,1,,0,,,11,10,12,11/10/26 11:00, +1,1,7525,2026,1,1,,0,,,11,10,13,11/10/26 12:00, +1,1,7526,2026,1,1,,0,,,11,10,14,11/10/26 13:00, +1,1,7527,2026,1,1,,0,,,11,10,15,11/10/26 14:00, +1,1,7528,2026,1,1,,0,,,11,10,16,11/10/26 15:00, +1,1,7529,2026,1,1,,0,,,11,10,17,11/10/26 16:00, +1,1,7530,2026,1,1,,0,,,11,10,18,11/10/26 17:00, +1,1,7531,2026,1,1,,0,,,11,10,19,11/10/26 18:00, +1,1,7532,2026,1,1,,0,,,11,10,20,11/10/26 19:00, +1,1,7533,2026,1,1,,0,,,11,10,21,11/10/26 20:00, +1,1,7534,2026,1,1,,0,,,11,10,22,11/10/26 21:00, +1,1,7535,2026,1,1,,0,,,11,10,23,11/10/26 22:00, +1,1,7536,2026,1,1,,0,,,11,10,24,11/10/26 23:00, +1,1,7537,2026,1,1,,0,,,11,11,1,11/11/26 0:00, +1,1,7538,2026,1,1,,0,,,11,11,2,11/11/26 1:00, +1,1,7539,2026,1,1,,0,,,11,11,3,11/11/26 2:00, +1,1,7540,2026,1,1,,0,,,11,11,4,11/11/26 3:00, +1,1,7541,2026,1,1,,0,,,11,11,5,11/11/26 4:00, +1,1,7542,2026,1,1,,0,,,11,11,6,11/11/26 5:00, +1,1,7543,2026,1,1,,0,,,11,11,7,11/11/26 6:00, +1,1,7544,2026,1,1,,0,,,11,11,8,11/11/26 7:00, +1,1,7545,2026,1,1,,0,,,11,11,9,11/11/26 8:00, +1,1,7546,2026,1,1,,0,,,11,11,10,11/11/26 9:00, +1,1,7547,2026,1,1,,0,,,11,11,11,11/11/26 10:00, +1,1,7548,2026,1,1,,0,,,11,11,12,11/11/26 11:00, +1,1,7549,2026,1,1,,0,,,11,11,13,11/11/26 12:00, +1,1,7550,2026,1,1,,0,,,11,11,14,11/11/26 13:00, +1,1,7551,2026,1,1,,0,,,11,11,15,11/11/26 14:00, +1,1,7552,2026,1,1,,0,,,11,11,16,11/11/26 15:00, +1,1,7553,2026,1,1,,0,,,11,11,17,11/11/26 16:00, +1,1,7554,2026,1,1,,0,,,11,11,18,11/11/26 17:00, +1,1,7555,2026,1,1,,0,,,11,11,19,11/11/26 18:00, +1,1,7556,2026,1,1,,0,,,11,11,20,11/11/26 19:00, +1,1,7557,2026,1,1,,0,,,11,11,21,11/11/26 20:00, +1,1,7558,2026,1,1,,0,,,11,11,22,11/11/26 21:00, +1,1,7559,2026,1,1,,0,,,11,11,23,11/11/26 22:00, +1,1,7560,2026,1,1,,0,,,11,11,24,11/11/26 23:00, +1,1,7561,2026,1,1,,0,,,11,12,1,11/12/26 0:00, +1,1,7562,2026,1,1,,0,,,11,12,2,11/12/26 1:00, +1,1,7563,2026,1,1,,0,,,11,12,3,11/12/26 2:00, +1,1,7564,2026,1,1,,0,,,11,12,4,11/12/26 3:00, +1,1,7565,2026,1,1,,0,,,11,12,5,11/12/26 4:00, +1,1,7566,2026,1,1,,0,,,11,12,6,11/12/26 5:00, +1,1,7567,2026,1,1,,0,,,11,12,7,11/12/26 6:00, +1,1,7568,2026,1,1,,0,,,11,12,8,11/12/26 7:00, +1,1,7569,2026,1,1,,0,,,11,12,9,11/12/26 8:00, +1,1,7570,2026,1,1,,0,,,11,12,10,11/12/26 9:00, +1,1,7571,2026,1,1,,0,,,11,12,11,11/12/26 10:00, +1,1,7572,2026,1,1,,0,,,11,12,12,11/12/26 11:00, +1,1,7573,2026,1,1,,0,,,11,12,13,11/12/26 12:00, +1,1,7574,2026,1,1,,0,,,11,12,14,11/12/26 13:00, +1,1,7575,2026,1,1,,0,,,11,12,15,11/12/26 14:00, +1,1,7576,2026,1,1,,0,,,11,12,16,11/12/26 15:00, +1,1,7577,2026,1,1,,0,,,11,12,17,11/12/26 16:00, +1,1,7578,2026,1,1,,0,,,11,12,18,11/12/26 17:00, +1,1,7579,2026,1,1,,0,,,11,12,19,11/12/26 18:00, +1,1,7580,2026,1,1,,0,,,11,12,20,11/12/26 19:00, +1,1,7581,2026,1,1,,0,,,11,12,21,11/12/26 20:00, +1,1,7582,2026,1,1,,0,,,11,12,22,11/12/26 21:00, +1,1,7583,2026,1,1,,0,,,11,12,23,11/12/26 22:00, +1,1,7584,2026,1,1,,0,,,11,12,24,11/12/26 23:00, +1,1,7585,2026,1,1,,0,,,11,13,1,11/13/26 0:00, +1,1,7586,2026,1,1,,0,,,11,13,2,11/13/26 1:00, +1,1,7587,2026,1,1,,0,,,11,13,3,11/13/26 2:00, +1,1,7588,2026,1,1,,0,,,11,13,4,11/13/26 3:00, +1,1,7589,2026,1,1,,0,,,11,13,5,11/13/26 4:00, +1,1,7590,2026,1,1,,0,,,11,13,6,11/13/26 5:00, +1,1,7591,2026,1,1,,0,,,11,13,7,11/13/26 6:00, +1,1,7592,2026,1,1,,0,,,11,13,8,11/13/26 7:00, +1,1,7593,2026,1,1,,0,,,11,13,9,11/13/26 8:00, +1,1,7594,2026,1,1,,0,,,11,13,10,11/13/26 9:00, +1,1,7595,2026,1,1,,0,,,11,13,11,11/13/26 10:00, +1,1,7596,2026,1,1,,0,,,11,13,12,11/13/26 11:00, +1,1,7597,2026,1,1,,0,,,11,13,13,11/13/26 12:00, +1,1,7598,2026,1,1,,0,,,11,13,14,11/13/26 13:00, +1,1,7599,2026,1,1,,0,,,11,13,15,11/13/26 14:00, +1,1,7600,2026,1,1,,0,,,11,13,16,11/13/26 15:00, +1,1,7601,2026,1,1,,0,,,11,13,17,11/13/26 16:00, +1,1,7602,2026,1,1,,0,,,11,13,18,11/13/26 17:00, +1,1,7603,2026,1,1,,0,,,11,13,19,11/13/26 18:00, +1,1,7604,2026,1,1,,0,,,11,13,20,11/13/26 19:00, +1,1,7605,2026,1,1,,0,,,11,13,21,11/13/26 20:00, +1,1,7606,2026,1,1,,0,,,11,13,22,11/13/26 21:00, +1,1,7607,2026,1,1,,0,,,11,13,23,11/13/26 22:00, +1,1,7608,2026,1,1,,0,,,11,13,24,11/13/26 23:00, +1,1,7609,2026,1,1,,0,,,11,14,1,11/14/26 0:00, +1,1,7610,2026,1,1,,0,,,11,14,2,11/14/26 1:00, +1,1,7611,2026,1,1,,0,,,11,14,3,11/14/26 2:00, +1,1,7612,2026,1,1,,0,,,11,14,4,11/14/26 3:00, +1,1,7613,2026,1,1,,0,,,11,14,5,11/14/26 4:00, +1,1,7614,2026,1,1,,0,,,11,14,6,11/14/26 5:00, +1,1,7615,2026,1,1,,0,,,11,14,7,11/14/26 6:00, +1,1,7616,2026,1,1,,0,,,11,14,8,11/14/26 7:00, +1,1,7617,2026,1,1,,0,,,11,14,9,11/14/26 8:00, +1,1,7618,2026,1,1,,0,,,11,14,10,11/14/26 9:00, +1,1,7619,2026,1,1,,0,,,11,14,11,11/14/26 10:00, +1,1,7620,2026,1,1,,0,,,11,14,12,11/14/26 11:00, +1,1,7621,2026,1,1,,0,,,11,14,13,11/14/26 12:00, +1,1,7622,2026,1,1,,0,,,11,14,14,11/14/26 13:00, +1,1,7623,2026,1,1,,0,,,11,14,15,11/14/26 14:00, +1,1,7624,2026,1,1,,0,,,11,14,16,11/14/26 15:00, +1,1,7625,2026,1,1,,0,,,11,14,17,11/14/26 16:00, +1,1,7626,2026,1,1,,0,,,11,14,18,11/14/26 17:00, +1,1,7627,2026,1,1,,0,,,11,14,19,11/14/26 18:00, +1,1,7628,2026,1,1,,0,,,11,14,20,11/14/26 19:00, +1,1,7629,2026,1,1,,0,,,11,14,21,11/14/26 20:00, +1,1,7630,2026,1,1,,0,,,11,14,22,11/14/26 21:00, +1,1,7631,2026,1,1,,0,,,11,14,23,11/14/26 22:00, +1,1,7632,2026,1,1,,0,,,11,14,24,11/14/26 23:00, +1,1,7633,2026,1,1,,0,,,11,15,1,11/15/26 0:00, +1,1,7634,2026,1,1,,0,,,11,15,2,11/15/26 1:00, +1,1,7635,2026,1,1,,0,,,11,15,3,11/15/26 2:00, +1,1,7636,2026,1,1,,0,,,11,15,4,11/15/26 3:00, +1,1,7637,2026,1,1,,0,,,11,15,5,11/15/26 4:00, +1,1,7638,2026,1,1,,0,,,11,15,6,11/15/26 5:00, +1,1,7639,2026,1,1,,0,,,11,15,7,11/15/26 6:00, +1,1,7640,2026,1,1,,0,,,11,15,8,11/15/26 7:00, +1,1,7641,2026,1,1,,0,,,11,15,9,11/15/26 8:00, +1,1,7642,2026,1,1,,0,,,11,15,10,11/15/26 9:00, +1,1,7643,2026,1,1,,0,,,11,15,11,11/15/26 10:00, +1,1,7644,2026,1,1,,0,,,11,15,12,11/15/26 11:00, +1,1,7645,2026,1,1,,0,,,11,15,13,11/15/26 12:00, +1,1,7646,2026,1,1,,0,,,11,15,14,11/15/26 13:00, +1,1,7647,2026,1,1,,0,,,11,15,15,11/15/26 14:00, +1,1,7648,2026,1,1,,0,,,11,15,16,11/15/26 15:00, +1,1,7649,2026,1,1,,0,,,11,15,17,11/15/26 16:00, +1,1,7650,2026,1,1,,0,,,11,15,18,11/15/26 17:00, +1,1,7651,2026,1,1,,0,,,11,15,19,11/15/26 18:00, +1,1,7652,2026,1,1,,0,,,11,15,20,11/15/26 19:00, +1,1,7653,2026,1,1,,0,,,11,15,21,11/15/26 20:00, +1,1,7654,2026,1,1,,0,,,11,15,22,11/15/26 21:00, +1,1,7655,2026,1,1,,0,,,11,15,23,11/15/26 22:00, +1,1,7656,2026,1,1,,0,,,11,15,24,11/15/26 23:00, +1,1,7657,2026,1,1,,0,,,11,16,1,11/16/26 0:00, +1,1,7658,2026,1,1,,0,,,11,16,2,11/16/26 1:00, +1,1,7659,2026,1,1,,0,,,11,16,3,11/16/26 2:00, +1,1,7660,2026,1,1,,0,,,11,16,4,11/16/26 3:00, +1,1,7661,2026,1,1,,0,,,11,16,5,11/16/26 4:00, +1,1,7662,2026,1,1,,0,,,11,16,6,11/16/26 5:00, +1,1,7663,2026,1,1,,0,,,11,16,7,11/16/26 6:00, +1,1,7664,2026,1,1,,0,,,11,16,8,11/16/26 7:00, +1,1,7665,2026,1,1,,0,,,11,16,9,11/16/26 8:00, +1,1,7666,2026,1,1,,0,,,11,16,10,11/16/26 9:00, +1,1,7667,2026,1,1,,0,,,11,16,11,11/16/26 10:00, +1,1,7668,2026,1,1,,0,,,11,16,12,11/16/26 11:00, +1,1,7669,2026,1,1,,0,,,11,16,13,11/16/26 12:00, +1,1,7670,2026,1,1,,0,,,11,16,14,11/16/26 13:00, +1,1,7671,2026,1,1,,0,,,11,16,15,11/16/26 14:00, +1,1,7672,2026,1,1,,0,,,11,16,16,11/16/26 15:00, +1,1,7673,2026,1,1,,0,,,11,16,17,11/16/26 16:00, +1,1,7674,2026,1,1,,0,,,11,16,18,11/16/26 17:00, +1,1,7675,2026,1,1,,0,,,11,16,19,11/16/26 18:00, +1,1,7676,2026,1,1,,0,,,11,16,20,11/16/26 19:00, +1,1,7677,2026,1,1,,0,,,11,16,21,11/16/26 20:00, +1,1,7678,2026,1,1,,0,,,11,16,22,11/16/26 21:00, +1,1,7679,2026,1,1,,0,,,11,16,23,11/16/26 22:00, +1,1,7680,2026,1,1,,0,,,11,16,24,11/16/26 23:00, +1,1,7681,2026,1,1,,0,,,11,17,1,11/17/26 0:00, +1,1,7682,2026,1,1,,0,,,11,17,2,11/17/26 1:00, +1,1,7683,2026,1,1,,0,,,11,17,3,11/17/26 2:00, +1,1,7684,2026,1,1,,0,,,11,17,4,11/17/26 3:00, +1,1,7685,2026,1,1,,0,,,11,17,5,11/17/26 4:00, +1,1,7686,2026,1,1,,0,,,11,17,6,11/17/26 5:00, +1,1,7687,2026,1,1,,0,,,11,17,7,11/17/26 6:00, +1,1,7688,2026,1,1,,0,,,11,17,8,11/17/26 7:00, +1,1,7689,2026,1,1,,0,,,11,17,9,11/17/26 8:00, +1,1,7690,2026,1,1,,0,,,11,17,10,11/17/26 9:00, +1,1,7691,2026,1,1,,0,,,11,17,11,11/17/26 10:00, +1,1,7692,2026,1,1,,0,,,11,17,12,11/17/26 11:00, +1,1,7693,2026,1,1,,0,,,11,17,13,11/17/26 12:00, +1,1,7694,2026,1,1,,0,,,11,17,14,11/17/26 13:00, +1,1,7695,2026,1,1,,0,,,11,17,15,11/17/26 14:00, +1,1,7696,2026,1,1,,0,,,11,17,16,11/17/26 15:00, +1,1,7697,2026,1,1,,0,,,11,17,17,11/17/26 16:00, +1,1,7698,2026,1,1,,0,,,11,17,18,11/17/26 17:00, +1,1,7699,2026,1,1,,0,,,11,17,19,11/17/26 18:00, +1,1,7700,2026,1,1,,0,,,11,17,20,11/17/26 19:00, +1,1,7701,2026,1,1,,0,,,11,17,21,11/17/26 20:00, +1,1,7702,2026,1,1,,0,,,11,17,22,11/17/26 21:00, +1,1,7703,2026,1,1,,0,,,11,17,23,11/17/26 22:00, +1,1,7704,2026,1,1,,0,,,11,17,24,11/17/26 23:00, +1,1,7705,2026,1,1,,0,,,11,18,1,11/18/26 0:00, +1,1,7706,2026,1,1,,0,,,11,18,2,11/18/26 1:00, +1,1,7707,2026,1,1,,0,,,11,18,3,11/18/26 2:00, +1,1,7708,2026,1,1,,0,,,11,18,4,11/18/26 3:00, +1,1,7709,2026,1,1,,0,,,11,18,5,11/18/26 4:00, +1,1,7710,2026,1,1,,0,,,11,18,6,11/18/26 5:00, +1,1,7711,2026,1,1,,0,,,11,18,7,11/18/26 6:00, +1,1,7712,2026,1,1,,0,,,11,18,8,11/18/26 7:00, +1,1,7713,2026,1,1,,0,,,11,18,9,11/18/26 8:00, +1,1,7714,2026,1,1,,0,,,11,18,10,11/18/26 9:00, +1,1,7715,2026,1,1,,0,,,11,18,11,11/18/26 10:00, +1,1,7716,2026,1,1,,0,,,11,18,12,11/18/26 11:00, +1,1,7717,2026,1,1,,0,,,11,18,13,11/18/26 12:00, +1,1,7718,2026,1,1,,0,,,11,18,14,11/18/26 13:00, +1,1,7719,2026,1,1,,0,,,11,18,15,11/18/26 14:00, +1,1,7720,2026,1,1,,0,,,11,18,16,11/18/26 15:00, +1,1,7721,2026,1,1,,0,,,11,18,17,11/18/26 16:00, +1,1,7722,2026,1,1,,0,,,11,18,18,11/18/26 17:00, +1,1,7723,2026,1,1,,0,,,11,18,19,11/18/26 18:00, +1,1,7724,2026,1,1,,0,,,11,18,20,11/18/26 19:00, +1,1,7725,2026,1,1,,0,,,11,18,21,11/18/26 20:00, +1,1,7726,2026,1,1,,0,,,11,18,22,11/18/26 21:00, +1,1,7727,2026,1,1,,0,,,11,18,23,11/18/26 22:00, +1,1,7728,2026,1,1,,0,,,11,18,24,11/18/26 23:00, +1,1,7729,2026,1,1,,0,,,11,19,1,11/19/26 0:00, +1,1,7730,2026,1,1,,0,,,11,19,2,11/19/26 1:00, +1,1,7731,2026,1,1,,0,,,11,19,3,11/19/26 2:00, +1,1,7732,2026,1,1,,0,,,11,19,4,11/19/26 3:00, +1,1,7733,2026,1,1,,0,,,11,19,5,11/19/26 4:00, +1,1,7734,2026,1,1,,0,,,11,19,6,11/19/26 5:00, +1,1,7735,2026,1,1,,0,,,11,19,7,11/19/26 6:00, +1,1,7736,2026,1,1,,0,,,11,19,8,11/19/26 7:00, +1,1,7737,2026,1,1,,0,,,11,19,9,11/19/26 8:00, +1,1,7738,2026,1,1,,0,,,11,19,10,11/19/26 9:00, +1,1,7739,2026,1,1,,0,,,11,19,11,11/19/26 10:00, +1,1,7740,2026,1,1,,0,,,11,19,12,11/19/26 11:00, +1,1,7741,2026,1,1,,0,,,11,19,13,11/19/26 12:00, +1,1,7742,2026,1,1,,0,,,11,19,14,11/19/26 13:00, +1,1,7743,2026,1,1,,0,,,11,19,15,11/19/26 14:00, +1,1,7744,2026,1,1,,0,,,11,19,16,11/19/26 15:00, +1,1,7745,2026,1,1,,0,,,11,19,17,11/19/26 16:00, +1,1,7746,2026,1,1,,0,,,11,19,18,11/19/26 17:00, +1,1,7747,2026,1,1,,0,,,11,19,19,11/19/26 18:00, +1,1,7748,2026,1,1,,0,,,11,19,20,11/19/26 19:00, +1,1,7749,2026,1,1,,0,,,11,19,21,11/19/26 20:00, +1,1,7750,2026,1,1,,0,,,11,19,22,11/19/26 21:00, +1,1,7751,2026,1,1,,0,,,11,19,23,11/19/26 22:00, +1,1,7752,2026,1,1,,0,,,11,19,24,11/19/26 23:00, +1,1,7753,2026,1,1,,0,,,11,20,1,11/20/26 0:00, +1,1,7754,2026,1,1,,0,,,11,20,2,11/20/26 1:00, +1,1,7755,2026,1,1,,0,,,11,20,3,11/20/26 2:00, +1,1,7756,2026,1,1,,0,,,11,20,4,11/20/26 3:00, +1,1,7757,2026,1,1,,0,,,11,20,5,11/20/26 4:00, +1,1,7758,2026,1,1,,0,,,11,20,6,11/20/26 5:00, +1,1,7759,2026,1,1,,0,,,11,20,7,11/20/26 6:00, +1,1,7760,2026,1,1,,0,,,11,20,8,11/20/26 7:00, +1,1,7761,2026,1,1,,0,,,11,20,9,11/20/26 8:00, +1,1,7762,2026,1,1,,0,,,11,20,10,11/20/26 9:00, +1,1,7763,2026,1,1,,0,,,11,20,11,11/20/26 10:00, +1,1,7764,2026,1,1,,0,,,11,20,12,11/20/26 11:00, +1,1,7765,2026,1,1,,0,,,11,20,13,11/20/26 12:00, +1,1,7766,2026,1,1,,0,,,11,20,14,11/20/26 13:00, +1,1,7767,2026,1,1,,0,,,11,20,15,11/20/26 14:00, +1,1,7768,2026,1,1,,0,,,11,20,16,11/20/26 15:00, +1,1,7769,2026,1,1,,0,,,11,20,17,11/20/26 16:00, +1,1,7770,2026,1,1,,0,,,11,20,18,11/20/26 17:00, +1,1,7771,2026,1,1,,0,,,11,20,19,11/20/26 18:00, +1,1,7772,2026,1,1,,0,,,11,20,20,11/20/26 19:00, +1,1,7773,2026,1,1,,0,,,11,20,21,11/20/26 20:00, +1,1,7774,2026,1,1,,0,,,11,20,22,11/20/26 21:00, +1,1,7775,2026,1,1,,0,,,11,20,23,11/20/26 22:00, +1,1,7776,2026,1,1,,0,,,11,20,24,11/20/26 23:00, +1,1,7777,2026,1,1,,0,,,11,21,1,11/21/26 0:00, +1,1,7778,2026,1,1,,0,,,11,21,2,11/21/26 1:00, +1,1,7779,2026,1,1,,0,,,11,21,3,11/21/26 2:00, +1,1,7780,2026,1,1,,0,,,11,21,4,11/21/26 3:00, +1,1,7781,2026,1,1,,0,,,11,21,5,11/21/26 4:00, +1,1,7782,2026,1,1,,0,,,11,21,6,11/21/26 5:00, +1,1,7783,2026,1,1,,0,,,11,21,7,11/21/26 6:00, +1,1,7784,2026,1,1,,0,,,11,21,8,11/21/26 7:00, +1,1,7785,2026,1,1,,0,,,11,21,9,11/21/26 8:00, +1,1,7786,2026,1,1,,0,,,11,21,10,11/21/26 9:00, +1,1,7787,2026,1,1,,0,,,11,21,11,11/21/26 10:00, +1,1,7788,2026,1,1,,0,,,11,21,12,11/21/26 11:00, +1,1,7789,2026,1,1,,0,,,11,21,13,11/21/26 12:00, +1,1,7790,2026,1,1,,0,,,11,21,14,11/21/26 13:00, +1,1,7791,2026,1,1,,0,,,11,21,15,11/21/26 14:00, +1,1,7792,2026,1,1,,0,,,11,21,16,11/21/26 15:00, +1,1,7793,2026,1,1,,0,,,11,21,17,11/21/26 16:00, +1,1,7794,2026,1,1,,0,,,11,21,18,11/21/26 17:00, +1,1,7795,2026,1,1,,0,,,11,21,19,11/21/26 18:00, +1,1,7796,2026,1,1,,0,,,11,21,20,11/21/26 19:00, +1,1,7797,2026,1,1,,0,,,11,21,21,11/21/26 20:00, +1,1,7798,2026,1,1,,0,,,11,21,22,11/21/26 21:00, +1,1,7799,2026,1,1,,0,,,11,21,23,11/21/26 22:00, +1,1,7800,2026,1,1,,0,,,11,21,24,11/21/26 23:00, +1,1,7801,2026,1,1,,0,,,11,22,1,11/22/26 0:00, +1,1,7802,2026,1,1,,0,,,11,22,2,11/22/26 1:00, +1,1,7803,2026,1,1,,0,,,11,22,3,11/22/26 2:00, +1,1,7804,2026,1,1,,0,,,11,22,4,11/22/26 3:00, +1,1,7805,2026,1,1,,0,,,11,22,5,11/22/26 4:00, +1,1,7806,2026,1,1,,0,,,11,22,6,11/22/26 5:00, +1,1,7807,2026,1,1,,0,,,11,22,7,11/22/26 6:00, +1,1,7808,2026,1,1,,0,,,11,22,8,11/22/26 7:00, +1,1,7809,2026,1,1,,0,,,11,22,9,11/22/26 8:00, +1,1,7810,2026,1,1,,0,,,11,22,10,11/22/26 9:00, +1,1,7811,2026,1,1,,0,,,11,22,11,11/22/26 10:00, +1,1,7812,2026,1,1,,0,,,11,22,12,11/22/26 11:00, +1,1,7813,2026,1,1,,0,,,11,22,13,11/22/26 12:00, +1,1,7814,2026,1,1,,0,,,11,22,14,11/22/26 13:00, +1,1,7815,2026,1,1,,0,,,11,22,15,11/22/26 14:00, +1,1,7816,2026,1,1,,0,,,11,22,16,11/22/26 15:00, +1,1,7817,2026,1,1,,0,,,11,22,17,11/22/26 16:00, +1,1,7818,2026,1,1,,0,,,11,22,18,11/22/26 17:00, +1,1,7819,2026,1,1,,0,,,11,22,19,11/22/26 18:00, +1,1,7820,2026,1,1,,0,,,11,22,20,11/22/26 19:00, +1,1,7821,2026,1,1,,0,,,11,22,21,11/22/26 20:00, +1,1,7822,2026,1,1,,0,,,11,22,22,11/22/26 21:00, +1,1,7823,2026,1,1,,0,,,11,22,23,11/22/26 22:00, +1,1,7824,2026,1,1,,0,,,11,22,24,11/22/26 23:00, +1,1,7825,2026,1,1,,0,,,11,23,1,11/23/26 0:00, +1,1,7826,2026,1,1,,0,,,11,23,2,11/23/26 1:00, +1,1,7827,2026,1,1,,0,,,11,23,3,11/23/26 2:00, +1,1,7828,2026,1,1,,0,,,11,23,4,11/23/26 3:00, +1,1,7829,2026,1,1,,0,,,11,23,5,11/23/26 4:00, +1,1,7830,2026,1,1,,0,,,11,23,6,11/23/26 5:00, +1,1,7831,2026,1,1,,0,,,11,23,7,11/23/26 6:00, +1,1,7832,2026,1,1,,0,,,11,23,8,11/23/26 7:00, +1,1,7833,2026,1,1,,0,,,11,23,9,11/23/26 8:00, +1,1,7834,2026,1,1,,0,,,11,23,10,11/23/26 9:00, +1,1,7835,2026,1,1,,0,,,11,23,11,11/23/26 10:00, +1,1,7836,2026,1,1,,0,,,11,23,12,11/23/26 11:00, +1,1,7837,2026,1,1,,0,,,11,23,13,11/23/26 12:00, +1,1,7838,2026,1,1,,0,,,11,23,14,11/23/26 13:00, +1,1,7839,2026,1,1,,0,,,11,23,15,11/23/26 14:00, +1,1,7840,2026,1,1,,0,,,11,23,16,11/23/26 15:00, +1,1,7841,2026,1,1,,0,,,11,23,17,11/23/26 16:00, +1,1,7842,2026,1,1,,0,,,11,23,18,11/23/26 17:00, +1,1,7843,2026,1,1,,0,,,11,23,19,11/23/26 18:00, +1,1,7844,2026,1,1,,0,,,11,23,20,11/23/26 19:00, +1,1,7845,2026,1,1,,0,,,11,23,21,11/23/26 20:00, +1,1,7846,2026,1,1,,0,,,11,23,22,11/23/26 21:00, +1,1,7847,2026,1,1,,0,,,11,23,23,11/23/26 22:00, +1,1,7848,2026,1,1,,0,,,11,23,24,11/23/26 23:00, +1,1,7849,2026,1,1,,0,,,11,24,1,11/24/26 0:00, +1,1,7850,2026,1,1,,0,,,11,24,2,11/24/26 1:00, +1,1,7851,2026,1,1,,0,,,11,24,3,11/24/26 2:00, +1,1,7852,2026,1,1,,0,,,11,24,4,11/24/26 3:00, +1,1,7853,2026,1,1,,0,,,11,24,5,11/24/26 4:00, +1,1,7854,2026,1,1,,0,,,11,24,6,11/24/26 5:00, +1,1,7855,2026,1,1,,0,,,11,24,7,11/24/26 6:00, +1,1,7856,2026,1,1,,0,,,11,24,8,11/24/26 7:00, +1,1,7857,2026,1,1,,0,,,11,24,9,11/24/26 8:00, +1,1,7858,2026,1,1,,0,,,11,24,10,11/24/26 9:00, +1,1,7859,2026,1,1,,0,,,11,24,11,11/24/26 10:00, +1,1,7860,2026,1,1,,0,,,11,24,12,11/24/26 11:00, +1,1,7861,2026,1,1,,0,,,11,24,13,11/24/26 12:00, +1,1,7862,2026,1,1,,0,,,11,24,14,11/24/26 13:00, +1,1,7863,2026,1,1,,0,,,11,24,15,11/24/26 14:00, +1,1,7864,2026,1,1,,0,,,11,24,16,11/24/26 15:00, +1,1,7865,2026,1,1,,0,,,11,24,17,11/24/26 16:00, +1,1,7866,2026,1,1,,0,,,11,24,18,11/24/26 17:00, +1,1,7867,2026,1,1,,0,,,11,24,19,11/24/26 18:00, +1,1,7868,2026,1,1,,0,,,11,24,20,11/24/26 19:00, +1,1,7869,2026,1,1,,0,,,11,24,21,11/24/26 20:00, +1,1,7870,2026,1,1,,0,,,11,24,22,11/24/26 21:00, +1,1,7871,2026,1,1,,0,,,11,24,23,11/24/26 22:00, +1,1,7872,2026,1,1,,0,,,11,24,24,11/24/26 23:00, +1,1,7873,2026,1,1,,0,,,11,25,1,11/25/26 0:00, +1,1,7874,2026,1,1,,0,,,11,25,2,11/25/26 1:00, +1,1,7875,2026,1,1,,0,,,11,25,3,11/25/26 2:00, +1,1,7876,2026,1,1,,0,,,11,25,4,11/25/26 3:00, +1,1,7877,2026,1,1,,0,,,11,25,5,11/25/26 4:00, +1,1,7878,2026,1,1,,0,,,11,25,6,11/25/26 5:00, +1,1,7879,2026,1,1,,0,,,11,25,7,11/25/26 6:00, +1,1,7880,2026,1,1,,0,,,11,25,8,11/25/26 7:00, +1,1,7881,2026,1,1,,0,,,11,25,9,11/25/26 8:00, +1,1,7882,2026,1,1,,0,,,11,25,10,11/25/26 9:00, +1,1,7883,2026,1,1,,0,,,11,25,11,11/25/26 10:00, +1,1,7884,2026,1,1,,0,,,11,25,12,11/25/26 11:00, +1,1,7885,2026,1,1,,0,,,11,25,13,11/25/26 12:00, +1,1,7886,2026,1,1,,0,,,11,25,14,11/25/26 13:00, +1,1,7887,2026,1,1,,0,,,11,25,15,11/25/26 14:00, +1,1,7888,2026,1,1,,0,,,11,25,16,11/25/26 15:00, +1,1,7889,2026,1,1,,0,,,11,25,17,11/25/26 16:00, +1,1,7890,2026,1,1,,0,,,11,25,18,11/25/26 17:00, +1,1,7891,2026,1,1,,0,,,11,25,19,11/25/26 18:00, +1,1,7892,2026,1,1,,0,,,11,25,20,11/25/26 19:00, +1,1,7893,2026,1,1,,0,,,11,25,21,11/25/26 20:00, +1,1,7894,2026,1,1,,0,,,11,25,22,11/25/26 21:00, +1,1,7895,2026,1,1,,0,,,11,25,23,11/25/26 22:00, +1,1,7896,2026,1,1,,0,,,11,25,24,11/25/26 23:00, +1,1,7897,2026,1,1,,0,,,11,26,1,11/26/26 0:00, +1,1,7898,2026,1,1,,0,,,11,26,2,11/26/26 1:00, +1,1,7899,2026,1,1,,0,,,11,26,3,11/26/26 2:00, +1,1,7900,2026,1,1,,0,,,11,26,4,11/26/26 3:00, +1,1,7901,2026,1,1,,0,,,11,26,5,11/26/26 4:00, +1,1,7902,2026,1,1,,0,,,11,26,6,11/26/26 5:00, +1,1,7903,2026,1,1,,0,,,11,26,7,11/26/26 6:00, +1,1,7904,2026,1,1,,0,,,11,26,8,11/26/26 7:00, +1,1,7905,2026,1,1,,0,,,11,26,9,11/26/26 8:00, +1,1,7906,2026,1,1,,0,,,11,26,10,11/26/26 9:00, +1,1,7907,2026,1,1,,0,,,11,26,11,11/26/26 10:00, +1,1,7908,2026,1,1,,0,,,11,26,12,11/26/26 11:00, +1,1,7909,2026,1,1,,0,,,11,26,13,11/26/26 12:00, +1,1,7910,2026,1,1,,0,,,11,26,14,11/26/26 13:00, +1,1,7911,2026,1,1,,0,,,11,26,15,11/26/26 14:00, +1,1,7912,2026,1,1,,0,,,11,26,16,11/26/26 15:00, +1,1,7913,2026,1,1,,0,,,11,26,17,11/26/26 16:00, +1,1,7914,2026,1,1,,0,,,11,26,18,11/26/26 17:00, +1,1,7915,2026,1,1,,0,,,11,26,19,11/26/26 18:00, +1,1,7916,2026,1,1,,0,,,11,26,20,11/26/26 19:00, +1,1,7917,2026,1,1,,0,,,11,26,21,11/26/26 20:00, +1,1,7918,2026,1,1,,0,,,11,26,22,11/26/26 21:00, +1,1,7919,2026,1,1,,0,,,11,26,23,11/26/26 22:00, +1,1,7920,2026,1,1,,0,,,11,26,24,11/26/26 23:00, +1,1,7921,2026,1,1,,0,,,11,27,1,11/27/26 0:00, +1,1,7922,2026,1,1,,0,,,11,27,2,11/27/26 1:00, +1,1,7923,2026,1,1,,0,,,11,27,3,11/27/26 2:00, +1,1,7924,2026,1,1,,0,,,11,27,4,11/27/26 3:00, +1,1,7925,2026,1,1,,0,,,11,27,5,11/27/26 4:00, +1,1,7926,2026,1,1,,0,,,11,27,6,11/27/26 5:00, +1,1,7927,2026,1,1,,0,,,11,27,7,11/27/26 6:00, +1,1,7928,2026,1,1,,0,,,11,27,8,11/27/26 7:00, +1,1,7929,2026,1,1,,0,,,11,27,9,11/27/26 8:00, +1,1,7930,2026,1,1,,0,,,11,27,10,11/27/26 9:00, +1,1,7931,2026,1,1,,0,,,11,27,11,11/27/26 10:00, +1,1,7932,2026,1,1,,0,,,11,27,12,11/27/26 11:00, +1,1,7933,2026,1,1,,0,,,11,27,13,11/27/26 12:00, +1,1,7934,2026,1,1,,0,,,11,27,14,11/27/26 13:00, +1,1,7935,2026,1,1,,0,,,11,27,15,11/27/26 14:00, +1,1,7936,2026,1,1,,0,,,11,27,16,11/27/26 15:00, +1,1,7937,2026,1,1,,0,,,11,27,17,11/27/26 16:00, +1,1,7938,2026,1,1,,0,,,11,27,18,11/27/26 17:00, +1,1,7939,2026,1,1,,0,,,11,27,19,11/27/26 18:00, +1,1,7940,2026,1,1,,0,,,11,27,20,11/27/26 19:00, +1,1,7941,2026,1,1,,0,,,11,27,21,11/27/26 20:00, +1,1,7942,2026,1,1,,0,,,11,27,22,11/27/26 21:00, +1,1,7943,2026,1,1,,0,,,11,27,23,11/27/26 22:00, +1,1,7944,2026,1,1,,0,,,11,27,24,11/27/26 23:00, +1,1,7945,2026,1,1,,0,,,11,28,1,11/28/26 0:00, +1,1,7946,2026,1,1,,0,,,11,28,2,11/28/26 1:00, +1,1,7947,2026,1,1,,0,,,11,28,3,11/28/26 2:00, +1,1,7948,2026,1,1,,0,,,11,28,4,11/28/26 3:00, +1,1,7949,2026,1,1,,0,,,11,28,5,11/28/26 4:00, +1,1,7950,2026,1,1,,0,,,11,28,6,11/28/26 5:00, +1,1,7951,2026,1,1,,0,,,11,28,7,11/28/26 6:00, +1,1,7952,2026,1,1,,0,,,11,28,8,11/28/26 7:00, +1,1,7953,2026,1,1,,0,,,11,28,9,11/28/26 8:00, +1,1,7954,2026,1,1,,0,,,11,28,10,11/28/26 9:00, +1,1,7955,2026,1,1,,0,,,11,28,11,11/28/26 10:00, +1,1,7956,2026,1,1,,0,,,11,28,12,11/28/26 11:00, +1,1,7957,2026,1,1,,0,,,11,28,13,11/28/26 12:00, +1,1,7958,2026,1,1,,0,,,11,28,14,11/28/26 13:00, +1,1,7959,2026,1,1,,0,,,11,28,15,11/28/26 14:00, +1,1,7960,2026,1,1,,0,,,11,28,16,11/28/26 15:00, +1,1,7961,2026,1,1,,0,,,11,28,17,11/28/26 16:00, +1,1,7962,2026,1,1,,0,,,11,28,18,11/28/26 17:00, +1,1,7963,2026,1,1,,0,,,11,28,19,11/28/26 18:00, +1,1,7964,2026,1,1,,0,,,11,28,20,11/28/26 19:00, +1,1,7965,2026,1,1,,0,,,11,28,21,11/28/26 20:00, +1,1,7966,2026,1,1,,0,,,11,28,22,11/28/26 21:00, +1,1,7967,2026,1,1,,0,,,11,28,23,11/28/26 22:00, +1,1,7968,2026,1,1,,0,,,11,28,24,11/28/26 23:00, +1,1,7969,2026,1,1,,0,,,11,29,1,11/29/26 0:00, +1,1,7970,2026,1,1,,0,,,11,29,2,11/29/26 1:00, +1,1,7971,2026,1,1,,0,,,11,29,3,11/29/26 2:00, +1,1,7972,2026,1,1,,0,,,11,29,4,11/29/26 3:00, +1,1,7973,2026,1,1,,0,,,11,29,5,11/29/26 4:00, +1,1,7974,2026,1,1,,0,,,11,29,6,11/29/26 5:00, +1,1,7975,2026,1,1,,0,,,11,29,7,11/29/26 6:00, +1,1,7976,2026,1,1,,0,,,11,29,8,11/29/26 7:00, +1,1,7977,2026,1,1,,0,,,11,29,9,11/29/26 8:00, +1,1,7978,2026,1,1,,0,,,11,29,10,11/29/26 9:00, +1,1,7979,2026,1,1,,0,,,11,29,11,11/29/26 10:00, +1,1,7980,2026,1,1,,0,,,11,29,12,11/29/26 11:00, +1,1,7981,2026,1,1,,0,,,11,29,13,11/29/26 12:00, +1,1,7982,2026,1,1,,0,,,11,29,14,11/29/26 13:00, +1,1,7983,2026,1,1,,0,,,11,29,15,11/29/26 14:00, +1,1,7984,2026,1,1,,0,,,11,29,16,11/29/26 15:00, +1,1,7985,2026,1,1,,0,,,11,29,17,11/29/26 16:00, +1,1,7986,2026,1,1,,0,,,11,29,18,11/29/26 17:00, +1,1,7987,2026,1,1,,0,,,11,29,19,11/29/26 18:00, +1,1,7988,2026,1,1,,0,,,11,29,20,11/29/26 19:00, +1,1,7989,2026,1,1,,0,,,11,29,21,11/29/26 20:00, +1,1,7990,2026,1,1,,0,,,11,29,22,11/29/26 21:00, +1,1,7991,2026,1,1,,0,,,11,29,23,11/29/26 22:00, +1,1,7992,2026,1,1,,0,,,11,29,24,11/29/26 23:00, +1,1,7993,2026,1,1,,0,,,11,30,1,11/30/26 0:00, +1,1,7994,2026,1,1,,0,,,11,30,2,11/30/26 1:00, +1,1,7995,2026,1,1,,0,,,11,30,3,11/30/26 2:00, +1,1,7996,2026,1,1,,0,,,11,30,4,11/30/26 3:00, +1,1,7997,2026,1,1,,0,,,11,30,5,11/30/26 4:00, +1,1,7998,2026,1,1,,0,,,11,30,6,11/30/26 5:00, +1,1,7999,2026,1,1,,0,,,11,30,7,11/30/26 6:00, +1,1,8000,2026,1,1,,0,,,11,30,8,11/30/26 7:00, +1,1,8001,2026,1,1,,0,,,11,30,9,11/30/26 8:00, +1,1,8002,2026,1,1,,0,,,11,30,10,11/30/26 9:00, +1,1,8003,2026,1,1,,0,,,11,30,11,11/30/26 10:00, +1,1,8004,2026,1,1,,0,,,11,30,12,11/30/26 11:00, +1,1,8005,2026,1,1,,0,,,11,30,13,11/30/26 12:00, +1,1,8006,2026,1,1,,0,,,11,30,14,11/30/26 13:00, +1,1,8007,2026,1,1,,0,,,11,30,15,11/30/26 14:00, +1,1,8008,2026,1,1,,0,,,11,30,16,11/30/26 15:00, +1,1,8009,2026,1,1,,0,,,11,30,17,11/30/26 16:00, +1,1,8010,2026,1,1,,0,,,11,30,18,11/30/26 17:00, +1,1,8011,2026,1,1,,0,,,11,30,19,11/30/26 18:00, +1,1,8012,2026,1,1,,0,,,11,30,20,11/30/26 19:00, +1,1,8013,2026,1,1,,0,,,11,30,21,11/30/26 20:00, +1,1,8014,2026,1,1,,0,,,11,30,22,11/30/26 21:00, +1,1,8015,2026,1,1,,0,,,11,30,23,11/30/26 22:00, +1,1,8016,2026,1,1,,0,,,11,30,24,11/30/26 23:00, +1,1,8017,2026,1,1,,0,,,12,1,1,12/1/26 0:00, +1,1,8018,2026,1,1,,0,,,12,1,2,12/1/26 1:00, +1,1,8019,2026,1,1,,0,,,12,1,3,12/1/26 2:00, +1,1,8020,2026,1,1,,0,,,12,1,4,12/1/26 3:00, +1,1,8021,2026,1,1,,0,,,12,1,5,12/1/26 4:00, +1,1,8022,2026,1,1,,0,,,12,1,6,12/1/26 5:00, +1,1,8023,2026,1,1,,0,,,12,1,7,12/1/26 6:00, +1,1,8024,2026,1,1,,0,,,12,1,8,12/1/26 7:00, +1,1,8025,2026,1,1,,0,,,12,1,9,12/1/26 8:00, +1,1,8026,2026,1,1,,0,,,12,1,10,12/1/26 9:00, +1,1,8027,2026,1,1,,0,,,12,1,11,12/1/26 10:00, +1,1,8028,2026,1,1,,0,,,12,1,12,12/1/26 11:00, +1,1,8029,2026,1,1,,0,,,12,1,13,12/1/26 12:00, +1,1,8030,2026,1,1,,0,,,12,1,14,12/1/26 13:00, +1,1,8031,2026,1,1,,0,,,12,1,15,12/1/26 14:00, +1,1,8032,2026,1,1,,0,,,12,1,16,12/1/26 15:00, +1,1,8033,2026,1,1,,0,,,12,1,17,12/1/26 16:00, +1,1,8034,2026,1,1,,0,,,12,1,18,12/1/26 17:00, +1,1,8035,2026,1,1,,0,,,12,1,19,12/1/26 18:00, +1,1,8036,2026,1,1,,0,,,12,1,20,12/1/26 19:00, +1,1,8037,2026,1,1,,0,,,12,1,21,12/1/26 20:00, +1,1,8038,2026,1,1,,0,,,12,1,22,12/1/26 21:00, +1,1,8039,2026,1,1,,0,,,12,1,23,12/1/26 22:00, +1,1,8040,2026,1,1,,0,,,12,1,24,12/1/26 23:00, +1,1,8041,2026,1,1,,0,,,12,2,1,12/2/26 0:00, +1,1,8042,2026,1,1,,0,,,12,2,2,12/2/26 1:00, +1,1,8043,2026,1,1,,0,,,12,2,3,12/2/26 2:00, +1,1,8044,2026,1,1,,0,,,12,2,4,12/2/26 3:00, +1,1,8045,2026,1,1,,0,,,12,2,5,12/2/26 4:00, +1,1,8046,2026,1,1,,0,,,12,2,6,12/2/26 5:00, +1,1,8047,2026,1,1,,0,,,12,2,7,12/2/26 6:00, +1,1,8048,2026,1,1,,0,,,12,2,8,12/2/26 7:00, +1,1,8049,2026,1,1,,0,,,12,2,9,12/2/26 8:00, +1,1,8050,2026,1,1,,0,,,12,2,10,12/2/26 9:00, +1,1,8051,2026,1,1,,0,,,12,2,11,12/2/26 10:00, +1,1,8052,2026,1,1,,0,,,12,2,12,12/2/26 11:00, +1,1,8053,2026,1,1,,0,,,12,2,13,12/2/26 12:00, +1,1,8054,2026,1,1,,0,,,12,2,14,12/2/26 13:00, +1,1,8055,2026,1,1,,0,,,12,2,15,12/2/26 14:00, +1,1,8056,2026,1,1,,0,,,12,2,16,12/2/26 15:00, +1,1,8057,2026,1,1,,0,,,12,2,17,12/2/26 16:00, +1,1,8058,2026,1,1,,0,,,12,2,18,12/2/26 17:00, +1,1,8059,2026,1,1,,0,,,12,2,19,12/2/26 18:00, +1,1,8060,2026,1,1,,0,,,12,2,20,12/2/26 19:00, +1,1,8061,2026,1,1,,0,,,12,2,21,12/2/26 20:00, +1,1,8062,2026,1,1,,0,,,12,2,22,12/2/26 21:00, +1,1,8063,2026,1,1,,0,,,12,2,23,12/2/26 22:00, +1,1,8064,2026,1,1,,0,,,12,2,24,12/2/26 23:00, +1,1,8065,2026,1,1,,0,,,12,3,1,12/3/26 0:00, +1,1,8066,2026,1,1,,0,,,12,3,2,12/3/26 1:00, +1,1,8067,2026,1,1,,0,,,12,3,3,12/3/26 2:00, +1,1,8068,2026,1,1,,0,,,12,3,4,12/3/26 3:00, +1,1,8069,2026,1,1,,0,,,12,3,5,12/3/26 4:00, +1,1,8070,2026,1,1,,0,,,12,3,6,12/3/26 5:00, +1,1,8071,2026,1,1,,0,,,12,3,7,12/3/26 6:00, +1,1,8072,2026,1,1,,0,,,12,3,8,12/3/26 7:00, +1,1,8073,2026,1,1,,0,,,12,3,9,12/3/26 8:00, +1,1,8074,2026,1,1,,0,,,12,3,10,12/3/26 9:00, +1,1,8075,2026,1,1,,0,,,12,3,11,12/3/26 10:00, +1,1,8076,2026,1,1,,0,,,12,3,12,12/3/26 11:00, +1,1,8077,2026,1,1,,0,,,12,3,13,12/3/26 12:00, +1,1,8078,2026,1,1,,0,,,12,3,14,12/3/26 13:00, +1,1,8079,2026,1,1,,0,,,12,3,15,12/3/26 14:00, +1,1,8080,2026,1,1,,0,,,12,3,16,12/3/26 15:00, +1,1,8081,2026,1,1,,0,,,12,3,17,12/3/26 16:00, +1,1,8082,2026,1,1,,0,,,12,3,18,12/3/26 17:00, +1,1,8083,2026,1,1,,0,,,12,3,19,12/3/26 18:00, +1,1,8084,2026,1,1,,0,,,12,3,20,12/3/26 19:00, +1,1,8085,2026,1,1,,0,,,12,3,21,12/3/26 20:00, +1,1,8086,2026,1,1,,0,,,12,3,22,12/3/26 21:00, +1,1,8087,2026,1,1,,0,,,12,3,23,12/3/26 22:00, +1,1,8088,2026,1,1,,0,,,12,3,24,12/3/26 23:00, +1,1,8089,2026,1,1,,0,,,12,4,1,12/4/26 0:00, +1,1,8090,2026,1,1,,0,,,12,4,2,12/4/26 1:00, +1,1,8091,2026,1,1,,0,,,12,4,3,12/4/26 2:00, +1,1,8092,2026,1,1,,0,,,12,4,4,12/4/26 3:00, +1,1,8093,2026,1,1,,0,,,12,4,5,12/4/26 4:00, +1,1,8094,2026,1,1,,0,,,12,4,6,12/4/26 5:00, +1,1,8095,2026,1,1,,0,,,12,4,7,12/4/26 6:00, +1,1,8096,2026,1,1,,0,,,12,4,8,12/4/26 7:00, +1,1,8097,2026,1,1,,0,,,12,4,9,12/4/26 8:00, +1,1,8098,2026,1,1,,0,,,12,4,10,12/4/26 9:00, +1,1,8099,2026,1,1,,0,,,12,4,11,12/4/26 10:00, +1,1,8100,2026,1,1,,0,,,12,4,12,12/4/26 11:00, +1,1,8101,2026,1,1,,0,,,12,4,13,12/4/26 12:00, +1,1,8102,2026,1,1,,0,,,12,4,14,12/4/26 13:00, +1,1,8103,2026,1,1,,0,,,12,4,15,12/4/26 14:00, +1,1,8104,2026,1,1,,0,,,12,4,16,12/4/26 15:00, +1,1,8105,2026,1,1,,0,,,12,4,17,12/4/26 16:00, +1,1,8106,2026,1,1,,0,,,12,4,18,12/4/26 17:00, +1,1,8107,2026,1,1,,0,,,12,4,19,12/4/26 18:00, +1,1,8108,2026,1,1,,0,,,12,4,20,12/4/26 19:00, +1,1,8109,2026,1,1,,0,,,12,4,21,12/4/26 20:00, +1,1,8110,2026,1,1,,0,,,12,4,22,12/4/26 21:00, +1,1,8111,2026,1,1,,0,,,12,4,23,12/4/26 22:00, +1,1,8112,2026,1,1,,0,,,12,4,24,12/4/26 23:00, +1,1,8113,2026,1,1,,0,,,12,5,1,12/5/26 0:00, +1,1,8114,2026,1,1,,0,,,12,5,2,12/5/26 1:00, +1,1,8115,2026,1,1,,0,,,12,5,3,12/5/26 2:00, +1,1,8116,2026,1,1,,0,,,12,5,4,12/5/26 3:00, +1,1,8117,2026,1,1,,0,,,12,5,5,12/5/26 4:00, +1,1,8118,2026,1,1,,0,,,12,5,6,12/5/26 5:00, +1,1,8119,2026,1,1,,0,,,12,5,7,12/5/26 6:00, +1,1,8120,2026,1,1,,0,,,12,5,8,12/5/26 7:00, +1,1,8121,2026,1,1,,0,,,12,5,9,12/5/26 8:00, +1,1,8122,2026,1,1,,0,,,12,5,10,12/5/26 9:00, +1,1,8123,2026,1,1,,0,,,12,5,11,12/5/26 10:00, +1,1,8124,2026,1,1,,0,,,12,5,12,12/5/26 11:00, +1,1,8125,2026,1,1,,0,,,12,5,13,12/5/26 12:00, +1,1,8126,2026,1,1,,0,,,12,5,14,12/5/26 13:00, +1,1,8127,2026,1,1,,0,,,12,5,15,12/5/26 14:00, +1,1,8128,2026,1,1,,0,,,12,5,16,12/5/26 15:00, +1,1,8129,2026,1,1,,0,,,12,5,17,12/5/26 16:00, +1,1,8130,2026,1,1,,0,,,12,5,18,12/5/26 17:00, +1,1,8131,2026,1,1,,0,,,12,5,19,12/5/26 18:00, +1,1,8132,2026,1,1,,0,,,12,5,20,12/5/26 19:00, +1,1,8133,2026,1,1,,0,,,12,5,21,12/5/26 20:00, +1,1,8134,2026,1,1,,0,,,12,5,22,12/5/26 21:00, +1,1,8135,2026,1,1,,0,,,12,5,23,12/5/26 22:00, +1,1,8136,2026,1,1,,0,,,12,5,24,12/5/26 23:00, +1,1,8137,2026,1,1,,0,,,12,6,1,12/6/26 0:00, +1,1,8138,2026,1,1,,0,,,12,6,2,12/6/26 1:00, +1,1,8139,2026,1,1,,0,,,12,6,3,12/6/26 2:00, +1,1,8140,2026,1,1,,0,,,12,6,4,12/6/26 3:00, +1,1,8141,2026,1,1,,0,,,12,6,5,12/6/26 4:00, +1,1,8142,2026,1,1,,0,,,12,6,6,12/6/26 5:00, +1,1,8143,2026,1,1,,0,,,12,6,7,12/6/26 6:00, +1,1,8144,2026,1,1,,0,,,12,6,8,12/6/26 7:00, +1,1,8145,2026,1,1,,0,,,12,6,9,12/6/26 8:00, +1,1,8146,2026,1,1,,0,,,12,6,10,12/6/26 9:00, +1,1,8147,2026,1,1,,0,,,12,6,11,12/6/26 10:00, +1,1,8148,2026,1,1,,0,,,12,6,12,12/6/26 11:00, +1,1,8149,2026,1,1,,0,,,12,6,13,12/6/26 12:00, +1,1,8150,2026,1,1,,0,,,12,6,14,12/6/26 13:00, +1,1,8151,2026,1,1,,0,,,12,6,15,12/6/26 14:00, +1,1,8152,2026,1,1,,0,,,12,6,16,12/6/26 15:00, +1,1,8153,2026,1,1,,0,,,12,6,17,12/6/26 16:00, +1,1,8154,2026,1,1,,0,,,12,6,18,12/6/26 17:00, +1,1,8155,2026,1,1,,0,,,12,6,19,12/6/26 18:00, +1,1,8156,2026,1,1,,0,,,12,6,20,12/6/26 19:00, +1,1,8157,2026,1,1,,0,,,12,6,21,12/6/26 20:00, +1,1,8158,2026,1,1,,0,,,12,6,22,12/6/26 21:00, +1,1,8159,2026,1,1,,0,,,12,6,23,12/6/26 22:00, +1,1,8160,2026,1,1,,0,,,12,6,24,12/6/26 23:00, +1,1,8161,2026,1,1,,0,,,12,7,1,12/7/26 0:00, +1,1,8162,2026,1,1,,0,,,12,7,2,12/7/26 1:00, +1,1,8163,2026,1,1,,0,,,12,7,3,12/7/26 2:00, +1,1,8164,2026,1,1,,0,,,12,7,4,12/7/26 3:00, +1,1,8165,2026,1,1,,0,,,12,7,5,12/7/26 4:00, +1,1,8166,2026,1,1,,0,,,12,7,6,12/7/26 5:00, +1,1,8167,2026,1,1,,0,,,12,7,7,12/7/26 6:00, +1,1,8168,2026,1,1,,0,,,12,7,8,12/7/26 7:00, +1,1,8169,2026,1,1,,0,,,12,7,9,12/7/26 8:00, +1,1,8170,2026,1,1,,0,,,12,7,10,12/7/26 9:00, +1,1,8171,2026,1,1,,0,,,12,7,11,12/7/26 10:00, +1,1,8172,2026,1,1,,0,,,12,7,12,12/7/26 11:00, +1,1,8173,2026,1,1,,0,,,12,7,13,12/7/26 12:00, +1,1,8174,2026,1,1,,0,,,12,7,14,12/7/26 13:00, +1,1,8175,2026,1,1,,0,,,12,7,15,12/7/26 14:00, +1,1,8176,2026,1,1,,0,,,12,7,16,12/7/26 15:00, +1,1,8177,2026,1,1,,0,,,12,7,17,12/7/26 16:00, +1,1,8178,2026,1,1,,0,,,12,7,18,12/7/26 17:00, +1,1,8179,2026,1,1,,0,,,12,7,19,12/7/26 18:00, +1,1,8180,2026,1,1,,0,,,12,7,20,12/7/26 19:00, +1,1,8181,2026,1,1,,0,,,12,7,21,12/7/26 20:00, +1,1,8182,2026,1,1,,0,,,12,7,22,12/7/26 21:00, +1,1,8183,2026,1,1,,0,,,12,7,23,12/7/26 22:00, +1,1,8184,2026,1,1,,0,,,12,7,24,12/7/26 23:00, +1,1,8185,2026,1,1,,0,,,12,8,1,12/8/26 0:00, +1,1,8186,2026,1,1,,0,,,12,8,2,12/8/26 1:00, +1,1,8187,2026,1,1,,0,,,12,8,3,12/8/26 2:00, +1,1,8188,2026,1,1,,0,,,12,8,4,12/8/26 3:00, +1,1,8189,2026,1,1,,0,,,12,8,5,12/8/26 4:00, +1,1,8190,2026,1,1,,0,,,12,8,6,12/8/26 5:00, +1,1,8191,2026,1,1,,0,,,12,8,7,12/8/26 6:00, +1,1,8192,2026,1,1,,0,,,12,8,8,12/8/26 7:00, +1,1,8193,2026,1,1,,0,,,12,8,9,12/8/26 8:00, +1,1,8194,2026,1,1,,0,,,12,8,10,12/8/26 9:00, +1,1,8195,2026,1,1,,0,,,12,8,11,12/8/26 10:00, +1,1,8196,2026,1,1,,0,,,12,8,12,12/8/26 11:00, +1,1,8197,2026,1,1,,0,,,12,8,13,12/8/26 12:00, +1,1,8198,2026,1,1,,0,,,12,8,14,12/8/26 13:00, +1,1,8199,2026,1,1,,0,,,12,8,15,12/8/26 14:00, +1,1,8200,2026,1,1,,0,,,12,8,16,12/8/26 15:00, +1,1,8201,2026,1,1,,0,,,12,8,17,12/8/26 16:00, +1,1,8202,2026,1,1,,0,,,12,8,18,12/8/26 17:00, +1,1,8203,2026,1,1,,0,,,12,8,19,12/8/26 18:00, +1,1,8204,2026,1,1,,0,,,12,8,20,12/8/26 19:00, +1,1,8205,2026,1,1,,0,,,12,8,21,12/8/26 20:00, +1,1,8206,2026,1,1,,0,,,12,8,22,12/8/26 21:00, +1,1,8207,2026,1,1,,0,,,12,8,23,12/8/26 22:00, +1,1,8208,2026,1,1,,0,,,12,8,24,12/8/26 23:00, +1,1,8209,2026,1,1,,0,,,12,9,1,12/9/26 0:00, +1,1,8210,2026,1,1,,0,,,12,9,2,12/9/26 1:00, +1,1,8211,2026,1,1,,0,,,12,9,3,12/9/26 2:00, +1,1,8212,2026,1,1,,0,,,12,9,4,12/9/26 3:00, +1,1,8213,2026,1,1,,0,,,12,9,5,12/9/26 4:00, +1,1,8214,2026,1,1,,0,,,12,9,6,12/9/26 5:00, +1,1,8215,2026,1,1,,0,,,12,9,7,12/9/26 6:00, +1,1,8216,2026,1,1,,0,,,12,9,8,12/9/26 7:00, +1,1,8217,2026,1,1,,0,,,12,9,9,12/9/26 8:00, +1,1,8218,2026,1,1,,0,,,12,9,10,12/9/26 9:00, +1,1,8219,2026,1,1,,0,,,12,9,11,12/9/26 10:00, +1,1,8220,2026,1,1,,0,,,12,9,12,12/9/26 11:00, +1,1,8221,2026,1,1,,0,,,12,9,13,12/9/26 12:00, +1,1,8222,2026,1,1,,0,,,12,9,14,12/9/26 13:00, +1,1,8223,2026,1,1,,0,,,12,9,15,12/9/26 14:00, +1,1,8224,2026,1,1,,0,,,12,9,16,12/9/26 15:00, +1,1,8225,2026,1,1,,0,,,12,9,17,12/9/26 16:00, +1,1,8226,2026,1,1,,0,,,12,9,18,12/9/26 17:00, +1,1,8227,2026,1,1,,0,,,12,9,19,12/9/26 18:00, +1,1,8228,2026,1,1,,0,,,12,9,20,12/9/26 19:00, +1,1,8229,2026,1,1,,0,,,12,9,21,12/9/26 20:00, +1,1,8230,2026,1,1,,0,,,12,9,22,12/9/26 21:00, +1,1,8231,2026,1,1,,0,,,12,9,23,12/9/26 22:00, +1,1,8232,2026,1,1,,0,,,12,9,24,12/9/26 23:00, +1,1,8233,2026,1,1,,0,,,12,10,1,12/10/26 0:00, +1,1,8234,2026,1,1,,0,,,12,10,2,12/10/26 1:00, +1,1,8235,2026,1,1,,0,,,12,10,3,12/10/26 2:00, +1,1,8236,2026,1,1,,0,,,12,10,4,12/10/26 3:00, +1,1,8237,2026,1,1,,0,,,12,10,5,12/10/26 4:00, +1,1,8238,2026,1,1,,0,,,12,10,6,12/10/26 5:00, +1,1,8239,2026,1,1,,0,,,12,10,7,12/10/26 6:00, +1,1,8240,2026,1,1,,0,,,12,10,8,12/10/26 7:00, +1,1,8241,2026,1,1,,0,,,12,10,9,12/10/26 8:00, +1,1,8242,2026,1,1,,0,,,12,10,10,12/10/26 9:00, +1,1,8243,2026,1,1,,0,,,12,10,11,12/10/26 10:00, +1,1,8244,2026,1,1,,0,,,12,10,12,12/10/26 11:00, +1,1,8245,2026,1,1,,0,,,12,10,13,12/10/26 12:00, +1,1,8246,2026,1,1,,0,,,12,10,14,12/10/26 13:00, +1,1,8247,2026,1,1,,0,,,12,10,15,12/10/26 14:00, +1,1,8248,2026,1,1,,0,,,12,10,16,12/10/26 15:00, +1,1,8249,2026,1,1,,0,,,12,10,17,12/10/26 16:00, +1,1,8250,2026,1,1,,0,,,12,10,18,12/10/26 17:00, +1,1,8251,2026,1,1,,0,,,12,10,19,12/10/26 18:00, +1,1,8252,2026,1,1,,0,,,12,10,20,12/10/26 19:00, +1,1,8253,2026,1,1,,0,,,12,10,21,12/10/26 20:00, +1,1,8254,2026,1,1,,0,,,12,10,22,12/10/26 21:00, +1,1,8255,2026,1,1,,0,,,12,10,23,12/10/26 22:00, +1,1,8256,2026,1,1,,0,,,12,10,24,12/10/26 23:00, +1,1,8257,2026,1,1,,0,,,12,11,1,12/11/26 0:00, +1,1,8258,2026,1,1,,0,,,12,11,2,12/11/26 1:00, +1,1,8259,2026,1,1,,0,,,12,11,3,12/11/26 2:00, +1,1,8260,2026,1,1,,0,,,12,11,4,12/11/26 3:00, +1,1,8261,2026,1,1,,0,,,12,11,5,12/11/26 4:00, +1,1,8262,2026,1,1,,0,,,12,11,6,12/11/26 5:00, +1,1,8263,2026,1,1,,0,,,12,11,7,12/11/26 6:00, +1,1,8264,2026,1,1,,0,,,12,11,8,12/11/26 7:00, +1,1,8265,2026,1,1,,0,,,12,11,9,12/11/26 8:00, +1,1,8266,2026,1,1,,0,,,12,11,10,12/11/26 9:00, +1,1,8267,2026,1,1,,0,,,12,11,11,12/11/26 10:00, +1,1,8268,2026,1,1,,0,,,12,11,12,12/11/26 11:00, +1,1,8269,2026,1,1,,0,,,12,11,13,12/11/26 12:00, +1,1,8270,2026,1,1,,0,,,12,11,14,12/11/26 13:00, +1,1,8271,2026,1,1,,0,,,12,11,15,12/11/26 14:00, +1,1,8272,2026,1,1,,0,,,12,11,16,12/11/26 15:00, +1,1,8273,2026,1,1,,0,,,12,11,17,12/11/26 16:00, +1,1,8274,2026,1,1,,0,,,12,11,18,12/11/26 17:00, +1,1,8275,2026,1,1,,0,,,12,11,19,12/11/26 18:00, +1,1,8276,2026,1,1,,0,,,12,11,20,12/11/26 19:00, +1,1,8277,2026,1,1,,0,,,12,11,21,12/11/26 20:00, +1,1,8278,2026,1,1,,0,,,12,11,22,12/11/26 21:00, +1,1,8279,2026,1,1,,0,,,12,11,23,12/11/26 22:00, +1,1,8280,2026,1,1,,0,,,12,11,24,12/11/26 23:00, +1,1,8281,2026,1,1,,0,,,12,12,1,12/12/26 0:00, +1,1,8282,2026,1,1,,0,,,12,12,2,12/12/26 1:00, +1,1,8283,2026,1,1,,0,,,12,12,3,12/12/26 2:00, +1,1,8284,2026,1,1,,0,,,12,12,4,12/12/26 3:00, +1,1,8285,2026,1,1,,0,,,12,12,5,12/12/26 4:00, +1,1,8286,2026,1,1,,0,,,12,12,6,12/12/26 5:00, +1,1,8287,2026,1,1,,0,,,12,12,7,12/12/26 6:00, +1,1,8288,2026,1,1,,0,,,12,12,8,12/12/26 7:00, +1,1,8289,2026,1,1,,0,,,12,12,9,12/12/26 8:00, +1,1,8290,2026,1,1,,0,,,12,12,10,12/12/26 9:00, +1,1,8291,2026,1,1,,0,,,12,12,11,12/12/26 10:00, +1,1,8292,2026,1,1,,0,,,12,12,12,12/12/26 11:00, +1,1,8293,2026,1,1,,0,,,12,12,13,12/12/26 12:00, +1,1,8294,2026,1,1,,0,,,12,12,14,12/12/26 13:00, +1,1,8295,2026,1,1,,0,,,12,12,15,12/12/26 14:00, +1,1,8296,2026,1,1,,0,,,12,12,16,12/12/26 15:00, +1,1,8297,2026,1,1,,0,,,12,12,17,12/12/26 16:00, +1,1,8298,2026,1,1,,0,,,12,12,18,12/12/26 17:00, +1,1,8299,2026,1,1,,0,,,12,12,19,12/12/26 18:00, +1,1,8300,2026,1,1,,0,,,12,12,20,12/12/26 19:00, +1,1,8301,2026,1,1,,0,,,12,12,21,12/12/26 20:00, +1,1,8302,2026,1,1,,0,,,12,12,22,12/12/26 21:00, +1,1,8303,2026,1,1,,0,,,12,12,23,12/12/26 22:00, +1,1,8304,2026,1,1,,0,,,12,12,24,12/12/26 23:00, +1,1,8305,2026,1,1,,0,,,12,13,1,12/13/26 0:00, +1,1,8306,2026,1,1,,0,,,12,13,2,12/13/26 1:00, +1,1,8307,2026,1,1,,0,,,12,13,3,12/13/26 2:00, +1,1,8308,2026,1,1,,0,,,12,13,4,12/13/26 3:00, +1,1,8309,2026,1,1,,0,,,12,13,5,12/13/26 4:00, +1,1,8310,2026,1,1,,0,,,12,13,6,12/13/26 5:00, +1,1,8311,2026,1,1,,0,,,12,13,7,12/13/26 6:00, +1,1,8312,2026,1,1,,0,,,12,13,8,12/13/26 7:00, +1,1,8313,2026,1,1,,0,,,12,13,9,12/13/26 8:00, +1,1,8314,2026,1,1,,0,,,12,13,10,12/13/26 9:00, +1,1,8315,2026,1,1,,0,,,12,13,11,12/13/26 10:00, +1,1,8316,2026,1,1,,0,,,12,13,12,12/13/26 11:00, +1,1,8317,2026,1,1,,0,,,12,13,13,12/13/26 12:00, +1,1,8318,2026,1,1,,0,,,12,13,14,12/13/26 13:00, +1,1,8319,2026,1,1,,0,,,12,13,15,12/13/26 14:00, +1,1,8320,2026,1,1,,0,,,12,13,16,12/13/26 15:00, +1,1,8321,2026,1,1,,0,,,12,13,17,12/13/26 16:00, +1,1,8322,2026,1,1,,0,,,12,13,18,12/13/26 17:00, +1,1,8323,2026,1,1,,0,,,12,13,19,12/13/26 18:00, +1,1,8324,2026,1,1,,0,,,12,13,20,12/13/26 19:00, +1,1,8325,2026,1,1,,0,,,12,13,21,12/13/26 20:00, +1,1,8326,2026,1,1,,0,,,12,13,22,12/13/26 21:00, +1,1,8327,2026,1,1,,0,,,12,13,23,12/13/26 22:00, +1,1,8328,2026,1,1,,0,,,12,13,24,12/13/26 23:00, +1,1,8329,2026,1,1,,0,,,12,14,1,12/14/26 0:00, +1,1,8330,2026,1,1,,0,,,12,14,2,12/14/26 1:00, +1,1,8331,2026,1,1,,0,,,12,14,3,12/14/26 2:00, +1,1,8332,2026,1,1,,0,,,12,14,4,12/14/26 3:00, +1,1,8333,2026,1,1,,0,,,12,14,5,12/14/26 4:00, +1,1,8334,2026,1,1,,0,,,12,14,6,12/14/26 5:00, +1,1,8335,2026,1,1,,0,,,12,14,7,12/14/26 6:00, +1,1,8336,2026,1,1,,0,,,12,14,8,12/14/26 7:00, +1,1,8337,2026,1,1,,0,,,12,14,9,12/14/26 8:00, +1,1,8338,2026,1,1,,0,,,12,14,10,12/14/26 9:00, +1,1,8339,2026,1,1,,0,,,12,14,11,12/14/26 10:00, +1,1,8340,2026,1,1,,0,,,12,14,12,12/14/26 11:00, +1,1,8341,2026,1,1,,0,,,12,14,13,12/14/26 12:00, +1,1,8342,2026,1,1,,0,,,12,14,14,12/14/26 13:00, +1,1,8343,2026,1,1,,0,,,12,14,15,12/14/26 14:00, +1,1,8344,2026,1,1,,0,,,12,14,16,12/14/26 15:00, +1,1,8345,2026,1,1,,0,,,12,14,17,12/14/26 16:00, +1,1,8346,2026,1,1,,0,,,12,14,18,12/14/26 17:00, +1,1,8347,2026,1,1,,0,,,12,14,19,12/14/26 18:00, +1,1,8348,2026,1,1,,0,,,12,14,20,12/14/26 19:00, +1,1,8349,2026,1,1,,0,,,12,14,21,12/14/26 20:00, +1,1,8350,2026,1,1,,0,,,12,14,22,12/14/26 21:00, +1,1,8351,2026,1,1,,0,,,12,14,23,12/14/26 22:00, +1,1,8352,2026,1,1,,0,,,12,14,24,12/14/26 23:00, +1,1,8353,2026,1,1,,0,,,12,15,1,12/15/26 0:00, +1,1,8354,2026,1,1,,0,,,12,15,2,12/15/26 1:00, +1,1,8355,2026,1,1,,0,,,12,15,3,12/15/26 2:00, +1,1,8356,2026,1,1,,0,,,12,15,4,12/15/26 3:00, +1,1,8357,2026,1,1,,0,,,12,15,5,12/15/26 4:00, +1,1,8358,2026,1,1,,0,,,12,15,6,12/15/26 5:00, +1,1,8359,2026,1,1,,0,,,12,15,7,12/15/26 6:00, +1,1,8360,2026,1,1,,0,,,12,15,8,12/15/26 7:00, +1,1,8361,2026,1,1,,0,,,12,15,9,12/15/26 8:00, +1,1,8362,2026,1,1,,0,,,12,15,10,12/15/26 9:00, +1,1,8363,2026,1,1,,0,,,12,15,11,12/15/26 10:00, +1,1,8364,2026,1,1,,0,,,12,15,12,12/15/26 11:00, +1,1,8365,2026,1,1,,0,,,12,15,13,12/15/26 12:00, +1,1,8366,2026,1,1,,0,,,12,15,14,12/15/26 13:00, +1,1,8367,2026,1,1,,0,,,12,15,15,12/15/26 14:00, +1,1,8368,2026,1,1,,0,,,12,15,16,12/15/26 15:00, +1,1,8369,2026,1,1,,0,,,12,15,17,12/15/26 16:00, +1,1,8370,2026,1,1,,0,,,12,15,18,12/15/26 17:00, +1,1,8371,2026,1,1,,0,,,12,15,19,12/15/26 18:00, +1,1,8372,2026,1,1,,0,,,12,15,20,12/15/26 19:00, +1,1,8373,2026,1,1,,0,,,12,15,21,12/15/26 20:00, +1,1,8374,2026,1,1,,0,,,12,15,22,12/15/26 21:00, +1,1,8375,2026,1,1,,0,,,12,15,23,12/15/26 22:00, +1,1,8376,2026,1,1,,0,,,12,15,24,12/15/26 23:00, +1,1,8377,2026,1,1,,0,,,12,16,1,12/16/26 0:00, +1,1,8378,2026,1,1,,0,,,12,16,2,12/16/26 1:00, +1,1,8379,2026,1,1,,0,,,12,16,3,12/16/26 2:00, +1,1,8380,2026,1,1,,0,,,12,16,4,12/16/26 3:00, +1,1,8381,2026,1,1,,0,,,12,16,5,12/16/26 4:00, +1,1,8382,2026,1,1,,0,,,12,16,6,12/16/26 5:00, +1,1,8383,2026,1,1,,0,,,12,16,7,12/16/26 6:00, +1,1,8384,2026,1,1,,0,,,12,16,8,12/16/26 7:00, +1,1,8385,2026,1,1,,0,,,12,16,9,12/16/26 8:00, +1,1,8386,2026,1,1,,0,,,12,16,10,12/16/26 9:00, +1,1,8387,2026,1,1,,0,,,12,16,11,12/16/26 10:00, +1,1,8388,2026,1,1,,0,,,12,16,12,12/16/26 11:00, +1,1,8389,2026,1,1,,0,,,12,16,13,12/16/26 12:00, +1,1,8390,2026,1,1,,0,,,12,16,14,12/16/26 13:00, +1,1,8391,2026,1,1,,0,,,12,16,15,12/16/26 14:00, +1,1,8392,2026,1,1,,0,,,12,16,16,12/16/26 15:00, +1,1,8393,2026,1,1,,0,,,12,16,17,12/16/26 16:00, +1,1,8394,2026,1,1,,0,,,12,16,18,12/16/26 17:00, +1,1,8395,2026,1,1,,0,,,12,16,19,12/16/26 18:00, +1,1,8396,2026,1,1,,0,,,12,16,20,12/16/26 19:00, +1,1,8397,2026,1,1,,0,,,12,16,21,12/16/26 20:00, +1,1,8398,2026,1,1,,0,,,12,16,22,12/16/26 21:00, +1,1,8399,2026,1,1,,0,,,12,16,23,12/16/26 22:00, +1,1,8400,2026,1,1,,0,,,12,16,24,12/16/26 23:00, +1,1,8401,2026,1,1,,0,,,12,17,1,12/17/26 0:00, +1,1,8402,2026,1,1,,0,,,12,17,2,12/17/26 1:00, +1,1,8403,2026,1,1,,0,,,12,17,3,12/17/26 2:00, +1,1,8404,2026,1,1,,0,,,12,17,4,12/17/26 3:00, +1,1,8405,2026,1,1,,0,,,12,17,5,12/17/26 4:00, +1,1,8406,2026,1,1,,0,,,12,17,6,12/17/26 5:00, +1,1,8407,2026,1,1,,0,,,12,17,7,12/17/26 6:00, +1,1,8408,2026,1,1,,0,,,12,17,8,12/17/26 7:00, +1,1,8409,2026,1,1,,0,,,12,17,9,12/17/26 8:00, +1,1,8410,2026,1,1,,0,,,12,17,10,12/17/26 9:00, +1,1,8411,2026,1,1,,0,,,12,17,11,12/17/26 10:00, +1,1,8412,2026,1,1,,0,,,12,17,12,12/17/26 11:00, +1,1,8413,2026,1,1,,0,,,12,17,13,12/17/26 12:00, +1,1,8414,2026,1,1,,0,,,12,17,14,12/17/26 13:00, +1,1,8415,2026,1,1,,0,,,12,17,15,12/17/26 14:00, +1,1,8416,2026,1,1,,0,,,12,17,16,12/17/26 15:00, +1,1,8417,2026,1,1,,0,,,12,17,17,12/17/26 16:00, +1,1,8418,2026,1,1,,0,,,12,17,18,12/17/26 17:00, +1,1,8419,2026,1,1,,0,,,12,17,19,12/17/26 18:00, +1,1,8420,2026,1,1,,0,,,12,17,20,12/17/26 19:00, +1,1,8421,2026,1,1,,0,,,12,17,21,12/17/26 20:00, +1,1,8422,2026,1,1,,0,,,12,17,22,12/17/26 21:00, +1,1,8423,2026,1,1,,0,,,12,17,23,12/17/26 22:00, +1,1,8424,2026,1,1,,0,,,12,17,24,12/17/26 23:00, +1,1,8425,2026,1,1,,0,,,12,18,1,12/18/26 0:00, +1,1,8426,2026,1,1,,0,,,12,18,2,12/18/26 1:00, +1,1,8427,2026,1,1,,0,,,12,18,3,12/18/26 2:00, +1,1,8428,2026,1,1,,0,,,12,18,4,12/18/26 3:00, +1,1,8429,2026,1,1,,0,,,12,18,5,12/18/26 4:00, +1,1,8430,2026,1,1,,0,,,12,18,6,12/18/26 5:00, +1,1,8431,2026,1,1,,0,,,12,18,7,12/18/26 6:00, +1,1,8432,2026,1,1,,0,,,12,18,8,12/18/26 7:00, +1,1,8433,2026,1,1,,0,,,12,18,9,12/18/26 8:00, +1,1,8434,2026,1,1,,0,,,12,18,10,12/18/26 9:00, +1,1,8435,2026,1,1,,0,,,12,18,11,12/18/26 10:00, +1,1,8436,2026,1,1,,0,,,12,18,12,12/18/26 11:00, +1,1,8437,2026,1,1,,0,,,12,18,13,12/18/26 12:00, +1,1,8438,2026,1,1,,0,,,12,18,14,12/18/26 13:00, +1,1,8439,2026,1,1,,0,,,12,18,15,12/18/26 14:00, +1,1,8440,2026,1,1,,0,,,12,18,16,12/18/26 15:00, +1,1,8441,2026,1,1,,0,,,12,18,17,12/18/26 16:00, +1,1,8442,2026,1,1,,0,,,12,18,18,12/18/26 17:00, +1,1,8443,2026,1,1,,0,,,12,18,19,12/18/26 18:00, +1,1,8444,2026,1,1,,0,,,12,18,20,12/18/26 19:00, +1,1,8445,2026,1,1,,0,,,12,18,21,12/18/26 20:00, +1,1,8446,2026,1,1,,0,,,12,18,22,12/18/26 21:00, +1,1,8447,2026,1,1,,0,,,12,18,23,12/18/26 22:00, +1,1,8448,2026,1,1,,0,,,12,18,24,12/18/26 23:00, +1,1,8449,2026,1,1,,0,,,12,19,1,12/19/26 0:00, +1,1,8450,2026,1,1,,0,,,12,19,2,12/19/26 1:00, +1,1,8451,2026,1,1,,0,,,12,19,3,12/19/26 2:00, +1,1,8452,2026,1,1,,0,,,12,19,4,12/19/26 3:00, +1,1,8453,2026,1,1,,0,,,12,19,5,12/19/26 4:00, +1,1,8454,2026,1,1,,0,,,12,19,6,12/19/26 5:00, +1,1,8455,2026,1,1,,0,,,12,19,7,12/19/26 6:00, +1,1,8456,2026,1,1,,0,,,12,19,8,12/19/26 7:00, +1,1,8457,2026,1,1,,0,,,12,19,9,12/19/26 8:00, +1,1,8458,2026,1,1,,0,,,12,19,10,12/19/26 9:00, +1,1,8459,2026,1,1,,0,,,12,19,11,12/19/26 10:00, +1,1,8460,2026,1,1,,0,,,12,19,12,12/19/26 11:00, +1,1,8461,2026,1,1,,0,,,12,19,13,12/19/26 12:00, +1,1,8462,2026,1,1,,0,,,12,19,14,12/19/26 13:00, +1,1,8463,2026,1,1,,0,,,12,19,15,12/19/26 14:00, +1,1,8464,2026,1,1,,0,,,12,19,16,12/19/26 15:00, +1,1,8465,2026,1,1,,0,,,12,19,17,12/19/26 16:00, +1,1,8466,2026,1,1,,0,,,12,19,18,12/19/26 17:00, +1,1,8467,2026,1,1,,0,,,12,19,19,12/19/26 18:00, +1,1,8468,2026,1,1,,0,,,12,19,20,12/19/26 19:00, +1,1,8469,2026,1,1,,0,,,12,19,21,12/19/26 20:00, +1,1,8470,2026,1,1,,0,,,12,19,22,12/19/26 21:00, +1,1,8471,2026,1,1,,0,,,12,19,23,12/19/26 22:00, +1,1,8472,2026,1,1,,0,,,12,19,24,12/19/26 23:00, +1,1,8473,2026,1,1,,0,,,12,20,1,12/20/26 0:00, +1,1,8474,2026,1,1,,0,,,12,20,2,12/20/26 1:00, +1,1,8475,2026,1,1,,0,,,12,20,3,12/20/26 2:00, +1,1,8476,2026,1,1,,0,,,12,20,4,12/20/26 3:00, +1,1,8477,2026,1,1,,0,,,12,20,5,12/20/26 4:00, +1,1,8478,2026,1,1,,0,,,12,20,6,12/20/26 5:00, +1,1,8479,2026,1,1,,0,,,12,20,7,12/20/26 6:00, +1,1,8480,2026,1,1,,0,,,12,20,8,12/20/26 7:00, +1,1,8481,2026,1,1,,0,,,12,20,9,12/20/26 8:00, +1,1,8482,2026,1,1,,0,,,12,20,10,12/20/26 9:00, +1,1,8483,2026,1,1,,0,,,12,20,11,12/20/26 10:00, +1,1,8484,2026,1,1,,0,,,12,20,12,12/20/26 11:00, +1,1,8485,2026,1,1,,0,,,12,20,13,12/20/26 12:00, +1,1,8486,2026,1,1,,0,,,12,20,14,12/20/26 13:00, +1,1,8487,2026,1,1,,0,,,12,20,15,12/20/26 14:00, +1,1,8488,2026,1,1,,0,,,12,20,16,12/20/26 15:00, +1,1,8489,2026,1,1,,0,,,12,20,17,12/20/26 16:00, +1,1,8490,2026,1,1,,0,,,12,20,18,12/20/26 17:00, +1,1,8491,2026,1,1,,0,,,12,20,19,12/20/26 18:00, +1,1,8492,2026,1,1,,0,,,12,20,20,12/20/26 19:00, +1,1,8493,2026,1,1,,0,,,12,20,21,12/20/26 20:00, +1,1,8494,2026,1,1,,0,,,12,20,22,12/20/26 21:00, +1,1,8495,2026,1,1,,0,,,12,20,23,12/20/26 22:00, +1,1,8496,2026,1,1,,0,,,12,20,24,12/20/26 23:00, +1,1,8497,2026,1,1,,0,,,12,21,1,12/21/26 0:00, +1,1,8498,2026,1,1,,0,,,12,21,2,12/21/26 1:00, +1,1,8499,2026,1,1,,0,,,12,21,3,12/21/26 2:00, +1,1,8500,2026,1,1,,0,,,12,21,4,12/21/26 3:00, +1,1,8501,2026,1,1,,0,,,12,21,5,12/21/26 4:00, +1,1,8502,2026,1,1,,0,,,12,21,6,12/21/26 5:00, +1,1,8503,2026,1,1,,0,,,12,21,7,12/21/26 6:00, +1,1,8504,2026,1,1,,0,,,12,21,8,12/21/26 7:00, +1,1,8505,2026,1,1,,0,,,12,21,9,12/21/26 8:00, +1,1,8506,2026,1,1,,0,,,12,21,10,12/21/26 9:00, +1,1,8507,2026,1,1,,0,,,12,21,11,12/21/26 10:00, +1,1,8508,2026,1,1,,0,,,12,21,12,12/21/26 11:00, +1,1,8509,2026,1,1,,0,,,12,21,13,12/21/26 12:00, +1,1,8510,2026,1,1,,0,,,12,21,14,12/21/26 13:00, +1,1,8511,2026,1,1,,0,,,12,21,15,12/21/26 14:00, +1,1,8512,2026,1,1,,0,,,12,21,16,12/21/26 15:00, +1,1,8513,2026,1,1,,0,,,12,21,17,12/21/26 16:00, +1,1,8514,2026,1,1,,0,,,12,21,18,12/21/26 17:00, +1,1,8515,2026,1,1,,0,,,12,21,19,12/21/26 18:00, +1,1,8516,2026,1,1,,0,,,12,21,20,12/21/26 19:00, +1,1,8517,2026,1,1,,0,,,12,21,21,12/21/26 20:00, +1,1,8518,2026,1,1,,0,,,12,21,22,12/21/26 21:00, +1,1,8519,2026,1,1,,0,,,12,21,23,12/21/26 22:00, +1,1,8520,2026,1,1,,0,,,12,21,24,12/21/26 23:00, +1,1,8521,2026,1,1,,0,,,12,22,1,12/22/26 0:00, +1,1,8522,2026,1,1,,0,,,12,22,2,12/22/26 1:00, +1,1,8523,2026,1,1,,0,,,12,22,3,12/22/26 2:00, +1,1,8524,2026,1,1,,0,,,12,22,4,12/22/26 3:00, +1,1,8525,2026,1,1,,0,,,12,22,5,12/22/26 4:00, +1,1,8526,2026,1,1,,0,,,12,22,6,12/22/26 5:00, +1,1,8527,2026,1,1,,0,,,12,22,7,12/22/26 6:00, +1,1,8528,2026,1,1,,0,,,12,22,8,12/22/26 7:00, +1,1,8529,2026,1,1,,0,,,12,22,9,12/22/26 8:00, +1,1,8530,2026,1,1,,0,,,12,22,10,12/22/26 9:00, +1,1,8531,2026,1,1,,0,,,12,22,11,12/22/26 10:00, +1,1,8532,2026,1,1,,0,,,12,22,12,12/22/26 11:00, +1,1,8533,2026,1,1,,0,,,12,22,13,12/22/26 12:00, +1,1,8534,2026,1,1,,0,,,12,22,14,12/22/26 13:00, +1,1,8535,2026,1,1,,0,,,12,22,15,12/22/26 14:00, +1,1,8536,2026,1,1,,0,,,12,22,16,12/22/26 15:00, +1,1,8537,2026,1,1,,0,,,12,22,17,12/22/26 16:00, +1,1,8538,2026,1,1,,0,,,12,22,18,12/22/26 17:00, +1,1,8539,2026,1,1,,0,,,12,22,19,12/22/26 18:00, +1,1,8540,2026,1,1,,0,,,12,22,20,12/22/26 19:00, +1,1,8541,2026,1,1,,0,,,12,22,21,12/22/26 20:00, +1,1,8542,2026,1,1,,0,,,12,22,22,12/22/26 21:00, +1,1,8543,2026,1,1,,0,,,12,22,23,12/22/26 22:00, +1,1,8544,2026,1,1,,0,,,12,22,24,12/22/26 23:00, +1,1,8545,2026,1,1,,0,,,12,23,1,12/23/26 0:00, +1,1,8546,2026,1,1,,0,,,12,23,2,12/23/26 1:00, +1,1,8547,2026,1,1,,0,,,12,23,3,12/23/26 2:00, +1,1,8548,2026,1,1,,0,,,12,23,4,12/23/26 3:00, +1,1,8549,2026,1,1,,0,,,12,23,5,12/23/26 4:00, +1,1,8550,2026,1,1,,0,,,12,23,6,12/23/26 5:00, +1,1,8551,2026,1,1,,0,,,12,23,7,12/23/26 6:00, +1,1,8552,2026,1,1,,0,,,12,23,8,12/23/26 7:00, +1,1,8553,2026,1,1,,0,,,12,23,9,12/23/26 8:00, +1,1,8554,2026,1,1,,0,,,12,23,10,12/23/26 9:00, +1,1,8555,2026,1,1,,0,,,12,23,11,12/23/26 10:00, +1,1,8556,2026,1,1,,0,,,12,23,12,12/23/26 11:00, +1,1,8557,2026,1,1,,0,,,12,23,13,12/23/26 12:00, +1,1,8558,2026,1,1,,0,,,12,23,14,12/23/26 13:00, +1,1,8559,2026,1,1,,0,,,12,23,15,12/23/26 14:00, +1,1,8560,2026,1,1,,0,,,12,23,16,12/23/26 15:00, +1,1,8561,2026,1,1,,0,,,12,23,17,12/23/26 16:00, +1,1,8562,2026,1,1,,0,,,12,23,18,12/23/26 17:00, +1,1,8563,2026,1,1,,0,,,12,23,19,12/23/26 18:00, +1,1,8564,2026,1,1,,0,,,12,23,20,12/23/26 19:00, +1,1,8565,2026,1,1,,0,,,12,23,21,12/23/26 20:00, +1,1,8566,2026,1,1,,0,,,12,23,22,12/23/26 21:00, +1,1,8567,2026,1,1,,0,,,12,23,23,12/23/26 22:00, +1,1,8568,2026,1,1,,0,,,12,23,24,12/23/26 23:00, +1,1,8569,2026,1,1,,0,,,12,24,1,12/24/26 0:00, +1,1,8570,2026,1,1,,0,,,12,24,2,12/24/26 1:00, +1,1,8571,2026,1,1,,0,,,12,24,3,12/24/26 2:00, +1,1,8572,2026,1,1,,0,,,12,24,4,12/24/26 3:00, +1,1,8573,2026,1,1,,0,,,12,24,5,12/24/26 4:00, +1,1,8574,2026,1,1,,0,,,12,24,6,12/24/26 5:00, +1,1,8575,2026,1,1,,0,,,12,24,7,12/24/26 6:00, +1,1,8576,2026,1,1,,0,,,12,24,8,12/24/26 7:00, +1,1,8577,2026,1,1,,0,,,12,24,9,12/24/26 8:00, +1,1,8578,2026,1,1,,0,,,12,24,10,12/24/26 9:00, +1,1,8579,2026,1,1,,0,,,12,24,11,12/24/26 10:00, +1,1,8580,2026,1,1,,0,,,12,24,12,12/24/26 11:00, +1,1,8581,2026,1,1,,0,,,12,24,13,12/24/26 12:00, +1,1,8582,2026,1,1,,0,,,12,24,14,12/24/26 13:00, +1,1,8583,2026,1,1,,0,,,12,24,15,12/24/26 14:00, +1,1,8584,2026,1,1,,0,,,12,24,16,12/24/26 15:00, +1,1,8585,2026,1,1,,0,,,12,24,17,12/24/26 16:00, +1,1,8586,2026,1,1,,0,,,12,24,18,12/24/26 17:00, +1,1,8587,2026,1,1,,0,,,12,24,19,12/24/26 18:00, +1,1,8588,2026,1,1,,0,,,12,24,20,12/24/26 19:00, +1,1,8589,2026,1,1,,0,,,12,24,21,12/24/26 20:00, +1,1,8590,2026,1,1,,0,,,12,24,22,12/24/26 21:00, +1,1,8591,2026,1,1,,0,,,12,24,23,12/24/26 22:00, +1,1,8592,2026,1,1,,0,,,12,24,24,12/24/26 23:00, +1,1,8593,2026,1,1,,0,,,12,25,1,12/25/26 0:00, +1,1,8594,2026,1,1,,0,,,12,25,2,12/25/26 1:00, +1,1,8595,2026,1,1,,0,,,12,25,3,12/25/26 2:00, +1,1,8596,2026,1,1,,0,,,12,25,4,12/25/26 3:00, +1,1,8597,2026,1,1,,0,,,12,25,5,12/25/26 4:00, +1,1,8598,2026,1,1,,0,,,12,25,6,12/25/26 5:00, +1,1,8599,2026,1,1,,0,,,12,25,7,12/25/26 6:00, +1,1,8600,2026,1,1,,0,,,12,25,8,12/25/26 7:00, +1,1,8601,2026,1,1,,0,,,12,25,9,12/25/26 8:00, +1,1,8602,2026,1,1,,0,,,12,25,10,12/25/26 9:00, +1,1,8603,2026,1,1,,0,,,12,25,11,12/25/26 10:00, +1,1,8604,2026,1,1,,0,,,12,25,12,12/25/26 11:00, +1,1,8605,2026,1,1,,0,,,12,25,13,12/25/26 12:00, +1,1,8606,2026,1,1,,0,,,12,25,14,12/25/26 13:00, +1,1,8607,2026,1,1,,0,,,12,25,15,12/25/26 14:00, +1,1,8608,2026,1,1,,0,,,12,25,16,12/25/26 15:00, +1,1,8609,2026,1,1,,0,,,12,25,17,12/25/26 16:00, +1,1,8610,2026,1,1,,0,,,12,25,18,12/25/26 17:00, +1,1,8611,2026,1,1,,0,,,12,25,19,12/25/26 18:00, +1,1,8612,2026,1,1,,0,,,12,25,20,12/25/26 19:00, +1,1,8613,2026,1,1,,0,,,12,25,21,12/25/26 20:00, +1,1,8614,2026,1,1,,0,,,12,25,22,12/25/26 21:00, +1,1,8615,2026,1,1,,0,,,12,25,23,12/25/26 22:00, +1,1,8616,2026,1,1,,0,,,12,25,24,12/25/26 23:00, +1,1,8617,2026,1,1,,0,,,12,26,1,12/26/26 0:00, +1,1,8618,2026,1,1,,0,,,12,26,2,12/26/26 1:00, +1,1,8619,2026,1,1,,0,,,12,26,3,12/26/26 2:00, +1,1,8620,2026,1,1,,0,,,12,26,4,12/26/26 3:00, +1,1,8621,2026,1,1,,0,,,12,26,5,12/26/26 4:00, +1,1,8622,2026,1,1,,0,,,12,26,6,12/26/26 5:00, +1,1,8623,2026,1,1,,0,,,12,26,7,12/26/26 6:00, +1,1,8624,2026,1,1,,0,,,12,26,8,12/26/26 7:00, +1,1,8625,2026,1,1,,0,,,12,26,9,12/26/26 8:00, +1,1,8626,2026,1,1,,0,,,12,26,10,12/26/26 9:00, +1,1,8627,2026,1,1,,0,,,12,26,11,12/26/26 10:00, +1,1,8628,2026,1,1,,0,,,12,26,12,12/26/26 11:00, +1,1,8629,2026,1,1,,0,,,12,26,13,12/26/26 12:00, +1,1,8630,2026,1,1,,0,,,12,26,14,12/26/26 13:00, +1,1,8631,2026,1,1,,0,,,12,26,15,12/26/26 14:00, +1,1,8632,2026,1,1,,0,,,12,26,16,12/26/26 15:00, +1,1,8633,2026,1,1,,0,,,12,26,17,12/26/26 16:00, +1,1,8634,2026,1,1,,0,,,12,26,18,12/26/26 17:00, +1,1,8635,2026,1,1,,0,,,12,26,19,12/26/26 18:00, +1,1,8636,2026,1,1,,0,,,12,26,20,12/26/26 19:00, +1,1,8637,2026,1,1,,0,,,12,26,21,12/26/26 20:00, +1,1,8638,2026,1,1,,0,,,12,26,22,12/26/26 21:00, +1,1,8639,2026,1,1,,0,,,12,26,23,12/26/26 22:00, +1,1,8640,2026,1,1,,0,,,12,26,24,12/26/26 23:00, +1,1,8641,2026,1,1,,0,,,12,27,1,12/27/26 0:00, +1,1,8642,2026,1,1,,0,,,12,27,2,12/27/26 1:00, +1,1,8643,2026,1,1,,0,,,12,27,3,12/27/26 2:00, +1,1,8644,2026,1,1,,0,,,12,27,4,12/27/26 3:00, +1,1,8645,2026,1,1,,0,,,12,27,5,12/27/26 4:00, +1,1,8646,2026,1,1,,0,,,12,27,6,12/27/26 5:00, +1,1,8647,2026,1,1,,0,,,12,27,7,12/27/26 6:00, +1,1,8648,2026,1,1,,0,,,12,27,8,12/27/26 7:00, +1,1,8649,2026,1,1,,0,,,12,27,9,12/27/26 8:00, +1,1,8650,2026,1,1,,0,,,12,27,10,12/27/26 9:00, +1,1,8651,2026,1,1,,0,,,12,27,11,12/27/26 10:00, +1,1,8652,2026,1,1,,0,,,12,27,12,12/27/26 11:00, +1,1,8653,2026,1,1,,0,,,12,27,13,12/27/26 12:00, +1,1,8654,2026,1,1,,0,,,12,27,14,12/27/26 13:00, +1,1,8655,2026,1,1,,0,,,12,27,15,12/27/26 14:00, +1,1,8656,2026,1,1,,0,,,12,27,16,12/27/26 15:00, +1,1,8657,2026,1,1,,0,,,12,27,17,12/27/26 16:00, +1,1,8658,2026,1,1,,0,,,12,27,18,12/27/26 17:00, +1,1,8659,2026,1,1,,0,,,12,27,19,12/27/26 18:00, +1,1,8660,2026,1,1,,0,,,12,27,20,12/27/26 19:00, +1,1,8661,2026,1,1,,0,,,12,27,21,12/27/26 20:00, +1,1,8662,2026,1,1,,0,,,12,27,22,12/27/26 21:00, +1,1,8663,2026,1,1,,0,,,12,27,23,12/27/26 22:00, +1,1,8664,2026,1,1,,0,,,12,27,24,12/27/26 23:00, +1,1,8665,2026,1,1,,0,,,12,28,1,12/28/26 0:00, +1,1,8666,2026,1,1,,0,,,12,28,2,12/28/26 1:00, +1,1,8667,2026,1,1,,0,,,12,28,3,12/28/26 2:00, +1,1,8668,2026,1,1,,0,,,12,28,4,12/28/26 3:00, +1,1,8669,2026,1,1,,0,,,12,28,5,12/28/26 4:00, +1,1,8670,2026,1,1,,0,,,12,28,6,12/28/26 5:00, +1,1,8671,2026,1,1,,0,,,12,28,7,12/28/26 6:00, +1,1,8672,2026,1,1,,0,,,12,28,8,12/28/26 7:00, +1,1,8673,2026,1,1,,0,,,12,28,9,12/28/26 8:00, +1,1,8674,2026,1,1,,0,,,12,28,10,12/28/26 9:00, +1,1,8675,2026,1,1,,0,,,12,28,11,12/28/26 10:00, +1,1,8676,2026,1,1,,0,,,12,28,12,12/28/26 11:00, +1,1,8677,2026,1,1,,0,,,12,28,13,12/28/26 12:00, +1,1,8678,2026,1,1,,0,,,12,28,14,12/28/26 13:00, +1,1,8679,2026,1,1,,0,,,12,28,15,12/28/26 14:00, +1,1,8680,2026,1,1,,0,,,12,28,16,12/28/26 15:00, +1,1,8681,2026,1,1,,0,,,12,28,17,12/28/26 16:00, +1,1,8682,2026,1,1,,0,,,12,28,18,12/28/26 17:00, +1,1,8683,2026,1,1,,0,,,12,28,19,12/28/26 18:00, +1,1,8684,2026,1,1,,0,,,12,28,20,12/28/26 19:00, +1,1,8685,2026,1,1,,0,,,12,28,21,12/28/26 20:00, +1,1,8686,2026,1,1,,0,,,12,28,22,12/28/26 21:00, +1,1,8687,2026,1,1,,0,,,12,28,23,12/28/26 22:00, +1,1,8688,2026,1,1,,0,,,12,28,24,12/28/26 23:00, +1,1,8689,2026,1,1,,0,,,12,29,1,12/29/26 0:00, +1,1,8690,2026,1,1,,0,,,12,29,2,12/29/26 1:00, +1,1,8691,2026,1,1,,0,,,12,29,3,12/29/26 2:00, +1,1,8692,2026,1,1,,0,,,12,29,4,12/29/26 3:00, +1,1,8693,2026,1,1,,0,,,12,29,5,12/29/26 4:00, +1,1,8694,2026,1,1,,0,,,12,29,6,12/29/26 5:00, +1,1,8695,2026,1,1,,0,,,12,29,7,12/29/26 6:00, +1,1,8696,2026,1,1,,0,,,12,29,8,12/29/26 7:00, +1,1,8697,2026,1,1,,0,,,12,29,9,12/29/26 8:00, +1,1,8698,2026,1,1,,0,,,12,29,10,12/29/26 9:00, +1,1,8699,2026,1,1,,0,,,12,29,11,12/29/26 10:00, +1,1,8700,2026,1,1,,0,,,12,29,12,12/29/26 11:00, +1,1,8701,2026,1,1,,0,,,12,29,13,12/29/26 12:00, +1,1,8702,2026,1,1,,0,,,12,29,14,12/29/26 13:00, +1,1,8703,2026,1,1,,0,,,12,29,15,12/29/26 14:00, +1,1,8704,2026,1,1,,0,,,12,29,16,12/29/26 15:00, +1,1,8705,2026,1,1,,0,,,12,29,17,12/29/26 16:00, +1,1,8706,2026,1,1,,0,,,12,29,18,12/29/26 17:00, +1,1,8707,2026,1,1,,0,,,12,29,19,12/29/26 18:00, +1,1,8708,2026,1,1,,0,,,12,29,20,12/29/26 19:00, +1,1,8709,2026,1,1,,0,,,12,29,21,12/29/26 20:00, +1,1,8710,2026,1,1,,0,,,12,29,22,12/29/26 21:00, +1,1,8711,2026,1,1,,0,,,12,29,23,12/29/26 22:00, +1,1,8712,2026,1,1,,0,,,12,29,24,12/29/26 23:00, +1,1,8713,2026,1,1,,0,,,12,30,1,12/30/26 0:00, +1,1,8714,2026,1,1,,0,,,12,30,2,12/30/26 1:00, +1,1,8715,2026,1,1,,0,,,12,30,3,12/30/26 2:00, +1,1,8716,2026,1,1,,0,,,12,30,4,12/30/26 3:00, +1,1,8717,2026,1,1,,0,,,12,30,5,12/30/26 4:00, +1,1,8718,2026,1,1,,0,,,12,30,6,12/30/26 5:00, +1,1,8719,2026,1,1,,0,,,12,30,7,12/30/26 6:00, +1,1,8720,2026,1,1,,0,,,12,30,8,12/30/26 7:00, +1,1,8721,2026,1,1,,0,,,12,30,9,12/30/26 8:00, +1,1,8722,2026,1,1,,0,,,12,30,10,12/30/26 9:00, +1,1,8723,2026,1,1,,0,,,12,30,11,12/30/26 10:00, +1,1,8724,2026,1,1,,0,,,12,30,12,12/30/26 11:00, +1,1,8725,2026,1,1,,0,,,12,30,13,12/30/26 12:00, +1,1,8726,2026,1,1,,0,,,12,30,14,12/30/26 13:00, +1,1,8727,2026,1,1,,0,,,12,30,15,12/30/26 14:00, +1,1,8728,2026,1,1,,0,,,12,30,16,12/30/26 15:00, +1,1,8729,2026,1,1,,0,,,12,30,17,12/30/26 16:00, +1,1,8730,2026,1,1,,0,,,12,30,18,12/30/26 17:00, +1,1,8731,2026,1,1,,0,,,12,30,19,12/30/26 18:00, +1,1,8732,2026,1,1,,0,,,12,30,20,12/30/26 19:00, +1,1,8733,2026,1,1,,0,,,12,30,21,12/30/26 20:00, +1,1,8734,2026,1,1,,0,,,12,30,22,12/30/26 21:00, +1,1,8735,2026,1,1,,0,,,12,30,23,12/30/26 22:00, +1,1,8736,2026,1,1,,0,,,12,30,24,12/30/26 23:00, +1,1,8737,2026,1,1,,0,,,12,31,1,12/31/26 0:00, +1,1,8738,2026,1,1,,0,,,12,31,2,12/31/26 1:00, +1,1,8739,2026,1,1,,0,,,12,31,3,12/31/26 2:00, +1,1,8740,2026,1,1,,0,,,12,31,4,12/31/26 3:00, +1,1,8741,2026,1,1,,0,,,12,31,5,12/31/26 4:00, +1,1,8742,2026,1,1,,0,,,12,31,6,12/31/26 5:00, +1,1,8743,2026,1,1,,0,,,12,31,7,12/31/26 6:00, +1,1,8744,2026,1,1,,0,,,12,31,8,12/31/26 7:00, +1,1,8745,2026,1,1,,0,,,12,31,9,12/31/26 8:00, +1,1,8746,2026,1,1,,0,,,12,31,10,12/31/26 9:00, +1,1,8747,2026,1,1,,0,,,12,31,11,12/31/26 10:00, +1,1,8748,2026,1,1,,0,,,12,31,12,12/31/26 11:00, +1,1,8749,2026,1,1,,0,,,12,31,13,12/31/26 12:00, +1,1,8750,2026,1,1,,0,,,12,31,14,12/31/26 13:00, +1,1,8751,2026,1,1,,0,,,12,31,15,12/31/26 14:00, +1,1,8752,2026,1,1,,0,,,12,31,16,12/31/26 15:00, +1,1,8753,2026,1,1,,0,,,12,31,17,12/31/26 16:00, +1,1,8754,2026,1,1,,0,,,12,31,18,12/31/26 17:00, +1,1,8755,2026,1,1,,0,,,12,31,19,12/31/26 18:00, +1,1,8756,2026,1,1,,0,,,12,31,20,12/31/26 19:00, +1,1,8757,2026,1,1,,0,,,12,31,21,12/31/26 20:00, +1,1,8758,2026,1,1,,0,,,12,31,22,12/31/26 21:00, +1,1,8759,2026,1,1,,0,,,12,31,23,12/31/26 22:00, +1,1,8760,2026,1,1,,0,,,12,31,24,12/31/26 23:00, diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/superperiods.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/superperiods.csv new file mode 100644 index 0000000000..abf9373d24 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo/superperiods.csv @@ -0,0 +1 @@ +superperiod,period \ No newline at end of file diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/description.txt b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/description.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_params.csv new file mode 100644 index 0000000000..65d4a21340 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_params.csv @@ -0,0 +1,366 @@ +balancing_type_horizon,horizon,boundary +day,1,circular +day,2,circular +day,3,circular +day,4,circular +day,5,circular +day,6,circular +day,7,circular +day,8,circular +day,9,circular +day,10,circular +day,11,circular +day,12,circular +day,13,circular +day,14,circular +day,15,circular +day,16,circular +day,17,circular +day,18,circular +day,19,circular +day,20,circular +day,21,circular +day,22,circular +day,23,circular +day,24,circular +day,25,circular +day,26,circular +day,27,circular +day,28,circular +day,29,circular +day,30,circular +day,31,circular +day,32,circular +day,33,circular +day,34,circular +day,35,circular +day,36,circular +day,37,circular +day,38,circular +day,39,circular +day,40,circular +day,41,circular +day,42,circular +day,43,circular +day,44,circular +day,45,circular +day,46,circular +day,47,circular +day,48,circular +day,49,circular +day,50,circular +day,51,circular +day,52,circular +day,53,circular +day,54,circular +day,55,circular +day,56,circular +day,57,circular +day,58,circular +day,59,circular +day,60,circular +day,61,circular +day,62,circular +day,63,circular +day,64,circular +day,65,circular +day,66,circular +day,67,circular +day,68,circular +day,69,circular +day,70,circular +day,71,circular +day,72,circular +day,73,circular +day,74,circular +day,75,circular +day,76,circular +day,77,circular +day,78,circular +day,79,circular +day,80,circular +day,81,circular +day,82,circular +day,83,circular +day,84,circular +day,85,circular +day,86,circular +day,87,circular +day,88,circular +day,89,circular +day,90,circular +day,91,circular +day,92,circular +day,93,circular +day,94,circular +day,95,circular +day,96,circular +day,97,circular +day,98,circular +day,99,circular +day,100,circular +day,101,circular +day,102,circular +day,103,circular +day,104,circular +day,105,circular +day,106,circular +day,107,circular +day,108,circular +day,109,circular +day,110,circular +day,111,circular +day,112,circular +day,113,circular +day,114,circular +day,115,circular +day,116,circular +day,117,circular +day,118,circular +day,119,circular +day,120,circular +day,121,circular +day,122,circular +day,123,circular +day,124,circular +day,125,circular +day,126,circular +day,127,circular +day,128,circular +day,129,circular +day,130,circular +day,131,circular +day,132,circular +day,133,circular +day,134,circular +day,135,circular +day,136,circular +day,137,circular +day,138,circular +day,139,circular +day,140,circular +day,141,circular +day,142,circular +day,143,circular +day,144,circular +day,145,circular +day,146,circular +day,147,circular +day,148,circular +day,149,circular +day,150,circular +day,151,circular +day,152,circular +day,153,circular +day,154,circular +day,155,circular +day,156,circular +day,157,circular +day,158,circular +day,159,circular +day,160,circular +day,161,circular +day,162,circular +day,163,circular +day,164,circular +day,165,circular +day,166,circular +day,167,circular +day,168,circular +day,169,circular +day,170,circular +day,171,circular +day,172,circular +day,173,circular +day,174,circular +day,175,circular +day,176,circular +day,177,circular +day,178,circular +day,179,circular +day,180,circular +day,181,circular +day,182,circular +day,183,circular +day,184,circular +day,185,circular +day,186,circular +day,187,circular +day,188,circular +day,189,circular +day,190,circular +day,191,circular +day,192,circular +day,193,circular +day,194,circular +day,195,circular +day,196,circular +day,197,circular +day,198,circular +day,199,circular +day,200,circular +day,201,circular +day,202,circular +day,203,circular +day,204,circular +day,205,circular +day,206,circular +day,207,circular +day,208,circular +day,209,circular +day,210,circular +day,211,circular +day,212,circular +day,213,circular +day,214,circular +day,215,circular +day,216,circular +day,217,circular +day,218,circular +day,219,circular +day,220,circular +day,221,circular +day,222,circular +day,223,circular +day,224,circular +day,225,circular +day,226,circular +day,227,circular +day,228,circular +day,229,circular +day,230,circular +day,231,circular +day,232,circular +day,233,circular +day,234,circular +day,235,circular +day,236,circular +day,237,circular +day,238,circular +day,239,circular +day,240,circular +day,241,circular +day,242,circular +day,243,circular +day,244,circular +day,245,circular +day,246,circular +day,247,circular +day,248,circular +day,249,circular +day,250,circular +day,251,circular +day,252,circular +day,253,circular +day,254,circular +day,255,circular +day,256,circular +day,257,circular +day,258,circular +day,259,circular +day,260,circular +day,261,circular +day,262,circular +day,263,circular +day,264,circular +day,265,circular +day,266,circular +day,267,circular +day,268,circular +day,269,circular +day,270,circular +day,271,circular +day,272,circular +day,273,circular +day,274,circular +day,275,circular +day,276,circular +day,277,circular +day,278,circular +day,279,circular +day,280,circular +day,281,circular +day,282,circular +day,283,circular +day,284,circular +day,285,circular +day,286,circular +day,287,circular +day,288,circular +day,289,circular +day,290,circular +day,291,circular +day,292,circular +day,293,circular +day,294,circular +day,295,circular +day,296,circular +day,297,circular +day,298,circular +day,299,circular +day,300,circular +day,301,circular +day,302,circular +day,303,circular +day,304,circular +day,305,circular +day,306,circular +day,307,circular +day,308,circular +day,309,circular +day,310,circular +day,311,circular +day,312,circular +day,313,circular +day,314,circular +day,315,circular +day,316,circular +day,317,circular +day,318,circular +day,319,circular +day,320,circular +day,321,circular +day,322,circular +day,323,circular +day,324,circular +day,325,circular +day,326,circular +day,327,circular +day,328,circular +day,329,circular +day,330,circular +day,331,circular +day,332,circular +day,333,circular +day,334,circular +day,335,circular +day,336,circular +day,337,circular +day,338,circular +day,339,circular +day,340,circular +day,341,circular +day,342,circular +day,343,circular +day,344,circular +day,345,circular +day,346,circular +day,347,circular +day,348,circular +day,349,circular +day,350,circular +day,351,circular +day,352,circular +day,353,circular +day,354,circular +day,355,circular +day,356,circular +day,357,circular +day,358,circular +day,359,circular +day,360,circular +day,361,circular +day,362,circular +day,363,circular +day,364,circular +day,365,circular diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_timepoints.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_timepoints.csv new file mode 100644 index 0000000000..0df4757373 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/horizon_timepoints.csv @@ -0,0 +1,366 @@ +stage_id,balancing_type_horizon,horizon,tmp_start,tmp_start_spinup_or_lookahead,tmp_end,tmp_end_spinup_or_lookahead +1,day,1,1,0,24,0 +1,day,2,25,0,48,0 +1,day,3,49,0,72,0 +1,day,4,73,0,96,0 +1,day,5,97,0,120,0 +1,day,6,121,0,144,0 +1,day,7,145,0,168,0 +1,day,8,169,0,192,0 +1,day,9,193,0,216,0 +1,day,10,217,0,240,0 +1,day,11,241,0,264,0 +1,day,12,265,0,288,0 +1,day,13,289,0,312,0 +1,day,14,313,0,336,0 +1,day,15,337,0,360,0 +1,day,16,361,0,384,0 +1,day,17,385,0,408,0 +1,day,18,409,0,432,0 +1,day,19,433,0,456,0 +1,day,20,457,0,480,0 +1,day,21,481,0,504,0 +1,day,22,505,0,528,0 +1,day,23,529,0,552,0 +1,day,24,553,0,576,0 +1,day,25,577,0,600,0 +1,day,26,601,0,624,0 +1,day,27,625,0,648,0 +1,day,28,649,0,672,0 +1,day,29,673,0,696,0 +1,day,30,697,0,720,0 +1,day,31,721,0,744,0 +1,day,32,745,0,768,0 +1,day,33,769,0,792,0 +1,day,34,793,0,816,0 +1,day,35,817,0,840,0 +1,day,36,841,0,864,0 +1,day,37,865,0,888,0 +1,day,38,889,0,912,0 +1,day,39,913,0,936,0 +1,day,40,937,0,960,0 +1,day,41,961,0,984,0 +1,day,42,985,0,1008,0 +1,day,43,1009,0,1032,0 +1,day,44,1033,0,1056,0 +1,day,45,1057,0,1080,0 +1,day,46,1081,0,1104,0 +1,day,47,1105,0,1128,0 +1,day,48,1129,0,1152,0 +1,day,49,1153,0,1176,0 +1,day,50,1177,0,1200,0 +1,day,51,1201,0,1224,0 +1,day,52,1225,0,1248,0 +1,day,53,1249,0,1272,0 +1,day,54,1273,0,1296,0 +1,day,55,1297,0,1320,0 +1,day,56,1321,0,1344,0 +1,day,57,1345,0,1368,0 +1,day,58,1369,0,1392,0 +1,day,59,1393,0,1416,0 +1,day,60,1417,0,1440,0 +1,day,61,1441,0,1464,0 +1,day,62,1465,0,1488,0 +1,day,63,1489,0,1512,0 +1,day,64,1513,0,1536,0 +1,day,65,1537,0,1560,0 +1,day,66,1561,0,1584,0 +1,day,67,1585,0,1608,0 +1,day,68,1609,0,1632,0 +1,day,69,1633,0,1656,0 +1,day,70,1657,0,1680,0 +1,day,71,1681,0,1704,0 +1,day,72,1705,0,1728,0 +1,day,73,1729,0,1752,0 +1,day,74,1753,0,1776,0 +1,day,75,1777,0,1800,0 +1,day,76,1801,0,1824,0 +1,day,77,1825,0,1848,0 +1,day,78,1849,0,1872,0 +1,day,79,1873,0,1896,0 +1,day,80,1897,0,1920,0 +1,day,81,1921,0,1944,0 +1,day,82,1945,0,1968,0 +1,day,83,1969,0,1992,0 +1,day,84,1993,0,2016,0 +1,day,85,2017,0,2040,0 +1,day,86,2041,0,2064,0 +1,day,87,2065,0,2088,0 +1,day,88,2089,0,2112,0 +1,day,89,2113,0,2136,0 +1,day,90,2137,0,2160,0 +1,day,91,2161,0,2184,0 +1,day,92,2185,0,2208,0 +1,day,93,2209,0,2232,0 +1,day,94,2233,0,2256,0 +1,day,95,2257,0,2280,0 +1,day,96,2281,0,2304,0 +1,day,97,2305,0,2328,0 +1,day,98,2329,0,2352,0 +1,day,99,2353,0,2376,0 +1,day,100,2377,0,2400,0 +1,day,101,2401,0,2424,0 +1,day,102,2425,0,2448,0 +1,day,103,2449,0,2472,0 +1,day,104,2473,0,2496,0 +1,day,105,2497,0,2520,0 +1,day,106,2521,0,2544,0 +1,day,107,2545,0,2568,0 +1,day,108,2569,0,2592,0 +1,day,109,2593,0,2616,0 +1,day,110,2617,0,2640,0 +1,day,111,2641,0,2664,0 +1,day,112,2665,0,2688,0 +1,day,113,2689,0,2712,0 +1,day,114,2713,0,2736,0 +1,day,115,2737,0,2760,0 +1,day,116,2761,0,2784,0 +1,day,117,2785,0,2808,0 +1,day,118,2809,0,2832,0 +1,day,119,2833,0,2856,0 +1,day,120,2857,0,2880,0 +1,day,121,2881,0,2904,0 +1,day,122,2905,0,2928,0 +1,day,123,2929,0,2952,0 +1,day,124,2953,0,2976,0 +1,day,125,2977,0,3000,0 +1,day,126,3001,0,3024,0 +1,day,127,3025,0,3048,0 +1,day,128,3049,0,3072,0 +1,day,129,3073,0,3096,0 +1,day,130,3097,0,3120,0 +1,day,131,3121,0,3144,0 +1,day,132,3145,0,3168,0 +1,day,133,3169,0,3192,0 +1,day,134,3193,0,3216,0 +1,day,135,3217,0,3240,0 +1,day,136,3241,0,3264,0 +1,day,137,3265,0,3288,0 +1,day,138,3289,0,3312,0 +1,day,139,3313,0,3336,0 +1,day,140,3337,0,3360,0 +1,day,141,3361,0,3384,0 +1,day,142,3385,0,3408,0 +1,day,143,3409,0,3432,0 +1,day,144,3433,0,3456,0 +1,day,145,3457,0,3480,0 +1,day,146,3481,0,3504,0 +1,day,147,3505,0,3528,0 +1,day,148,3529,0,3552,0 +1,day,149,3553,0,3576,0 +1,day,150,3577,0,3600,0 +1,day,151,3601,0,3624,0 +1,day,152,3625,0,3648,0 +1,day,153,3649,0,3672,0 +1,day,154,3673,0,3696,0 +1,day,155,3697,0,3720,0 +1,day,156,3721,0,3744,0 +1,day,157,3745,0,3768,0 +1,day,158,3769,0,3792,0 +1,day,159,3793,0,3816,0 +1,day,160,3817,0,3840,0 +1,day,161,3841,0,3864,0 +1,day,162,3865,0,3888,0 +1,day,163,3889,0,3912,0 +1,day,164,3913,0,3936,0 +1,day,165,3937,0,3960,0 +1,day,166,3961,0,3984,0 +1,day,167,3985,0,4008,0 +1,day,168,4009,0,4032,0 +1,day,169,4033,0,4056,0 +1,day,170,4057,0,4080,0 +1,day,171,4081,0,4104,0 +1,day,172,4105,0,4128,0 +1,day,173,4129,0,4152,0 +1,day,174,4153,0,4176,0 +1,day,175,4177,0,4200,0 +1,day,176,4201,0,4224,0 +1,day,177,4225,0,4248,0 +1,day,178,4249,0,4272,0 +1,day,179,4273,0,4296,0 +1,day,180,4297,0,4320,0 +1,day,181,4321,0,4344,0 +1,day,182,4345,0,4368,0 +1,day,183,4369,0,4392,0 +1,day,184,4393,0,4416,0 +1,day,185,4417,0,4440,0 +1,day,186,4441,0,4464,0 +1,day,187,4465,0,4488,0 +1,day,188,4489,0,4512,0 +1,day,189,4513,0,4536,0 +1,day,190,4537,0,4560,0 +1,day,191,4561,0,4584,0 +1,day,192,4585,0,4608,0 +1,day,193,4609,0,4632,0 +1,day,194,4633,0,4656,0 +1,day,195,4657,0,4680,0 +1,day,196,4681,0,4704,0 +1,day,197,4705,0,4728,0 +1,day,198,4729,0,4752,0 +1,day,199,4753,0,4776,0 +1,day,200,4777,0,4800,0 +1,day,201,4801,0,4824,0 +1,day,202,4825,0,4848,0 +1,day,203,4849,0,4872,0 +1,day,204,4873,0,4896,0 +1,day,205,4897,0,4920,0 +1,day,206,4921,0,4944,0 +1,day,207,4945,0,4968,0 +1,day,208,4969,0,4992,0 +1,day,209,4993,0,5016,0 +1,day,210,5017,0,5040,0 +1,day,211,5041,0,5064,0 +1,day,212,5065,0,5088,0 +1,day,213,5089,0,5112,0 +1,day,214,5113,0,5136,0 +1,day,215,5137,0,5160,0 +1,day,216,5161,0,5184,0 +1,day,217,5185,0,5208,0 +1,day,218,5209,0,5232,0 +1,day,219,5233,0,5256,0 +1,day,220,5257,0,5280,0 +1,day,221,5281,0,5304,0 +1,day,222,5305,0,5328,0 +1,day,223,5329,0,5352,0 +1,day,224,5353,0,5376,0 +1,day,225,5377,0,5400,0 +1,day,226,5401,0,5424,0 +1,day,227,5425,0,5448,0 +1,day,228,5449,0,5472,0 +1,day,229,5473,0,5496,0 +1,day,230,5497,0,5520,0 +1,day,231,5521,0,5544,0 +1,day,232,5545,0,5568,0 +1,day,233,5569,0,5592,0 +1,day,234,5593,0,5616,0 +1,day,235,5617,0,5640,0 +1,day,236,5641,0,5664,0 +1,day,237,5665,0,5688,0 +1,day,238,5689,0,5712,0 +1,day,239,5713,0,5736,0 +1,day,240,5737,0,5760,0 +1,day,241,5761,0,5784,0 +1,day,242,5785,0,5808,0 +1,day,243,5809,0,5832,0 +1,day,244,5833,0,5856,0 +1,day,245,5857,0,5880,0 +1,day,246,5881,0,5904,0 +1,day,247,5905,0,5928,0 +1,day,248,5929,0,5952,0 +1,day,249,5953,0,5976,0 +1,day,250,5977,0,6000,0 +1,day,251,6001,0,6024,0 +1,day,252,6025,0,6048,0 +1,day,253,6049,0,6072,0 +1,day,254,6073,0,6096,0 +1,day,255,6097,0,6120,0 +1,day,256,6121,0,6144,0 +1,day,257,6145,0,6168,0 +1,day,258,6169,0,6192,0 +1,day,259,6193,0,6216,0 +1,day,260,6217,0,6240,0 +1,day,261,6241,0,6264,0 +1,day,262,6265,0,6288,0 +1,day,263,6289,0,6312,0 +1,day,264,6313,0,6336,0 +1,day,265,6337,0,6360,0 +1,day,266,6361,0,6384,0 +1,day,267,6385,0,6408,0 +1,day,268,6409,0,6432,0 +1,day,269,6433,0,6456,0 +1,day,270,6457,0,6480,0 +1,day,271,6481,0,6504,0 +1,day,272,6505,0,6528,0 +1,day,273,6529,0,6552,0 +1,day,274,6553,0,6576,0 +1,day,275,6577,0,6600,0 +1,day,276,6601,0,6624,0 +1,day,277,6625,0,6648,0 +1,day,278,6649,0,6672,0 +1,day,279,6673,0,6696,0 +1,day,280,6697,0,6720,0 +1,day,281,6721,0,6744,0 +1,day,282,6745,0,6768,0 +1,day,283,6769,0,6792,0 +1,day,284,6793,0,6816,0 +1,day,285,6817,0,6840,0 +1,day,286,6841,0,6864,0 +1,day,287,6865,0,6888,0 +1,day,288,6889,0,6912,0 +1,day,289,6913,0,6936,0 +1,day,290,6937,0,6960,0 +1,day,291,6961,0,6984,0 +1,day,292,6985,0,7008,0 +1,day,293,7009,0,7032,0 +1,day,294,7033,0,7056,0 +1,day,295,7057,0,7080,0 +1,day,296,7081,0,7104,0 +1,day,297,7105,0,7128,0 +1,day,298,7129,0,7152,0 +1,day,299,7153,0,7176,0 +1,day,300,7177,0,7200,0 +1,day,301,7201,0,7224,0 +1,day,302,7225,0,7248,0 +1,day,303,7249,0,7272,0 +1,day,304,7273,0,7296,0 +1,day,305,7297,0,7320,0 +1,day,306,7321,0,7344,0 +1,day,307,7345,0,7368,0 +1,day,308,7369,0,7392,0 +1,day,309,7393,0,7416,0 +1,day,310,7417,0,7440,0 +1,day,311,7441,0,7464,0 +1,day,312,7465,0,7488,0 +1,day,313,7489,0,7512,0 +1,day,314,7513,0,7536,0 +1,day,315,7537,0,7560,0 +1,day,316,7561,0,7584,0 +1,day,317,7585,0,7608,0 +1,day,318,7609,0,7632,0 +1,day,319,7633,0,7656,0 +1,day,320,7657,0,7680,0 +1,day,321,7681,0,7704,0 +1,day,322,7705,0,7728,0 +1,day,323,7729,0,7752,0 +1,day,324,7753,0,7776,0 +1,day,325,7777,0,7800,0 +1,day,326,7801,0,7824,0 +1,day,327,7825,0,7848,0 +1,day,328,7849,0,7872,0 +1,day,329,7873,0,7896,0 +1,day,330,7897,0,7920,0 +1,day,331,7921,0,7944,0 +1,day,332,7945,0,7968,0 +1,day,333,7969,0,7992,0 +1,day,334,7993,0,8016,0 +1,day,335,8017,0,8040,0 +1,day,336,8041,0,8064,0 +1,day,337,8065,0,8088,0 +1,day,338,8089,0,8112,0 +1,day,339,8113,0,8136,0 +1,day,340,8137,0,8160,0 +1,day,341,8161,0,8184,0 +1,day,342,8185,0,8208,0 +1,day,343,8209,0,8232,0 +1,day,344,8233,0,8256,0 +1,day,345,8257,0,8280,0 +1,day,346,8281,0,8304,0 +1,day,347,8305,0,8328,0 +1,day,348,8329,0,8352,0 +1,day,349,8353,0,8376,0 +1,day,350,8377,0,8400,0 +1,day,351,8401,0,8424,0 +1,day,352,8425,0,8448,0 +1,day,353,8449,0,8472,0 +1,day,354,8473,0,8496,0 +1,day,355,8497,0,8520,0 +1,day,356,8521,0,8544,0 +1,day,357,8545,0,8568,0 +1,day,358,8569,0,8592,0 +1,day,359,8593,0,8616,0 +1,day,360,8617,0,8640,0 +1,day,361,8641,0,8664,0 +1,day,362,8665,0,8688,0 +1,day,363,8689,0,8712,0 +1,day,364,8713,0,8736,0 +1,day,365,8737,0,8760,0 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/period_params.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/period_params.csv new file mode 100644 index 0000000000..df12fbcba4 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/period_params.csv @@ -0,0 +1,2 @@ +period,discount_factor,period_start_year,period_end_year,prev_period +2026,1,2026,2027 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/structure.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/structure.csv new file mode 100644 index 0000000000..5e414e96e3 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/structure.csv @@ -0,0 +1,8761 @@ +subproblem_id,stage_id,timepoint,period,number_of_hours_in_timepoint,timepoint_weight,previous_stage_timepoint_map,spinup_or_lookahead,linked_timepoint,year,month,day_of_month,hour_of_day,timestamp,ignore_horizon_day +1,1,1,2026,1,1,,0,,,1,1,1,1/1/26 0:00, +1,1,2,2026,1,1,,0,,,1,1,2,1/1/26 1:00, +1,1,3,2026,1,1,,0,,,1,1,3,1/1/26 2:00, +1,1,4,2026,1,1,,0,,,1,1,4,1/1/26 3:00, +1,1,5,2026,1,1,,0,,,1,1,5,1/1/26 4:00, +1,1,6,2026,1,1,,0,,,1,1,6,1/1/26 5:00, +1,1,7,2026,1,1,,0,,,1,1,7,1/1/26 6:00, +1,1,8,2026,1,1,,0,,,1,1,8,1/1/26 7:00, +1,1,9,2026,1,1,,0,,,1,1,9,1/1/26 8:00, +1,1,10,2026,1,1,,0,,,1,1,10,1/1/26 9:00, +1,1,11,2026,1,1,,0,,,1,1,11,1/1/26 10:00, +1,1,12,2026,1,1,,0,,,1,1,12,1/1/26 11:00, +1,1,13,2026,1,1,,0,,,1,1,13,1/1/26 12:00, +1,1,14,2026,1,1,,0,,,1,1,14,1/1/26 13:00, +1,1,15,2026,1,1,,0,,,1,1,15,1/1/26 14:00, +1,1,16,2026,1,1,,0,,,1,1,16,1/1/26 15:00, +1,1,17,2026,1,1,,0,,,1,1,17,1/1/26 16:00, +1,1,18,2026,1,1,,0,,,1,1,18,1/1/26 17:00, +1,1,19,2026,1,1,,0,,,1,1,19,1/1/26 18:00, +1,1,20,2026,1,1,,0,,,1,1,20,1/1/26 19:00, +1,1,21,2026,1,1,,0,,,1,1,21,1/1/26 20:00, +1,1,22,2026,1,1,,0,,,1,1,22,1/1/26 21:00, +1,1,23,2026,1,1,,0,,,1,1,23,1/1/26 22:00, +1,1,24,2026,1,1,,0,,,1,1,24,1/1/26 23:00, +1,1,25,2026,1,1,,0,,,1,2,1,1/2/26 0:00, +1,1,26,2026,1,1,,0,,,1,2,2,1/2/26 1:00, +1,1,27,2026,1,1,,0,,,1,2,3,1/2/26 2:00, +1,1,28,2026,1,1,,0,,,1,2,4,1/2/26 3:00, +1,1,29,2026,1,1,,0,,,1,2,5,1/2/26 4:00, +1,1,30,2026,1,1,,0,,,1,2,6,1/2/26 5:00, +1,1,31,2026,1,1,,0,,,1,2,7,1/2/26 6:00, +1,1,32,2026,1,1,,0,,,1,2,8,1/2/26 7:00, +1,1,33,2026,1,1,,0,,,1,2,9,1/2/26 8:00, +1,1,34,2026,1,1,,0,,,1,2,10,1/2/26 9:00, +1,1,35,2026,1,1,,0,,,1,2,11,1/2/26 10:00, +1,1,36,2026,1,1,,0,,,1,2,12,1/2/26 11:00, +1,1,37,2026,1,1,,0,,,1,2,13,1/2/26 12:00, +1,1,38,2026,1,1,,0,,,1,2,14,1/2/26 13:00, +1,1,39,2026,1,1,,0,,,1,2,15,1/2/26 14:00, +1,1,40,2026,1,1,,0,,,1,2,16,1/2/26 15:00, +1,1,41,2026,1,1,,0,,,1,2,17,1/2/26 16:00, +1,1,42,2026,1,1,,0,,,1,2,18,1/2/26 17:00, +1,1,43,2026,1,1,,0,,,1,2,19,1/2/26 18:00, +1,1,44,2026,1,1,,0,,,1,2,20,1/2/26 19:00, +1,1,45,2026,1,1,,0,,,1,2,21,1/2/26 20:00, +1,1,46,2026,1,1,,0,,,1,2,22,1/2/26 21:00, +1,1,47,2026,1,1,,0,,,1,2,23,1/2/26 22:00, +1,1,48,2026,1,1,,0,,,1,2,24,1/2/26 23:00, +1,1,49,2026,1,1,,0,,,1,3,1,1/3/26 0:00, +1,1,50,2026,1,1,,0,,,1,3,2,1/3/26 1:00, +1,1,51,2026,1,1,,0,,,1,3,3,1/3/26 2:00, +1,1,52,2026,1,1,,0,,,1,3,4,1/3/26 3:00, +1,1,53,2026,1,1,,0,,,1,3,5,1/3/26 4:00, +1,1,54,2026,1,1,,0,,,1,3,6,1/3/26 5:00, +1,1,55,2026,1,1,,0,,,1,3,7,1/3/26 6:00, +1,1,56,2026,1,1,,0,,,1,3,8,1/3/26 7:00, +1,1,57,2026,1,1,,0,,,1,3,9,1/3/26 8:00, +1,1,58,2026,1,1,,0,,,1,3,10,1/3/26 9:00, +1,1,59,2026,1,1,,0,,,1,3,11,1/3/26 10:00, +1,1,60,2026,1,1,,0,,,1,3,12,1/3/26 11:00, +1,1,61,2026,1,1,,0,,,1,3,13,1/3/26 12:00, +1,1,62,2026,1,1,,0,,,1,3,14,1/3/26 13:00, +1,1,63,2026,1,1,,0,,,1,3,15,1/3/26 14:00, +1,1,64,2026,1,1,,0,,,1,3,16,1/3/26 15:00, +1,1,65,2026,1,1,,0,,,1,3,17,1/3/26 16:00, +1,1,66,2026,1,1,,0,,,1,3,18,1/3/26 17:00, +1,1,67,2026,1,1,,0,,,1,3,19,1/3/26 18:00, +1,1,68,2026,1,1,,0,,,1,3,20,1/3/26 19:00, +1,1,69,2026,1,1,,0,,,1,3,21,1/3/26 20:00, +1,1,70,2026,1,1,,0,,,1,3,22,1/3/26 21:00, +1,1,71,2026,1,1,,0,,,1,3,23,1/3/26 22:00, +1,1,72,2026,1,1,,0,,,1,3,24,1/3/26 23:00, +1,1,73,2026,1,1,,0,,,1,4,1,1/4/26 0:00, +1,1,74,2026,1,1,,0,,,1,4,2,1/4/26 1:00, +1,1,75,2026,1,1,,0,,,1,4,3,1/4/26 2:00, +1,1,76,2026,1,1,,0,,,1,4,4,1/4/26 3:00, +1,1,77,2026,1,1,,0,,,1,4,5,1/4/26 4:00, +1,1,78,2026,1,1,,0,,,1,4,6,1/4/26 5:00, +1,1,79,2026,1,1,,0,,,1,4,7,1/4/26 6:00, +1,1,80,2026,1,1,,0,,,1,4,8,1/4/26 7:00, +1,1,81,2026,1,1,,0,,,1,4,9,1/4/26 8:00, +1,1,82,2026,1,1,,0,,,1,4,10,1/4/26 9:00, +1,1,83,2026,1,1,,0,,,1,4,11,1/4/26 10:00, +1,1,84,2026,1,1,,0,,,1,4,12,1/4/26 11:00, +1,1,85,2026,1,1,,0,,,1,4,13,1/4/26 12:00, +1,1,86,2026,1,1,,0,,,1,4,14,1/4/26 13:00, +1,1,87,2026,1,1,,0,,,1,4,15,1/4/26 14:00, +1,1,88,2026,1,1,,0,,,1,4,16,1/4/26 15:00, +1,1,89,2026,1,1,,0,,,1,4,17,1/4/26 16:00, +1,1,90,2026,1,1,,0,,,1,4,18,1/4/26 17:00, +1,1,91,2026,1,1,,0,,,1,4,19,1/4/26 18:00, +1,1,92,2026,1,1,,0,,,1,4,20,1/4/26 19:00, +1,1,93,2026,1,1,,0,,,1,4,21,1/4/26 20:00, +1,1,94,2026,1,1,,0,,,1,4,22,1/4/26 21:00, +1,1,95,2026,1,1,,0,,,1,4,23,1/4/26 22:00, +1,1,96,2026,1,1,,0,,,1,4,24,1/4/26 23:00, +1,1,97,2026,1,1,,0,,,1,5,1,1/5/26 0:00, +1,1,98,2026,1,1,,0,,,1,5,2,1/5/26 1:00, +1,1,99,2026,1,1,,0,,,1,5,3,1/5/26 2:00, +1,1,100,2026,1,1,,0,,,1,5,4,1/5/26 3:00, +1,1,101,2026,1,1,,0,,,1,5,5,1/5/26 4:00, +1,1,102,2026,1,1,,0,,,1,5,6,1/5/26 5:00, +1,1,103,2026,1,1,,0,,,1,5,7,1/5/26 6:00, +1,1,104,2026,1,1,,0,,,1,5,8,1/5/26 7:00, +1,1,105,2026,1,1,,0,,,1,5,9,1/5/26 8:00, +1,1,106,2026,1,1,,0,,,1,5,10,1/5/26 9:00, +1,1,107,2026,1,1,,0,,,1,5,11,1/5/26 10:00, +1,1,108,2026,1,1,,0,,,1,5,12,1/5/26 11:00, +1,1,109,2026,1,1,,0,,,1,5,13,1/5/26 12:00, +1,1,110,2026,1,1,,0,,,1,5,14,1/5/26 13:00, +1,1,111,2026,1,1,,0,,,1,5,15,1/5/26 14:00, +1,1,112,2026,1,1,,0,,,1,5,16,1/5/26 15:00, +1,1,113,2026,1,1,,0,,,1,5,17,1/5/26 16:00, +1,1,114,2026,1,1,,0,,,1,5,18,1/5/26 17:00, +1,1,115,2026,1,1,,0,,,1,5,19,1/5/26 18:00, +1,1,116,2026,1,1,,0,,,1,5,20,1/5/26 19:00, +1,1,117,2026,1,1,,0,,,1,5,21,1/5/26 20:00, +1,1,118,2026,1,1,,0,,,1,5,22,1/5/26 21:00, +1,1,119,2026,1,1,,0,,,1,5,23,1/5/26 22:00, +1,1,120,2026,1,1,,0,,,1,5,24,1/5/26 23:00, +1,1,121,2026,1,1,,0,,,1,6,1,1/6/26 0:00, +1,1,122,2026,1,1,,0,,,1,6,2,1/6/26 1:00, +1,1,123,2026,1,1,,0,,,1,6,3,1/6/26 2:00, +1,1,124,2026,1,1,,0,,,1,6,4,1/6/26 3:00, +1,1,125,2026,1,1,,0,,,1,6,5,1/6/26 4:00, +1,1,126,2026,1,1,,0,,,1,6,6,1/6/26 5:00, +1,1,127,2026,1,1,,0,,,1,6,7,1/6/26 6:00, +1,1,128,2026,1,1,,0,,,1,6,8,1/6/26 7:00, +1,1,129,2026,1,1,,0,,,1,6,9,1/6/26 8:00, +1,1,130,2026,1,1,,0,,,1,6,10,1/6/26 9:00, +1,1,131,2026,1,1,,0,,,1,6,11,1/6/26 10:00, +1,1,132,2026,1,1,,0,,,1,6,12,1/6/26 11:00, +1,1,133,2026,1,1,,0,,,1,6,13,1/6/26 12:00, +1,1,134,2026,1,1,,0,,,1,6,14,1/6/26 13:00, +1,1,135,2026,1,1,,0,,,1,6,15,1/6/26 14:00, +1,1,136,2026,1,1,,0,,,1,6,16,1/6/26 15:00, +1,1,137,2026,1,1,,0,,,1,6,17,1/6/26 16:00, +1,1,138,2026,1,1,,0,,,1,6,18,1/6/26 17:00, +1,1,139,2026,1,1,,0,,,1,6,19,1/6/26 18:00, +1,1,140,2026,1,1,,0,,,1,6,20,1/6/26 19:00, +1,1,141,2026,1,1,,0,,,1,6,21,1/6/26 20:00, +1,1,142,2026,1,1,,0,,,1,6,22,1/6/26 21:00, +1,1,143,2026,1,1,,0,,,1,6,23,1/6/26 22:00, +1,1,144,2026,1,1,,0,,,1,6,24,1/6/26 23:00, +1,1,145,2026,1,1,,0,,,1,7,1,1/7/26 0:00, +1,1,146,2026,1,1,,0,,,1,7,2,1/7/26 1:00, +1,1,147,2026,1,1,,0,,,1,7,3,1/7/26 2:00, +1,1,148,2026,1,1,,0,,,1,7,4,1/7/26 3:00, +1,1,149,2026,1,1,,0,,,1,7,5,1/7/26 4:00, +1,1,150,2026,1,1,,0,,,1,7,6,1/7/26 5:00, +1,1,151,2026,1,1,,0,,,1,7,7,1/7/26 6:00, +1,1,152,2026,1,1,,0,,,1,7,8,1/7/26 7:00, +1,1,153,2026,1,1,,0,,,1,7,9,1/7/26 8:00, +1,1,154,2026,1,1,,0,,,1,7,10,1/7/26 9:00, +1,1,155,2026,1,1,,0,,,1,7,11,1/7/26 10:00, +1,1,156,2026,1,1,,0,,,1,7,12,1/7/26 11:00, +1,1,157,2026,1,1,,0,,,1,7,13,1/7/26 12:00, +1,1,158,2026,1,1,,0,,,1,7,14,1/7/26 13:00, +1,1,159,2026,1,1,,0,,,1,7,15,1/7/26 14:00, +1,1,160,2026,1,1,,0,,,1,7,16,1/7/26 15:00, +1,1,161,2026,1,1,,0,,,1,7,17,1/7/26 16:00, +1,1,162,2026,1,1,,0,,,1,7,18,1/7/26 17:00, +1,1,163,2026,1,1,,0,,,1,7,19,1/7/26 18:00, +1,1,164,2026,1,1,,0,,,1,7,20,1/7/26 19:00, +1,1,165,2026,1,1,,0,,,1,7,21,1/7/26 20:00, +1,1,166,2026,1,1,,0,,,1,7,22,1/7/26 21:00, +1,1,167,2026,1,1,,0,,,1,7,23,1/7/26 22:00, +1,1,168,2026,1,1,,0,,,1,7,24,1/7/26 23:00, +1,1,169,2026,1,1,,0,,,1,8,1,1/8/26 0:00, +1,1,170,2026,1,1,,0,,,1,8,2,1/8/26 1:00, +1,1,171,2026,1,1,,0,,,1,8,3,1/8/26 2:00, +1,1,172,2026,1,1,,0,,,1,8,4,1/8/26 3:00, +1,1,173,2026,1,1,,0,,,1,8,5,1/8/26 4:00, +1,1,174,2026,1,1,,0,,,1,8,6,1/8/26 5:00, +1,1,175,2026,1,1,,0,,,1,8,7,1/8/26 6:00, +1,1,176,2026,1,1,,0,,,1,8,8,1/8/26 7:00, +1,1,177,2026,1,1,,0,,,1,8,9,1/8/26 8:00, +1,1,178,2026,1,1,,0,,,1,8,10,1/8/26 9:00, +1,1,179,2026,1,1,,0,,,1,8,11,1/8/26 10:00, +1,1,180,2026,1,1,,0,,,1,8,12,1/8/26 11:00, +1,1,181,2026,1,1,,0,,,1,8,13,1/8/26 12:00, +1,1,182,2026,1,1,,0,,,1,8,14,1/8/26 13:00, +1,1,183,2026,1,1,,0,,,1,8,15,1/8/26 14:00, +1,1,184,2026,1,1,,0,,,1,8,16,1/8/26 15:00, +1,1,185,2026,1,1,,0,,,1,8,17,1/8/26 16:00, +1,1,186,2026,1,1,,0,,,1,8,18,1/8/26 17:00, +1,1,187,2026,1,1,,0,,,1,8,19,1/8/26 18:00, +1,1,188,2026,1,1,,0,,,1,8,20,1/8/26 19:00, +1,1,189,2026,1,1,,0,,,1,8,21,1/8/26 20:00, +1,1,190,2026,1,1,,0,,,1,8,22,1/8/26 21:00, +1,1,191,2026,1,1,,0,,,1,8,23,1/8/26 22:00, +1,1,192,2026,1,1,,0,,,1,8,24,1/8/26 23:00, +1,1,193,2026,1,1,,0,,,1,9,1,1/9/26 0:00, +1,1,194,2026,1,1,,0,,,1,9,2,1/9/26 1:00, +1,1,195,2026,1,1,,0,,,1,9,3,1/9/26 2:00, +1,1,196,2026,1,1,,0,,,1,9,4,1/9/26 3:00, +1,1,197,2026,1,1,,0,,,1,9,5,1/9/26 4:00, +1,1,198,2026,1,1,,0,,,1,9,6,1/9/26 5:00, +1,1,199,2026,1,1,,0,,,1,9,7,1/9/26 6:00, +1,1,200,2026,1,1,,0,,,1,9,8,1/9/26 7:00, +1,1,201,2026,1,1,,0,,,1,9,9,1/9/26 8:00, +1,1,202,2026,1,1,,0,,,1,9,10,1/9/26 9:00, +1,1,203,2026,1,1,,0,,,1,9,11,1/9/26 10:00, +1,1,204,2026,1,1,,0,,,1,9,12,1/9/26 11:00, +1,1,205,2026,1,1,,0,,,1,9,13,1/9/26 12:00, +1,1,206,2026,1,1,,0,,,1,9,14,1/9/26 13:00, +1,1,207,2026,1,1,,0,,,1,9,15,1/9/26 14:00, +1,1,208,2026,1,1,,0,,,1,9,16,1/9/26 15:00, +1,1,209,2026,1,1,,0,,,1,9,17,1/9/26 16:00, +1,1,210,2026,1,1,,0,,,1,9,18,1/9/26 17:00, +1,1,211,2026,1,1,,0,,,1,9,19,1/9/26 18:00, +1,1,212,2026,1,1,,0,,,1,9,20,1/9/26 19:00, +1,1,213,2026,1,1,,0,,,1,9,21,1/9/26 20:00, +1,1,214,2026,1,1,,0,,,1,9,22,1/9/26 21:00, +1,1,215,2026,1,1,,0,,,1,9,23,1/9/26 22:00, +1,1,216,2026,1,1,,0,,,1,9,24,1/9/26 23:00, +1,1,217,2026,1,1,,0,,,1,10,1,1/10/26 0:00, +1,1,218,2026,1,1,,0,,,1,10,2,1/10/26 1:00, +1,1,219,2026,1,1,,0,,,1,10,3,1/10/26 2:00, +1,1,220,2026,1,1,,0,,,1,10,4,1/10/26 3:00, +1,1,221,2026,1,1,,0,,,1,10,5,1/10/26 4:00, +1,1,222,2026,1,1,,0,,,1,10,6,1/10/26 5:00, +1,1,223,2026,1,1,,0,,,1,10,7,1/10/26 6:00, +1,1,224,2026,1,1,,0,,,1,10,8,1/10/26 7:00, +1,1,225,2026,1,1,,0,,,1,10,9,1/10/26 8:00, +1,1,226,2026,1,1,,0,,,1,10,10,1/10/26 9:00, +1,1,227,2026,1,1,,0,,,1,10,11,1/10/26 10:00, +1,1,228,2026,1,1,,0,,,1,10,12,1/10/26 11:00, +1,1,229,2026,1,1,,0,,,1,10,13,1/10/26 12:00, +1,1,230,2026,1,1,,0,,,1,10,14,1/10/26 13:00, +1,1,231,2026,1,1,,0,,,1,10,15,1/10/26 14:00, +1,1,232,2026,1,1,,0,,,1,10,16,1/10/26 15:00, +1,1,233,2026,1,1,,0,,,1,10,17,1/10/26 16:00, +1,1,234,2026,1,1,,0,,,1,10,18,1/10/26 17:00, +1,1,235,2026,1,1,,0,,,1,10,19,1/10/26 18:00, +1,1,236,2026,1,1,,0,,,1,10,20,1/10/26 19:00, +1,1,237,2026,1,1,,0,,,1,10,21,1/10/26 20:00, +1,1,238,2026,1,1,,0,,,1,10,22,1/10/26 21:00, +1,1,239,2026,1,1,,0,,,1,10,23,1/10/26 22:00, +1,1,240,2026,1,1,,0,,,1,10,24,1/10/26 23:00, +1,1,241,2026,1,1,,0,,,1,11,1,1/11/26 0:00, +1,1,242,2026,1,1,,0,,,1,11,2,1/11/26 1:00, +1,1,243,2026,1,1,,0,,,1,11,3,1/11/26 2:00, +1,1,244,2026,1,1,,0,,,1,11,4,1/11/26 3:00, +1,1,245,2026,1,1,,0,,,1,11,5,1/11/26 4:00, +1,1,246,2026,1,1,,0,,,1,11,6,1/11/26 5:00, +1,1,247,2026,1,1,,0,,,1,11,7,1/11/26 6:00, +1,1,248,2026,1,1,,0,,,1,11,8,1/11/26 7:00, +1,1,249,2026,1,1,,0,,,1,11,9,1/11/26 8:00, +1,1,250,2026,1,1,,0,,,1,11,10,1/11/26 9:00, +1,1,251,2026,1,1,,0,,,1,11,11,1/11/26 10:00, +1,1,252,2026,1,1,,0,,,1,11,12,1/11/26 11:00, +1,1,253,2026,1,1,,0,,,1,11,13,1/11/26 12:00, +1,1,254,2026,1,1,,0,,,1,11,14,1/11/26 13:00, +1,1,255,2026,1,1,,0,,,1,11,15,1/11/26 14:00, +1,1,256,2026,1,1,,0,,,1,11,16,1/11/26 15:00, +1,1,257,2026,1,1,,0,,,1,11,17,1/11/26 16:00, +1,1,258,2026,1,1,,0,,,1,11,18,1/11/26 17:00, +1,1,259,2026,1,1,,0,,,1,11,19,1/11/26 18:00, +1,1,260,2026,1,1,,0,,,1,11,20,1/11/26 19:00, +1,1,261,2026,1,1,,0,,,1,11,21,1/11/26 20:00, +1,1,262,2026,1,1,,0,,,1,11,22,1/11/26 21:00, +1,1,263,2026,1,1,,0,,,1,11,23,1/11/26 22:00, +1,1,264,2026,1,1,,0,,,1,11,24,1/11/26 23:00, +1,1,265,2026,1,1,,0,,,1,12,1,1/12/26 0:00, +1,1,266,2026,1,1,,0,,,1,12,2,1/12/26 1:00, +1,1,267,2026,1,1,,0,,,1,12,3,1/12/26 2:00, +1,1,268,2026,1,1,,0,,,1,12,4,1/12/26 3:00, +1,1,269,2026,1,1,,0,,,1,12,5,1/12/26 4:00, +1,1,270,2026,1,1,,0,,,1,12,6,1/12/26 5:00, +1,1,271,2026,1,1,,0,,,1,12,7,1/12/26 6:00, +1,1,272,2026,1,1,,0,,,1,12,8,1/12/26 7:00, +1,1,273,2026,1,1,,0,,,1,12,9,1/12/26 8:00, +1,1,274,2026,1,1,,0,,,1,12,10,1/12/26 9:00, +1,1,275,2026,1,1,,0,,,1,12,11,1/12/26 10:00, +1,1,276,2026,1,1,,0,,,1,12,12,1/12/26 11:00, +1,1,277,2026,1,1,,0,,,1,12,13,1/12/26 12:00, +1,1,278,2026,1,1,,0,,,1,12,14,1/12/26 13:00, +1,1,279,2026,1,1,,0,,,1,12,15,1/12/26 14:00, +1,1,280,2026,1,1,,0,,,1,12,16,1/12/26 15:00, +1,1,281,2026,1,1,,0,,,1,12,17,1/12/26 16:00, +1,1,282,2026,1,1,,0,,,1,12,18,1/12/26 17:00, +1,1,283,2026,1,1,,0,,,1,12,19,1/12/26 18:00, +1,1,284,2026,1,1,,0,,,1,12,20,1/12/26 19:00, +1,1,285,2026,1,1,,0,,,1,12,21,1/12/26 20:00, +1,1,286,2026,1,1,,0,,,1,12,22,1/12/26 21:00, +1,1,287,2026,1,1,,0,,,1,12,23,1/12/26 22:00, +1,1,288,2026,1,1,,0,,,1,12,24,1/12/26 23:00, +1,1,289,2026,1,1,,0,,,1,13,1,1/13/26 0:00, +1,1,290,2026,1,1,,0,,,1,13,2,1/13/26 1:00, +1,1,291,2026,1,1,,0,,,1,13,3,1/13/26 2:00, +1,1,292,2026,1,1,,0,,,1,13,4,1/13/26 3:00, +1,1,293,2026,1,1,,0,,,1,13,5,1/13/26 4:00, +1,1,294,2026,1,1,,0,,,1,13,6,1/13/26 5:00, +1,1,295,2026,1,1,,0,,,1,13,7,1/13/26 6:00, +1,1,296,2026,1,1,,0,,,1,13,8,1/13/26 7:00, +1,1,297,2026,1,1,,0,,,1,13,9,1/13/26 8:00, +1,1,298,2026,1,1,,0,,,1,13,10,1/13/26 9:00, +1,1,299,2026,1,1,,0,,,1,13,11,1/13/26 10:00, +1,1,300,2026,1,1,,0,,,1,13,12,1/13/26 11:00, +1,1,301,2026,1,1,,0,,,1,13,13,1/13/26 12:00, +1,1,302,2026,1,1,,0,,,1,13,14,1/13/26 13:00, +1,1,303,2026,1,1,,0,,,1,13,15,1/13/26 14:00, +1,1,304,2026,1,1,,0,,,1,13,16,1/13/26 15:00, +1,1,305,2026,1,1,,0,,,1,13,17,1/13/26 16:00, +1,1,306,2026,1,1,,0,,,1,13,18,1/13/26 17:00, +1,1,307,2026,1,1,,0,,,1,13,19,1/13/26 18:00, +1,1,308,2026,1,1,,0,,,1,13,20,1/13/26 19:00, +1,1,309,2026,1,1,,0,,,1,13,21,1/13/26 20:00, +1,1,310,2026,1,1,,0,,,1,13,22,1/13/26 21:00, +1,1,311,2026,1,1,,0,,,1,13,23,1/13/26 22:00, +1,1,312,2026,1,1,,0,,,1,13,24,1/13/26 23:00, +1,1,313,2026,1,1,,0,,,1,14,1,1/14/26 0:00, +1,1,314,2026,1,1,,0,,,1,14,2,1/14/26 1:00, +1,1,315,2026,1,1,,0,,,1,14,3,1/14/26 2:00, +1,1,316,2026,1,1,,0,,,1,14,4,1/14/26 3:00, +1,1,317,2026,1,1,,0,,,1,14,5,1/14/26 4:00, +1,1,318,2026,1,1,,0,,,1,14,6,1/14/26 5:00, +1,1,319,2026,1,1,,0,,,1,14,7,1/14/26 6:00, +1,1,320,2026,1,1,,0,,,1,14,8,1/14/26 7:00, +1,1,321,2026,1,1,,0,,,1,14,9,1/14/26 8:00, +1,1,322,2026,1,1,,0,,,1,14,10,1/14/26 9:00, +1,1,323,2026,1,1,,0,,,1,14,11,1/14/26 10:00, +1,1,324,2026,1,1,,0,,,1,14,12,1/14/26 11:00, +1,1,325,2026,1,1,,0,,,1,14,13,1/14/26 12:00, +1,1,326,2026,1,1,,0,,,1,14,14,1/14/26 13:00, +1,1,327,2026,1,1,,0,,,1,14,15,1/14/26 14:00, +1,1,328,2026,1,1,,0,,,1,14,16,1/14/26 15:00, +1,1,329,2026,1,1,,0,,,1,14,17,1/14/26 16:00, +1,1,330,2026,1,1,,0,,,1,14,18,1/14/26 17:00, +1,1,331,2026,1,1,,0,,,1,14,19,1/14/26 18:00, +1,1,332,2026,1,1,,0,,,1,14,20,1/14/26 19:00, +1,1,333,2026,1,1,,0,,,1,14,21,1/14/26 20:00, +1,1,334,2026,1,1,,0,,,1,14,22,1/14/26 21:00, +1,1,335,2026,1,1,,0,,,1,14,23,1/14/26 22:00, +1,1,336,2026,1,1,,0,,,1,14,24,1/14/26 23:00, +1,1,337,2026,1,1,,0,,,1,15,1,1/15/26 0:00, +1,1,338,2026,1,1,,0,,,1,15,2,1/15/26 1:00, +1,1,339,2026,1,1,,0,,,1,15,3,1/15/26 2:00, +1,1,340,2026,1,1,,0,,,1,15,4,1/15/26 3:00, +1,1,341,2026,1,1,,0,,,1,15,5,1/15/26 4:00, +1,1,342,2026,1,1,,0,,,1,15,6,1/15/26 5:00, +1,1,343,2026,1,1,,0,,,1,15,7,1/15/26 6:00, +1,1,344,2026,1,1,,0,,,1,15,8,1/15/26 7:00, +1,1,345,2026,1,1,,0,,,1,15,9,1/15/26 8:00, +1,1,346,2026,1,1,,0,,,1,15,10,1/15/26 9:00, +1,1,347,2026,1,1,,0,,,1,15,11,1/15/26 10:00, +1,1,348,2026,1,1,,0,,,1,15,12,1/15/26 11:00, +1,1,349,2026,1,1,,0,,,1,15,13,1/15/26 12:00, +1,1,350,2026,1,1,,0,,,1,15,14,1/15/26 13:00, +1,1,351,2026,1,1,,0,,,1,15,15,1/15/26 14:00, +1,1,352,2026,1,1,,0,,,1,15,16,1/15/26 15:00, +1,1,353,2026,1,1,,0,,,1,15,17,1/15/26 16:00, +1,1,354,2026,1,1,,0,,,1,15,18,1/15/26 17:00, +1,1,355,2026,1,1,,0,,,1,15,19,1/15/26 18:00, +1,1,356,2026,1,1,,0,,,1,15,20,1/15/26 19:00, +1,1,357,2026,1,1,,0,,,1,15,21,1/15/26 20:00, +1,1,358,2026,1,1,,0,,,1,15,22,1/15/26 21:00, +1,1,359,2026,1,1,,0,,,1,15,23,1/15/26 22:00, +1,1,360,2026,1,1,,0,,,1,15,24,1/15/26 23:00, +1,1,361,2026,1,1,,0,,,1,16,1,1/16/26 0:00, +1,1,362,2026,1,1,,0,,,1,16,2,1/16/26 1:00, +1,1,363,2026,1,1,,0,,,1,16,3,1/16/26 2:00, +1,1,364,2026,1,1,,0,,,1,16,4,1/16/26 3:00, +1,1,365,2026,1,1,,0,,,1,16,5,1/16/26 4:00, +1,1,366,2026,1,1,,0,,,1,16,6,1/16/26 5:00, +1,1,367,2026,1,1,,0,,,1,16,7,1/16/26 6:00, +1,1,368,2026,1,1,,0,,,1,16,8,1/16/26 7:00, +1,1,369,2026,1,1,,0,,,1,16,9,1/16/26 8:00, +1,1,370,2026,1,1,,0,,,1,16,10,1/16/26 9:00, +1,1,371,2026,1,1,,0,,,1,16,11,1/16/26 10:00, +1,1,372,2026,1,1,,0,,,1,16,12,1/16/26 11:00, +1,1,373,2026,1,1,,0,,,1,16,13,1/16/26 12:00, +1,1,374,2026,1,1,,0,,,1,16,14,1/16/26 13:00, +1,1,375,2026,1,1,,0,,,1,16,15,1/16/26 14:00, +1,1,376,2026,1,1,,0,,,1,16,16,1/16/26 15:00, +1,1,377,2026,1,1,,0,,,1,16,17,1/16/26 16:00, +1,1,378,2026,1,1,,0,,,1,16,18,1/16/26 17:00, +1,1,379,2026,1,1,,0,,,1,16,19,1/16/26 18:00, +1,1,380,2026,1,1,,0,,,1,16,20,1/16/26 19:00, +1,1,381,2026,1,1,,0,,,1,16,21,1/16/26 20:00, +1,1,382,2026,1,1,,0,,,1,16,22,1/16/26 21:00, +1,1,383,2026,1,1,,0,,,1,16,23,1/16/26 22:00, +1,1,384,2026,1,1,,0,,,1,16,24,1/16/26 23:00, +1,1,385,2026,1,1,,0,,,1,17,1,1/17/26 0:00, +1,1,386,2026,1,1,,0,,,1,17,2,1/17/26 1:00, +1,1,387,2026,1,1,,0,,,1,17,3,1/17/26 2:00, +1,1,388,2026,1,1,,0,,,1,17,4,1/17/26 3:00, +1,1,389,2026,1,1,,0,,,1,17,5,1/17/26 4:00, +1,1,390,2026,1,1,,0,,,1,17,6,1/17/26 5:00, +1,1,391,2026,1,1,,0,,,1,17,7,1/17/26 6:00, +1,1,392,2026,1,1,,0,,,1,17,8,1/17/26 7:00, +1,1,393,2026,1,1,,0,,,1,17,9,1/17/26 8:00, +1,1,394,2026,1,1,,0,,,1,17,10,1/17/26 9:00, +1,1,395,2026,1,1,,0,,,1,17,11,1/17/26 10:00, +1,1,396,2026,1,1,,0,,,1,17,12,1/17/26 11:00, +1,1,397,2026,1,1,,0,,,1,17,13,1/17/26 12:00, +1,1,398,2026,1,1,,0,,,1,17,14,1/17/26 13:00, +1,1,399,2026,1,1,,0,,,1,17,15,1/17/26 14:00, +1,1,400,2026,1,1,,0,,,1,17,16,1/17/26 15:00, +1,1,401,2026,1,1,,0,,,1,17,17,1/17/26 16:00, +1,1,402,2026,1,1,,0,,,1,17,18,1/17/26 17:00, +1,1,403,2026,1,1,,0,,,1,17,19,1/17/26 18:00, +1,1,404,2026,1,1,,0,,,1,17,20,1/17/26 19:00, +1,1,405,2026,1,1,,0,,,1,17,21,1/17/26 20:00, +1,1,406,2026,1,1,,0,,,1,17,22,1/17/26 21:00, +1,1,407,2026,1,1,,0,,,1,17,23,1/17/26 22:00, +1,1,408,2026,1,1,,0,,,1,17,24,1/17/26 23:00, +1,1,409,2026,1,1,,0,,,1,18,1,1/18/26 0:00, +1,1,410,2026,1,1,,0,,,1,18,2,1/18/26 1:00, +1,1,411,2026,1,1,,0,,,1,18,3,1/18/26 2:00, +1,1,412,2026,1,1,,0,,,1,18,4,1/18/26 3:00, +1,1,413,2026,1,1,,0,,,1,18,5,1/18/26 4:00, +1,1,414,2026,1,1,,0,,,1,18,6,1/18/26 5:00, +1,1,415,2026,1,1,,0,,,1,18,7,1/18/26 6:00, +1,1,416,2026,1,1,,0,,,1,18,8,1/18/26 7:00, +1,1,417,2026,1,1,,0,,,1,18,9,1/18/26 8:00, +1,1,418,2026,1,1,,0,,,1,18,10,1/18/26 9:00, +1,1,419,2026,1,1,,0,,,1,18,11,1/18/26 10:00, +1,1,420,2026,1,1,,0,,,1,18,12,1/18/26 11:00, +1,1,421,2026,1,1,,0,,,1,18,13,1/18/26 12:00, +1,1,422,2026,1,1,,0,,,1,18,14,1/18/26 13:00, +1,1,423,2026,1,1,,0,,,1,18,15,1/18/26 14:00, +1,1,424,2026,1,1,,0,,,1,18,16,1/18/26 15:00, +1,1,425,2026,1,1,,0,,,1,18,17,1/18/26 16:00, +1,1,426,2026,1,1,,0,,,1,18,18,1/18/26 17:00, +1,1,427,2026,1,1,,0,,,1,18,19,1/18/26 18:00, +1,1,428,2026,1,1,,0,,,1,18,20,1/18/26 19:00, +1,1,429,2026,1,1,,0,,,1,18,21,1/18/26 20:00, +1,1,430,2026,1,1,,0,,,1,18,22,1/18/26 21:00, +1,1,431,2026,1,1,,0,,,1,18,23,1/18/26 22:00, +1,1,432,2026,1,1,,0,,,1,18,24,1/18/26 23:00, +1,1,433,2026,1,1,,0,,,1,19,1,1/19/26 0:00, +1,1,434,2026,1,1,,0,,,1,19,2,1/19/26 1:00, +1,1,435,2026,1,1,,0,,,1,19,3,1/19/26 2:00, +1,1,436,2026,1,1,,0,,,1,19,4,1/19/26 3:00, +1,1,437,2026,1,1,,0,,,1,19,5,1/19/26 4:00, +1,1,438,2026,1,1,,0,,,1,19,6,1/19/26 5:00, +1,1,439,2026,1,1,,0,,,1,19,7,1/19/26 6:00, +1,1,440,2026,1,1,,0,,,1,19,8,1/19/26 7:00, +1,1,441,2026,1,1,,0,,,1,19,9,1/19/26 8:00, +1,1,442,2026,1,1,,0,,,1,19,10,1/19/26 9:00, +1,1,443,2026,1,1,,0,,,1,19,11,1/19/26 10:00, +1,1,444,2026,1,1,,0,,,1,19,12,1/19/26 11:00, +1,1,445,2026,1,1,,0,,,1,19,13,1/19/26 12:00, +1,1,446,2026,1,1,,0,,,1,19,14,1/19/26 13:00, +1,1,447,2026,1,1,,0,,,1,19,15,1/19/26 14:00, +1,1,448,2026,1,1,,0,,,1,19,16,1/19/26 15:00, +1,1,449,2026,1,1,,0,,,1,19,17,1/19/26 16:00, +1,1,450,2026,1,1,,0,,,1,19,18,1/19/26 17:00, +1,1,451,2026,1,1,,0,,,1,19,19,1/19/26 18:00, +1,1,452,2026,1,1,,0,,,1,19,20,1/19/26 19:00, +1,1,453,2026,1,1,,0,,,1,19,21,1/19/26 20:00, +1,1,454,2026,1,1,,0,,,1,19,22,1/19/26 21:00, +1,1,455,2026,1,1,,0,,,1,19,23,1/19/26 22:00, +1,1,456,2026,1,1,,0,,,1,19,24,1/19/26 23:00, +1,1,457,2026,1,1,,0,,,1,20,1,1/20/26 0:00, +1,1,458,2026,1,1,,0,,,1,20,2,1/20/26 1:00, +1,1,459,2026,1,1,,0,,,1,20,3,1/20/26 2:00, +1,1,460,2026,1,1,,0,,,1,20,4,1/20/26 3:00, +1,1,461,2026,1,1,,0,,,1,20,5,1/20/26 4:00, +1,1,462,2026,1,1,,0,,,1,20,6,1/20/26 5:00, +1,1,463,2026,1,1,,0,,,1,20,7,1/20/26 6:00, +1,1,464,2026,1,1,,0,,,1,20,8,1/20/26 7:00, +1,1,465,2026,1,1,,0,,,1,20,9,1/20/26 8:00, +1,1,466,2026,1,1,,0,,,1,20,10,1/20/26 9:00, +1,1,467,2026,1,1,,0,,,1,20,11,1/20/26 10:00, +1,1,468,2026,1,1,,0,,,1,20,12,1/20/26 11:00, +1,1,469,2026,1,1,,0,,,1,20,13,1/20/26 12:00, +1,1,470,2026,1,1,,0,,,1,20,14,1/20/26 13:00, +1,1,471,2026,1,1,,0,,,1,20,15,1/20/26 14:00, +1,1,472,2026,1,1,,0,,,1,20,16,1/20/26 15:00, +1,1,473,2026,1,1,,0,,,1,20,17,1/20/26 16:00, +1,1,474,2026,1,1,,0,,,1,20,18,1/20/26 17:00, +1,1,475,2026,1,1,,0,,,1,20,19,1/20/26 18:00, +1,1,476,2026,1,1,,0,,,1,20,20,1/20/26 19:00, +1,1,477,2026,1,1,,0,,,1,20,21,1/20/26 20:00, +1,1,478,2026,1,1,,0,,,1,20,22,1/20/26 21:00, +1,1,479,2026,1,1,,0,,,1,20,23,1/20/26 22:00, +1,1,480,2026,1,1,,0,,,1,20,24,1/20/26 23:00, +1,1,481,2026,1,1,,0,,,1,21,1,1/21/26 0:00, +1,1,482,2026,1,1,,0,,,1,21,2,1/21/26 1:00, +1,1,483,2026,1,1,,0,,,1,21,3,1/21/26 2:00, +1,1,484,2026,1,1,,0,,,1,21,4,1/21/26 3:00, +1,1,485,2026,1,1,,0,,,1,21,5,1/21/26 4:00, +1,1,486,2026,1,1,,0,,,1,21,6,1/21/26 5:00, +1,1,487,2026,1,1,,0,,,1,21,7,1/21/26 6:00, +1,1,488,2026,1,1,,0,,,1,21,8,1/21/26 7:00, +1,1,489,2026,1,1,,0,,,1,21,9,1/21/26 8:00, +1,1,490,2026,1,1,,0,,,1,21,10,1/21/26 9:00, +1,1,491,2026,1,1,,0,,,1,21,11,1/21/26 10:00, +1,1,492,2026,1,1,,0,,,1,21,12,1/21/26 11:00, +1,1,493,2026,1,1,,0,,,1,21,13,1/21/26 12:00, +1,1,494,2026,1,1,,0,,,1,21,14,1/21/26 13:00, +1,1,495,2026,1,1,,0,,,1,21,15,1/21/26 14:00, +1,1,496,2026,1,1,,0,,,1,21,16,1/21/26 15:00, +1,1,497,2026,1,1,,0,,,1,21,17,1/21/26 16:00, +1,1,498,2026,1,1,,0,,,1,21,18,1/21/26 17:00, +1,1,499,2026,1,1,,0,,,1,21,19,1/21/26 18:00, +1,1,500,2026,1,1,,0,,,1,21,20,1/21/26 19:00, +1,1,501,2026,1,1,,0,,,1,21,21,1/21/26 20:00, +1,1,502,2026,1,1,,0,,,1,21,22,1/21/26 21:00, +1,1,503,2026,1,1,,0,,,1,21,23,1/21/26 22:00, +1,1,504,2026,1,1,,0,,,1,21,24,1/21/26 23:00, +1,1,505,2026,1,1,,0,,,1,22,1,1/22/26 0:00, +1,1,506,2026,1,1,,0,,,1,22,2,1/22/26 1:00, +1,1,507,2026,1,1,,0,,,1,22,3,1/22/26 2:00, +1,1,508,2026,1,1,,0,,,1,22,4,1/22/26 3:00, +1,1,509,2026,1,1,,0,,,1,22,5,1/22/26 4:00, +1,1,510,2026,1,1,,0,,,1,22,6,1/22/26 5:00, +1,1,511,2026,1,1,,0,,,1,22,7,1/22/26 6:00, +1,1,512,2026,1,1,,0,,,1,22,8,1/22/26 7:00, +1,1,513,2026,1,1,,0,,,1,22,9,1/22/26 8:00, +1,1,514,2026,1,1,,0,,,1,22,10,1/22/26 9:00, +1,1,515,2026,1,1,,0,,,1,22,11,1/22/26 10:00, +1,1,516,2026,1,1,,0,,,1,22,12,1/22/26 11:00, +1,1,517,2026,1,1,,0,,,1,22,13,1/22/26 12:00, +1,1,518,2026,1,1,,0,,,1,22,14,1/22/26 13:00, +1,1,519,2026,1,1,,0,,,1,22,15,1/22/26 14:00, +1,1,520,2026,1,1,,0,,,1,22,16,1/22/26 15:00, +1,1,521,2026,1,1,,0,,,1,22,17,1/22/26 16:00, +1,1,522,2026,1,1,,0,,,1,22,18,1/22/26 17:00, +1,1,523,2026,1,1,,0,,,1,22,19,1/22/26 18:00, +1,1,524,2026,1,1,,0,,,1,22,20,1/22/26 19:00, +1,1,525,2026,1,1,,0,,,1,22,21,1/22/26 20:00, +1,1,526,2026,1,1,,0,,,1,22,22,1/22/26 21:00, +1,1,527,2026,1,1,,0,,,1,22,23,1/22/26 22:00, +1,1,528,2026,1,1,,0,,,1,22,24,1/22/26 23:00, +1,1,529,2026,1,1,,0,,,1,23,1,1/23/26 0:00, +1,1,530,2026,1,1,,0,,,1,23,2,1/23/26 1:00, +1,1,531,2026,1,1,,0,,,1,23,3,1/23/26 2:00, +1,1,532,2026,1,1,,0,,,1,23,4,1/23/26 3:00, +1,1,533,2026,1,1,,0,,,1,23,5,1/23/26 4:00, +1,1,534,2026,1,1,,0,,,1,23,6,1/23/26 5:00, +1,1,535,2026,1,1,,0,,,1,23,7,1/23/26 6:00, +1,1,536,2026,1,1,,0,,,1,23,8,1/23/26 7:00, +1,1,537,2026,1,1,,0,,,1,23,9,1/23/26 8:00, +1,1,538,2026,1,1,,0,,,1,23,10,1/23/26 9:00, +1,1,539,2026,1,1,,0,,,1,23,11,1/23/26 10:00, +1,1,540,2026,1,1,,0,,,1,23,12,1/23/26 11:00, +1,1,541,2026,1,1,,0,,,1,23,13,1/23/26 12:00, +1,1,542,2026,1,1,,0,,,1,23,14,1/23/26 13:00, +1,1,543,2026,1,1,,0,,,1,23,15,1/23/26 14:00, +1,1,544,2026,1,1,,0,,,1,23,16,1/23/26 15:00, +1,1,545,2026,1,1,,0,,,1,23,17,1/23/26 16:00, +1,1,546,2026,1,1,,0,,,1,23,18,1/23/26 17:00, +1,1,547,2026,1,1,,0,,,1,23,19,1/23/26 18:00, +1,1,548,2026,1,1,,0,,,1,23,20,1/23/26 19:00, +1,1,549,2026,1,1,,0,,,1,23,21,1/23/26 20:00, +1,1,550,2026,1,1,,0,,,1,23,22,1/23/26 21:00, +1,1,551,2026,1,1,,0,,,1,23,23,1/23/26 22:00, +1,1,552,2026,1,1,,0,,,1,23,24,1/23/26 23:00, +1,1,553,2026,1,1,,0,,,1,24,1,1/24/26 0:00, +1,1,554,2026,1,1,,0,,,1,24,2,1/24/26 1:00, +1,1,555,2026,1,1,,0,,,1,24,3,1/24/26 2:00, +1,1,556,2026,1,1,,0,,,1,24,4,1/24/26 3:00, +1,1,557,2026,1,1,,0,,,1,24,5,1/24/26 4:00, +1,1,558,2026,1,1,,0,,,1,24,6,1/24/26 5:00, +1,1,559,2026,1,1,,0,,,1,24,7,1/24/26 6:00, +1,1,560,2026,1,1,,0,,,1,24,8,1/24/26 7:00, +1,1,561,2026,1,1,,0,,,1,24,9,1/24/26 8:00, +1,1,562,2026,1,1,,0,,,1,24,10,1/24/26 9:00, +1,1,563,2026,1,1,,0,,,1,24,11,1/24/26 10:00, +1,1,564,2026,1,1,,0,,,1,24,12,1/24/26 11:00, +1,1,565,2026,1,1,,0,,,1,24,13,1/24/26 12:00, +1,1,566,2026,1,1,,0,,,1,24,14,1/24/26 13:00, +1,1,567,2026,1,1,,0,,,1,24,15,1/24/26 14:00, +1,1,568,2026,1,1,,0,,,1,24,16,1/24/26 15:00, +1,1,569,2026,1,1,,0,,,1,24,17,1/24/26 16:00, +1,1,570,2026,1,1,,0,,,1,24,18,1/24/26 17:00, +1,1,571,2026,1,1,,0,,,1,24,19,1/24/26 18:00, +1,1,572,2026,1,1,,0,,,1,24,20,1/24/26 19:00, +1,1,573,2026,1,1,,0,,,1,24,21,1/24/26 20:00, +1,1,574,2026,1,1,,0,,,1,24,22,1/24/26 21:00, +1,1,575,2026,1,1,,0,,,1,24,23,1/24/26 22:00, +1,1,576,2026,1,1,,0,,,1,24,24,1/24/26 23:00, +1,1,577,2026,1,1,,0,,,1,25,1,1/25/26 0:00, +1,1,578,2026,1,1,,0,,,1,25,2,1/25/26 1:00, +1,1,579,2026,1,1,,0,,,1,25,3,1/25/26 2:00, +1,1,580,2026,1,1,,0,,,1,25,4,1/25/26 3:00, +1,1,581,2026,1,1,,0,,,1,25,5,1/25/26 4:00, +1,1,582,2026,1,1,,0,,,1,25,6,1/25/26 5:00, +1,1,583,2026,1,1,,0,,,1,25,7,1/25/26 6:00, +1,1,584,2026,1,1,,0,,,1,25,8,1/25/26 7:00, +1,1,585,2026,1,1,,0,,,1,25,9,1/25/26 8:00, +1,1,586,2026,1,1,,0,,,1,25,10,1/25/26 9:00, +1,1,587,2026,1,1,,0,,,1,25,11,1/25/26 10:00, +1,1,588,2026,1,1,,0,,,1,25,12,1/25/26 11:00, +1,1,589,2026,1,1,,0,,,1,25,13,1/25/26 12:00, +1,1,590,2026,1,1,,0,,,1,25,14,1/25/26 13:00, +1,1,591,2026,1,1,,0,,,1,25,15,1/25/26 14:00, +1,1,592,2026,1,1,,0,,,1,25,16,1/25/26 15:00, +1,1,593,2026,1,1,,0,,,1,25,17,1/25/26 16:00, +1,1,594,2026,1,1,,0,,,1,25,18,1/25/26 17:00, +1,1,595,2026,1,1,,0,,,1,25,19,1/25/26 18:00, +1,1,596,2026,1,1,,0,,,1,25,20,1/25/26 19:00, +1,1,597,2026,1,1,,0,,,1,25,21,1/25/26 20:00, +1,1,598,2026,1,1,,0,,,1,25,22,1/25/26 21:00, +1,1,599,2026,1,1,,0,,,1,25,23,1/25/26 22:00, +1,1,600,2026,1,1,,0,,,1,25,24,1/25/26 23:00, +1,1,601,2026,1,1,,0,,,1,26,1,1/26/26 0:00, +1,1,602,2026,1,1,,0,,,1,26,2,1/26/26 1:00, +1,1,603,2026,1,1,,0,,,1,26,3,1/26/26 2:00, +1,1,604,2026,1,1,,0,,,1,26,4,1/26/26 3:00, +1,1,605,2026,1,1,,0,,,1,26,5,1/26/26 4:00, +1,1,606,2026,1,1,,0,,,1,26,6,1/26/26 5:00, +1,1,607,2026,1,1,,0,,,1,26,7,1/26/26 6:00, +1,1,608,2026,1,1,,0,,,1,26,8,1/26/26 7:00, +1,1,609,2026,1,1,,0,,,1,26,9,1/26/26 8:00, +1,1,610,2026,1,1,,0,,,1,26,10,1/26/26 9:00, +1,1,611,2026,1,1,,0,,,1,26,11,1/26/26 10:00, +1,1,612,2026,1,1,,0,,,1,26,12,1/26/26 11:00, +1,1,613,2026,1,1,,0,,,1,26,13,1/26/26 12:00, +1,1,614,2026,1,1,,0,,,1,26,14,1/26/26 13:00, +1,1,615,2026,1,1,,0,,,1,26,15,1/26/26 14:00, +1,1,616,2026,1,1,,0,,,1,26,16,1/26/26 15:00, +1,1,617,2026,1,1,,0,,,1,26,17,1/26/26 16:00, +1,1,618,2026,1,1,,0,,,1,26,18,1/26/26 17:00, +1,1,619,2026,1,1,,0,,,1,26,19,1/26/26 18:00, +1,1,620,2026,1,1,,0,,,1,26,20,1/26/26 19:00, +1,1,621,2026,1,1,,0,,,1,26,21,1/26/26 20:00, +1,1,622,2026,1,1,,0,,,1,26,22,1/26/26 21:00, +1,1,623,2026,1,1,,0,,,1,26,23,1/26/26 22:00, +1,1,624,2026,1,1,,0,,,1,26,24,1/26/26 23:00, +1,1,625,2026,1,1,,0,,,1,27,1,1/27/26 0:00, +1,1,626,2026,1,1,,0,,,1,27,2,1/27/26 1:00, +1,1,627,2026,1,1,,0,,,1,27,3,1/27/26 2:00, +1,1,628,2026,1,1,,0,,,1,27,4,1/27/26 3:00, +1,1,629,2026,1,1,,0,,,1,27,5,1/27/26 4:00, +1,1,630,2026,1,1,,0,,,1,27,6,1/27/26 5:00, +1,1,631,2026,1,1,,0,,,1,27,7,1/27/26 6:00, +1,1,632,2026,1,1,,0,,,1,27,8,1/27/26 7:00, +1,1,633,2026,1,1,,0,,,1,27,9,1/27/26 8:00, +1,1,634,2026,1,1,,0,,,1,27,10,1/27/26 9:00, +1,1,635,2026,1,1,,0,,,1,27,11,1/27/26 10:00, +1,1,636,2026,1,1,,0,,,1,27,12,1/27/26 11:00, +1,1,637,2026,1,1,,0,,,1,27,13,1/27/26 12:00, +1,1,638,2026,1,1,,0,,,1,27,14,1/27/26 13:00, +1,1,639,2026,1,1,,0,,,1,27,15,1/27/26 14:00, +1,1,640,2026,1,1,,0,,,1,27,16,1/27/26 15:00, +1,1,641,2026,1,1,,0,,,1,27,17,1/27/26 16:00, +1,1,642,2026,1,1,,0,,,1,27,18,1/27/26 17:00, +1,1,643,2026,1,1,,0,,,1,27,19,1/27/26 18:00, +1,1,644,2026,1,1,,0,,,1,27,20,1/27/26 19:00, +1,1,645,2026,1,1,,0,,,1,27,21,1/27/26 20:00, +1,1,646,2026,1,1,,0,,,1,27,22,1/27/26 21:00, +1,1,647,2026,1,1,,0,,,1,27,23,1/27/26 22:00, +1,1,648,2026,1,1,,0,,,1,27,24,1/27/26 23:00, +1,1,649,2026,1,1,,0,,,1,28,1,1/28/26 0:00, +1,1,650,2026,1,1,,0,,,1,28,2,1/28/26 1:00, +1,1,651,2026,1,1,,0,,,1,28,3,1/28/26 2:00, +1,1,652,2026,1,1,,0,,,1,28,4,1/28/26 3:00, +1,1,653,2026,1,1,,0,,,1,28,5,1/28/26 4:00, +1,1,654,2026,1,1,,0,,,1,28,6,1/28/26 5:00, +1,1,655,2026,1,1,,0,,,1,28,7,1/28/26 6:00, +1,1,656,2026,1,1,,0,,,1,28,8,1/28/26 7:00, +1,1,657,2026,1,1,,0,,,1,28,9,1/28/26 8:00, +1,1,658,2026,1,1,,0,,,1,28,10,1/28/26 9:00, +1,1,659,2026,1,1,,0,,,1,28,11,1/28/26 10:00, +1,1,660,2026,1,1,,0,,,1,28,12,1/28/26 11:00, +1,1,661,2026,1,1,,0,,,1,28,13,1/28/26 12:00, +1,1,662,2026,1,1,,0,,,1,28,14,1/28/26 13:00, +1,1,663,2026,1,1,,0,,,1,28,15,1/28/26 14:00, +1,1,664,2026,1,1,,0,,,1,28,16,1/28/26 15:00, +1,1,665,2026,1,1,,0,,,1,28,17,1/28/26 16:00, +1,1,666,2026,1,1,,0,,,1,28,18,1/28/26 17:00, +1,1,667,2026,1,1,,0,,,1,28,19,1/28/26 18:00, +1,1,668,2026,1,1,,0,,,1,28,20,1/28/26 19:00, +1,1,669,2026,1,1,,0,,,1,28,21,1/28/26 20:00, +1,1,670,2026,1,1,,0,,,1,28,22,1/28/26 21:00, +1,1,671,2026,1,1,,0,,,1,28,23,1/28/26 22:00, +1,1,672,2026,1,1,,0,,,1,28,24,1/28/26 23:00, +1,1,673,2026,1,1,,0,,,1,29,1,1/29/26 0:00, +1,1,674,2026,1,1,,0,,,1,29,2,1/29/26 1:00, +1,1,675,2026,1,1,,0,,,1,29,3,1/29/26 2:00, +1,1,676,2026,1,1,,0,,,1,29,4,1/29/26 3:00, +1,1,677,2026,1,1,,0,,,1,29,5,1/29/26 4:00, +1,1,678,2026,1,1,,0,,,1,29,6,1/29/26 5:00, +1,1,679,2026,1,1,,0,,,1,29,7,1/29/26 6:00, +1,1,680,2026,1,1,,0,,,1,29,8,1/29/26 7:00, +1,1,681,2026,1,1,,0,,,1,29,9,1/29/26 8:00, +1,1,682,2026,1,1,,0,,,1,29,10,1/29/26 9:00, +1,1,683,2026,1,1,,0,,,1,29,11,1/29/26 10:00, +1,1,684,2026,1,1,,0,,,1,29,12,1/29/26 11:00, +1,1,685,2026,1,1,,0,,,1,29,13,1/29/26 12:00, +1,1,686,2026,1,1,,0,,,1,29,14,1/29/26 13:00, +1,1,687,2026,1,1,,0,,,1,29,15,1/29/26 14:00, +1,1,688,2026,1,1,,0,,,1,29,16,1/29/26 15:00, +1,1,689,2026,1,1,,0,,,1,29,17,1/29/26 16:00, +1,1,690,2026,1,1,,0,,,1,29,18,1/29/26 17:00, +1,1,691,2026,1,1,,0,,,1,29,19,1/29/26 18:00, +1,1,692,2026,1,1,,0,,,1,29,20,1/29/26 19:00, +1,1,693,2026,1,1,,0,,,1,29,21,1/29/26 20:00, +1,1,694,2026,1,1,,0,,,1,29,22,1/29/26 21:00, +1,1,695,2026,1,1,,0,,,1,29,23,1/29/26 22:00, +1,1,696,2026,1,1,,0,,,1,29,24,1/29/26 23:00, +1,1,697,2026,1,1,,0,,,1,30,1,1/30/26 0:00, +1,1,698,2026,1,1,,0,,,1,30,2,1/30/26 1:00, +1,1,699,2026,1,1,,0,,,1,30,3,1/30/26 2:00, +1,1,700,2026,1,1,,0,,,1,30,4,1/30/26 3:00, +1,1,701,2026,1,1,,0,,,1,30,5,1/30/26 4:00, +1,1,702,2026,1,1,,0,,,1,30,6,1/30/26 5:00, +1,1,703,2026,1,1,,0,,,1,30,7,1/30/26 6:00, +1,1,704,2026,1,1,,0,,,1,30,8,1/30/26 7:00, +1,1,705,2026,1,1,,0,,,1,30,9,1/30/26 8:00, +1,1,706,2026,1,1,,0,,,1,30,10,1/30/26 9:00, +1,1,707,2026,1,1,,0,,,1,30,11,1/30/26 10:00, +1,1,708,2026,1,1,,0,,,1,30,12,1/30/26 11:00, +1,1,709,2026,1,1,,0,,,1,30,13,1/30/26 12:00, +1,1,710,2026,1,1,,0,,,1,30,14,1/30/26 13:00, +1,1,711,2026,1,1,,0,,,1,30,15,1/30/26 14:00, +1,1,712,2026,1,1,,0,,,1,30,16,1/30/26 15:00, +1,1,713,2026,1,1,,0,,,1,30,17,1/30/26 16:00, +1,1,714,2026,1,1,,0,,,1,30,18,1/30/26 17:00, +1,1,715,2026,1,1,,0,,,1,30,19,1/30/26 18:00, +1,1,716,2026,1,1,,0,,,1,30,20,1/30/26 19:00, +1,1,717,2026,1,1,,0,,,1,30,21,1/30/26 20:00, +1,1,718,2026,1,1,,0,,,1,30,22,1/30/26 21:00, +1,1,719,2026,1,1,,0,,,1,30,23,1/30/26 22:00, +1,1,720,2026,1,1,,0,,,1,30,24,1/30/26 23:00, +1,1,721,2026,1,1,,0,,,1,31,1,1/31/26 0:00, +1,1,722,2026,1,1,,0,,,1,31,2,1/31/26 1:00, +1,1,723,2026,1,1,,0,,,1,31,3,1/31/26 2:00, +1,1,724,2026,1,1,,0,,,1,31,4,1/31/26 3:00, +1,1,725,2026,1,1,,0,,,1,31,5,1/31/26 4:00, +1,1,726,2026,1,1,,0,,,1,31,6,1/31/26 5:00, +1,1,727,2026,1,1,,0,,,1,31,7,1/31/26 6:00, +1,1,728,2026,1,1,,0,,,1,31,8,1/31/26 7:00, +1,1,729,2026,1,1,,0,,,1,31,9,1/31/26 8:00, +1,1,730,2026,1,1,,0,,,1,31,10,1/31/26 9:00, +1,1,731,2026,1,1,,0,,,1,31,11,1/31/26 10:00, +1,1,732,2026,1,1,,0,,,1,31,12,1/31/26 11:00, +1,1,733,2026,1,1,,0,,,1,31,13,1/31/26 12:00, +1,1,734,2026,1,1,,0,,,1,31,14,1/31/26 13:00, +1,1,735,2026,1,1,,0,,,1,31,15,1/31/26 14:00, +1,1,736,2026,1,1,,0,,,1,31,16,1/31/26 15:00, +1,1,737,2026,1,1,,0,,,1,31,17,1/31/26 16:00, +1,1,738,2026,1,1,,0,,,1,31,18,1/31/26 17:00, +1,1,739,2026,1,1,,0,,,1,31,19,1/31/26 18:00, +1,1,740,2026,1,1,,0,,,1,31,20,1/31/26 19:00, +1,1,741,2026,1,1,,0,,,1,31,21,1/31/26 20:00, +1,1,742,2026,1,1,,0,,,1,31,22,1/31/26 21:00, +1,1,743,2026,1,1,,0,,,1,31,23,1/31/26 22:00, +1,1,744,2026,1,1,,0,,,1,31,24,1/31/26 23:00, +1,1,745,2026,1,1,,0,,,2,1,1,2/1/26 0:00, +1,1,746,2026,1,1,,0,,,2,1,2,2/1/26 1:00, +1,1,747,2026,1,1,,0,,,2,1,3,2/1/26 2:00, +1,1,748,2026,1,1,,0,,,2,1,4,2/1/26 3:00, +1,1,749,2026,1,1,,0,,,2,1,5,2/1/26 4:00, +1,1,750,2026,1,1,,0,,,2,1,6,2/1/26 5:00, +1,1,751,2026,1,1,,0,,,2,1,7,2/1/26 6:00, +1,1,752,2026,1,1,,0,,,2,1,8,2/1/26 7:00, +1,1,753,2026,1,1,,0,,,2,1,9,2/1/26 8:00, +1,1,754,2026,1,1,,0,,,2,1,10,2/1/26 9:00, +1,1,755,2026,1,1,,0,,,2,1,11,2/1/26 10:00, +1,1,756,2026,1,1,,0,,,2,1,12,2/1/26 11:00, +1,1,757,2026,1,1,,0,,,2,1,13,2/1/26 12:00, +1,1,758,2026,1,1,,0,,,2,1,14,2/1/26 13:00, +1,1,759,2026,1,1,,0,,,2,1,15,2/1/26 14:00, +1,1,760,2026,1,1,,0,,,2,1,16,2/1/26 15:00, +1,1,761,2026,1,1,,0,,,2,1,17,2/1/26 16:00, +1,1,762,2026,1,1,,0,,,2,1,18,2/1/26 17:00, +1,1,763,2026,1,1,,0,,,2,1,19,2/1/26 18:00, +1,1,764,2026,1,1,,0,,,2,1,20,2/1/26 19:00, +1,1,765,2026,1,1,,0,,,2,1,21,2/1/26 20:00, +1,1,766,2026,1,1,,0,,,2,1,22,2/1/26 21:00, +1,1,767,2026,1,1,,0,,,2,1,23,2/1/26 22:00, +1,1,768,2026,1,1,,0,,,2,1,24,2/1/26 23:00, +1,1,769,2026,1,1,,0,,,2,2,1,2/2/26 0:00, +1,1,770,2026,1,1,,0,,,2,2,2,2/2/26 1:00, +1,1,771,2026,1,1,,0,,,2,2,3,2/2/26 2:00, +1,1,772,2026,1,1,,0,,,2,2,4,2/2/26 3:00, +1,1,773,2026,1,1,,0,,,2,2,5,2/2/26 4:00, +1,1,774,2026,1,1,,0,,,2,2,6,2/2/26 5:00, +1,1,775,2026,1,1,,0,,,2,2,7,2/2/26 6:00, +1,1,776,2026,1,1,,0,,,2,2,8,2/2/26 7:00, +1,1,777,2026,1,1,,0,,,2,2,9,2/2/26 8:00, +1,1,778,2026,1,1,,0,,,2,2,10,2/2/26 9:00, +1,1,779,2026,1,1,,0,,,2,2,11,2/2/26 10:00, +1,1,780,2026,1,1,,0,,,2,2,12,2/2/26 11:00, +1,1,781,2026,1,1,,0,,,2,2,13,2/2/26 12:00, +1,1,782,2026,1,1,,0,,,2,2,14,2/2/26 13:00, +1,1,783,2026,1,1,,0,,,2,2,15,2/2/26 14:00, +1,1,784,2026,1,1,,0,,,2,2,16,2/2/26 15:00, +1,1,785,2026,1,1,,0,,,2,2,17,2/2/26 16:00, +1,1,786,2026,1,1,,0,,,2,2,18,2/2/26 17:00, +1,1,787,2026,1,1,,0,,,2,2,19,2/2/26 18:00, +1,1,788,2026,1,1,,0,,,2,2,20,2/2/26 19:00, +1,1,789,2026,1,1,,0,,,2,2,21,2/2/26 20:00, +1,1,790,2026,1,1,,0,,,2,2,22,2/2/26 21:00, +1,1,791,2026,1,1,,0,,,2,2,23,2/2/26 22:00, +1,1,792,2026,1,1,,0,,,2,2,24,2/2/26 23:00, +1,1,793,2026,1,1,,0,,,2,3,1,2/3/26 0:00, +1,1,794,2026,1,1,,0,,,2,3,2,2/3/26 1:00, +1,1,795,2026,1,1,,0,,,2,3,3,2/3/26 2:00, +1,1,796,2026,1,1,,0,,,2,3,4,2/3/26 3:00, +1,1,797,2026,1,1,,0,,,2,3,5,2/3/26 4:00, +1,1,798,2026,1,1,,0,,,2,3,6,2/3/26 5:00, +1,1,799,2026,1,1,,0,,,2,3,7,2/3/26 6:00, +1,1,800,2026,1,1,,0,,,2,3,8,2/3/26 7:00, +1,1,801,2026,1,1,,0,,,2,3,9,2/3/26 8:00, +1,1,802,2026,1,1,,0,,,2,3,10,2/3/26 9:00, +1,1,803,2026,1,1,,0,,,2,3,11,2/3/26 10:00, +1,1,804,2026,1,1,,0,,,2,3,12,2/3/26 11:00, +1,1,805,2026,1,1,,0,,,2,3,13,2/3/26 12:00, +1,1,806,2026,1,1,,0,,,2,3,14,2/3/26 13:00, +1,1,807,2026,1,1,,0,,,2,3,15,2/3/26 14:00, +1,1,808,2026,1,1,,0,,,2,3,16,2/3/26 15:00, +1,1,809,2026,1,1,,0,,,2,3,17,2/3/26 16:00, +1,1,810,2026,1,1,,0,,,2,3,18,2/3/26 17:00, +1,1,811,2026,1,1,,0,,,2,3,19,2/3/26 18:00, +1,1,812,2026,1,1,,0,,,2,3,20,2/3/26 19:00, +1,1,813,2026,1,1,,0,,,2,3,21,2/3/26 20:00, +1,1,814,2026,1,1,,0,,,2,3,22,2/3/26 21:00, +1,1,815,2026,1,1,,0,,,2,3,23,2/3/26 22:00, +1,1,816,2026,1,1,,0,,,2,3,24,2/3/26 23:00, +1,1,817,2026,1,1,,0,,,2,4,1,2/4/26 0:00, +1,1,818,2026,1,1,,0,,,2,4,2,2/4/26 1:00, +1,1,819,2026,1,1,,0,,,2,4,3,2/4/26 2:00, +1,1,820,2026,1,1,,0,,,2,4,4,2/4/26 3:00, +1,1,821,2026,1,1,,0,,,2,4,5,2/4/26 4:00, +1,1,822,2026,1,1,,0,,,2,4,6,2/4/26 5:00, +1,1,823,2026,1,1,,0,,,2,4,7,2/4/26 6:00, +1,1,824,2026,1,1,,0,,,2,4,8,2/4/26 7:00, +1,1,825,2026,1,1,,0,,,2,4,9,2/4/26 8:00, +1,1,826,2026,1,1,,0,,,2,4,10,2/4/26 9:00, +1,1,827,2026,1,1,,0,,,2,4,11,2/4/26 10:00, +1,1,828,2026,1,1,,0,,,2,4,12,2/4/26 11:00, +1,1,829,2026,1,1,,0,,,2,4,13,2/4/26 12:00, +1,1,830,2026,1,1,,0,,,2,4,14,2/4/26 13:00, +1,1,831,2026,1,1,,0,,,2,4,15,2/4/26 14:00, +1,1,832,2026,1,1,,0,,,2,4,16,2/4/26 15:00, +1,1,833,2026,1,1,,0,,,2,4,17,2/4/26 16:00, +1,1,834,2026,1,1,,0,,,2,4,18,2/4/26 17:00, +1,1,835,2026,1,1,,0,,,2,4,19,2/4/26 18:00, +1,1,836,2026,1,1,,0,,,2,4,20,2/4/26 19:00, +1,1,837,2026,1,1,,0,,,2,4,21,2/4/26 20:00, +1,1,838,2026,1,1,,0,,,2,4,22,2/4/26 21:00, +1,1,839,2026,1,1,,0,,,2,4,23,2/4/26 22:00, +1,1,840,2026,1,1,,0,,,2,4,24,2/4/26 23:00, +1,1,841,2026,1,1,,0,,,2,5,1,2/5/26 0:00, +1,1,842,2026,1,1,,0,,,2,5,2,2/5/26 1:00, +1,1,843,2026,1,1,,0,,,2,5,3,2/5/26 2:00, +1,1,844,2026,1,1,,0,,,2,5,4,2/5/26 3:00, +1,1,845,2026,1,1,,0,,,2,5,5,2/5/26 4:00, +1,1,846,2026,1,1,,0,,,2,5,6,2/5/26 5:00, +1,1,847,2026,1,1,,0,,,2,5,7,2/5/26 6:00, +1,1,848,2026,1,1,,0,,,2,5,8,2/5/26 7:00, +1,1,849,2026,1,1,,0,,,2,5,9,2/5/26 8:00, +1,1,850,2026,1,1,,0,,,2,5,10,2/5/26 9:00, +1,1,851,2026,1,1,,0,,,2,5,11,2/5/26 10:00, +1,1,852,2026,1,1,,0,,,2,5,12,2/5/26 11:00, +1,1,853,2026,1,1,,0,,,2,5,13,2/5/26 12:00, +1,1,854,2026,1,1,,0,,,2,5,14,2/5/26 13:00, +1,1,855,2026,1,1,,0,,,2,5,15,2/5/26 14:00, +1,1,856,2026,1,1,,0,,,2,5,16,2/5/26 15:00, +1,1,857,2026,1,1,,0,,,2,5,17,2/5/26 16:00, +1,1,858,2026,1,1,,0,,,2,5,18,2/5/26 17:00, +1,1,859,2026,1,1,,0,,,2,5,19,2/5/26 18:00, +1,1,860,2026,1,1,,0,,,2,5,20,2/5/26 19:00, +1,1,861,2026,1,1,,0,,,2,5,21,2/5/26 20:00, +1,1,862,2026,1,1,,0,,,2,5,22,2/5/26 21:00, +1,1,863,2026,1,1,,0,,,2,5,23,2/5/26 22:00, +1,1,864,2026,1,1,,0,,,2,5,24,2/5/26 23:00, +1,1,865,2026,1,1,,0,,,2,6,1,2/6/26 0:00, +1,1,866,2026,1,1,,0,,,2,6,2,2/6/26 1:00, +1,1,867,2026,1,1,,0,,,2,6,3,2/6/26 2:00, +1,1,868,2026,1,1,,0,,,2,6,4,2/6/26 3:00, +1,1,869,2026,1,1,,0,,,2,6,5,2/6/26 4:00, +1,1,870,2026,1,1,,0,,,2,6,6,2/6/26 5:00, +1,1,871,2026,1,1,,0,,,2,6,7,2/6/26 6:00, +1,1,872,2026,1,1,,0,,,2,6,8,2/6/26 7:00, +1,1,873,2026,1,1,,0,,,2,6,9,2/6/26 8:00, +1,1,874,2026,1,1,,0,,,2,6,10,2/6/26 9:00, +1,1,875,2026,1,1,,0,,,2,6,11,2/6/26 10:00, +1,1,876,2026,1,1,,0,,,2,6,12,2/6/26 11:00, +1,1,877,2026,1,1,,0,,,2,6,13,2/6/26 12:00, +1,1,878,2026,1,1,,0,,,2,6,14,2/6/26 13:00, +1,1,879,2026,1,1,,0,,,2,6,15,2/6/26 14:00, +1,1,880,2026,1,1,,0,,,2,6,16,2/6/26 15:00, +1,1,881,2026,1,1,,0,,,2,6,17,2/6/26 16:00, +1,1,882,2026,1,1,,0,,,2,6,18,2/6/26 17:00, +1,1,883,2026,1,1,,0,,,2,6,19,2/6/26 18:00, +1,1,884,2026,1,1,,0,,,2,6,20,2/6/26 19:00, +1,1,885,2026,1,1,,0,,,2,6,21,2/6/26 20:00, +1,1,886,2026,1,1,,0,,,2,6,22,2/6/26 21:00, +1,1,887,2026,1,1,,0,,,2,6,23,2/6/26 22:00, +1,1,888,2026,1,1,,0,,,2,6,24,2/6/26 23:00, +1,1,889,2026,1,1,,0,,,2,7,1,2/7/26 0:00, +1,1,890,2026,1,1,,0,,,2,7,2,2/7/26 1:00, +1,1,891,2026,1,1,,0,,,2,7,3,2/7/26 2:00, +1,1,892,2026,1,1,,0,,,2,7,4,2/7/26 3:00, +1,1,893,2026,1,1,,0,,,2,7,5,2/7/26 4:00, +1,1,894,2026,1,1,,0,,,2,7,6,2/7/26 5:00, +1,1,895,2026,1,1,,0,,,2,7,7,2/7/26 6:00, +1,1,896,2026,1,1,,0,,,2,7,8,2/7/26 7:00, +1,1,897,2026,1,1,,0,,,2,7,9,2/7/26 8:00, +1,1,898,2026,1,1,,0,,,2,7,10,2/7/26 9:00, +1,1,899,2026,1,1,,0,,,2,7,11,2/7/26 10:00, +1,1,900,2026,1,1,,0,,,2,7,12,2/7/26 11:00, +1,1,901,2026,1,1,,0,,,2,7,13,2/7/26 12:00, +1,1,902,2026,1,1,,0,,,2,7,14,2/7/26 13:00, +1,1,903,2026,1,1,,0,,,2,7,15,2/7/26 14:00, +1,1,904,2026,1,1,,0,,,2,7,16,2/7/26 15:00, +1,1,905,2026,1,1,,0,,,2,7,17,2/7/26 16:00, +1,1,906,2026,1,1,,0,,,2,7,18,2/7/26 17:00, +1,1,907,2026,1,1,,0,,,2,7,19,2/7/26 18:00, +1,1,908,2026,1,1,,0,,,2,7,20,2/7/26 19:00, +1,1,909,2026,1,1,,0,,,2,7,21,2/7/26 20:00, +1,1,910,2026,1,1,,0,,,2,7,22,2/7/26 21:00, +1,1,911,2026,1,1,,0,,,2,7,23,2/7/26 22:00, +1,1,912,2026,1,1,,0,,,2,7,24,2/7/26 23:00, +1,1,913,2026,1,1,,0,,,2,8,1,2/8/26 0:00, +1,1,914,2026,1,1,,0,,,2,8,2,2/8/26 1:00, +1,1,915,2026,1,1,,0,,,2,8,3,2/8/26 2:00, +1,1,916,2026,1,1,,0,,,2,8,4,2/8/26 3:00, +1,1,917,2026,1,1,,0,,,2,8,5,2/8/26 4:00, +1,1,918,2026,1,1,,0,,,2,8,6,2/8/26 5:00, +1,1,919,2026,1,1,,0,,,2,8,7,2/8/26 6:00, +1,1,920,2026,1,1,,0,,,2,8,8,2/8/26 7:00, +1,1,921,2026,1,1,,0,,,2,8,9,2/8/26 8:00, +1,1,922,2026,1,1,,0,,,2,8,10,2/8/26 9:00, +1,1,923,2026,1,1,,0,,,2,8,11,2/8/26 10:00, +1,1,924,2026,1,1,,0,,,2,8,12,2/8/26 11:00, +1,1,925,2026,1,1,,0,,,2,8,13,2/8/26 12:00, +1,1,926,2026,1,1,,0,,,2,8,14,2/8/26 13:00, +1,1,927,2026,1,1,,0,,,2,8,15,2/8/26 14:00, +1,1,928,2026,1,1,,0,,,2,8,16,2/8/26 15:00, +1,1,929,2026,1,1,,0,,,2,8,17,2/8/26 16:00, +1,1,930,2026,1,1,,0,,,2,8,18,2/8/26 17:00, +1,1,931,2026,1,1,,0,,,2,8,19,2/8/26 18:00, +1,1,932,2026,1,1,,0,,,2,8,20,2/8/26 19:00, +1,1,933,2026,1,1,,0,,,2,8,21,2/8/26 20:00, +1,1,934,2026,1,1,,0,,,2,8,22,2/8/26 21:00, +1,1,935,2026,1,1,,0,,,2,8,23,2/8/26 22:00, +1,1,936,2026,1,1,,0,,,2,8,24,2/8/26 23:00, +1,1,937,2026,1,1,,0,,,2,9,1,2/9/26 0:00, +1,1,938,2026,1,1,,0,,,2,9,2,2/9/26 1:00, +1,1,939,2026,1,1,,0,,,2,9,3,2/9/26 2:00, +1,1,940,2026,1,1,,0,,,2,9,4,2/9/26 3:00, +1,1,941,2026,1,1,,0,,,2,9,5,2/9/26 4:00, +1,1,942,2026,1,1,,0,,,2,9,6,2/9/26 5:00, +1,1,943,2026,1,1,,0,,,2,9,7,2/9/26 6:00, +1,1,944,2026,1,1,,0,,,2,9,8,2/9/26 7:00, +1,1,945,2026,1,1,,0,,,2,9,9,2/9/26 8:00, +1,1,946,2026,1,1,,0,,,2,9,10,2/9/26 9:00, +1,1,947,2026,1,1,,0,,,2,9,11,2/9/26 10:00, +1,1,948,2026,1,1,,0,,,2,9,12,2/9/26 11:00, +1,1,949,2026,1,1,,0,,,2,9,13,2/9/26 12:00, +1,1,950,2026,1,1,,0,,,2,9,14,2/9/26 13:00, +1,1,951,2026,1,1,,0,,,2,9,15,2/9/26 14:00, +1,1,952,2026,1,1,,0,,,2,9,16,2/9/26 15:00, +1,1,953,2026,1,1,,0,,,2,9,17,2/9/26 16:00, +1,1,954,2026,1,1,,0,,,2,9,18,2/9/26 17:00, +1,1,955,2026,1,1,,0,,,2,9,19,2/9/26 18:00, +1,1,956,2026,1,1,,0,,,2,9,20,2/9/26 19:00, +1,1,957,2026,1,1,,0,,,2,9,21,2/9/26 20:00, +1,1,958,2026,1,1,,0,,,2,9,22,2/9/26 21:00, +1,1,959,2026,1,1,,0,,,2,9,23,2/9/26 22:00, +1,1,960,2026,1,1,,0,,,2,9,24,2/9/26 23:00, +1,1,961,2026,1,1,,0,,,2,10,1,2/10/26 0:00, +1,1,962,2026,1,1,,0,,,2,10,2,2/10/26 1:00, +1,1,963,2026,1,1,,0,,,2,10,3,2/10/26 2:00, +1,1,964,2026,1,1,,0,,,2,10,4,2/10/26 3:00, +1,1,965,2026,1,1,,0,,,2,10,5,2/10/26 4:00, +1,1,966,2026,1,1,,0,,,2,10,6,2/10/26 5:00, +1,1,967,2026,1,1,,0,,,2,10,7,2/10/26 6:00, +1,1,968,2026,1,1,,0,,,2,10,8,2/10/26 7:00, +1,1,969,2026,1,1,,0,,,2,10,9,2/10/26 8:00, +1,1,970,2026,1,1,,0,,,2,10,10,2/10/26 9:00, +1,1,971,2026,1,1,,0,,,2,10,11,2/10/26 10:00, +1,1,972,2026,1,1,,0,,,2,10,12,2/10/26 11:00, +1,1,973,2026,1,1,,0,,,2,10,13,2/10/26 12:00, +1,1,974,2026,1,1,,0,,,2,10,14,2/10/26 13:00, +1,1,975,2026,1,1,,0,,,2,10,15,2/10/26 14:00, +1,1,976,2026,1,1,,0,,,2,10,16,2/10/26 15:00, +1,1,977,2026,1,1,,0,,,2,10,17,2/10/26 16:00, +1,1,978,2026,1,1,,0,,,2,10,18,2/10/26 17:00, +1,1,979,2026,1,1,,0,,,2,10,19,2/10/26 18:00, +1,1,980,2026,1,1,,0,,,2,10,20,2/10/26 19:00, +1,1,981,2026,1,1,,0,,,2,10,21,2/10/26 20:00, +1,1,982,2026,1,1,,0,,,2,10,22,2/10/26 21:00, +1,1,983,2026,1,1,,0,,,2,10,23,2/10/26 22:00, +1,1,984,2026,1,1,,0,,,2,10,24,2/10/26 23:00, +1,1,985,2026,1,1,,0,,,2,11,1,2/11/26 0:00, +1,1,986,2026,1,1,,0,,,2,11,2,2/11/26 1:00, +1,1,987,2026,1,1,,0,,,2,11,3,2/11/26 2:00, +1,1,988,2026,1,1,,0,,,2,11,4,2/11/26 3:00, +1,1,989,2026,1,1,,0,,,2,11,5,2/11/26 4:00, +1,1,990,2026,1,1,,0,,,2,11,6,2/11/26 5:00, +1,1,991,2026,1,1,,0,,,2,11,7,2/11/26 6:00, +1,1,992,2026,1,1,,0,,,2,11,8,2/11/26 7:00, +1,1,993,2026,1,1,,0,,,2,11,9,2/11/26 8:00, +1,1,994,2026,1,1,,0,,,2,11,10,2/11/26 9:00, +1,1,995,2026,1,1,,0,,,2,11,11,2/11/26 10:00, +1,1,996,2026,1,1,,0,,,2,11,12,2/11/26 11:00, +1,1,997,2026,1,1,,0,,,2,11,13,2/11/26 12:00, +1,1,998,2026,1,1,,0,,,2,11,14,2/11/26 13:00, +1,1,999,2026,1,1,,0,,,2,11,15,2/11/26 14:00, +1,1,1000,2026,1,1,,0,,,2,11,16,2/11/26 15:00, +1,1,1001,2026,1,1,,0,,,2,11,17,2/11/26 16:00, +1,1,1002,2026,1,1,,0,,,2,11,18,2/11/26 17:00, +1,1,1003,2026,1,1,,0,,,2,11,19,2/11/26 18:00, +1,1,1004,2026,1,1,,0,,,2,11,20,2/11/26 19:00, +1,1,1005,2026,1,1,,0,,,2,11,21,2/11/26 20:00, +1,1,1006,2026,1,1,,0,,,2,11,22,2/11/26 21:00, +1,1,1007,2026,1,1,,0,,,2,11,23,2/11/26 22:00, +1,1,1008,2026,1,1,,0,,,2,11,24,2/11/26 23:00, +1,1,1009,2026,1,1,,0,,,2,12,1,2/12/26 0:00, +1,1,1010,2026,1,1,,0,,,2,12,2,2/12/26 1:00, +1,1,1011,2026,1,1,,0,,,2,12,3,2/12/26 2:00, +1,1,1012,2026,1,1,,0,,,2,12,4,2/12/26 3:00, +1,1,1013,2026,1,1,,0,,,2,12,5,2/12/26 4:00, +1,1,1014,2026,1,1,,0,,,2,12,6,2/12/26 5:00, +1,1,1015,2026,1,1,,0,,,2,12,7,2/12/26 6:00, +1,1,1016,2026,1,1,,0,,,2,12,8,2/12/26 7:00, +1,1,1017,2026,1,1,,0,,,2,12,9,2/12/26 8:00, +1,1,1018,2026,1,1,,0,,,2,12,10,2/12/26 9:00, +1,1,1019,2026,1,1,,0,,,2,12,11,2/12/26 10:00, +1,1,1020,2026,1,1,,0,,,2,12,12,2/12/26 11:00, +1,1,1021,2026,1,1,,0,,,2,12,13,2/12/26 12:00, +1,1,1022,2026,1,1,,0,,,2,12,14,2/12/26 13:00, +1,1,1023,2026,1,1,,0,,,2,12,15,2/12/26 14:00, +1,1,1024,2026,1,1,,0,,,2,12,16,2/12/26 15:00, +1,1,1025,2026,1,1,,0,,,2,12,17,2/12/26 16:00, +1,1,1026,2026,1,1,,0,,,2,12,18,2/12/26 17:00, +1,1,1027,2026,1,1,,0,,,2,12,19,2/12/26 18:00, +1,1,1028,2026,1,1,,0,,,2,12,20,2/12/26 19:00, +1,1,1029,2026,1,1,,0,,,2,12,21,2/12/26 20:00, +1,1,1030,2026,1,1,,0,,,2,12,22,2/12/26 21:00, +1,1,1031,2026,1,1,,0,,,2,12,23,2/12/26 22:00, +1,1,1032,2026,1,1,,0,,,2,12,24,2/12/26 23:00, +1,1,1033,2026,1,1,,0,,,2,13,1,2/13/26 0:00, +1,1,1034,2026,1,1,,0,,,2,13,2,2/13/26 1:00, +1,1,1035,2026,1,1,,0,,,2,13,3,2/13/26 2:00, +1,1,1036,2026,1,1,,0,,,2,13,4,2/13/26 3:00, +1,1,1037,2026,1,1,,0,,,2,13,5,2/13/26 4:00, +1,1,1038,2026,1,1,,0,,,2,13,6,2/13/26 5:00, +1,1,1039,2026,1,1,,0,,,2,13,7,2/13/26 6:00, +1,1,1040,2026,1,1,,0,,,2,13,8,2/13/26 7:00, +1,1,1041,2026,1,1,,0,,,2,13,9,2/13/26 8:00, +1,1,1042,2026,1,1,,0,,,2,13,10,2/13/26 9:00, +1,1,1043,2026,1,1,,0,,,2,13,11,2/13/26 10:00, +1,1,1044,2026,1,1,,0,,,2,13,12,2/13/26 11:00, +1,1,1045,2026,1,1,,0,,,2,13,13,2/13/26 12:00, +1,1,1046,2026,1,1,,0,,,2,13,14,2/13/26 13:00, +1,1,1047,2026,1,1,,0,,,2,13,15,2/13/26 14:00, +1,1,1048,2026,1,1,,0,,,2,13,16,2/13/26 15:00, +1,1,1049,2026,1,1,,0,,,2,13,17,2/13/26 16:00, +1,1,1050,2026,1,1,,0,,,2,13,18,2/13/26 17:00, +1,1,1051,2026,1,1,,0,,,2,13,19,2/13/26 18:00, +1,1,1052,2026,1,1,,0,,,2,13,20,2/13/26 19:00, +1,1,1053,2026,1,1,,0,,,2,13,21,2/13/26 20:00, +1,1,1054,2026,1,1,,0,,,2,13,22,2/13/26 21:00, +1,1,1055,2026,1,1,,0,,,2,13,23,2/13/26 22:00, +1,1,1056,2026,1,1,,0,,,2,13,24,2/13/26 23:00, +1,1,1057,2026,1,1,,0,,,2,14,1,2/14/26 0:00, +1,1,1058,2026,1,1,,0,,,2,14,2,2/14/26 1:00, +1,1,1059,2026,1,1,,0,,,2,14,3,2/14/26 2:00, +1,1,1060,2026,1,1,,0,,,2,14,4,2/14/26 3:00, +1,1,1061,2026,1,1,,0,,,2,14,5,2/14/26 4:00, +1,1,1062,2026,1,1,,0,,,2,14,6,2/14/26 5:00, +1,1,1063,2026,1,1,,0,,,2,14,7,2/14/26 6:00, +1,1,1064,2026,1,1,,0,,,2,14,8,2/14/26 7:00, +1,1,1065,2026,1,1,,0,,,2,14,9,2/14/26 8:00, +1,1,1066,2026,1,1,,0,,,2,14,10,2/14/26 9:00, +1,1,1067,2026,1,1,,0,,,2,14,11,2/14/26 10:00, +1,1,1068,2026,1,1,,0,,,2,14,12,2/14/26 11:00, +1,1,1069,2026,1,1,,0,,,2,14,13,2/14/26 12:00, +1,1,1070,2026,1,1,,0,,,2,14,14,2/14/26 13:00, +1,1,1071,2026,1,1,,0,,,2,14,15,2/14/26 14:00, +1,1,1072,2026,1,1,,0,,,2,14,16,2/14/26 15:00, +1,1,1073,2026,1,1,,0,,,2,14,17,2/14/26 16:00, +1,1,1074,2026,1,1,,0,,,2,14,18,2/14/26 17:00, +1,1,1075,2026,1,1,,0,,,2,14,19,2/14/26 18:00, +1,1,1076,2026,1,1,,0,,,2,14,20,2/14/26 19:00, +1,1,1077,2026,1,1,,0,,,2,14,21,2/14/26 20:00, +1,1,1078,2026,1,1,,0,,,2,14,22,2/14/26 21:00, +1,1,1079,2026,1,1,,0,,,2,14,23,2/14/26 22:00, +1,1,1080,2026,1,1,,0,,,2,14,24,2/14/26 23:00, +1,1,1081,2026,1,1,,0,,,2,15,1,2/15/26 0:00, +1,1,1082,2026,1,1,,0,,,2,15,2,2/15/26 1:00, +1,1,1083,2026,1,1,,0,,,2,15,3,2/15/26 2:00, +1,1,1084,2026,1,1,,0,,,2,15,4,2/15/26 3:00, +1,1,1085,2026,1,1,,0,,,2,15,5,2/15/26 4:00, +1,1,1086,2026,1,1,,0,,,2,15,6,2/15/26 5:00, +1,1,1087,2026,1,1,,0,,,2,15,7,2/15/26 6:00, +1,1,1088,2026,1,1,,0,,,2,15,8,2/15/26 7:00, +1,1,1089,2026,1,1,,0,,,2,15,9,2/15/26 8:00, +1,1,1090,2026,1,1,,0,,,2,15,10,2/15/26 9:00, +1,1,1091,2026,1,1,,0,,,2,15,11,2/15/26 10:00, +1,1,1092,2026,1,1,,0,,,2,15,12,2/15/26 11:00, +1,1,1093,2026,1,1,,0,,,2,15,13,2/15/26 12:00, +1,1,1094,2026,1,1,,0,,,2,15,14,2/15/26 13:00, +1,1,1095,2026,1,1,,0,,,2,15,15,2/15/26 14:00, +1,1,1096,2026,1,1,,0,,,2,15,16,2/15/26 15:00, +1,1,1097,2026,1,1,,0,,,2,15,17,2/15/26 16:00, +1,1,1098,2026,1,1,,0,,,2,15,18,2/15/26 17:00, +1,1,1099,2026,1,1,,0,,,2,15,19,2/15/26 18:00, +1,1,1100,2026,1,1,,0,,,2,15,20,2/15/26 19:00, +1,1,1101,2026,1,1,,0,,,2,15,21,2/15/26 20:00, +1,1,1102,2026,1,1,,0,,,2,15,22,2/15/26 21:00, +1,1,1103,2026,1,1,,0,,,2,15,23,2/15/26 22:00, +1,1,1104,2026,1,1,,0,,,2,15,24,2/15/26 23:00, +1,1,1105,2026,1,1,,0,,,2,16,1,2/16/26 0:00, +1,1,1106,2026,1,1,,0,,,2,16,2,2/16/26 1:00, +1,1,1107,2026,1,1,,0,,,2,16,3,2/16/26 2:00, +1,1,1108,2026,1,1,,0,,,2,16,4,2/16/26 3:00, +1,1,1109,2026,1,1,,0,,,2,16,5,2/16/26 4:00, +1,1,1110,2026,1,1,,0,,,2,16,6,2/16/26 5:00, +1,1,1111,2026,1,1,,0,,,2,16,7,2/16/26 6:00, +1,1,1112,2026,1,1,,0,,,2,16,8,2/16/26 7:00, +1,1,1113,2026,1,1,,0,,,2,16,9,2/16/26 8:00, +1,1,1114,2026,1,1,,0,,,2,16,10,2/16/26 9:00, +1,1,1115,2026,1,1,,0,,,2,16,11,2/16/26 10:00, +1,1,1116,2026,1,1,,0,,,2,16,12,2/16/26 11:00, +1,1,1117,2026,1,1,,0,,,2,16,13,2/16/26 12:00, +1,1,1118,2026,1,1,,0,,,2,16,14,2/16/26 13:00, +1,1,1119,2026,1,1,,0,,,2,16,15,2/16/26 14:00, +1,1,1120,2026,1,1,,0,,,2,16,16,2/16/26 15:00, +1,1,1121,2026,1,1,,0,,,2,16,17,2/16/26 16:00, +1,1,1122,2026,1,1,,0,,,2,16,18,2/16/26 17:00, +1,1,1123,2026,1,1,,0,,,2,16,19,2/16/26 18:00, +1,1,1124,2026,1,1,,0,,,2,16,20,2/16/26 19:00, +1,1,1125,2026,1,1,,0,,,2,16,21,2/16/26 20:00, +1,1,1126,2026,1,1,,0,,,2,16,22,2/16/26 21:00, +1,1,1127,2026,1,1,,0,,,2,16,23,2/16/26 22:00, +1,1,1128,2026,1,1,,0,,,2,16,24,2/16/26 23:00, +1,1,1129,2026,1,1,,0,,,2,17,1,2/17/26 0:00, +1,1,1130,2026,1,1,,0,,,2,17,2,2/17/26 1:00, +1,1,1131,2026,1,1,,0,,,2,17,3,2/17/26 2:00, +1,1,1132,2026,1,1,,0,,,2,17,4,2/17/26 3:00, +1,1,1133,2026,1,1,,0,,,2,17,5,2/17/26 4:00, +1,1,1134,2026,1,1,,0,,,2,17,6,2/17/26 5:00, +1,1,1135,2026,1,1,,0,,,2,17,7,2/17/26 6:00, +1,1,1136,2026,1,1,,0,,,2,17,8,2/17/26 7:00, +1,1,1137,2026,1,1,,0,,,2,17,9,2/17/26 8:00, +1,1,1138,2026,1,1,,0,,,2,17,10,2/17/26 9:00, +1,1,1139,2026,1,1,,0,,,2,17,11,2/17/26 10:00, +1,1,1140,2026,1,1,,0,,,2,17,12,2/17/26 11:00, +1,1,1141,2026,1,1,,0,,,2,17,13,2/17/26 12:00, +1,1,1142,2026,1,1,,0,,,2,17,14,2/17/26 13:00, +1,1,1143,2026,1,1,,0,,,2,17,15,2/17/26 14:00, +1,1,1144,2026,1,1,,0,,,2,17,16,2/17/26 15:00, +1,1,1145,2026,1,1,,0,,,2,17,17,2/17/26 16:00, +1,1,1146,2026,1,1,,0,,,2,17,18,2/17/26 17:00, +1,1,1147,2026,1,1,,0,,,2,17,19,2/17/26 18:00, +1,1,1148,2026,1,1,,0,,,2,17,20,2/17/26 19:00, +1,1,1149,2026,1,1,,0,,,2,17,21,2/17/26 20:00, +1,1,1150,2026,1,1,,0,,,2,17,22,2/17/26 21:00, +1,1,1151,2026,1,1,,0,,,2,17,23,2/17/26 22:00, +1,1,1152,2026,1,1,,0,,,2,17,24,2/17/26 23:00, +1,1,1153,2026,1,1,,0,,,2,18,1,2/18/26 0:00, +1,1,1154,2026,1,1,,0,,,2,18,2,2/18/26 1:00, +1,1,1155,2026,1,1,,0,,,2,18,3,2/18/26 2:00, +1,1,1156,2026,1,1,,0,,,2,18,4,2/18/26 3:00, +1,1,1157,2026,1,1,,0,,,2,18,5,2/18/26 4:00, +1,1,1158,2026,1,1,,0,,,2,18,6,2/18/26 5:00, +1,1,1159,2026,1,1,,0,,,2,18,7,2/18/26 6:00, +1,1,1160,2026,1,1,,0,,,2,18,8,2/18/26 7:00, +1,1,1161,2026,1,1,,0,,,2,18,9,2/18/26 8:00, +1,1,1162,2026,1,1,,0,,,2,18,10,2/18/26 9:00, +1,1,1163,2026,1,1,,0,,,2,18,11,2/18/26 10:00, +1,1,1164,2026,1,1,,0,,,2,18,12,2/18/26 11:00, +1,1,1165,2026,1,1,,0,,,2,18,13,2/18/26 12:00, +1,1,1166,2026,1,1,,0,,,2,18,14,2/18/26 13:00, +1,1,1167,2026,1,1,,0,,,2,18,15,2/18/26 14:00, +1,1,1168,2026,1,1,,0,,,2,18,16,2/18/26 15:00, +1,1,1169,2026,1,1,,0,,,2,18,17,2/18/26 16:00, +1,1,1170,2026,1,1,,0,,,2,18,18,2/18/26 17:00, +1,1,1171,2026,1,1,,0,,,2,18,19,2/18/26 18:00, +1,1,1172,2026,1,1,,0,,,2,18,20,2/18/26 19:00, +1,1,1173,2026,1,1,,0,,,2,18,21,2/18/26 20:00, +1,1,1174,2026,1,1,,0,,,2,18,22,2/18/26 21:00, +1,1,1175,2026,1,1,,0,,,2,18,23,2/18/26 22:00, +1,1,1176,2026,1,1,,0,,,2,18,24,2/18/26 23:00, +1,1,1177,2026,1,1,,0,,,2,19,1,2/19/26 0:00, +1,1,1178,2026,1,1,,0,,,2,19,2,2/19/26 1:00, +1,1,1179,2026,1,1,,0,,,2,19,3,2/19/26 2:00, +1,1,1180,2026,1,1,,0,,,2,19,4,2/19/26 3:00, +1,1,1181,2026,1,1,,0,,,2,19,5,2/19/26 4:00, +1,1,1182,2026,1,1,,0,,,2,19,6,2/19/26 5:00, +1,1,1183,2026,1,1,,0,,,2,19,7,2/19/26 6:00, +1,1,1184,2026,1,1,,0,,,2,19,8,2/19/26 7:00, +1,1,1185,2026,1,1,,0,,,2,19,9,2/19/26 8:00, +1,1,1186,2026,1,1,,0,,,2,19,10,2/19/26 9:00, +1,1,1187,2026,1,1,,0,,,2,19,11,2/19/26 10:00, +1,1,1188,2026,1,1,,0,,,2,19,12,2/19/26 11:00, +1,1,1189,2026,1,1,,0,,,2,19,13,2/19/26 12:00, +1,1,1190,2026,1,1,,0,,,2,19,14,2/19/26 13:00, +1,1,1191,2026,1,1,,0,,,2,19,15,2/19/26 14:00, +1,1,1192,2026,1,1,,0,,,2,19,16,2/19/26 15:00, +1,1,1193,2026,1,1,,0,,,2,19,17,2/19/26 16:00, +1,1,1194,2026,1,1,,0,,,2,19,18,2/19/26 17:00, +1,1,1195,2026,1,1,,0,,,2,19,19,2/19/26 18:00, +1,1,1196,2026,1,1,,0,,,2,19,20,2/19/26 19:00, +1,1,1197,2026,1,1,,0,,,2,19,21,2/19/26 20:00, +1,1,1198,2026,1,1,,0,,,2,19,22,2/19/26 21:00, +1,1,1199,2026,1,1,,0,,,2,19,23,2/19/26 22:00, +1,1,1200,2026,1,1,,0,,,2,19,24,2/19/26 23:00, +1,1,1201,2026,1,1,,0,,,2,20,1,2/20/26 0:00, +1,1,1202,2026,1,1,,0,,,2,20,2,2/20/26 1:00, +1,1,1203,2026,1,1,,0,,,2,20,3,2/20/26 2:00, +1,1,1204,2026,1,1,,0,,,2,20,4,2/20/26 3:00, +1,1,1205,2026,1,1,,0,,,2,20,5,2/20/26 4:00, +1,1,1206,2026,1,1,,0,,,2,20,6,2/20/26 5:00, +1,1,1207,2026,1,1,,0,,,2,20,7,2/20/26 6:00, +1,1,1208,2026,1,1,,0,,,2,20,8,2/20/26 7:00, +1,1,1209,2026,1,1,,0,,,2,20,9,2/20/26 8:00, +1,1,1210,2026,1,1,,0,,,2,20,10,2/20/26 9:00, +1,1,1211,2026,1,1,,0,,,2,20,11,2/20/26 10:00, +1,1,1212,2026,1,1,,0,,,2,20,12,2/20/26 11:00, +1,1,1213,2026,1,1,,0,,,2,20,13,2/20/26 12:00, +1,1,1214,2026,1,1,,0,,,2,20,14,2/20/26 13:00, +1,1,1215,2026,1,1,,0,,,2,20,15,2/20/26 14:00, +1,1,1216,2026,1,1,,0,,,2,20,16,2/20/26 15:00, +1,1,1217,2026,1,1,,0,,,2,20,17,2/20/26 16:00, +1,1,1218,2026,1,1,,0,,,2,20,18,2/20/26 17:00, +1,1,1219,2026,1,1,,0,,,2,20,19,2/20/26 18:00, +1,1,1220,2026,1,1,,0,,,2,20,20,2/20/26 19:00, +1,1,1221,2026,1,1,,0,,,2,20,21,2/20/26 20:00, +1,1,1222,2026,1,1,,0,,,2,20,22,2/20/26 21:00, +1,1,1223,2026,1,1,,0,,,2,20,23,2/20/26 22:00, +1,1,1224,2026,1,1,,0,,,2,20,24,2/20/26 23:00, +1,1,1225,2026,1,1,,0,,,2,21,1,2/21/26 0:00, +1,1,1226,2026,1,1,,0,,,2,21,2,2/21/26 1:00, +1,1,1227,2026,1,1,,0,,,2,21,3,2/21/26 2:00, +1,1,1228,2026,1,1,,0,,,2,21,4,2/21/26 3:00, +1,1,1229,2026,1,1,,0,,,2,21,5,2/21/26 4:00, +1,1,1230,2026,1,1,,0,,,2,21,6,2/21/26 5:00, +1,1,1231,2026,1,1,,0,,,2,21,7,2/21/26 6:00, +1,1,1232,2026,1,1,,0,,,2,21,8,2/21/26 7:00, +1,1,1233,2026,1,1,,0,,,2,21,9,2/21/26 8:00, +1,1,1234,2026,1,1,,0,,,2,21,10,2/21/26 9:00, +1,1,1235,2026,1,1,,0,,,2,21,11,2/21/26 10:00, +1,1,1236,2026,1,1,,0,,,2,21,12,2/21/26 11:00, +1,1,1237,2026,1,1,,0,,,2,21,13,2/21/26 12:00, +1,1,1238,2026,1,1,,0,,,2,21,14,2/21/26 13:00, +1,1,1239,2026,1,1,,0,,,2,21,15,2/21/26 14:00, +1,1,1240,2026,1,1,,0,,,2,21,16,2/21/26 15:00, +1,1,1241,2026,1,1,,0,,,2,21,17,2/21/26 16:00, +1,1,1242,2026,1,1,,0,,,2,21,18,2/21/26 17:00, +1,1,1243,2026,1,1,,0,,,2,21,19,2/21/26 18:00, +1,1,1244,2026,1,1,,0,,,2,21,20,2/21/26 19:00, +1,1,1245,2026,1,1,,0,,,2,21,21,2/21/26 20:00, +1,1,1246,2026,1,1,,0,,,2,21,22,2/21/26 21:00, +1,1,1247,2026,1,1,,0,,,2,21,23,2/21/26 22:00, +1,1,1248,2026,1,1,,0,,,2,21,24,2/21/26 23:00, +1,1,1249,2026,1,1,,0,,,2,22,1,2/22/26 0:00, +1,1,1250,2026,1,1,,0,,,2,22,2,2/22/26 1:00, +1,1,1251,2026,1,1,,0,,,2,22,3,2/22/26 2:00, +1,1,1252,2026,1,1,,0,,,2,22,4,2/22/26 3:00, +1,1,1253,2026,1,1,,0,,,2,22,5,2/22/26 4:00, +1,1,1254,2026,1,1,,0,,,2,22,6,2/22/26 5:00, +1,1,1255,2026,1,1,,0,,,2,22,7,2/22/26 6:00, +1,1,1256,2026,1,1,,0,,,2,22,8,2/22/26 7:00, +1,1,1257,2026,1,1,,0,,,2,22,9,2/22/26 8:00, +1,1,1258,2026,1,1,,0,,,2,22,10,2/22/26 9:00, +1,1,1259,2026,1,1,,0,,,2,22,11,2/22/26 10:00, +1,1,1260,2026,1,1,,0,,,2,22,12,2/22/26 11:00, +1,1,1261,2026,1,1,,0,,,2,22,13,2/22/26 12:00, +1,1,1262,2026,1,1,,0,,,2,22,14,2/22/26 13:00, +1,1,1263,2026,1,1,,0,,,2,22,15,2/22/26 14:00, +1,1,1264,2026,1,1,,0,,,2,22,16,2/22/26 15:00, +1,1,1265,2026,1,1,,0,,,2,22,17,2/22/26 16:00, +1,1,1266,2026,1,1,,0,,,2,22,18,2/22/26 17:00, +1,1,1267,2026,1,1,,0,,,2,22,19,2/22/26 18:00, +1,1,1268,2026,1,1,,0,,,2,22,20,2/22/26 19:00, +1,1,1269,2026,1,1,,0,,,2,22,21,2/22/26 20:00, +1,1,1270,2026,1,1,,0,,,2,22,22,2/22/26 21:00, +1,1,1271,2026,1,1,,0,,,2,22,23,2/22/26 22:00, +1,1,1272,2026,1,1,,0,,,2,22,24,2/22/26 23:00, +1,1,1273,2026,1,1,,0,,,2,23,1,2/23/26 0:00, +1,1,1274,2026,1,1,,0,,,2,23,2,2/23/26 1:00, +1,1,1275,2026,1,1,,0,,,2,23,3,2/23/26 2:00, +1,1,1276,2026,1,1,,0,,,2,23,4,2/23/26 3:00, +1,1,1277,2026,1,1,,0,,,2,23,5,2/23/26 4:00, +1,1,1278,2026,1,1,,0,,,2,23,6,2/23/26 5:00, +1,1,1279,2026,1,1,,0,,,2,23,7,2/23/26 6:00, +1,1,1280,2026,1,1,,0,,,2,23,8,2/23/26 7:00, +1,1,1281,2026,1,1,,0,,,2,23,9,2/23/26 8:00, +1,1,1282,2026,1,1,,0,,,2,23,10,2/23/26 9:00, +1,1,1283,2026,1,1,,0,,,2,23,11,2/23/26 10:00, +1,1,1284,2026,1,1,,0,,,2,23,12,2/23/26 11:00, +1,1,1285,2026,1,1,,0,,,2,23,13,2/23/26 12:00, +1,1,1286,2026,1,1,,0,,,2,23,14,2/23/26 13:00, +1,1,1287,2026,1,1,,0,,,2,23,15,2/23/26 14:00, +1,1,1288,2026,1,1,,0,,,2,23,16,2/23/26 15:00, +1,1,1289,2026,1,1,,0,,,2,23,17,2/23/26 16:00, +1,1,1290,2026,1,1,,0,,,2,23,18,2/23/26 17:00, +1,1,1291,2026,1,1,,0,,,2,23,19,2/23/26 18:00, +1,1,1292,2026,1,1,,0,,,2,23,20,2/23/26 19:00, +1,1,1293,2026,1,1,,0,,,2,23,21,2/23/26 20:00, +1,1,1294,2026,1,1,,0,,,2,23,22,2/23/26 21:00, +1,1,1295,2026,1,1,,0,,,2,23,23,2/23/26 22:00, +1,1,1296,2026,1,1,,0,,,2,23,24,2/23/26 23:00, +1,1,1297,2026,1,1,,0,,,2,24,1,2/24/26 0:00, +1,1,1298,2026,1,1,,0,,,2,24,2,2/24/26 1:00, +1,1,1299,2026,1,1,,0,,,2,24,3,2/24/26 2:00, +1,1,1300,2026,1,1,,0,,,2,24,4,2/24/26 3:00, +1,1,1301,2026,1,1,,0,,,2,24,5,2/24/26 4:00, +1,1,1302,2026,1,1,,0,,,2,24,6,2/24/26 5:00, +1,1,1303,2026,1,1,,0,,,2,24,7,2/24/26 6:00, +1,1,1304,2026,1,1,,0,,,2,24,8,2/24/26 7:00, +1,1,1305,2026,1,1,,0,,,2,24,9,2/24/26 8:00, +1,1,1306,2026,1,1,,0,,,2,24,10,2/24/26 9:00, +1,1,1307,2026,1,1,,0,,,2,24,11,2/24/26 10:00, +1,1,1308,2026,1,1,,0,,,2,24,12,2/24/26 11:00, +1,1,1309,2026,1,1,,0,,,2,24,13,2/24/26 12:00, +1,1,1310,2026,1,1,,0,,,2,24,14,2/24/26 13:00, +1,1,1311,2026,1,1,,0,,,2,24,15,2/24/26 14:00, +1,1,1312,2026,1,1,,0,,,2,24,16,2/24/26 15:00, +1,1,1313,2026,1,1,,0,,,2,24,17,2/24/26 16:00, +1,1,1314,2026,1,1,,0,,,2,24,18,2/24/26 17:00, +1,1,1315,2026,1,1,,0,,,2,24,19,2/24/26 18:00, +1,1,1316,2026,1,1,,0,,,2,24,20,2/24/26 19:00, +1,1,1317,2026,1,1,,0,,,2,24,21,2/24/26 20:00, +1,1,1318,2026,1,1,,0,,,2,24,22,2/24/26 21:00, +1,1,1319,2026,1,1,,0,,,2,24,23,2/24/26 22:00, +1,1,1320,2026,1,1,,0,,,2,24,24,2/24/26 23:00, +1,1,1321,2026,1,1,,0,,,2,25,1,2/25/26 0:00, +1,1,1322,2026,1,1,,0,,,2,25,2,2/25/26 1:00, +1,1,1323,2026,1,1,,0,,,2,25,3,2/25/26 2:00, +1,1,1324,2026,1,1,,0,,,2,25,4,2/25/26 3:00, +1,1,1325,2026,1,1,,0,,,2,25,5,2/25/26 4:00, +1,1,1326,2026,1,1,,0,,,2,25,6,2/25/26 5:00, +1,1,1327,2026,1,1,,0,,,2,25,7,2/25/26 6:00, +1,1,1328,2026,1,1,,0,,,2,25,8,2/25/26 7:00, +1,1,1329,2026,1,1,,0,,,2,25,9,2/25/26 8:00, +1,1,1330,2026,1,1,,0,,,2,25,10,2/25/26 9:00, +1,1,1331,2026,1,1,,0,,,2,25,11,2/25/26 10:00, +1,1,1332,2026,1,1,,0,,,2,25,12,2/25/26 11:00, +1,1,1333,2026,1,1,,0,,,2,25,13,2/25/26 12:00, +1,1,1334,2026,1,1,,0,,,2,25,14,2/25/26 13:00, +1,1,1335,2026,1,1,,0,,,2,25,15,2/25/26 14:00, +1,1,1336,2026,1,1,,0,,,2,25,16,2/25/26 15:00, +1,1,1337,2026,1,1,,0,,,2,25,17,2/25/26 16:00, +1,1,1338,2026,1,1,,0,,,2,25,18,2/25/26 17:00, +1,1,1339,2026,1,1,,0,,,2,25,19,2/25/26 18:00, +1,1,1340,2026,1,1,,0,,,2,25,20,2/25/26 19:00, +1,1,1341,2026,1,1,,0,,,2,25,21,2/25/26 20:00, +1,1,1342,2026,1,1,,0,,,2,25,22,2/25/26 21:00, +1,1,1343,2026,1,1,,0,,,2,25,23,2/25/26 22:00, +1,1,1344,2026,1,1,,0,,,2,25,24,2/25/26 23:00, +1,1,1345,2026,1,1,,0,,,2,26,1,2/26/26 0:00, +1,1,1346,2026,1,1,,0,,,2,26,2,2/26/26 1:00, +1,1,1347,2026,1,1,,0,,,2,26,3,2/26/26 2:00, +1,1,1348,2026,1,1,,0,,,2,26,4,2/26/26 3:00, +1,1,1349,2026,1,1,,0,,,2,26,5,2/26/26 4:00, +1,1,1350,2026,1,1,,0,,,2,26,6,2/26/26 5:00, +1,1,1351,2026,1,1,,0,,,2,26,7,2/26/26 6:00, +1,1,1352,2026,1,1,,0,,,2,26,8,2/26/26 7:00, +1,1,1353,2026,1,1,,0,,,2,26,9,2/26/26 8:00, +1,1,1354,2026,1,1,,0,,,2,26,10,2/26/26 9:00, +1,1,1355,2026,1,1,,0,,,2,26,11,2/26/26 10:00, +1,1,1356,2026,1,1,,0,,,2,26,12,2/26/26 11:00, +1,1,1357,2026,1,1,,0,,,2,26,13,2/26/26 12:00, +1,1,1358,2026,1,1,,0,,,2,26,14,2/26/26 13:00, +1,1,1359,2026,1,1,,0,,,2,26,15,2/26/26 14:00, +1,1,1360,2026,1,1,,0,,,2,26,16,2/26/26 15:00, +1,1,1361,2026,1,1,,0,,,2,26,17,2/26/26 16:00, +1,1,1362,2026,1,1,,0,,,2,26,18,2/26/26 17:00, +1,1,1363,2026,1,1,,0,,,2,26,19,2/26/26 18:00, +1,1,1364,2026,1,1,,0,,,2,26,20,2/26/26 19:00, +1,1,1365,2026,1,1,,0,,,2,26,21,2/26/26 20:00, +1,1,1366,2026,1,1,,0,,,2,26,22,2/26/26 21:00, +1,1,1367,2026,1,1,,0,,,2,26,23,2/26/26 22:00, +1,1,1368,2026,1,1,,0,,,2,26,24,2/26/26 23:00, +1,1,1369,2026,1,1,,0,,,2,27,1,2/27/26 0:00, +1,1,1370,2026,1,1,,0,,,2,27,2,2/27/26 1:00, +1,1,1371,2026,1,1,,0,,,2,27,3,2/27/26 2:00, +1,1,1372,2026,1,1,,0,,,2,27,4,2/27/26 3:00, +1,1,1373,2026,1,1,,0,,,2,27,5,2/27/26 4:00, +1,1,1374,2026,1,1,,0,,,2,27,6,2/27/26 5:00, +1,1,1375,2026,1,1,,0,,,2,27,7,2/27/26 6:00, +1,1,1376,2026,1,1,,0,,,2,27,8,2/27/26 7:00, +1,1,1377,2026,1,1,,0,,,2,27,9,2/27/26 8:00, +1,1,1378,2026,1,1,,0,,,2,27,10,2/27/26 9:00, +1,1,1379,2026,1,1,,0,,,2,27,11,2/27/26 10:00, +1,1,1380,2026,1,1,,0,,,2,27,12,2/27/26 11:00, +1,1,1381,2026,1,1,,0,,,2,27,13,2/27/26 12:00, +1,1,1382,2026,1,1,,0,,,2,27,14,2/27/26 13:00, +1,1,1383,2026,1,1,,0,,,2,27,15,2/27/26 14:00, +1,1,1384,2026,1,1,,0,,,2,27,16,2/27/26 15:00, +1,1,1385,2026,1,1,,0,,,2,27,17,2/27/26 16:00, +1,1,1386,2026,1,1,,0,,,2,27,18,2/27/26 17:00, +1,1,1387,2026,1,1,,0,,,2,27,19,2/27/26 18:00, +1,1,1388,2026,1,1,,0,,,2,27,20,2/27/26 19:00, +1,1,1389,2026,1,1,,0,,,2,27,21,2/27/26 20:00, +1,1,1390,2026,1,1,,0,,,2,27,22,2/27/26 21:00, +1,1,1391,2026,1,1,,0,,,2,27,23,2/27/26 22:00, +1,1,1392,2026,1,1,,0,,,2,27,24,2/27/26 23:00, +1,1,1393,2026,1,1,,0,,,2,28,1,2/28/26 0:00, +1,1,1394,2026,1,1,,0,,,2,28,2,2/28/26 1:00, +1,1,1395,2026,1,1,,0,,,2,28,3,2/28/26 2:00, +1,1,1396,2026,1,1,,0,,,2,28,4,2/28/26 3:00, +1,1,1397,2026,1,1,,0,,,2,28,5,2/28/26 4:00, +1,1,1398,2026,1,1,,0,,,2,28,6,2/28/26 5:00, +1,1,1399,2026,1,1,,0,,,2,28,7,2/28/26 6:00, +1,1,1400,2026,1,1,,0,,,2,28,8,2/28/26 7:00, +1,1,1401,2026,1,1,,0,,,2,28,9,2/28/26 8:00, +1,1,1402,2026,1,1,,0,,,2,28,10,2/28/26 9:00, +1,1,1403,2026,1,1,,0,,,2,28,11,2/28/26 10:00, +1,1,1404,2026,1,1,,0,,,2,28,12,2/28/26 11:00, +1,1,1405,2026,1,1,,0,,,2,28,13,2/28/26 12:00, +1,1,1406,2026,1,1,,0,,,2,28,14,2/28/26 13:00, +1,1,1407,2026,1,1,,0,,,2,28,15,2/28/26 14:00, +1,1,1408,2026,1,1,,0,,,2,28,16,2/28/26 15:00, +1,1,1409,2026,1,1,,0,,,2,28,17,2/28/26 16:00, +1,1,1410,2026,1,1,,0,,,2,28,18,2/28/26 17:00, +1,1,1411,2026,1,1,,0,,,2,28,19,2/28/26 18:00, +1,1,1412,2026,1,1,,0,,,2,28,20,2/28/26 19:00, +1,1,1413,2026,1,1,,0,,,2,28,21,2/28/26 20:00, +1,1,1414,2026,1,1,,0,,,2,28,22,2/28/26 21:00, +1,1,1415,2026,1,1,,0,,,2,28,23,2/28/26 22:00, +1,1,1416,2026,1,1,,0,,,2,28,24,2/28/26 23:00, +1,1,1417,2026,1,1,,0,,,3,1,1,3/1/26 0:00, +1,1,1418,2026,1,1,,0,,,3,1,2,3/1/26 1:00, +1,1,1419,2026,1,1,,0,,,3,1,3,3/1/26 2:00, +1,1,1420,2026,1,1,,0,,,3,1,4,3/1/26 3:00, +1,1,1421,2026,1,1,,0,,,3,1,5,3/1/26 4:00, +1,1,1422,2026,1,1,,0,,,3,1,6,3/1/26 5:00, +1,1,1423,2026,1,1,,0,,,3,1,7,3/1/26 6:00, +1,1,1424,2026,1,1,,0,,,3,1,8,3/1/26 7:00, +1,1,1425,2026,1,1,,0,,,3,1,9,3/1/26 8:00, +1,1,1426,2026,1,1,,0,,,3,1,10,3/1/26 9:00, +1,1,1427,2026,1,1,,0,,,3,1,11,3/1/26 10:00, +1,1,1428,2026,1,1,,0,,,3,1,12,3/1/26 11:00, +1,1,1429,2026,1,1,,0,,,3,1,13,3/1/26 12:00, +1,1,1430,2026,1,1,,0,,,3,1,14,3/1/26 13:00, +1,1,1431,2026,1,1,,0,,,3,1,15,3/1/26 14:00, +1,1,1432,2026,1,1,,0,,,3,1,16,3/1/26 15:00, +1,1,1433,2026,1,1,,0,,,3,1,17,3/1/26 16:00, +1,1,1434,2026,1,1,,0,,,3,1,18,3/1/26 17:00, +1,1,1435,2026,1,1,,0,,,3,1,19,3/1/26 18:00, +1,1,1436,2026,1,1,,0,,,3,1,20,3/1/26 19:00, +1,1,1437,2026,1,1,,0,,,3,1,21,3/1/26 20:00, +1,1,1438,2026,1,1,,0,,,3,1,22,3/1/26 21:00, +1,1,1439,2026,1,1,,0,,,3,1,23,3/1/26 22:00, +1,1,1440,2026,1,1,,0,,,3,1,24,3/1/26 23:00, +1,1,1441,2026,1,1,,0,,,3,2,1,3/2/26 0:00, +1,1,1442,2026,1,1,,0,,,3,2,2,3/2/26 1:00, +1,1,1443,2026,1,1,,0,,,3,2,3,3/2/26 2:00, +1,1,1444,2026,1,1,,0,,,3,2,4,3/2/26 3:00, +1,1,1445,2026,1,1,,0,,,3,2,5,3/2/26 4:00, +1,1,1446,2026,1,1,,0,,,3,2,6,3/2/26 5:00, +1,1,1447,2026,1,1,,0,,,3,2,7,3/2/26 6:00, +1,1,1448,2026,1,1,,0,,,3,2,8,3/2/26 7:00, +1,1,1449,2026,1,1,,0,,,3,2,9,3/2/26 8:00, +1,1,1450,2026,1,1,,0,,,3,2,10,3/2/26 9:00, +1,1,1451,2026,1,1,,0,,,3,2,11,3/2/26 10:00, +1,1,1452,2026,1,1,,0,,,3,2,12,3/2/26 11:00, +1,1,1453,2026,1,1,,0,,,3,2,13,3/2/26 12:00, +1,1,1454,2026,1,1,,0,,,3,2,14,3/2/26 13:00, +1,1,1455,2026,1,1,,0,,,3,2,15,3/2/26 14:00, +1,1,1456,2026,1,1,,0,,,3,2,16,3/2/26 15:00, +1,1,1457,2026,1,1,,0,,,3,2,17,3/2/26 16:00, +1,1,1458,2026,1,1,,0,,,3,2,18,3/2/26 17:00, +1,1,1459,2026,1,1,,0,,,3,2,19,3/2/26 18:00, +1,1,1460,2026,1,1,,0,,,3,2,20,3/2/26 19:00, +1,1,1461,2026,1,1,,0,,,3,2,21,3/2/26 20:00, +1,1,1462,2026,1,1,,0,,,3,2,22,3/2/26 21:00, +1,1,1463,2026,1,1,,0,,,3,2,23,3/2/26 22:00, +1,1,1464,2026,1,1,,0,,,3,2,24,3/2/26 23:00, +1,1,1465,2026,1,1,,0,,,3,3,1,3/3/26 0:00, +1,1,1466,2026,1,1,,0,,,3,3,2,3/3/26 1:00, +1,1,1467,2026,1,1,,0,,,3,3,3,3/3/26 2:00, +1,1,1468,2026,1,1,,0,,,3,3,4,3/3/26 3:00, +1,1,1469,2026,1,1,,0,,,3,3,5,3/3/26 4:00, +1,1,1470,2026,1,1,,0,,,3,3,6,3/3/26 5:00, +1,1,1471,2026,1,1,,0,,,3,3,7,3/3/26 6:00, +1,1,1472,2026,1,1,,0,,,3,3,8,3/3/26 7:00, +1,1,1473,2026,1,1,,0,,,3,3,9,3/3/26 8:00, +1,1,1474,2026,1,1,,0,,,3,3,10,3/3/26 9:00, +1,1,1475,2026,1,1,,0,,,3,3,11,3/3/26 10:00, +1,1,1476,2026,1,1,,0,,,3,3,12,3/3/26 11:00, +1,1,1477,2026,1,1,,0,,,3,3,13,3/3/26 12:00, +1,1,1478,2026,1,1,,0,,,3,3,14,3/3/26 13:00, +1,1,1479,2026,1,1,,0,,,3,3,15,3/3/26 14:00, +1,1,1480,2026,1,1,,0,,,3,3,16,3/3/26 15:00, +1,1,1481,2026,1,1,,0,,,3,3,17,3/3/26 16:00, +1,1,1482,2026,1,1,,0,,,3,3,18,3/3/26 17:00, +1,1,1483,2026,1,1,,0,,,3,3,19,3/3/26 18:00, +1,1,1484,2026,1,1,,0,,,3,3,20,3/3/26 19:00, +1,1,1485,2026,1,1,,0,,,3,3,21,3/3/26 20:00, +1,1,1486,2026,1,1,,0,,,3,3,22,3/3/26 21:00, +1,1,1487,2026,1,1,,0,,,3,3,23,3/3/26 22:00, +1,1,1488,2026,1,1,,0,,,3,3,24,3/3/26 23:00, +1,1,1489,2026,1,1,,0,,,3,4,1,3/4/26 0:00, +1,1,1490,2026,1,1,,0,,,3,4,2,3/4/26 1:00, +1,1,1491,2026,1,1,,0,,,3,4,3,3/4/26 2:00, +1,1,1492,2026,1,1,,0,,,3,4,4,3/4/26 3:00, +1,1,1493,2026,1,1,,0,,,3,4,5,3/4/26 4:00, +1,1,1494,2026,1,1,,0,,,3,4,6,3/4/26 5:00, +1,1,1495,2026,1,1,,0,,,3,4,7,3/4/26 6:00, +1,1,1496,2026,1,1,,0,,,3,4,8,3/4/26 7:00, +1,1,1497,2026,1,1,,0,,,3,4,9,3/4/26 8:00, +1,1,1498,2026,1,1,,0,,,3,4,10,3/4/26 9:00, +1,1,1499,2026,1,1,,0,,,3,4,11,3/4/26 10:00, +1,1,1500,2026,1,1,,0,,,3,4,12,3/4/26 11:00, +1,1,1501,2026,1,1,,0,,,3,4,13,3/4/26 12:00, +1,1,1502,2026,1,1,,0,,,3,4,14,3/4/26 13:00, +1,1,1503,2026,1,1,,0,,,3,4,15,3/4/26 14:00, +1,1,1504,2026,1,1,,0,,,3,4,16,3/4/26 15:00, +1,1,1505,2026,1,1,,0,,,3,4,17,3/4/26 16:00, +1,1,1506,2026,1,1,,0,,,3,4,18,3/4/26 17:00, +1,1,1507,2026,1,1,,0,,,3,4,19,3/4/26 18:00, +1,1,1508,2026,1,1,,0,,,3,4,20,3/4/26 19:00, +1,1,1509,2026,1,1,,0,,,3,4,21,3/4/26 20:00, +1,1,1510,2026,1,1,,0,,,3,4,22,3/4/26 21:00, +1,1,1511,2026,1,1,,0,,,3,4,23,3/4/26 22:00, +1,1,1512,2026,1,1,,0,,,3,4,24,3/4/26 23:00, +1,1,1513,2026,1,1,,0,,,3,5,1,3/5/26 0:00, +1,1,1514,2026,1,1,,0,,,3,5,2,3/5/26 1:00, +1,1,1515,2026,1,1,,0,,,3,5,3,3/5/26 2:00, +1,1,1516,2026,1,1,,0,,,3,5,4,3/5/26 3:00, +1,1,1517,2026,1,1,,0,,,3,5,5,3/5/26 4:00, +1,1,1518,2026,1,1,,0,,,3,5,6,3/5/26 5:00, +1,1,1519,2026,1,1,,0,,,3,5,7,3/5/26 6:00, +1,1,1520,2026,1,1,,0,,,3,5,8,3/5/26 7:00, +1,1,1521,2026,1,1,,0,,,3,5,9,3/5/26 8:00, +1,1,1522,2026,1,1,,0,,,3,5,10,3/5/26 9:00, +1,1,1523,2026,1,1,,0,,,3,5,11,3/5/26 10:00, +1,1,1524,2026,1,1,,0,,,3,5,12,3/5/26 11:00, +1,1,1525,2026,1,1,,0,,,3,5,13,3/5/26 12:00, +1,1,1526,2026,1,1,,0,,,3,5,14,3/5/26 13:00, +1,1,1527,2026,1,1,,0,,,3,5,15,3/5/26 14:00, +1,1,1528,2026,1,1,,0,,,3,5,16,3/5/26 15:00, +1,1,1529,2026,1,1,,0,,,3,5,17,3/5/26 16:00, +1,1,1530,2026,1,1,,0,,,3,5,18,3/5/26 17:00, +1,1,1531,2026,1,1,,0,,,3,5,19,3/5/26 18:00, +1,1,1532,2026,1,1,,0,,,3,5,20,3/5/26 19:00, +1,1,1533,2026,1,1,,0,,,3,5,21,3/5/26 20:00, +1,1,1534,2026,1,1,,0,,,3,5,22,3/5/26 21:00, +1,1,1535,2026,1,1,,0,,,3,5,23,3/5/26 22:00, +1,1,1536,2026,1,1,,0,,,3,5,24,3/5/26 23:00, +1,1,1537,2026,1,1,,0,,,3,6,1,3/6/26 0:00, +1,1,1538,2026,1,1,,0,,,3,6,2,3/6/26 1:00, +1,1,1539,2026,1,1,,0,,,3,6,3,3/6/26 2:00, +1,1,1540,2026,1,1,,0,,,3,6,4,3/6/26 3:00, +1,1,1541,2026,1,1,,0,,,3,6,5,3/6/26 4:00, +1,1,1542,2026,1,1,,0,,,3,6,6,3/6/26 5:00, +1,1,1543,2026,1,1,,0,,,3,6,7,3/6/26 6:00, +1,1,1544,2026,1,1,,0,,,3,6,8,3/6/26 7:00, +1,1,1545,2026,1,1,,0,,,3,6,9,3/6/26 8:00, +1,1,1546,2026,1,1,,0,,,3,6,10,3/6/26 9:00, +1,1,1547,2026,1,1,,0,,,3,6,11,3/6/26 10:00, +1,1,1548,2026,1,1,,0,,,3,6,12,3/6/26 11:00, +1,1,1549,2026,1,1,,0,,,3,6,13,3/6/26 12:00, +1,1,1550,2026,1,1,,0,,,3,6,14,3/6/26 13:00, +1,1,1551,2026,1,1,,0,,,3,6,15,3/6/26 14:00, +1,1,1552,2026,1,1,,0,,,3,6,16,3/6/26 15:00, +1,1,1553,2026,1,1,,0,,,3,6,17,3/6/26 16:00, +1,1,1554,2026,1,1,,0,,,3,6,18,3/6/26 17:00, +1,1,1555,2026,1,1,,0,,,3,6,19,3/6/26 18:00, +1,1,1556,2026,1,1,,0,,,3,6,20,3/6/26 19:00, +1,1,1557,2026,1,1,,0,,,3,6,21,3/6/26 20:00, +1,1,1558,2026,1,1,,0,,,3,6,22,3/6/26 21:00, +1,1,1559,2026,1,1,,0,,,3,6,23,3/6/26 22:00, +1,1,1560,2026,1,1,,0,,,3,6,24,3/6/26 23:00, +1,1,1561,2026,1,1,,0,,,3,7,1,3/7/26 0:00, +1,1,1562,2026,1,1,,0,,,3,7,2,3/7/26 1:00, +1,1,1563,2026,1,1,,0,,,3,7,3,3/7/26 2:00, +1,1,1564,2026,1,1,,0,,,3,7,4,3/7/26 3:00, +1,1,1565,2026,1,1,,0,,,3,7,5,3/7/26 4:00, +1,1,1566,2026,1,1,,0,,,3,7,6,3/7/26 5:00, +1,1,1567,2026,1,1,,0,,,3,7,7,3/7/26 6:00, +1,1,1568,2026,1,1,,0,,,3,7,8,3/7/26 7:00, +1,1,1569,2026,1,1,,0,,,3,7,9,3/7/26 8:00, +1,1,1570,2026,1,1,,0,,,3,7,10,3/7/26 9:00, +1,1,1571,2026,1,1,,0,,,3,7,11,3/7/26 10:00, +1,1,1572,2026,1,1,,0,,,3,7,12,3/7/26 11:00, +1,1,1573,2026,1,1,,0,,,3,7,13,3/7/26 12:00, +1,1,1574,2026,1,1,,0,,,3,7,14,3/7/26 13:00, +1,1,1575,2026,1,1,,0,,,3,7,15,3/7/26 14:00, +1,1,1576,2026,1,1,,0,,,3,7,16,3/7/26 15:00, +1,1,1577,2026,1,1,,0,,,3,7,17,3/7/26 16:00, +1,1,1578,2026,1,1,,0,,,3,7,18,3/7/26 17:00, +1,1,1579,2026,1,1,,0,,,3,7,19,3/7/26 18:00, +1,1,1580,2026,1,1,,0,,,3,7,20,3/7/26 19:00, +1,1,1581,2026,1,1,,0,,,3,7,21,3/7/26 20:00, +1,1,1582,2026,1,1,,0,,,3,7,22,3/7/26 21:00, +1,1,1583,2026,1,1,,0,,,3,7,23,3/7/26 22:00, +1,1,1584,2026,1,1,,0,,,3,7,24,3/7/26 23:00, +1,1,1585,2026,1,1,,0,,,3,8,1,3/8/26 0:00, +1,1,1586,2026,1,1,,0,,,3,8,2,3/8/26 1:00, +1,1,1587,2026,1,1,,0,,,3,8,3,3/8/26 2:00, +1,1,1588,2026,1,1,,0,,,3,8,4,3/8/26 3:00, +1,1,1589,2026,1,1,,0,,,3,8,5,3/8/26 4:00, +1,1,1590,2026,1,1,,0,,,3,8,6,3/8/26 5:00, +1,1,1591,2026,1,1,,0,,,3,8,7,3/8/26 6:00, +1,1,1592,2026,1,1,,0,,,3,8,8,3/8/26 7:00, +1,1,1593,2026,1,1,,0,,,3,8,9,3/8/26 8:00, +1,1,1594,2026,1,1,,0,,,3,8,10,3/8/26 9:00, +1,1,1595,2026,1,1,,0,,,3,8,11,3/8/26 10:00, +1,1,1596,2026,1,1,,0,,,3,8,12,3/8/26 11:00, +1,1,1597,2026,1,1,,0,,,3,8,13,3/8/26 12:00, +1,1,1598,2026,1,1,,0,,,3,8,14,3/8/26 13:00, +1,1,1599,2026,1,1,,0,,,3,8,15,3/8/26 14:00, +1,1,1600,2026,1,1,,0,,,3,8,16,3/8/26 15:00, +1,1,1601,2026,1,1,,0,,,3,8,17,3/8/26 16:00, +1,1,1602,2026,1,1,,0,,,3,8,18,3/8/26 17:00, +1,1,1603,2026,1,1,,0,,,3,8,19,3/8/26 18:00, +1,1,1604,2026,1,1,,0,,,3,8,20,3/8/26 19:00, +1,1,1605,2026,1,1,,0,,,3,8,21,3/8/26 20:00, +1,1,1606,2026,1,1,,0,,,3,8,22,3/8/26 21:00, +1,1,1607,2026,1,1,,0,,,3,8,23,3/8/26 22:00, +1,1,1608,2026,1,1,,0,,,3,8,24,3/8/26 23:00, +1,1,1609,2026,1,1,,0,,,3,9,1,3/9/26 0:00, +1,1,1610,2026,1,1,,0,,,3,9,2,3/9/26 1:00, +1,1,1611,2026,1,1,,0,,,3,9,3,3/9/26 2:00, +1,1,1612,2026,1,1,,0,,,3,9,4,3/9/26 3:00, +1,1,1613,2026,1,1,,0,,,3,9,5,3/9/26 4:00, +1,1,1614,2026,1,1,,0,,,3,9,6,3/9/26 5:00, +1,1,1615,2026,1,1,,0,,,3,9,7,3/9/26 6:00, +1,1,1616,2026,1,1,,0,,,3,9,8,3/9/26 7:00, +1,1,1617,2026,1,1,,0,,,3,9,9,3/9/26 8:00, +1,1,1618,2026,1,1,,0,,,3,9,10,3/9/26 9:00, +1,1,1619,2026,1,1,,0,,,3,9,11,3/9/26 10:00, +1,1,1620,2026,1,1,,0,,,3,9,12,3/9/26 11:00, +1,1,1621,2026,1,1,,0,,,3,9,13,3/9/26 12:00, +1,1,1622,2026,1,1,,0,,,3,9,14,3/9/26 13:00, +1,1,1623,2026,1,1,,0,,,3,9,15,3/9/26 14:00, +1,1,1624,2026,1,1,,0,,,3,9,16,3/9/26 15:00, +1,1,1625,2026,1,1,,0,,,3,9,17,3/9/26 16:00, +1,1,1626,2026,1,1,,0,,,3,9,18,3/9/26 17:00, +1,1,1627,2026,1,1,,0,,,3,9,19,3/9/26 18:00, +1,1,1628,2026,1,1,,0,,,3,9,20,3/9/26 19:00, +1,1,1629,2026,1,1,,0,,,3,9,21,3/9/26 20:00, +1,1,1630,2026,1,1,,0,,,3,9,22,3/9/26 21:00, +1,1,1631,2026,1,1,,0,,,3,9,23,3/9/26 22:00, +1,1,1632,2026,1,1,,0,,,3,9,24,3/9/26 23:00, +1,1,1633,2026,1,1,,0,,,3,10,1,3/10/26 0:00, +1,1,1634,2026,1,1,,0,,,3,10,2,3/10/26 1:00, +1,1,1635,2026,1,1,,0,,,3,10,3,3/10/26 2:00, +1,1,1636,2026,1,1,,0,,,3,10,4,3/10/26 3:00, +1,1,1637,2026,1,1,,0,,,3,10,5,3/10/26 4:00, +1,1,1638,2026,1,1,,0,,,3,10,6,3/10/26 5:00, +1,1,1639,2026,1,1,,0,,,3,10,7,3/10/26 6:00, +1,1,1640,2026,1,1,,0,,,3,10,8,3/10/26 7:00, +1,1,1641,2026,1,1,,0,,,3,10,9,3/10/26 8:00, +1,1,1642,2026,1,1,,0,,,3,10,10,3/10/26 9:00, +1,1,1643,2026,1,1,,0,,,3,10,11,3/10/26 10:00, +1,1,1644,2026,1,1,,0,,,3,10,12,3/10/26 11:00, +1,1,1645,2026,1,1,,0,,,3,10,13,3/10/26 12:00, +1,1,1646,2026,1,1,,0,,,3,10,14,3/10/26 13:00, +1,1,1647,2026,1,1,,0,,,3,10,15,3/10/26 14:00, +1,1,1648,2026,1,1,,0,,,3,10,16,3/10/26 15:00, +1,1,1649,2026,1,1,,0,,,3,10,17,3/10/26 16:00, +1,1,1650,2026,1,1,,0,,,3,10,18,3/10/26 17:00, +1,1,1651,2026,1,1,,0,,,3,10,19,3/10/26 18:00, +1,1,1652,2026,1,1,,0,,,3,10,20,3/10/26 19:00, +1,1,1653,2026,1,1,,0,,,3,10,21,3/10/26 20:00, +1,1,1654,2026,1,1,,0,,,3,10,22,3/10/26 21:00, +1,1,1655,2026,1,1,,0,,,3,10,23,3/10/26 22:00, +1,1,1656,2026,1,1,,0,,,3,10,24,3/10/26 23:00, +1,1,1657,2026,1,1,,0,,,3,11,1,3/11/26 0:00, +1,1,1658,2026,1,1,,0,,,3,11,2,3/11/26 1:00, +1,1,1659,2026,1,1,,0,,,3,11,3,3/11/26 2:00, +1,1,1660,2026,1,1,,0,,,3,11,4,3/11/26 3:00, +1,1,1661,2026,1,1,,0,,,3,11,5,3/11/26 4:00, +1,1,1662,2026,1,1,,0,,,3,11,6,3/11/26 5:00, +1,1,1663,2026,1,1,,0,,,3,11,7,3/11/26 6:00, +1,1,1664,2026,1,1,,0,,,3,11,8,3/11/26 7:00, +1,1,1665,2026,1,1,,0,,,3,11,9,3/11/26 8:00, +1,1,1666,2026,1,1,,0,,,3,11,10,3/11/26 9:00, +1,1,1667,2026,1,1,,0,,,3,11,11,3/11/26 10:00, +1,1,1668,2026,1,1,,0,,,3,11,12,3/11/26 11:00, +1,1,1669,2026,1,1,,0,,,3,11,13,3/11/26 12:00, +1,1,1670,2026,1,1,,0,,,3,11,14,3/11/26 13:00, +1,1,1671,2026,1,1,,0,,,3,11,15,3/11/26 14:00, +1,1,1672,2026,1,1,,0,,,3,11,16,3/11/26 15:00, +1,1,1673,2026,1,1,,0,,,3,11,17,3/11/26 16:00, +1,1,1674,2026,1,1,,0,,,3,11,18,3/11/26 17:00, +1,1,1675,2026,1,1,,0,,,3,11,19,3/11/26 18:00, +1,1,1676,2026,1,1,,0,,,3,11,20,3/11/26 19:00, +1,1,1677,2026,1,1,,0,,,3,11,21,3/11/26 20:00, +1,1,1678,2026,1,1,,0,,,3,11,22,3/11/26 21:00, +1,1,1679,2026,1,1,,0,,,3,11,23,3/11/26 22:00, +1,1,1680,2026,1,1,,0,,,3,11,24,3/11/26 23:00, +1,1,1681,2026,1,1,,0,,,3,12,1,3/12/26 0:00, +1,1,1682,2026,1,1,,0,,,3,12,2,3/12/26 1:00, +1,1,1683,2026,1,1,,0,,,3,12,3,3/12/26 2:00, +1,1,1684,2026,1,1,,0,,,3,12,4,3/12/26 3:00, +1,1,1685,2026,1,1,,0,,,3,12,5,3/12/26 4:00, +1,1,1686,2026,1,1,,0,,,3,12,6,3/12/26 5:00, +1,1,1687,2026,1,1,,0,,,3,12,7,3/12/26 6:00, +1,1,1688,2026,1,1,,0,,,3,12,8,3/12/26 7:00, +1,1,1689,2026,1,1,,0,,,3,12,9,3/12/26 8:00, +1,1,1690,2026,1,1,,0,,,3,12,10,3/12/26 9:00, +1,1,1691,2026,1,1,,0,,,3,12,11,3/12/26 10:00, +1,1,1692,2026,1,1,,0,,,3,12,12,3/12/26 11:00, +1,1,1693,2026,1,1,,0,,,3,12,13,3/12/26 12:00, +1,1,1694,2026,1,1,,0,,,3,12,14,3/12/26 13:00, +1,1,1695,2026,1,1,,0,,,3,12,15,3/12/26 14:00, +1,1,1696,2026,1,1,,0,,,3,12,16,3/12/26 15:00, +1,1,1697,2026,1,1,,0,,,3,12,17,3/12/26 16:00, +1,1,1698,2026,1,1,,0,,,3,12,18,3/12/26 17:00, +1,1,1699,2026,1,1,,0,,,3,12,19,3/12/26 18:00, +1,1,1700,2026,1,1,,0,,,3,12,20,3/12/26 19:00, +1,1,1701,2026,1,1,,0,,,3,12,21,3/12/26 20:00, +1,1,1702,2026,1,1,,0,,,3,12,22,3/12/26 21:00, +1,1,1703,2026,1,1,,0,,,3,12,23,3/12/26 22:00, +1,1,1704,2026,1,1,,0,,,3,12,24,3/12/26 23:00, +1,1,1705,2026,1,1,,0,,,3,13,1,3/13/26 0:00, +1,1,1706,2026,1,1,,0,,,3,13,2,3/13/26 1:00, +1,1,1707,2026,1,1,,0,,,3,13,3,3/13/26 2:00, +1,1,1708,2026,1,1,,0,,,3,13,4,3/13/26 3:00, +1,1,1709,2026,1,1,,0,,,3,13,5,3/13/26 4:00, +1,1,1710,2026,1,1,,0,,,3,13,6,3/13/26 5:00, +1,1,1711,2026,1,1,,0,,,3,13,7,3/13/26 6:00, +1,1,1712,2026,1,1,,0,,,3,13,8,3/13/26 7:00, +1,1,1713,2026,1,1,,0,,,3,13,9,3/13/26 8:00, +1,1,1714,2026,1,1,,0,,,3,13,10,3/13/26 9:00, +1,1,1715,2026,1,1,,0,,,3,13,11,3/13/26 10:00, +1,1,1716,2026,1,1,,0,,,3,13,12,3/13/26 11:00, +1,1,1717,2026,1,1,,0,,,3,13,13,3/13/26 12:00, +1,1,1718,2026,1,1,,0,,,3,13,14,3/13/26 13:00, +1,1,1719,2026,1,1,,0,,,3,13,15,3/13/26 14:00, +1,1,1720,2026,1,1,,0,,,3,13,16,3/13/26 15:00, +1,1,1721,2026,1,1,,0,,,3,13,17,3/13/26 16:00, +1,1,1722,2026,1,1,,0,,,3,13,18,3/13/26 17:00, +1,1,1723,2026,1,1,,0,,,3,13,19,3/13/26 18:00, +1,1,1724,2026,1,1,,0,,,3,13,20,3/13/26 19:00, +1,1,1725,2026,1,1,,0,,,3,13,21,3/13/26 20:00, +1,1,1726,2026,1,1,,0,,,3,13,22,3/13/26 21:00, +1,1,1727,2026,1,1,,0,,,3,13,23,3/13/26 22:00, +1,1,1728,2026,1,1,,0,,,3,13,24,3/13/26 23:00, +1,1,1729,2026,1,1,,0,,,3,14,1,3/14/26 0:00, +1,1,1730,2026,1,1,,0,,,3,14,2,3/14/26 1:00, +1,1,1731,2026,1,1,,0,,,3,14,3,3/14/26 2:00, +1,1,1732,2026,1,1,,0,,,3,14,4,3/14/26 3:00, +1,1,1733,2026,1,1,,0,,,3,14,5,3/14/26 4:00, +1,1,1734,2026,1,1,,0,,,3,14,6,3/14/26 5:00, +1,1,1735,2026,1,1,,0,,,3,14,7,3/14/26 6:00, +1,1,1736,2026,1,1,,0,,,3,14,8,3/14/26 7:00, +1,1,1737,2026,1,1,,0,,,3,14,9,3/14/26 8:00, +1,1,1738,2026,1,1,,0,,,3,14,10,3/14/26 9:00, +1,1,1739,2026,1,1,,0,,,3,14,11,3/14/26 10:00, +1,1,1740,2026,1,1,,0,,,3,14,12,3/14/26 11:00, +1,1,1741,2026,1,1,,0,,,3,14,13,3/14/26 12:00, +1,1,1742,2026,1,1,,0,,,3,14,14,3/14/26 13:00, +1,1,1743,2026,1,1,,0,,,3,14,15,3/14/26 14:00, +1,1,1744,2026,1,1,,0,,,3,14,16,3/14/26 15:00, +1,1,1745,2026,1,1,,0,,,3,14,17,3/14/26 16:00, +1,1,1746,2026,1,1,,0,,,3,14,18,3/14/26 17:00, +1,1,1747,2026,1,1,,0,,,3,14,19,3/14/26 18:00, +1,1,1748,2026,1,1,,0,,,3,14,20,3/14/26 19:00, +1,1,1749,2026,1,1,,0,,,3,14,21,3/14/26 20:00, +1,1,1750,2026,1,1,,0,,,3,14,22,3/14/26 21:00, +1,1,1751,2026,1,1,,0,,,3,14,23,3/14/26 22:00, +1,1,1752,2026,1,1,,0,,,3,14,24,3/14/26 23:00, +1,1,1753,2026,1,1,,0,,,3,15,1,3/15/26 0:00, +1,1,1754,2026,1,1,,0,,,3,15,2,3/15/26 1:00, +1,1,1755,2026,1,1,,0,,,3,15,3,3/15/26 2:00, +1,1,1756,2026,1,1,,0,,,3,15,4,3/15/26 3:00, +1,1,1757,2026,1,1,,0,,,3,15,5,3/15/26 4:00, +1,1,1758,2026,1,1,,0,,,3,15,6,3/15/26 5:00, +1,1,1759,2026,1,1,,0,,,3,15,7,3/15/26 6:00, +1,1,1760,2026,1,1,,0,,,3,15,8,3/15/26 7:00, +1,1,1761,2026,1,1,,0,,,3,15,9,3/15/26 8:00, +1,1,1762,2026,1,1,,0,,,3,15,10,3/15/26 9:00, +1,1,1763,2026,1,1,,0,,,3,15,11,3/15/26 10:00, +1,1,1764,2026,1,1,,0,,,3,15,12,3/15/26 11:00, +1,1,1765,2026,1,1,,0,,,3,15,13,3/15/26 12:00, +1,1,1766,2026,1,1,,0,,,3,15,14,3/15/26 13:00, +1,1,1767,2026,1,1,,0,,,3,15,15,3/15/26 14:00, +1,1,1768,2026,1,1,,0,,,3,15,16,3/15/26 15:00, +1,1,1769,2026,1,1,,0,,,3,15,17,3/15/26 16:00, +1,1,1770,2026,1,1,,0,,,3,15,18,3/15/26 17:00, +1,1,1771,2026,1,1,,0,,,3,15,19,3/15/26 18:00, +1,1,1772,2026,1,1,,0,,,3,15,20,3/15/26 19:00, +1,1,1773,2026,1,1,,0,,,3,15,21,3/15/26 20:00, +1,1,1774,2026,1,1,,0,,,3,15,22,3/15/26 21:00, +1,1,1775,2026,1,1,,0,,,3,15,23,3/15/26 22:00, +1,1,1776,2026,1,1,,0,,,3,15,24,3/15/26 23:00, +1,1,1777,2026,1,1,,0,,,3,16,1,3/16/26 0:00, +1,1,1778,2026,1,1,,0,,,3,16,2,3/16/26 1:00, +1,1,1779,2026,1,1,,0,,,3,16,3,3/16/26 2:00, +1,1,1780,2026,1,1,,0,,,3,16,4,3/16/26 3:00, +1,1,1781,2026,1,1,,0,,,3,16,5,3/16/26 4:00, +1,1,1782,2026,1,1,,0,,,3,16,6,3/16/26 5:00, +1,1,1783,2026,1,1,,0,,,3,16,7,3/16/26 6:00, +1,1,1784,2026,1,1,,0,,,3,16,8,3/16/26 7:00, +1,1,1785,2026,1,1,,0,,,3,16,9,3/16/26 8:00, +1,1,1786,2026,1,1,,0,,,3,16,10,3/16/26 9:00, +1,1,1787,2026,1,1,,0,,,3,16,11,3/16/26 10:00, +1,1,1788,2026,1,1,,0,,,3,16,12,3/16/26 11:00, +1,1,1789,2026,1,1,,0,,,3,16,13,3/16/26 12:00, +1,1,1790,2026,1,1,,0,,,3,16,14,3/16/26 13:00, +1,1,1791,2026,1,1,,0,,,3,16,15,3/16/26 14:00, +1,1,1792,2026,1,1,,0,,,3,16,16,3/16/26 15:00, +1,1,1793,2026,1,1,,0,,,3,16,17,3/16/26 16:00, +1,1,1794,2026,1,1,,0,,,3,16,18,3/16/26 17:00, +1,1,1795,2026,1,1,,0,,,3,16,19,3/16/26 18:00, +1,1,1796,2026,1,1,,0,,,3,16,20,3/16/26 19:00, +1,1,1797,2026,1,1,,0,,,3,16,21,3/16/26 20:00, +1,1,1798,2026,1,1,,0,,,3,16,22,3/16/26 21:00, +1,1,1799,2026,1,1,,0,,,3,16,23,3/16/26 22:00, +1,1,1800,2026,1,1,,0,,,3,16,24,3/16/26 23:00, +1,1,1801,2026,1,1,,0,,,3,17,1,3/17/26 0:00, +1,1,1802,2026,1,1,,0,,,3,17,2,3/17/26 1:00, +1,1,1803,2026,1,1,,0,,,3,17,3,3/17/26 2:00, +1,1,1804,2026,1,1,,0,,,3,17,4,3/17/26 3:00, +1,1,1805,2026,1,1,,0,,,3,17,5,3/17/26 4:00, +1,1,1806,2026,1,1,,0,,,3,17,6,3/17/26 5:00, +1,1,1807,2026,1,1,,0,,,3,17,7,3/17/26 6:00, +1,1,1808,2026,1,1,,0,,,3,17,8,3/17/26 7:00, +1,1,1809,2026,1,1,,0,,,3,17,9,3/17/26 8:00, +1,1,1810,2026,1,1,,0,,,3,17,10,3/17/26 9:00, +1,1,1811,2026,1,1,,0,,,3,17,11,3/17/26 10:00, +1,1,1812,2026,1,1,,0,,,3,17,12,3/17/26 11:00, +1,1,1813,2026,1,1,,0,,,3,17,13,3/17/26 12:00, +1,1,1814,2026,1,1,,0,,,3,17,14,3/17/26 13:00, +1,1,1815,2026,1,1,,0,,,3,17,15,3/17/26 14:00, +1,1,1816,2026,1,1,,0,,,3,17,16,3/17/26 15:00, +1,1,1817,2026,1,1,,0,,,3,17,17,3/17/26 16:00, +1,1,1818,2026,1,1,,0,,,3,17,18,3/17/26 17:00, +1,1,1819,2026,1,1,,0,,,3,17,19,3/17/26 18:00, +1,1,1820,2026,1,1,,0,,,3,17,20,3/17/26 19:00, +1,1,1821,2026,1,1,,0,,,3,17,21,3/17/26 20:00, +1,1,1822,2026,1,1,,0,,,3,17,22,3/17/26 21:00, +1,1,1823,2026,1,1,,0,,,3,17,23,3/17/26 22:00, +1,1,1824,2026,1,1,,0,,,3,17,24,3/17/26 23:00, +1,1,1825,2026,1,1,,0,,,3,18,1,3/18/26 0:00, +1,1,1826,2026,1,1,,0,,,3,18,2,3/18/26 1:00, +1,1,1827,2026,1,1,,0,,,3,18,3,3/18/26 2:00, +1,1,1828,2026,1,1,,0,,,3,18,4,3/18/26 3:00, +1,1,1829,2026,1,1,,0,,,3,18,5,3/18/26 4:00, +1,1,1830,2026,1,1,,0,,,3,18,6,3/18/26 5:00, +1,1,1831,2026,1,1,,0,,,3,18,7,3/18/26 6:00, +1,1,1832,2026,1,1,,0,,,3,18,8,3/18/26 7:00, +1,1,1833,2026,1,1,,0,,,3,18,9,3/18/26 8:00, +1,1,1834,2026,1,1,,0,,,3,18,10,3/18/26 9:00, +1,1,1835,2026,1,1,,0,,,3,18,11,3/18/26 10:00, +1,1,1836,2026,1,1,,0,,,3,18,12,3/18/26 11:00, +1,1,1837,2026,1,1,,0,,,3,18,13,3/18/26 12:00, +1,1,1838,2026,1,1,,0,,,3,18,14,3/18/26 13:00, +1,1,1839,2026,1,1,,0,,,3,18,15,3/18/26 14:00, +1,1,1840,2026,1,1,,0,,,3,18,16,3/18/26 15:00, +1,1,1841,2026,1,1,,0,,,3,18,17,3/18/26 16:00, +1,1,1842,2026,1,1,,0,,,3,18,18,3/18/26 17:00, +1,1,1843,2026,1,1,,0,,,3,18,19,3/18/26 18:00, +1,1,1844,2026,1,1,,0,,,3,18,20,3/18/26 19:00, +1,1,1845,2026,1,1,,0,,,3,18,21,3/18/26 20:00, +1,1,1846,2026,1,1,,0,,,3,18,22,3/18/26 21:00, +1,1,1847,2026,1,1,,0,,,3,18,23,3/18/26 22:00, +1,1,1848,2026,1,1,,0,,,3,18,24,3/18/26 23:00, +1,1,1849,2026,1,1,,0,,,3,19,1,3/19/26 0:00, +1,1,1850,2026,1,1,,0,,,3,19,2,3/19/26 1:00, +1,1,1851,2026,1,1,,0,,,3,19,3,3/19/26 2:00, +1,1,1852,2026,1,1,,0,,,3,19,4,3/19/26 3:00, +1,1,1853,2026,1,1,,0,,,3,19,5,3/19/26 4:00, +1,1,1854,2026,1,1,,0,,,3,19,6,3/19/26 5:00, +1,1,1855,2026,1,1,,0,,,3,19,7,3/19/26 6:00, +1,1,1856,2026,1,1,,0,,,3,19,8,3/19/26 7:00, +1,1,1857,2026,1,1,,0,,,3,19,9,3/19/26 8:00, +1,1,1858,2026,1,1,,0,,,3,19,10,3/19/26 9:00, +1,1,1859,2026,1,1,,0,,,3,19,11,3/19/26 10:00, +1,1,1860,2026,1,1,,0,,,3,19,12,3/19/26 11:00, +1,1,1861,2026,1,1,,0,,,3,19,13,3/19/26 12:00, +1,1,1862,2026,1,1,,0,,,3,19,14,3/19/26 13:00, +1,1,1863,2026,1,1,,0,,,3,19,15,3/19/26 14:00, +1,1,1864,2026,1,1,,0,,,3,19,16,3/19/26 15:00, +1,1,1865,2026,1,1,,0,,,3,19,17,3/19/26 16:00, +1,1,1866,2026,1,1,,0,,,3,19,18,3/19/26 17:00, +1,1,1867,2026,1,1,,0,,,3,19,19,3/19/26 18:00, +1,1,1868,2026,1,1,,0,,,3,19,20,3/19/26 19:00, +1,1,1869,2026,1,1,,0,,,3,19,21,3/19/26 20:00, +1,1,1870,2026,1,1,,0,,,3,19,22,3/19/26 21:00, +1,1,1871,2026,1,1,,0,,,3,19,23,3/19/26 22:00, +1,1,1872,2026,1,1,,0,,,3,19,24,3/19/26 23:00, +1,1,1873,2026,1,1,,0,,,3,20,1,3/20/26 0:00, +1,1,1874,2026,1,1,,0,,,3,20,2,3/20/26 1:00, +1,1,1875,2026,1,1,,0,,,3,20,3,3/20/26 2:00, +1,1,1876,2026,1,1,,0,,,3,20,4,3/20/26 3:00, +1,1,1877,2026,1,1,,0,,,3,20,5,3/20/26 4:00, +1,1,1878,2026,1,1,,0,,,3,20,6,3/20/26 5:00, +1,1,1879,2026,1,1,,0,,,3,20,7,3/20/26 6:00, +1,1,1880,2026,1,1,,0,,,3,20,8,3/20/26 7:00, +1,1,1881,2026,1,1,,0,,,3,20,9,3/20/26 8:00, +1,1,1882,2026,1,1,,0,,,3,20,10,3/20/26 9:00, +1,1,1883,2026,1,1,,0,,,3,20,11,3/20/26 10:00, +1,1,1884,2026,1,1,,0,,,3,20,12,3/20/26 11:00, +1,1,1885,2026,1,1,,0,,,3,20,13,3/20/26 12:00, +1,1,1886,2026,1,1,,0,,,3,20,14,3/20/26 13:00, +1,1,1887,2026,1,1,,0,,,3,20,15,3/20/26 14:00, +1,1,1888,2026,1,1,,0,,,3,20,16,3/20/26 15:00, +1,1,1889,2026,1,1,,0,,,3,20,17,3/20/26 16:00, +1,1,1890,2026,1,1,,0,,,3,20,18,3/20/26 17:00, +1,1,1891,2026,1,1,,0,,,3,20,19,3/20/26 18:00, +1,1,1892,2026,1,1,,0,,,3,20,20,3/20/26 19:00, +1,1,1893,2026,1,1,,0,,,3,20,21,3/20/26 20:00, +1,1,1894,2026,1,1,,0,,,3,20,22,3/20/26 21:00, +1,1,1895,2026,1,1,,0,,,3,20,23,3/20/26 22:00, +1,1,1896,2026,1,1,,0,,,3,20,24,3/20/26 23:00, +1,1,1897,2026,1,1,,0,,,3,21,1,3/21/26 0:00, +1,1,1898,2026,1,1,,0,,,3,21,2,3/21/26 1:00, +1,1,1899,2026,1,1,,0,,,3,21,3,3/21/26 2:00, +1,1,1900,2026,1,1,,0,,,3,21,4,3/21/26 3:00, +1,1,1901,2026,1,1,,0,,,3,21,5,3/21/26 4:00, +1,1,1902,2026,1,1,,0,,,3,21,6,3/21/26 5:00, +1,1,1903,2026,1,1,,0,,,3,21,7,3/21/26 6:00, +1,1,1904,2026,1,1,,0,,,3,21,8,3/21/26 7:00, +1,1,1905,2026,1,1,,0,,,3,21,9,3/21/26 8:00, +1,1,1906,2026,1,1,,0,,,3,21,10,3/21/26 9:00, +1,1,1907,2026,1,1,,0,,,3,21,11,3/21/26 10:00, +1,1,1908,2026,1,1,,0,,,3,21,12,3/21/26 11:00, +1,1,1909,2026,1,1,,0,,,3,21,13,3/21/26 12:00, +1,1,1910,2026,1,1,,0,,,3,21,14,3/21/26 13:00, +1,1,1911,2026,1,1,,0,,,3,21,15,3/21/26 14:00, +1,1,1912,2026,1,1,,0,,,3,21,16,3/21/26 15:00, +1,1,1913,2026,1,1,,0,,,3,21,17,3/21/26 16:00, +1,1,1914,2026,1,1,,0,,,3,21,18,3/21/26 17:00, +1,1,1915,2026,1,1,,0,,,3,21,19,3/21/26 18:00, +1,1,1916,2026,1,1,,0,,,3,21,20,3/21/26 19:00, +1,1,1917,2026,1,1,,0,,,3,21,21,3/21/26 20:00, +1,1,1918,2026,1,1,,0,,,3,21,22,3/21/26 21:00, +1,1,1919,2026,1,1,,0,,,3,21,23,3/21/26 22:00, +1,1,1920,2026,1,1,,0,,,3,21,24,3/21/26 23:00, +1,1,1921,2026,1,1,,0,,,3,22,1,3/22/26 0:00, +1,1,1922,2026,1,1,,0,,,3,22,2,3/22/26 1:00, +1,1,1923,2026,1,1,,0,,,3,22,3,3/22/26 2:00, +1,1,1924,2026,1,1,,0,,,3,22,4,3/22/26 3:00, +1,1,1925,2026,1,1,,0,,,3,22,5,3/22/26 4:00, +1,1,1926,2026,1,1,,0,,,3,22,6,3/22/26 5:00, +1,1,1927,2026,1,1,,0,,,3,22,7,3/22/26 6:00, +1,1,1928,2026,1,1,,0,,,3,22,8,3/22/26 7:00, +1,1,1929,2026,1,1,,0,,,3,22,9,3/22/26 8:00, +1,1,1930,2026,1,1,,0,,,3,22,10,3/22/26 9:00, +1,1,1931,2026,1,1,,0,,,3,22,11,3/22/26 10:00, +1,1,1932,2026,1,1,,0,,,3,22,12,3/22/26 11:00, +1,1,1933,2026,1,1,,0,,,3,22,13,3/22/26 12:00, +1,1,1934,2026,1,1,,0,,,3,22,14,3/22/26 13:00, +1,1,1935,2026,1,1,,0,,,3,22,15,3/22/26 14:00, +1,1,1936,2026,1,1,,0,,,3,22,16,3/22/26 15:00, +1,1,1937,2026,1,1,,0,,,3,22,17,3/22/26 16:00, +1,1,1938,2026,1,1,,0,,,3,22,18,3/22/26 17:00, +1,1,1939,2026,1,1,,0,,,3,22,19,3/22/26 18:00, +1,1,1940,2026,1,1,,0,,,3,22,20,3/22/26 19:00, +1,1,1941,2026,1,1,,0,,,3,22,21,3/22/26 20:00, +1,1,1942,2026,1,1,,0,,,3,22,22,3/22/26 21:00, +1,1,1943,2026,1,1,,0,,,3,22,23,3/22/26 22:00, +1,1,1944,2026,1,1,,0,,,3,22,24,3/22/26 23:00, +1,1,1945,2026,1,1,,0,,,3,23,1,3/23/26 0:00, +1,1,1946,2026,1,1,,0,,,3,23,2,3/23/26 1:00, +1,1,1947,2026,1,1,,0,,,3,23,3,3/23/26 2:00, +1,1,1948,2026,1,1,,0,,,3,23,4,3/23/26 3:00, +1,1,1949,2026,1,1,,0,,,3,23,5,3/23/26 4:00, +1,1,1950,2026,1,1,,0,,,3,23,6,3/23/26 5:00, +1,1,1951,2026,1,1,,0,,,3,23,7,3/23/26 6:00, +1,1,1952,2026,1,1,,0,,,3,23,8,3/23/26 7:00, +1,1,1953,2026,1,1,,0,,,3,23,9,3/23/26 8:00, +1,1,1954,2026,1,1,,0,,,3,23,10,3/23/26 9:00, +1,1,1955,2026,1,1,,0,,,3,23,11,3/23/26 10:00, +1,1,1956,2026,1,1,,0,,,3,23,12,3/23/26 11:00, +1,1,1957,2026,1,1,,0,,,3,23,13,3/23/26 12:00, +1,1,1958,2026,1,1,,0,,,3,23,14,3/23/26 13:00, +1,1,1959,2026,1,1,,0,,,3,23,15,3/23/26 14:00, +1,1,1960,2026,1,1,,0,,,3,23,16,3/23/26 15:00, +1,1,1961,2026,1,1,,0,,,3,23,17,3/23/26 16:00, +1,1,1962,2026,1,1,,0,,,3,23,18,3/23/26 17:00, +1,1,1963,2026,1,1,,0,,,3,23,19,3/23/26 18:00, +1,1,1964,2026,1,1,,0,,,3,23,20,3/23/26 19:00, +1,1,1965,2026,1,1,,0,,,3,23,21,3/23/26 20:00, +1,1,1966,2026,1,1,,0,,,3,23,22,3/23/26 21:00, +1,1,1967,2026,1,1,,0,,,3,23,23,3/23/26 22:00, +1,1,1968,2026,1,1,,0,,,3,23,24,3/23/26 23:00, +1,1,1969,2026,1,1,,0,,,3,24,1,3/24/26 0:00, +1,1,1970,2026,1,1,,0,,,3,24,2,3/24/26 1:00, +1,1,1971,2026,1,1,,0,,,3,24,3,3/24/26 2:00, +1,1,1972,2026,1,1,,0,,,3,24,4,3/24/26 3:00, +1,1,1973,2026,1,1,,0,,,3,24,5,3/24/26 4:00, +1,1,1974,2026,1,1,,0,,,3,24,6,3/24/26 5:00, +1,1,1975,2026,1,1,,0,,,3,24,7,3/24/26 6:00, +1,1,1976,2026,1,1,,0,,,3,24,8,3/24/26 7:00, +1,1,1977,2026,1,1,,0,,,3,24,9,3/24/26 8:00, +1,1,1978,2026,1,1,,0,,,3,24,10,3/24/26 9:00, +1,1,1979,2026,1,1,,0,,,3,24,11,3/24/26 10:00, +1,1,1980,2026,1,1,,0,,,3,24,12,3/24/26 11:00, +1,1,1981,2026,1,1,,0,,,3,24,13,3/24/26 12:00, +1,1,1982,2026,1,1,,0,,,3,24,14,3/24/26 13:00, +1,1,1983,2026,1,1,,0,,,3,24,15,3/24/26 14:00, +1,1,1984,2026,1,1,,0,,,3,24,16,3/24/26 15:00, +1,1,1985,2026,1,1,,0,,,3,24,17,3/24/26 16:00, +1,1,1986,2026,1,1,,0,,,3,24,18,3/24/26 17:00, +1,1,1987,2026,1,1,,0,,,3,24,19,3/24/26 18:00, +1,1,1988,2026,1,1,,0,,,3,24,20,3/24/26 19:00, +1,1,1989,2026,1,1,,0,,,3,24,21,3/24/26 20:00, +1,1,1990,2026,1,1,,0,,,3,24,22,3/24/26 21:00, +1,1,1991,2026,1,1,,0,,,3,24,23,3/24/26 22:00, +1,1,1992,2026,1,1,,0,,,3,24,24,3/24/26 23:00, +1,1,1993,2026,1,1,,0,,,3,25,1,3/25/26 0:00, +1,1,1994,2026,1,1,,0,,,3,25,2,3/25/26 1:00, +1,1,1995,2026,1,1,,0,,,3,25,3,3/25/26 2:00, +1,1,1996,2026,1,1,,0,,,3,25,4,3/25/26 3:00, +1,1,1997,2026,1,1,,0,,,3,25,5,3/25/26 4:00, +1,1,1998,2026,1,1,,0,,,3,25,6,3/25/26 5:00, +1,1,1999,2026,1,1,,0,,,3,25,7,3/25/26 6:00, +1,1,2000,2026,1,1,,0,,,3,25,8,3/25/26 7:00, +1,1,2001,2026,1,1,,0,,,3,25,9,3/25/26 8:00, +1,1,2002,2026,1,1,,0,,,3,25,10,3/25/26 9:00, +1,1,2003,2026,1,1,,0,,,3,25,11,3/25/26 10:00, +1,1,2004,2026,1,1,,0,,,3,25,12,3/25/26 11:00, +1,1,2005,2026,1,1,,0,,,3,25,13,3/25/26 12:00, +1,1,2006,2026,1,1,,0,,,3,25,14,3/25/26 13:00, +1,1,2007,2026,1,1,,0,,,3,25,15,3/25/26 14:00, +1,1,2008,2026,1,1,,0,,,3,25,16,3/25/26 15:00, +1,1,2009,2026,1,1,,0,,,3,25,17,3/25/26 16:00, +1,1,2010,2026,1,1,,0,,,3,25,18,3/25/26 17:00, +1,1,2011,2026,1,1,,0,,,3,25,19,3/25/26 18:00, +1,1,2012,2026,1,1,,0,,,3,25,20,3/25/26 19:00, +1,1,2013,2026,1,1,,0,,,3,25,21,3/25/26 20:00, +1,1,2014,2026,1,1,,0,,,3,25,22,3/25/26 21:00, +1,1,2015,2026,1,1,,0,,,3,25,23,3/25/26 22:00, +1,1,2016,2026,1,1,,0,,,3,25,24,3/25/26 23:00, +1,1,2017,2026,1,1,,0,,,3,26,1,3/26/26 0:00, +1,1,2018,2026,1,1,,0,,,3,26,2,3/26/26 1:00, +1,1,2019,2026,1,1,,0,,,3,26,3,3/26/26 2:00, +1,1,2020,2026,1,1,,0,,,3,26,4,3/26/26 3:00, +1,1,2021,2026,1,1,,0,,,3,26,5,3/26/26 4:00, +1,1,2022,2026,1,1,,0,,,3,26,6,3/26/26 5:00, +1,1,2023,2026,1,1,,0,,,3,26,7,3/26/26 6:00, +1,1,2024,2026,1,1,,0,,,3,26,8,3/26/26 7:00, +1,1,2025,2026,1,1,,0,,,3,26,9,3/26/26 8:00, +1,1,2026,2026,1,1,,0,,,3,26,10,3/26/26 9:00, +1,1,2027,2026,1,1,,0,,,3,26,11,3/26/26 10:00, +1,1,2028,2026,1,1,,0,,,3,26,12,3/26/26 11:00, +1,1,2029,2026,1,1,,0,,,3,26,13,3/26/26 12:00, +1,1,2030,2026,1,1,,0,,,3,26,14,3/26/26 13:00, +1,1,2031,2026,1,1,,0,,,3,26,15,3/26/26 14:00, +1,1,2032,2026,1,1,,0,,,3,26,16,3/26/26 15:00, +1,1,2033,2026,1,1,,0,,,3,26,17,3/26/26 16:00, +1,1,2034,2026,1,1,,0,,,3,26,18,3/26/26 17:00, +1,1,2035,2026,1,1,,0,,,3,26,19,3/26/26 18:00, +1,1,2036,2026,1,1,,0,,,3,26,20,3/26/26 19:00, +1,1,2037,2026,1,1,,0,,,3,26,21,3/26/26 20:00, +1,1,2038,2026,1,1,,0,,,3,26,22,3/26/26 21:00, +1,1,2039,2026,1,1,,0,,,3,26,23,3/26/26 22:00, +1,1,2040,2026,1,1,,0,,,3,26,24,3/26/26 23:00, +1,1,2041,2026,1,1,,0,,,3,27,1,3/27/26 0:00, +1,1,2042,2026,1,1,,0,,,3,27,2,3/27/26 1:00, +1,1,2043,2026,1,1,,0,,,3,27,3,3/27/26 2:00, +1,1,2044,2026,1,1,,0,,,3,27,4,3/27/26 3:00, +1,1,2045,2026,1,1,,0,,,3,27,5,3/27/26 4:00, +1,1,2046,2026,1,1,,0,,,3,27,6,3/27/26 5:00, +1,1,2047,2026,1,1,,0,,,3,27,7,3/27/26 6:00, +1,1,2048,2026,1,1,,0,,,3,27,8,3/27/26 7:00, +1,1,2049,2026,1,1,,0,,,3,27,9,3/27/26 8:00, +1,1,2050,2026,1,1,,0,,,3,27,10,3/27/26 9:00, +1,1,2051,2026,1,1,,0,,,3,27,11,3/27/26 10:00, +1,1,2052,2026,1,1,,0,,,3,27,12,3/27/26 11:00, +1,1,2053,2026,1,1,,0,,,3,27,13,3/27/26 12:00, +1,1,2054,2026,1,1,,0,,,3,27,14,3/27/26 13:00, +1,1,2055,2026,1,1,,0,,,3,27,15,3/27/26 14:00, +1,1,2056,2026,1,1,,0,,,3,27,16,3/27/26 15:00, +1,1,2057,2026,1,1,,0,,,3,27,17,3/27/26 16:00, +1,1,2058,2026,1,1,,0,,,3,27,18,3/27/26 17:00, +1,1,2059,2026,1,1,,0,,,3,27,19,3/27/26 18:00, +1,1,2060,2026,1,1,,0,,,3,27,20,3/27/26 19:00, +1,1,2061,2026,1,1,,0,,,3,27,21,3/27/26 20:00, +1,1,2062,2026,1,1,,0,,,3,27,22,3/27/26 21:00, +1,1,2063,2026,1,1,,0,,,3,27,23,3/27/26 22:00, +1,1,2064,2026,1,1,,0,,,3,27,24,3/27/26 23:00, +1,1,2065,2026,1,1,,0,,,3,28,1,3/28/26 0:00, +1,1,2066,2026,1,1,,0,,,3,28,2,3/28/26 1:00, +1,1,2067,2026,1,1,,0,,,3,28,3,3/28/26 2:00, +1,1,2068,2026,1,1,,0,,,3,28,4,3/28/26 3:00, +1,1,2069,2026,1,1,,0,,,3,28,5,3/28/26 4:00, +1,1,2070,2026,1,1,,0,,,3,28,6,3/28/26 5:00, +1,1,2071,2026,1,1,,0,,,3,28,7,3/28/26 6:00, +1,1,2072,2026,1,1,,0,,,3,28,8,3/28/26 7:00, +1,1,2073,2026,1,1,,0,,,3,28,9,3/28/26 8:00, +1,1,2074,2026,1,1,,0,,,3,28,10,3/28/26 9:00, +1,1,2075,2026,1,1,,0,,,3,28,11,3/28/26 10:00, +1,1,2076,2026,1,1,,0,,,3,28,12,3/28/26 11:00, +1,1,2077,2026,1,1,,0,,,3,28,13,3/28/26 12:00, +1,1,2078,2026,1,1,,0,,,3,28,14,3/28/26 13:00, +1,1,2079,2026,1,1,,0,,,3,28,15,3/28/26 14:00, +1,1,2080,2026,1,1,,0,,,3,28,16,3/28/26 15:00, +1,1,2081,2026,1,1,,0,,,3,28,17,3/28/26 16:00, +1,1,2082,2026,1,1,,0,,,3,28,18,3/28/26 17:00, +1,1,2083,2026,1,1,,0,,,3,28,19,3/28/26 18:00, +1,1,2084,2026,1,1,,0,,,3,28,20,3/28/26 19:00, +1,1,2085,2026,1,1,,0,,,3,28,21,3/28/26 20:00, +1,1,2086,2026,1,1,,0,,,3,28,22,3/28/26 21:00, +1,1,2087,2026,1,1,,0,,,3,28,23,3/28/26 22:00, +1,1,2088,2026,1,1,,0,,,3,28,24,3/28/26 23:00, +1,1,2089,2026,1,1,,0,,,3,29,1,3/29/26 0:00, +1,1,2090,2026,1,1,,0,,,3,29,2,3/29/26 1:00, +1,1,2091,2026,1,1,,0,,,3,29,3,3/29/26 2:00, +1,1,2092,2026,1,1,,0,,,3,29,4,3/29/26 3:00, +1,1,2093,2026,1,1,,0,,,3,29,5,3/29/26 4:00, +1,1,2094,2026,1,1,,0,,,3,29,6,3/29/26 5:00, +1,1,2095,2026,1,1,,0,,,3,29,7,3/29/26 6:00, +1,1,2096,2026,1,1,,0,,,3,29,8,3/29/26 7:00, +1,1,2097,2026,1,1,,0,,,3,29,9,3/29/26 8:00, +1,1,2098,2026,1,1,,0,,,3,29,10,3/29/26 9:00, +1,1,2099,2026,1,1,,0,,,3,29,11,3/29/26 10:00, +1,1,2100,2026,1,1,,0,,,3,29,12,3/29/26 11:00, +1,1,2101,2026,1,1,,0,,,3,29,13,3/29/26 12:00, +1,1,2102,2026,1,1,,0,,,3,29,14,3/29/26 13:00, +1,1,2103,2026,1,1,,0,,,3,29,15,3/29/26 14:00, +1,1,2104,2026,1,1,,0,,,3,29,16,3/29/26 15:00, +1,1,2105,2026,1,1,,0,,,3,29,17,3/29/26 16:00, +1,1,2106,2026,1,1,,0,,,3,29,18,3/29/26 17:00, +1,1,2107,2026,1,1,,0,,,3,29,19,3/29/26 18:00, +1,1,2108,2026,1,1,,0,,,3,29,20,3/29/26 19:00, +1,1,2109,2026,1,1,,0,,,3,29,21,3/29/26 20:00, +1,1,2110,2026,1,1,,0,,,3,29,22,3/29/26 21:00, +1,1,2111,2026,1,1,,0,,,3,29,23,3/29/26 22:00, +1,1,2112,2026,1,1,,0,,,3,29,24,3/29/26 23:00, +1,1,2113,2026,1,1,,0,,,3,30,1,3/30/26 0:00, +1,1,2114,2026,1,1,,0,,,3,30,2,3/30/26 1:00, +1,1,2115,2026,1,1,,0,,,3,30,3,3/30/26 2:00, +1,1,2116,2026,1,1,,0,,,3,30,4,3/30/26 3:00, +1,1,2117,2026,1,1,,0,,,3,30,5,3/30/26 4:00, +1,1,2118,2026,1,1,,0,,,3,30,6,3/30/26 5:00, +1,1,2119,2026,1,1,,0,,,3,30,7,3/30/26 6:00, +1,1,2120,2026,1,1,,0,,,3,30,8,3/30/26 7:00, +1,1,2121,2026,1,1,,0,,,3,30,9,3/30/26 8:00, +1,1,2122,2026,1,1,,0,,,3,30,10,3/30/26 9:00, +1,1,2123,2026,1,1,,0,,,3,30,11,3/30/26 10:00, +1,1,2124,2026,1,1,,0,,,3,30,12,3/30/26 11:00, +1,1,2125,2026,1,1,,0,,,3,30,13,3/30/26 12:00, +1,1,2126,2026,1,1,,0,,,3,30,14,3/30/26 13:00, +1,1,2127,2026,1,1,,0,,,3,30,15,3/30/26 14:00, +1,1,2128,2026,1,1,,0,,,3,30,16,3/30/26 15:00, +1,1,2129,2026,1,1,,0,,,3,30,17,3/30/26 16:00, +1,1,2130,2026,1,1,,0,,,3,30,18,3/30/26 17:00, +1,1,2131,2026,1,1,,0,,,3,30,19,3/30/26 18:00, +1,1,2132,2026,1,1,,0,,,3,30,20,3/30/26 19:00, +1,1,2133,2026,1,1,,0,,,3,30,21,3/30/26 20:00, +1,1,2134,2026,1,1,,0,,,3,30,22,3/30/26 21:00, +1,1,2135,2026,1,1,,0,,,3,30,23,3/30/26 22:00, +1,1,2136,2026,1,1,,0,,,3,30,24,3/30/26 23:00, +1,1,2137,2026,1,1,,0,,,3,31,1,3/31/26 0:00, +1,1,2138,2026,1,1,,0,,,3,31,2,3/31/26 1:00, +1,1,2139,2026,1,1,,0,,,3,31,3,3/31/26 2:00, +1,1,2140,2026,1,1,,0,,,3,31,4,3/31/26 3:00, +1,1,2141,2026,1,1,,0,,,3,31,5,3/31/26 4:00, +1,1,2142,2026,1,1,,0,,,3,31,6,3/31/26 5:00, +1,1,2143,2026,1,1,,0,,,3,31,7,3/31/26 6:00, +1,1,2144,2026,1,1,,0,,,3,31,8,3/31/26 7:00, +1,1,2145,2026,1,1,,0,,,3,31,9,3/31/26 8:00, +1,1,2146,2026,1,1,,0,,,3,31,10,3/31/26 9:00, +1,1,2147,2026,1,1,,0,,,3,31,11,3/31/26 10:00, +1,1,2148,2026,1,1,,0,,,3,31,12,3/31/26 11:00, +1,1,2149,2026,1,1,,0,,,3,31,13,3/31/26 12:00, +1,1,2150,2026,1,1,,0,,,3,31,14,3/31/26 13:00, +1,1,2151,2026,1,1,,0,,,3,31,15,3/31/26 14:00, +1,1,2152,2026,1,1,,0,,,3,31,16,3/31/26 15:00, +1,1,2153,2026,1,1,,0,,,3,31,17,3/31/26 16:00, +1,1,2154,2026,1,1,,0,,,3,31,18,3/31/26 17:00, +1,1,2155,2026,1,1,,0,,,3,31,19,3/31/26 18:00, +1,1,2156,2026,1,1,,0,,,3,31,20,3/31/26 19:00, +1,1,2157,2026,1,1,,0,,,3,31,21,3/31/26 20:00, +1,1,2158,2026,1,1,,0,,,3,31,22,3/31/26 21:00, +1,1,2159,2026,1,1,,0,,,3,31,23,3/31/26 22:00, +1,1,2160,2026,1,1,,0,,,3,31,24,3/31/26 23:00, +1,1,2161,2026,1,1,,0,,,4,1,1,4/1/26 0:00, +1,1,2162,2026,1,1,,0,,,4,1,2,4/1/26 1:00, +1,1,2163,2026,1,1,,0,,,4,1,3,4/1/26 2:00, +1,1,2164,2026,1,1,,0,,,4,1,4,4/1/26 3:00, +1,1,2165,2026,1,1,,0,,,4,1,5,4/1/26 4:00, +1,1,2166,2026,1,1,,0,,,4,1,6,4/1/26 5:00, +1,1,2167,2026,1,1,,0,,,4,1,7,4/1/26 6:00, +1,1,2168,2026,1,1,,0,,,4,1,8,4/1/26 7:00, +1,1,2169,2026,1,1,,0,,,4,1,9,4/1/26 8:00, +1,1,2170,2026,1,1,,0,,,4,1,10,4/1/26 9:00, +1,1,2171,2026,1,1,,0,,,4,1,11,4/1/26 10:00, +1,1,2172,2026,1,1,,0,,,4,1,12,4/1/26 11:00, +1,1,2173,2026,1,1,,0,,,4,1,13,4/1/26 12:00, +1,1,2174,2026,1,1,,0,,,4,1,14,4/1/26 13:00, +1,1,2175,2026,1,1,,0,,,4,1,15,4/1/26 14:00, +1,1,2176,2026,1,1,,0,,,4,1,16,4/1/26 15:00, +1,1,2177,2026,1,1,,0,,,4,1,17,4/1/26 16:00, +1,1,2178,2026,1,1,,0,,,4,1,18,4/1/26 17:00, +1,1,2179,2026,1,1,,0,,,4,1,19,4/1/26 18:00, +1,1,2180,2026,1,1,,0,,,4,1,20,4/1/26 19:00, +1,1,2181,2026,1,1,,0,,,4,1,21,4/1/26 20:00, +1,1,2182,2026,1,1,,0,,,4,1,22,4/1/26 21:00, +1,1,2183,2026,1,1,,0,,,4,1,23,4/1/26 22:00, +1,1,2184,2026,1,1,,0,,,4,1,24,4/1/26 23:00, +1,1,2185,2026,1,1,,0,,,4,2,1,4/2/26 0:00, +1,1,2186,2026,1,1,,0,,,4,2,2,4/2/26 1:00, +1,1,2187,2026,1,1,,0,,,4,2,3,4/2/26 2:00, +1,1,2188,2026,1,1,,0,,,4,2,4,4/2/26 3:00, +1,1,2189,2026,1,1,,0,,,4,2,5,4/2/26 4:00, +1,1,2190,2026,1,1,,0,,,4,2,6,4/2/26 5:00, +1,1,2191,2026,1,1,,0,,,4,2,7,4/2/26 6:00, +1,1,2192,2026,1,1,,0,,,4,2,8,4/2/26 7:00, +1,1,2193,2026,1,1,,0,,,4,2,9,4/2/26 8:00, +1,1,2194,2026,1,1,,0,,,4,2,10,4/2/26 9:00, +1,1,2195,2026,1,1,,0,,,4,2,11,4/2/26 10:00, +1,1,2196,2026,1,1,,0,,,4,2,12,4/2/26 11:00, +1,1,2197,2026,1,1,,0,,,4,2,13,4/2/26 12:00, +1,1,2198,2026,1,1,,0,,,4,2,14,4/2/26 13:00, +1,1,2199,2026,1,1,,0,,,4,2,15,4/2/26 14:00, +1,1,2200,2026,1,1,,0,,,4,2,16,4/2/26 15:00, +1,1,2201,2026,1,1,,0,,,4,2,17,4/2/26 16:00, +1,1,2202,2026,1,1,,0,,,4,2,18,4/2/26 17:00, +1,1,2203,2026,1,1,,0,,,4,2,19,4/2/26 18:00, +1,1,2204,2026,1,1,,0,,,4,2,20,4/2/26 19:00, +1,1,2205,2026,1,1,,0,,,4,2,21,4/2/26 20:00, +1,1,2206,2026,1,1,,0,,,4,2,22,4/2/26 21:00, +1,1,2207,2026,1,1,,0,,,4,2,23,4/2/26 22:00, +1,1,2208,2026,1,1,,0,,,4,2,24,4/2/26 23:00, +1,1,2209,2026,1,1,,0,,,4,3,1,4/3/26 0:00, +1,1,2210,2026,1,1,,0,,,4,3,2,4/3/26 1:00, +1,1,2211,2026,1,1,,0,,,4,3,3,4/3/26 2:00, +1,1,2212,2026,1,1,,0,,,4,3,4,4/3/26 3:00, +1,1,2213,2026,1,1,,0,,,4,3,5,4/3/26 4:00, +1,1,2214,2026,1,1,,0,,,4,3,6,4/3/26 5:00, +1,1,2215,2026,1,1,,0,,,4,3,7,4/3/26 6:00, +1,1,2216,2026,1,1,,0,,,4,3,8,4/3/26 7:00, +1,1,2217,2026,1,1,,0,,,4,3,9,4/3/26 8:00, +1,1,2218,2026,1,1,,0,,,4,3,10,4/3/26 9:00, +1,1,2219,2026,1,1,,0,,,4,3,11,4/3/26 10:00, +1,1,2220,2026,1,1,,0,,,4,3,12,4/3/26 11:00, +1,1,2221,2026,1,1,,0,,,4,3,13,4/3/26 12:00, +1,1,2222,2026,1,1,,0,,,4,3,14,4/3/26 13:00, +1,1,2223,2026,1,1,,0,,,4,3,15,4/3/26 14:00, +1,1,2224,2026,1,1,,0,,,4,3,16,4/3/26 15:00, +1,1,2225,2026,1,1,,0,,,4,3,17,4/3/26 16:00, +1,1,2226,2026,1,1,,0,,,4,3,18,4/3/26 17:00, +1,1,2227,2026,1,1,,0,,,4,3,19,4/3/26 18:00, +1,1,2228,2026,1,1,,0,,,4,3,20,4/3/26 19:00, +1,1,2229,2026,1,1,,0,,,4,3,21,4/3/26 20:00, +1,1,2230,2026,1,1,,0,,,4,3,22,4/3/26 21:00, +1,1,2231,2026,1,1,,0,,,4,3,23,4/3/26 22:00, +1,1,2232,2026,1,1,,0,,,4,3,24,4/3/26 23:00, +1,1,2233,2026,1,1,,0,,,4,4,1,4/4/26 0:00, +1,1,2234,2026,1,1,,0,,,4,4,2,4/4/26 1:00, +1,1,2235,2026,1,1,,0,,,4,4,3,4/4/26 2:00, +1,1,2236,2026,1,1,,0,,,4,4,4,4/4/26 3:00, +1,1,2237,2026,1,1,,0,,,4,4,5,4/4/26 4:00, +1,1,2238,2026,1,1,,0,,,4,4,6,4/4/26 5:00, +1,1,2239,2026,1,1,,0,,,4,4,7,4/4/26 6:00, +1,1,2240,2026,1,1,,0,,,4,4,8,4/4/26 7:00, +1,1,2241,2026,1,1,,0,,,4,4,9,4/4/26 8:00, +1,1,2242,2026,1,1,,0,,,4,4,10,4/4/26 9:00, +1,1,2243,2026,1,1,,0,,,4,4,11,4/4/26 10:00, +1,1,2244,2026,1,1,,0,,,4,4,12,4/4/26 11:00, +1,1,2245,2026,1,1,,0,,,4,4,13,4/4/26 12:00, +1,1,2246,2026,1,1,,0,,,4,4,14,4/4/26 13:00, +1,1,2247,2026,1,1,,0,,,4,4,15,4/4/26 14:00, +1,1,2248,2026,1,1,,0,,,4,4,16,4/4/26 15:00, +1,1,2249,2026,1,1,,0,,,4,4,17,4/4/26 16:00, +1,1,2250,2026,1,1,,0,,,4,4,18,4/4/26 17:00, +1,1,2251,2026,1,1,,0,,,4,4,19,4/4/26 18:00, +1,1,2252,2026,1,1,,0,,,4,4,20,4/4/26 19:00, +1,1,2253,2026,1,1,,0,,,4,4,21,4/4/26 20:00, +1,1,2254,2026,1,1,,0,,,4,4,22,4/4/26 21:00, +1,1,2255,2026,1,1,,0,,,4,4,23,4/4/26 22:00, +1,1,2256,2026,1,1,,0,,,4,4,24,4/4/26 23:00, +1,1,2257,2026,1,1,,0,,,4,5,1,4/5/26 0:00, +1,1,2258,2026,1,1,,0,,,4,5,2,4/5/26 1:00, +1,1,2259,2026,1,1,,0,,,4,5,3,4/5/26 2:00, +1,1,2260,2026,1,1,,0,,,4,5,4,4/5/26 3:00, +1,1,2261,2026,1,1,,0,,,4,5,5,4/5/26 4:00, +1,1,2262,2026,1,1,,0,,,4,5,6,4/5/26 5:00, +1,1,2263,2026,1,1,,0,,,4,5,7,4/5/26 6:00, +1,1,2264,2026,1,1,,0,,,4,5,8,4/5/26 7:00, +1,1,2265,2026,1,1,,0,,,4,5,9,4/5/26 8:00, +1,1,2266,2026,1,1,,0,,,4,5,10,4/5/26 9:00, +1,1,2267,2026,1,1,,0,,,4,5,11,4/5/26 10:00, +1,1,2268,2026,1,1,,0,,,4,5,12,4/5/26 11:00, +1,1,2269,2026,1,1,,0,,,4,5,13,4/5/26 12:00, +1,1,2270,2026,1,1,,0,,,4,5,14,4/5/26 13:00, +1,1,2271,2026,1,1,,0,,,4,5,15,4/5/26 14:00, +1,1,2272,2026,1,1,,0,,,4,5,16,4/5/26 15:00, +1,1,2273,2026,1,1,,0,,,4,5,17,4/5/26 16:00, +1,1,2274,2026,1,1,,0,,,4,5,18,4/5/26 17:00, +1,1,2275,2026,1,1,,0,,,4,5,19,4/5/26 18:00, +1,1,2276,2026,1,1,,0,,,4,5,20,4/5/26 19:00, +1,1,2277,2026,1,1,,0,,,4,5,21,4/5/26 20:00, +1,1,2278,2026,1,1,,0,,,4,5,22,4/5/26 21:00, +1,1,2279,2026,1,1,,0,,,4,5,23,4/5/26 22:00, +1,1,2280,2026,1,1,,0,,,4,5,24,4/5/26 23:00, +1,1,2281,2026,1,1,,0,,,4,6,1,4/6/26 0:00, +1,1,2282,2026,1,1,,0,,,4,6,2,4/6/26 1:00, +1,1,2283,2026,1,1,,0,,,4,6,3,4/6/26 2:00, +1,1,2284,2026,1,1,,0,,,4,6,4,4/6/26 3:00, +1,1,2285,2026,1,1,,0,,,4,6,5,4/6/26 4:00, +1,1,2286,2026,1,1,,0,,,4,6,6,4/6/26 5:00, +1,1,2287,2026,1,1,,0,,,4,6,7,4/6/26 6:00, +1,1,2288,2026,1,1,,0,,,4,6,8,4/6/26 7:00, +1,1,2289,2026,1,1,,0,,,4,6,9,4/6/26 8:00, +1,1,2290,2026,1,1,,0,,,4,6,10,4/6/26 9:00, +1,1,2291,2026,1,1,,0,,,4,6,11,4/6/26 10:00, +1,1,2292,2026,1,1,,0,,,4,6,12,4/6/26 11:00, +1,1,2293,2026,1,1,,0,,,4,6,13,4/6/26 12:00, +1,1,2294,2026,1,1,,0,,,4,6,14,4/6/26 13:00, +1,1,2295,2026,1,1,,0,,,4,6,15,4/6/26 14:00, +1,1,2296,2026,1,1,,0,,,4,6,16,4/6/26 15:00, +1,1,2297,2026,1,1,,0,,,4,6,17,4/6/26 16:00, +1,1,2298,2026,1,1,,0,,,4,6,18,4/6/26 17:00, +1,1,2299,2026,1,1,,0,,,4,6,19,4/6/26 18:00, +1,1,2300,2026,1,1,,0,,,4,6,20,4/6/26 19:00, +1,1,2301,2026,1,1,,0,,,4,6,21,4/6/26 20:00, +1,1,2302,2026,1,1,,0,,,4,6,22,4/6/26 21:00, +1,1,2303,2026,1,1,,0,,,4,6,23,4/6/26 22:00, +1,1,2304,2026,1,1,,0,,,4,6,24,4/6/26 23:00, +1,1,2305,2026,1,1,,0,,,4,7,1,4/7/26 0:00, +1,1,2306,2026,1,1,,0,,,4,7,2,4/7/26 1:00, +1,1,2307,2026,1,1,,0,,,4,7,3,4/7/26 2:00, +1,1,2308,2026,1,1,,0,,,4,7,4,4/7/26 3:00, +1,1,2309,2026,1,1,,0,,,4,7,5,4/7/26 4:00, +1,1,2310,2026,1,1,,0,,,4,7,6,4/7/26 5:00, +1,1,2311,2026,1,1,,0,,,4,7,7,4/7/26 6:00, +1,1,2312,2026,1,1,,0,,,4,7,8,4/7/26 7:00, +1,1,2313,2026,1,1,,0,,,4,7,9,4/7/26 8:00, +1,1,2314,2026,1,1,,0,,,4,7,10,4/7/26 9:00, +1,1,2315,2026,1,1,,0,,,4,7,11,4/7/26 10:00, +1,1,2316,2026,1,1,,0,,,4,7,12,4/7/26 11:00, +1,1,2317,2026,1,1,,0,,,4,7,13,4/7/26 12:00, +1,1,2318,2026,1,1,,0,,,4,7,14,4/7/26 13:00, +1,1,2319,2026,1,1,,0,,,4,7,15,4/7/26 14:00, +1,1,2320,2026,1,1,,0,,,4,7,16,4/7/26 15:00, +1,1,2321,2026,1,1,,0,,,4,7,17,4/7/26 16:00, +1,1,2322,2026,1,1,,0,,,4,7,18,4/7/26 17:00, +1,1,2323,2026,1,1,,0,,,4,7,19,4/7/26 18:00, +1,1,2324,2026,1,1,,0,,,4,7,20,4/7/26 19:00, +1,1,2325,2026,1,1,,0,,,4,7,21,4/7/26 20:00, +1,1,2326,2026,1,1,,0,,,4,7,22,4/7/26 21:00, +1,1,2327,2026,1,1,,0,,,4,7,23,4/7/26 22:00, +1,1,2328,2026,1,1,,0,,,4,7,24,4/7/26 23:00, +1,1,2329,2026,1,1,,0,,,4,8,1,4/8/26 0:00, +1,1,2330,2026,1,1,,0,,,4,8,2,4/8/26 1:00, +1,1,2331,2026,1,1,,0,,,4,8,3,4/8/26 2:00, +1,1,2332,2026,1,1,,0,,,4,8,4,4/8/26 3:00, +1,1,2333,2026,1,1,,0,,,4,8,5,4/8/26 4:00, +1,1,2334,2026,1,1,,0,,,4,8,6,4/8/26 5:00, +1,1,2335,2026,1,1,,0,,,4,8,7,4/8/26 6:00, +1,1,2336,2026,1,1,,0,,,4,8,8,4/8/26 7:00, +1,1,2337,2026,1,1,,0,,,4,8,9,4/8/26 8:00, +1,1,2338,2026,1,1,,0,,,4,8,10,4/8/26 9:00, +1,1,2339,2026,1,1,,0,,,4,8,11,4/8/26 10:00, +1,1,2340,2026,1,1,,0,,,4,8,12,4/8/26 11:00, +1,1,2341,2026,1,1,,0,,,4,8,13,4/8/26 12:00, +1,1,2342,2026,1,1,,0,,,4,8,14,4/8/26 13:00, +1,1,2343,2026,1,1,,0,,,4,8,15,4/8/26 14:00, +1,1,2344,2026,1,1,,0,,,4,8,16,4/8/26 15:00, +1,1,2345,2026,1,1,,0,,,4,8,17,4/8/26 16:00, +1,1,2346,2026,1,1,,0,,,4,8,18,4/8/26 17:00, +1,1,2347,2026,1,1,,0,,,4,8,19,4/8/26 18:00, +1,1,2348,2026,1,1,,0,,,4,8,20,4/8/26 19:00, +1,1,2349,2026,1,1,,0,,,4,8,21,4/8/26 20:00, +1,1,2350,2026,1,1,,0,,,4,8,22,4/8/26 21:00, +1,1,2351,2026,1,1,,0,,,4,8,23,4/8/26 22:00, +1,1,2352,2026,1,1,,0,,,4,8,24,4/8/26 23:00, +1,1,2353,2026,1,1,,0,,,4,9,1,4/9/26 0:00, +1,1,2354,2026,1,1,,0,,,4,9,2,4/9/26 1:00, +1,1,2355,2026,1,1,,0,,,4,9,3,4/9/26 2:00, +1,1,2356,2026,1,1,,0,,,4,9,4,4/9/26 3:00, +1,1,2357,2026,1,1,,0,,,4,9,5,4/9/26 4:00, +1,1,2358,2026,1,1,,0,,,4,9,6,4/9/26 5:00, +1,1,2359,2026,1,1,,0,,,4,9,7,4/9/26 6:00, +1,1,2360,2026,1,1,,0,,,4,9,8,4/9/26 7:00, +1,1,2361,2026,1,1,,0,,,4,9,9,4/9/26 8:00, +1,1,2362,2026,1,1,,0,,,4,9,10,4/9/26 9:00, +1,1,2363,2026,1,1,,0,,,4,9,11,4/9/26 10:00, +1,1,2364,2026,1,1,,0,,,4,9,12,4/9/26 11:00, +1,1,2365,2026,1,1,,0,,,4,9,13,4/9/26 12:00, +1,1,2366,2026,1,1,,0,,,4,9,14,4/9/26 13:00, +1,1,2367,2026,1,1,,0,,,4,9,15,4/9/26 14:00, +1,1,2368,2026,1,1,,0,,,4,9,16,4/9/26 15:00, +1,1,2369,2026,1,1,,0,,,4,9,17,4/9/26 16:00, +1,1,2370,2026,1,1,,0,,,4,9,18,4/9/26 17:00, +1,1,2371,2026,1,1,,0,,,4,9,19,4/9/26 18:00, +1,1,2372,2026,1,1,,0,,,4,9,20,4/9/26 19:00, +1,1,2373,2026,1,1,,0,,,4,9,21,4/9/26 20:00, +1,1,2374,2026,1,1,,0,,,4,9,22,4/9/26 21:00, +1,1,2375,2026,1,1,,0,,,4,9,23,4/9/26 22:00, +1,1,2376,2026,1,1,,0,,,4,9,24,4/9/26 23:00, +1,1,2377,2026,1,1,,0,,,4,10,1,4/10/26 0:00, +1,1,2378,2026,1,1,,0,,,4,10,2,4/10/26 1:00, +1,1,2379,2026,1,1,,0,,,4,10,3,4/10/26 2:00, +1,1,2380,2026,1,1,,0,,,4,10,4,4/10/26 3:00, +1,1,2381,2026,1,1,,0,,,4,10,5,4/10/26 4:00, +1,1,2382,2026,1,1,,0,,,4,10,6,4/10/26 5:00, +1,1,2383,2026,1,1,,0,,,4,10,7,4/10/26 6:00, +1,1,2384,2026,1,1,,0,,,4,10,8,4/10/26 7:00, +1,1,2385,2026,1,1,,0,,,4,10,9,4/10/26 8:00, +1,1,2386,2026,1,1,,0,,,4,10,10,4/10/26 9:00, +1,1,2387,2026,1,1,,0,,,4,10,11,4/10/26 10:00, +1,1,2388,2026,1,1,,0,,,4,10,12,4/10/26 11:00, +1,1,2389,2026,1,1,,0,,,4,10,13,4/10/26 12:00, +1,1,2390,2026,1,1,,0,,,4,10,14,4/10/26 13:00, +1,1,2391,2026,1,1,,0,,,4,10,15,4/10/26 14:00, +1,1,2392,2026,1,1,,0,,,4,10,16,4/10/26 15:00, +1,1,2393,2026,1,1,,0,,,4,10,17,4/10/26 16:00, +1,1,2394,2026,1,1,,0,,,4,10,18,4/10/26 17:00, +1,1,2395,2026,1,1,,0,,,4,10,19,4/10/26 18:00, +1,1,2396,2026,1,1,,0,,,4,10,20,4/10/26 19:00, +1,1,2397,2026,1,1,,0,,,4,10,21,4/10/26 20:00, +1,1,2398,2026,1,1,,0,,,4,10,22,4/10/26 21:00, +1,1,2399,2026,1,1,,0,,,4,10,23,4/10/26 22:00, +1,1,2400,2026,1,1,,0,,,4,10,24,4/10/26 23:00, +1,1,2401,2026,1,1,,0,,,4,11,1,4/11/26 0:00, +1,1,2402,2026,1,1,,0,,,4,11,2,4/11/26 1:00, +1,1,2403,2026,1,1,,0,,,4,11,3,4/11/26 2:00, +1,1,2404,2026,1,1,,0,,,4,11,4,4/11/26 3:00, +1,1,2405,2026,1,1,,0,,,4,11,5,4/11/26 4:00, +1,1,2406,2026,1,1,,0,,,4,11,6,4/11/26 5:00, +1,1,2407,2026,1,1,,0,,,4,11,7,4/11/26 6:00, +1,1,2408,2026,1,1,,0,,,4,11,8,4/11/26 7:00, +1,1,2409,2026,1,1,,0,,,4,11,9,4/11/26 8:00, +1,1,2410,2026,1,1,,0,,,4,11,10,4/11/26 9:00, +1,1,2411,2026,1,1,,0,,,4,11,11,4/11/26 10:00, +1,1,2412,2026,1,1,,0,,,4,11,12,4/11/26 11:00, +1,1,2413,2026,1,1,,0,,,4,11,13,4/11/26 12:00, +1,1,2414,2026,1,1,,0,,,4,11,14,4/11/26 13:00, +1,1,2415,2026,1,1,,0,,,4,11,15,4/11/26 14:00, +1,1,2416,2026,1,1,,0,,,4,11,16,4/11/26 15:00, +1,1,2417,2026,1,1,,0,,,4,11,17,4/11/26 16:00, +1,1,2418,2026,1,1,,0,,,4,11,18,4/11/26 17:00, +1,1,2419,2026,1,1,,0,,,4,11,19,4/11/26 18:00, +1,1,2420,2026,1,1,,0,,,4,11,20,4/11/26 19:00, +1,1,2421,2026,1,1,,0,,,4,11,21,4/11/26 20:00, +1,1,2422,2026,1,1,,0,,,4,11,22,4/11/26 21:00, +1,1,2423,2026,1,1,,0,,,4,11,23,4/11/26 22:00, +1,1,2424,2026,1,1,,0,,,4,11,24,4/11/26 23:00, +1,1,2425,2026,1,1,,0,,,4,12,1,4/12/26 0:00, +1,1,2426,2026,1,1,,0,,,4,12,2,4/12/26 1:00, +1,1,2427,2026,1,1,,0,,,4,12,3,4/12/26 2:00, +1,1,2428,2026,1,1,,0,,,4,12,4,4/12/26 3:00, +1,1,2429,2026,1,1,,0,,,4,12,5,4/12/26 4:00, +1,1,2430,2026,1,1,,0,,,4,12,6,4/12/26 5:00, +1,1,2431,2026,1,1,,0,,,4,12,7,4/12/26 6:00, +1,1,2432,2026,1,1,,0,,,4,12,8,4/12/26 7:00, +1,1,2433,2026,1,1,,0,,,4,12,9,4/12/26 8:00, +1,1,2434,2026,1,1,,0,,,4,12,10,4/12/26 9:00, +1,1,2435,2026,1,1,,0,,,4,12,11,4/12/26 10:00, +1,1,2436,2026,1,1,,0,,,4,12,12,4/12/26 11:00, +1,1,2437,2026,1,1,,0,,,4,12,13,4/12/26 12:00, +1,1,2438,2026,1,1,,0,,,4,12,14,4/12/26 13:00, +1,1,2439,2026,1,1,,0,,,4,12,15,4/12/26 14:00, +1,1,2440,2026,1,1,,0,,,4,12,16,4/12/26 15:00, +1,1,2441,2026,1,1,,0,,,4,12,17,4/12/26 16:00, +1,1,2442,2026,1,1,,0,,,4,12,18,4/12/26 17:00, +1,1,2443,2026,1,1,,0,,,4,12,19,4/12/26 18:00, +1,1,2444,2026,1,1,,0,,,4,12,20,4/12/26 19:00, +1,1,2445,2026,1,1,,0,,,4,12,21,4/12/26 20:00, +1,1,2446,2026,1,1,,0,,,4,12,22,4/12/26 21:00, +1,1,2447,2026,1,1,,0,,,4,12,23,4/12/26 22:00, +1,1,2448,2026,1,1,,0,,,4,12,24,4/12/26 23:00, +1,1,2449,2026,1,1,,0,,,4,13,1,4/13/26 0:00, +1,1,2450,2026,1,1,,0,,,4,13,2,4/13/26 1:00, +1,1,2451,2026,1,1,,0,,,4,13,3,4/13/26 2:00, +1,1,2452,2026,1,1,,0,,,4,13,4,4/13/26 3:00, +1,1,2453,2026,1,1,,0,,,4,13,5,4/13/26 4:00, +1,1,2454,2026,1,1,,0,,,4,13,6,4/13/26 5:00, +1,1,2455,2026,1,1,,0,,,4,13,7,4/13/26 6:00, +1,1,2456,2026,1,1,,0,,,4,13,8,4/13/26 7:00, +1,1,2457,2026,1,1,,0,,,4,13,9,4/13/26 8:00, +1,1,2458,2026,1,1,,0,,,4,13,10,4/13/26 9:00, +1,1,2459,2026,1,1,,0,,,4,13,11,4/13/26 10:00, +1,1,2460,2026,1,1,,0,,,4,13,12,4/13/26 11:00, +1,1,2461,2026,1,1,,0,,,4,13,13,4/13/26 12:00, +1,1,2462,2026,1,1,,0,,,4,13,14,4/13/26 13:00, +1,1,2463,2026,1,1,,0,,,4,13,15,4/13/26 14:00, +1,1,2464,2026,1,1,,0,,,4,13,16,4/13/26 15:00, +1,1,2465,2026,1,1,,0,,,4,13,17,4/13/26 16:00, +1,1,2466,2026,1,1,,0,,,4,13,18,4/13/26 17:00, +1,1,2467,2026,1,1,,0,,,4,13,19,4/13/26 18:00, +1,1,2468,2026,1,1,,0,,,4,13,20,4/13/26 19:00, +1,1,2469,2026,1,1,,0,,,4,13,21,4/13/26 20:00, +1,1,2470,2026,1,1,,0,,,4,13,22,4/13/26 21:00, +1,1,2471,2026,1,1,,0,,,4,13,23,4/13/26 22:00, +1,1,2472,2026,1,1,,0,,,4,13,24,4/13/26 23:00, +1,1,2473,2026,1,1,,0,,,4,14,1,4/14/26 0:00, +1,1,2474,2026,1,1,,0,,,4,14,2,4/14/26 1:00, +1,1,2475,2026,1,1,,0,,,4,14,3,4/14/26 2:00, +1,1,2476,2026,1,1,,0,,,4,14,4,4/14/26 3:00, +1,1,2477,2026,1,1,,0,,,4,14,5,4/14/26 4:00, +1,1,2478,2026,1,1,,0,,,4,14,6,4/14/26 5:00, +1,1,2479,2026,1,1,,0,,,4,14,7,4/14/26 6:00, +1,1,2480,2026,1,1,,0,,,4,14,8,4/14/26 7:00, +1,1,2481,2026,1,1,,0,,,4,14,9,4/14/26 8:00, +1,1,2482,2026,1,1,,0,,,4,14,10,4/14/26 9:00, +1,1,2483,2026,1,1,,0,,,4,14,11,4/14/26 10:00, +1,1,2484,2026,1,1,,0,,,4,14,12,4/14/26 11:00, +1,1,2485,2026,1,1,,0,,,4,14,13,4/14/26 12:00, +1,1,2486,2026,1,1,,0,,,4,14,14,4/14/26 13:00, +1,1,2487,2026,1,1,,0,,,4,14,15,4/14/26 14:00, +1,1,2488,2026,1,1,,0,,,4,14,16,4/14/26 15:00, +1,1,2489,2026,1,1,,0,,,4,14,17,4/14/26 16:00, +1,1,2490,2026,1,1,,0,,,4,14,18,4/14/26 17:00, +1,1,2491,2026,1,1,,0,,,4,14,19,4/14/26 18:00, +1,1,2492,2026,1,1,,0,,,4,14,20,4/14/26 19:00, +1,1,2493,2026,1,1,,0,,,4,14,21,4/14/26 20:00, +1,1,2494,2026,1,1,,0,,,4,14,22,4/14/26 21:00, +1,1,2495,2026,1,1,,0,,,4,14,23,4/14/26 22:00, +1,1,2496,2026,1,1,,0,,,4,14,24,4/14/26 23:00, +1,1,2497,2026,1,1,,0,,,4,15,1,4/15/26 0:00, +1,1,2498,2026,1,1,,0,,,4,15,2,4/15/26 1:00, +1,1,2499,2026,1,1,,0,,,4,15,3,4/15/26 2:00, +1,1,2500,2026,1,1,,0,,,4,15,4,4/15/26 3:00, +1,1,2501,2026,1,1,,0,,,4,15,5,4/15/26 4:00, +1,1,2502,2026,1,1,,0,,,4,15,6,4/15/26 5:00, +1,1,2503,2026,1,1,,0,,,4,15,7,4/15/26 6:00, +1,1,2504,2026,1,1,,0,,,4,15,8,4/15/26 7:00, +1,1,2505,2026,1,1,,0,,,4,15,9,4/15/26 8:00, +1,1,2506,2026,1,1,,0,,,4,15,10,4/15/26 9:00, +1,1,2507,2026,1,1,,0,,,4,15,11,4/15/26 10:00, +1,1,2508,2026,1,1,,0,,,4,15,12,4/15/26 11:00, +1,1,2509,2026,1,1,,0,,,4,15,13,4/15/26 12:00, +1,1,2510,2026,1,1,,0,,,4,15,14,4/15/26 13:00, +1,1,2511,2026,1,1,,0,,,4,15,15,4/15/26 14:00, +1,1,2512,2026,1,1,,0,,,4,15,16,4/15/26 15:00, +1,1,2513,2026,1,1,,0,,,4,15,17,4/15/26 16:00, +1,1,2514,2026,1,1,,0,,,4,15,18,4/15/26 17:00, +1,1,2515,2026,1,1,,0,,,4,15,19,4/15/26 18:00, +1,1,2516,2026,1,1,,0,,,4,15,20,4/15/26 19:00, +1,1,2517,2026,1,1,,0,,,4,15,21,4/15/26 20:00, +1,1,2518,2026,1,1,,0,,,4,15,22,4/15/26 21:00, +1,1,2519,2026,1,1,,0,,,4,15,23,4/15/26 22:00, +1,1,2520,2026,1,1,,0,,,4,15,24,4/15/26 23:00, +1,1,2521,2026,1,1,,0,,,4,16,1,4/16/26 0:00, +1,1,2522,2026,1,1,,0,,,4,16,2,4/16/26 1:00, +1,1,2523,2026,1,1,,0,,,4,16,3,4/16/26 2:00, +1,1,2524,2026,1,1,,0,,,4,16,4,4/16/26 3:00, +1,1,2525,2026,1,1,,0,,,4,16,5,4/16/26 4:00, +1,1,2526,2026,1,1,,0,,,4,16,6,4/16/26 5:00, +1,1,2527,2026,1,1,,0,,,4,16,7,4/16/26 6:00, +1,1,2528,2026,1,1,,0,,,4,16,8,4/16/26 7:00, +1,1,2529,2026,1,1,,0,,,4,16,9,4/16/26 8:00, +1,1,2530,2026,1,1,,0,,,4,16,10,4/16/26 9:00, +1,1,2531,2026,1,1,,0,,,4,16,11,4/16/26 10:00, +1,1,2532,2026,1,1,,0,,,4,16,12,4/16/26 11:00, +1,1,2533,2026,1,1,,0,,,4,16,13,4/16/26 12:00, +1,1,2534,2026,1,1,,0,,,4,16,14,4/16/26 13:00, +1,1,2535,2026,1,1,,0,,,4,16,15,4/16/26 14:00, +1,1,2536,2026,1,1,,0,,,4,16,16,4/16/26 15:00, +1,1,2537,2026,1,1,,0,,,4,16,17,4/16/26 16:00, +1,1,2538,2026,1,1,,0,,,4,16,18,4/16/26 17:00, +1,1,2539,2026,1,1,,0,,,4,16,19,4/16/26 18:00, +1,1,2540,2026,1,1,,0,,,4,16,20,4/16/26 19:00, +1,1,2541,2026,1,1,,0,,,4,16,21,4/16/26 20:00, +1,1,2542,2026,1,1,,0,,,4,16,22,4/16/26 21:00, +1,1,2543,2026,1,1,,0,,,4,16,23,4/16/26 22:00, +1,1,2544,2026,1,1,,0,,,4,16,24,4/16/26 23:00, +1,1,2545,2026,1,1,,0,,,4,17,1,4/17/26 0:00, +1,1,2546,2026,1,1,,0,,,4,17,2,4/17/26 1:00, +1,1,2547,2026,1,1,,0,,,4,17,3,4/17/26 2:00, +1,1,2548,2026,1,1,,0,,,4,17,4,4/17/26 3:00, +1,1,2549,2026,1,1,,0,,,4,17,5,4/17/26 4:00, +1,1,2550,2026,1,1,,0,,,4,17,6,4/17/26 5:00, +1,1,2551,2026,1,1,,0,,,4,17,7,4/17/26 6:00, +1,1,2552,2026,1,1,,0,,,4,17,8,4/17/26 7:00, +1,1,2553,2026,1,1,,0,,,4,17,9,4/17/26 8:00, +1,1,2554,2026,1,1,,0,,,4,17,10,4/17/26 9:00, +1,1,2555,2026,1,1,,0,,,4,17,11,4/17/26 10:00, +1,1,2556,2026,1,1,,0,,,4,17,12,4/17/26 11:00, +1,1,2557,2026,1,1,,0,,,4,17,13,4/17/26 12:00, +1,1,2558,2026,1,1,,0,,,4,17,14,4/17/26 13:00, +1,1,2559,2026,1,1,,0,,,4,17,15,4/17/26 14:00, +1,1,2560,2026,1,1,,0,,,4,17,16,4/17/26 15:00, +1,1,2561,2026,1,1,,0,,,4,17,17,4/17/26 16:00, +1,1,2562,2026,1,1,,0,,,4,17,18,4/17/26 17:00, +1,1,2563,2026,1,1,,0,,,4,17,19,4/17/26 18:00, +1,1,2564,2026,1,1,,0,,,4,17,20,4/17/26 19:00, +1,1,2565,2026,1,1,,0,,,4,17,21,4/17/26 20:00, +1,1,2566,2026,1,1,,0,,,4,17,22,4/17/26 21:00, +1,1,2567,2026,1,1,,0,,,4,17,23,4/17/26 22:00, +1,1,2568,2026,1,1,,0,,,4,17,24,4/17/26 23:00, +1,1,2569,2026,1,1,,0,,,4,18,1,4/18/26 0:00, +1,1,2570,2026,1,1,,0,,,4,18,2,4/18/26 1:00, +1,1,2571,2026,1,1,,0,,,4,18,3,4/18/26 2:00, +1,1,2572,2026,1,1,,0,,,4,18,4,4/18/26 3:00, +1,1,2573,2026,1,1,,0,,,4,18,5,4/18/26 4:00, +1,1,2574,2026,1,1,,0,,,4,18,6,4/18/26 5:00, +1,1,2575,2026,1,1,,0,,,4,18,7,4/18/26 6:00, +1,1,2576,2026,1,1,,0,,,4,18,8,4/18/26 7:00, +1,1,2577,2026,1,1,,0,,,4,18,9,4/18/26 8:00, +1,1,2578,2026,1,1,,0,,,4,18,10,4/18/26 9:00, +1,1,2579,2026,1,1,,0,,,4,18,11,4/18/26 10:00, +1,1,2580,2026,1,1,,0,,,4,18,12,4/18/26 11:00, +1,1,2581,2026,1,1,,0,,,4,18,13,4/18/26 12:00, +1,1,2582,2026,1,1,,0,,,4,18,14,4/18/26 13:00, +1,1,2583,2026,1,1,,0,,,4,18,15,4/18/26 14:00, +1,1,2584,2026,1,1,,0,,,4,18,16,4/18/26 15:00, +1,1,2585,2026,1,1,,0,,,4,18,17,4/18/26 16:00, +1,1,2586,2026,1,1,,0,,,4,18,18,4/18/26 17:00, +1,1,2587,2026,1,1,,0,,,4,18,19,4/18/26 18:00, +1,1,2588,2026,1,1,,0,,,4,18,20,4/18/26 19:00, +1,1,2589,2026,1,1,,0,,,4,18,21,4/18/26 20:00, +1,1,2590,2026,1,1,,0,,,4,18,22,4/18/26 21:00, +1,1,2591,2026,1,1,,0,,,4,18,23,4/18/26 22:00, +1,1,2592,2026,1,1,,0,,,4,18,24,4/18/26 23:00, +1,1,2593,2026,1,1,,0,,,4,19,1,4/19/26 0:00, +1,1,2594,2026,1,1,,0,,,4,19,2,4/19/26 1:00, +1,1,2595,2026,1,1,,0,,,4,19,3,4/19/26 2:00, +1,1,2596,2026,1,1,,0,,,4,19,4,4/19/26 3:00, +1,1,2597,2026,1,1,,0,,,4,19,5,4/19/26 4:00, +1,1,2598,2026,1,1,,0,,,4,19,6,4/19/26 5:00, +1,1,2599,2026,1,1,,0,,,4,19,7,4/19/26 6:00, +1,1,2600,2026,1,1,,0,,,4,19,8,4/19/26 7:00, +1,1,2601,2026,1,1,,0,,,4,19,9,4/19/26 8:00, +1,1,2602,2026,1,1,,0,,,4,19,10,4/19/26 9:00, +1,1,2603,2026,1,1,,0,,,4,19,11,4/19/26 10:00, +1,1,2604,2026,1,1,,0,,,4,19,12,4/19/26 11:00, +1,1,2605,2026,1,1,,0,,,4,19,13,4/19/26 12:00, +1,1,2606,2026,1,1,,0,,,4,19,14,4/19/26 13:00, +1,1,2607,2026,1,1,,0,,,4,19,15,4/19/26 14:00, +1,1,2608,2026,1,1,,0,,,4,19,16,4/19/26 15:00, +1,1,2609,2026,1,1,,0,,,4,19,17,4/19/26 16:00, +1,1,2610,2026,1,1,,0,,,4,19,18,4/19/26 17:00, +1,1,2611,2026,1,1,,0,,,4,19,19,4/19/26 18:00, +1,1,2612,2026,1,1,,0,,,4,19,20,4/19/26 19:00, +1,1,2613,2026,1,1,,0,,,4,19,21,4/19/26 20:00, +1,1,2614,2026,1,1,,0,,,4,19,22,4/19/26 21:00, +1,1,2615,2026,1,1,,0,,,4,19,23,4/19/26 22:00, +1,1,2616,2026,1,1,,0,,,4,19,24,4/19/26 23:00, +1,1,2617,2026,1,1,,0,,,4,20,1,4/20/26 0:00, +1,1,2618,2026,1,1,,0,,,4,20,2,4/20/26 1:00, +1,1,2619,2026,1,1,,0,,,4,20,3,4/20/26 2:00, +1,1,2620,2026,1,1,,0,,,4,20,4,4/20/26 3:00, +1,1,2621,2026,1,1,,0,,,4,20,5,4/20/26 4:00, +1,1,2622,2026,1,1,,0,,,4,20,6,4/20/26 5:00, +1,1,2623,2026,1,1,,0,,,4,20,7,4/20/26 6:00, +1,1,2624,2026,1,1,,0,,,4,20,8,4/20/26 7:00, +1,1,2625,2026,1,1,,0,,,4,20,9,4/20/26 8:00, +1,1,2626,2026,1,1,,0,,,4,20,10,4/20/26 9:00, +1,1,2627,2026,1,1,,0,,,4,20,11,4/20/26 10:00, +1,1,2628,2026,1,1,,0,,,4,20,12,4/20/26 11:00, +1,1,2629,2026,1,1,,0,,,4,20,13,4/20/26 12:00, +1,1,2630,2026,1,1,,0,,,4,20,14,4/20/26 13:00, +1,1,2631,2026,1,1,,0,,,4,20,15,4/20/26 14:00, +1,1,2632,2026,1,1,,0,,,4,20,16,4/20/26 15:00, +1,1,2633,2026,1,1,,0,,,4,20,17,4/20/26 16:00, +1,1,2634,2026,1,1,,0,,,4,20,18,4/20/26 17:00, +1,1,2635,2026,1,1,,0,,,4,20,19,4/20/26 18:00, +1,1,2636,2026,1,1,,0,,,4,20,20,4/20/26 19:00, +1,1,2637,2026,1,1,,0,,,4,20,21,4/20/26 20:00, +1,1,2638,2026,1,1,,0,,,4,20,22,4/20/26 21:00, +1,1,2639,2026,1,1,,0,,,4,20,23,4/20/26 22:00, +1,1,2640,2026,1,1,,0,,,4,20,24,4/20/26 23:00, +1,1,2641,2026,1,1,,0,,,4,21,1,4/21/26 0:00, +1,1,2642,2026,1,1,,0,,,4,21,2,4/21/26 1:00, +1,1,2643,2026,1,1,,0,,,4,21,3,4/21/26 2:00, +1,1,2644,2026,1,1,,0,,,4,21,4,4/21/26 3:00, +1,1,2645,2026,1,1,,0,,,4,21,5,4/21/26 4:00, +1,1,2646,2026,1,1,,0,,,4,21,6,4/21/26 5:00, +1,1,2647,2026,1,1,,0,,,4,21,7,4/21/26 6:00, +1,1,2648,2026,1,1,,0,,,4,21,8,4/21/26 7:00, +1,1,2649,2026,1,1,,0,,,4,21,9,4/21/26 8:00, +1,1,2650,2026,1,1,,0,,,4,21,10,4/21/26 9:00, +1,1,2651,2026,1,1,,0,,,4,21,11,4/21/26 10:00, +1,1,2652,2026,1,1,,0,,,4,21,12,4/21/26 11:00, +1,1,2653,2026,1,1,,0,,,4,21,13,4/21/26 12:00, +1,1,2654,2026,1,1,,0,,,4,21,14,4/21/26 13:00, +1,1,2655,2026,1,1,,0,,,4,21,15,4/21/26 14:00, +1,1,2656,2026,1,1,,0,,,4,21,16,4/21/26 15:00, +1,1,2657,2026,1,1,,0,,,4,21,17,4/21/26 16:00, +1,1,2658,2026,1,1,,0,,,4,21,18,4/21/26 17:00, +1,1,2659,2026,1,1,,0,,,4,21,19,4/21/26 18:00, +1,1,2660,2026,1,1,,0,,,4,21,20,4/21/26 19:00, +1,1,2661,2026,1,1,,0,,,4,21,21,4/21/26 20:00, +1,1,2662,2026,1,1,,0,,,4,21,22,4/21/26 21:00, +1,1,2663,2026,1,1,,0,,,4,21,23,4/21/26 22:00, +1,1,2664,2026,1,1,,0,,,4,21,24,4/21/26 23:00, +1,1,2665,2026,1,1,,0,,,4,22,1,4/22/26 0:00, +1,1,2666,2026,1,1,,0,,,4,22,2,4/22/26 1:00, +1,1,2667,2026,1,1,,0,,,4,22,3,4/22/26 2:00, +1,1,2668,2026,1,1,,0,,,4,22,4,4/22/26 3:00, +1,1,2669,2026,1,1,,0,,,4,22,5,4/22/26 4:00, +1,1,2670,2026,1,1,,0,,,4,22,6,4/22/26 5:00, +1,1,2671,2026,1,1,,0,,,4,22,7,4/22/26 6:00, +1,1,2672,2026,1,1,,0,,,4,22,8,4/22/26 7:00, +1,1,2673,2026,1,1,,0,,,4,22,9,4/22/26 8:00, +1,1,2674,2026,1,1,,0,,,4,22,10,4/22/26 9:00, +1,1,2675,2026,1,1,,0,,,4,22,11,4/22/26 10:00, +1,1,2676,2026,1,1,,0,,,4,22,12,4/22/26 11:00, +1,1,2677,2026,1,1,,0,,,4,22,13,4/22/26 12:00, +1,1,2678,2026,1,1,,0,,,4,22,14,4/22/26 13:00, +1,1,2679,2026,1,1,,0,,,4,22,15,4/22/26 14:00, +1,1,2680,2026,1,1,,0,,,4,22,16,4/22/26 15:00, +1,1,2681,2026,1,1,,0,,,4,22,17,4/22/26 16:00, +1,1,2682,2026,1,1,,0,,,4,22,18,4/22/26 17:00, +1,1,2683,2026,1,1,,0,,,4,22,19,4/22/26 18:00, +1,1,2684,2026,1,1,,0,,,4,22,20,4/22/26 19:00, +1,1,2685,2026,1,1,,0,,,4,22,21,4/22/26 20:00, +1,1,2686,2026,1,1,,0,,,4,22,22,4/22/26 21:00, +1,1,2687,2026,1,1,,0,,,4,22,23,4/22/26 22:00, +1,1,2688,2026,1,1,,0,,,4,22,24,4/22/26 23:00, +1,1,2689,2026,1,1,,0,,,4,23,1,4/23/26 0:00, +1,1,2690,2026,1,1,,0,,,4,23,2,4/23/26 1:00, +1,1,2691,2026,1,1,,0,,,4,23,3,4/23/26 2:00, +1,1,2692,2026,1,1,,0,,,4,23,4,4/23/26 3:00, +1,1,2693,2026,1,1,,0,,,4,23,5,4/23/26 4:00, +1,1,2694,2026,1,1,,0,,,4,23,6,4/23/26 5:00, +1,1,2695,2026,1,1,,0,,,4,23,7,4/23/26 6:00, +1,1,2696,2026,1,1,,0,,,4,23,8,4/23/26 7:00, +1,1,2697,2026,1,1,,0,,,4,23,9,4/23/26 8:00, +1,1,2698,2026,1,1,,0,,,4,23,10,4/23/26 9:00, +1,1,2699,2026,1,1,,0,,,4,23,11,4/23/26 10:00, +1,1,2700,2026,1,1,,0,,,4,23,12,4/23/26 11:00, +1,1,2701,2026,1,1,,0,,,4,23,13,4/23/26 12:00, +1,1,2702,2026,1,1,,0,,,4,23,14,4/23/26 13:00, +1,1,2703,2026,1,1,,0,,,4,23,15,4/23/26 14:00, +1,1,2704,2026,1,1,,0,,,4,23,16,4/23/26 15:00, +1,1,2705,2026,1,1,,0,,,4,23,17,4/23/26 16:00, +1,1,2706,2026,1,1,,0,,,4,23,18,4/23/26 17:00, +1,1,2707,2026,1,1,,0,,,4,23,19,4/23/26 18:00, +1,1,2708,2026,1,1,,0,,,4,23,20,4/23/26 19:00, +1,1,2709,2026,1,1,,0,,,4,23,21,4/23/26 20:00, +1,1,2710,2026,1,1,,0,,,4,23,22,4/23/26 21:00, +1,1,2711,2026,1,1,,0,,,4,23,23,4/23/26 22:00, +1,1,2712,2026,1,1,,0,,,4,23,24,4/23/26 23:00, +1,1,2713,2026,1,1,,0,,,4,24,1,4/24/26 0:00, +1,1,2714,2026,1,1,,0,,,4,24,2,4/24/26 1:00, +1,1,2715,2026,1,1,,0,,,4,24,3,4/24/26 2:00, +1,1,2716,2026,1,1,,0,,,4,24,4,4/24/26 3:00, +1,1,2717,2026,1,1,,0,,,4,24,5,4/24/26 4:00, +1,1,2718,2026,1,1,,0,,,4,24,6,4/24/26 5:00, +1,1,2719,2026,1,1,,0,,,4,24,7,4/24/26 6:00, +1,1,2720,2026,1,1,,0,,,4,24,8,4/24/26 7:00, +1,1,2721,2026,1,1,,0,,,4,24,9,4/24/26 8:00, +1,1,2722,2026,1,1,,0,,,4,24,10,4/24/26 9:00, +1,1,2723,2026,1,1,,0,,,4,24,11,4/24/26 10:00, +1,1,2724,2026,1,1,,0,,,4,24,12,4/24/26 11:00, +1,1,2725,2026,1,1,,0,,,4,24,13,4/24/26 12:00, +1,1,2726,2026,1,1,,0,,,4,24,14,4/24/26 13:00, +1,1,2727,2026,1,1,,0,,,4,24,15,4/24/26 14:00, +1,1,2728,2026,1,1,,0,,,4,24,16,4/24/26 15:00, +1,1,2729,2026,1,1,,0,,,4,24,17,4/24/26 16:00, +1,1,2730,2026,1,1,,0,,,4,24,18,4/24/26 17:00, +1,1,2731,2026,1,1,,0,,,4,24,19,4/24/26 18:00, +1,1,2732,2026,1,1,,0,,,4,24,20,4/24/26 19:00, +1,1,2733,2026,1,1,,0,,,4,24,21,4/24/26 20:00, +1,1,2734,2026,1,1,,0,,,4,24,22,4/24/26 21:00, +1,1,2735,2026,1,1,,0,,,4,24,23,4/24/26 22:00, +1,1,2736,2026,1,1,,0,,,4,24,24,4/24/26 23:00, +1,1,2737,2026,1,1,,0,,,4,25,1,4/25/26 0:00, +1,1,2738,2026,1,1,,0,,,4,25,2,4/25/26 1:00, +1,1,2739,2026,1,1,,0,,,4,25,3,4/25/26 2:00, +1,1,2740,2026,1,1,,0,,,4,25,4,4/25/26 3:00, +1,1,2741,2026,1,1,,0,,,4,25,5,4/25/26 4:00, +1,1,2742,2026,1,1,,0,,,4,25,6,4/25/26 5:00, +1,1,2743,2026,1,1,,0,,,4,25,7,4/25/26 6:00, +1,1,2744,2026,1,1,,0,,,4,25,8,4/25/26 7:00, +1,1,2745,2026,1,1,,0,,,4,25,9,4/25/26 8:00, +1,1,2746,2026,1,1,,0,,,4,25,10,4/25/26 9:00, +1,1,2747,2026,1,1,,0,,,4,25,11,4/25/26 10:00, +1,1,2748,2026,1,1,,0,,,4,25,12,4/25/26 11:00, +1,1,2749,2026,1,1,,0,,,4,25,13,4/25/26 12:00, +1,1,2750,2026,1,1,,0,,,4,25,14,4/25/26 13:00, +1,1,2751,2026,1,1,,0,,,4,25,15,4/25/26 14:00, +1,1,2752,2026,1,1,,0,,,4,25,16,4/25/26 15:00, +1,1,2753,2026,1,1,,0,,,4,25,17,4/25/26 16:00, +1,1,2754,2026,1,1,,0,,,4,25,18,4/25/26 17:00, +1,1,2755,2026,1,1,,0,,,4,25,19,4/25/26 18:00, +1,1,2756,2026,1,1,,0,,,4,25,20,4/25/26 19:00, +1,1,2757,2026,1,1,,0,,,4,25,21,4/25/26 20:00, +1,1,2758,2026,1,1,,0,,,4,25,22,4/25/26 21:00, +1,1,2759,2026,1,1,,0,,,4,25,23,4/25/26 22:00, +1,1,2760,2026,1,1,,0,,,4,25,24,4/25/26 23:00, +1,1,2761,2026,1,1,,0,,,4,26,1,4/26/26 0:00, +1,1,2762,2026,1,1,,0,,,4,26,2,4/26/26 1:00, +1,1,2763,2026,1,1,,0,,,4,26,3,4/26/26 2:00, +1,1,2764,2026,1,1,,0,,,4,26,4,4/26/26 3:00, +1,1,2765,2026,1,1,,0,,,4,26,5,4/26/26 4:00, +1,1,2766,2026,1,1,,0,,,4,26,6,4/26/26 5:00, +1,1,2767,2026,1,1,,0,,,4,26,7,4/26/26 6:00, +1,1,2768,2026,1,1,,0,,,4,26,8,4/26/26 7:00, +1,1,2769,2026,1,1,,0,,,4,26,9,4/26/26 8:00, +1,1,2770,2026,1,1,,0,,,4,26,10,4/26/26 9:00, +1,1,2771,2026,1,1,,0,,,4,26,11,4/26/26 10:00, +1,1,2772,2026,1,1,,0,,,4,26,12,4/26/26 11:00, +1,1,2773,2026,1,1,,0,,,4,26,13,4/26/26 12:00, +1,1,2774,2026,1,1,,0,,,4,26,14,4/26/26 13:00, +1,1,2775,2026,1,1,,0,,,4,26,15,4/26/26 14:00, +1,1,2776,2026,1,1,,0,,,4,26,16,4/26/26 15:00, +1,1,2777,2026,1,1,,0,,,4,26,17,4/26/26 16:00, +1,1,2778,2026,1,1,,0,,,4,26,18,4/26/26 17:00, +1,1,2779,2026,1,1,,0,,,4,26,19,4/26/26 18:00, +1,1,2780,2026,1,1,,0,,,4,26,20,4/26/26 19:00, +1,1,2781,2026,1,1,,0,,,4,26,21,4/26/26 20:00, +1,1,2782,2026,1,1,,0,,,4,26,22,4/26/26 21:00, +1,1,2783,2026,1,1,,0,,,4,26,23,4/26/26 22:00, +1,1,2784,2026,1,1,,0,,,4,26,24,4/26/26 23:00, +1,1,2785,2026,1,1,,0,,,4,27,1,4/27/26 0:00, +1,1,2786,2026,1,1,,0,,,4,27,2,4/27/26 1:00, +1,1,2787,2026,1,1,,0,,,4,27,3,4/27/26 2:00, +1,1,2788,2026,1,1,,0,,,4,27,4,4/27/26 3:00, +1,1,2789,2026,1,1,,0,,,4,27,5,4/27/26 4:00, +1,1,2790,2026,1,1,,0,,,4,27,6,4/27/26 5:00, +1,1,2791,2026,1,1,,0,,,4,27,7,4/27/26 6:00, +1,1,2792,2026,1,1,,0,,,4,27,8,4/27/26 7:00, +1,1,2793,2026,1,1,,0,,,4,27,9,4/27/26 8:00, +1,1,2794,2026,1,1,,0,,,4,27,10,4/27/26 9:00, +1,1,2795,2026,1,1,,0,,,4,27,11,4/27/26 10:00, +1,1,2796,2026,1,1,,0,,,4,27,12,4/27/26 11:00, +1,1,2797,2026,1,1,,0,,,4,27,13,4/27/26 12:00, +1,1,2798,2026,1,1,,0,,,4,27,14,4/27/26 13:00, +1,1,2799,2026,1,1,,0,,,4,27,15,4/27/26 14:00, +1,1,2800,2026,1,1,,0,,,4,27,16,4/27/26 15:00, +1,1,2801,2026,1,1,,0,,,4,27,17,4/27/26 16:00, +1,1,2802,2026,1,1,,0,,,4,27,18,4/27/26 17:00, +1,1,2803,2026,1,1,,0,,,4,27,19,4/27/26 18:00, +1,1,2804,2026,1,1,,0,,,4,27,20,4/27/26 19:00, +1,1,2805,2026,1,1,,0,,,4,27,21,4/27/26 20:00, +1,1,2806,2026,1,1,,0,,,4,27,22,4/27/26 21:00, +1,1,2807,2026,1,1,,0,,,4,27,23,4/27/26 22:00, +1,1,2808,2026,1,1,,0,,,4,27,24,4/27/26 23:00, +1,1,2809,2026,1,1,,0,,,4,28,1,4/28/26 0:00, +1,1,2810,2026,1,1,,0,,,4,28,2,4/28/26 1:00, +1,1,2811,2026,1,1,,0,,,4,28,3,4/28/26 2:00, +1,1,2812,2026,1,1,,0,,,4,28,4,4/28/26 3:00, +1,1,2813,2026,1,1,,0,,,4,28,5,4/28/26 4:00, +1,1,2814,2026,1,1,,0,,,4,28,6,4/28/26 5:00, +1,1,2815,2026,1,1,,0,,,4,28,7,4/28/26 6:00, +1,1,2816,2026,1,1,,0,,,4,28,8,4/28/26 7:00, +1,1,2817,2026,1,1,,0,,,4,28,9,4/28/26 8:00, +1,1,2818,2026,1,1,,0,,,4,28,10,4/28/26 9:00, +1,1,2819,2026,1,1,,0,,,4,28,11,4/28/26 10:00, +1,1,2820,2026,1,1,,0,,,4,28,12,4/28/26 11:00, +1,1,2821,2026,1,1,,0,,,4,28,13,4/28/26 12:00, +1,1,2822,2026,1,1,,0,,,4,28,14,4/28/26 13:00, +1,1,2823,2026,1,1,,0,,,4,28,15,4/28/26 14:00, +1,1,2824,2026,1,1,,0,,,4,28,16,4/28/26 15:00, +1,1,2825,2026,1,1,,0,,,4,28,17,4/28/26 16:00, +1,1,2826,2026,1,1,,0,,,4,28,18,4/28/26 17:00, +1,1,2827,2026,1,1,,0,,,4,28,19,4/28/26 18:00, +1,1,2828,2026,1,1,,0,,,4,28,20,4/28/26 19:00, +1,1,2829,2026,1,1,,0,,,4,28,21,4/28/26 20:00, +1,1,2830,2026,1,1,,0,,,4,28,22,4/28/26 21:00, +1,1,2831,2026,1,1,,0,,,4,28,23,4/28/26 22:00, +1,1,2832,2026,1,1,,0,,,4,28,24,4/28/26 23:00, +1,1,2833,2026,1,1,,0,,,4,29,1,4/29/26 0:00, +1,1,2834,2026,1,1,,0,,,4,29,2,4/29/26 1:00, +1,1,2835,2026,1,1,,0,,,4,29,3,4/29/26 2:00, +1,1,2836,2026,1,1,,0,,,4,29,4,4/29/26 3:00, +1,1,2837,2026,1,1,,0,,,4,29,5,4/29/26 4:00, +1,1,2838,2026,1,1,,0,,,4,29,6,4/29/26 5:00, +1,1,2839,2026,1,1,,0,,,4,29,7,4/29/26 6:00, +1,1,2840,2026,1,1,,0,,,4,29,8,4/29/26 7:00, +1,1,2841,2026,1,1,,0,,,4,29,9,4/29/26 8:00, +1,1,2842,2026,1,1,,0,,,4,29,10,4/29/26 9:00, +1,1,2843,2026,1,1,,0,,,4,29,11,4/29/26 10:00, +1,1,2844,2026,1,1,,0,,,4,29,12,4/29/26 11:00, +1,1,2845,2026,1,1,,0,,,4,29,13,4/29/26 12:00, +1,1,2846,2026,1,1,,0,,,4,29,14,4/29/26 13:00, +1,1,2847,2026,1,1,,0,,,4,29,15,4/29/26 14:00, +1,1,2848,2026,1,1,,0,,,4,29,16,4/29/26 15:00, +1,1,2849,2026,1,1,,0,,,4,29,17,4/29/26 16:00, +1,1,2850,2026,1,1,,0,,,4,29,18,4/29/26 17:00, +1,1,2851,2026,1,1,,0,,,4,29,19,4/29/26 18:00, +1,1,2852,2026,1,1,,0,,,4,29,20,4/29/26 19:00, +1,1,2853,2026,1,1,,0,,,4,29,21,4/29/26 20:00, +1,1,2854,2026,1,1,,0,,,4,29,22,4/29/26 21:00, +1,1,2855,2026,1,1,,0,,,4,29,23,4/29/26 22:00, +1,1,2856,2026,1,1,,0,,,4,29,24,4/29/26 23:00, +1,1,2857,2026,1,1,,0,,,4,30,1,4/30/26 0:00, +1,1,2858,2026,1,1,,0,,,4,30,2,4/30/26 1:00, +1,1,2859,2026,1,1,,0,,,4,30,3,4/30/26 2:00, +1,1,2860,2026,1,1,,0,,,4,30,4,4/30/26 3:00, +1,1,2861,2026,1,1,,0,,,4,30,5,4/30/26 4:00, +1,1,2862,2026,1,1,,0,,,4,30,6,4/30/26 5:00, +1,1,2863,2026,1,1,,0,,,4,30,7,4/30/26 6:00, +1,1,2864,2026,1,1,,0,,,4,30,8,4/30/26 7:00, +1,1,2865,2026,1,1,,0,,,4,30,9,4/30/26 8:00, +1,1,2866,2026,1,1,,0,,,4,30,10,4/30/26 9:00, +1,1,2867,2026,1,1,,0,,,4,30,11,4/30/26 10:00, +1,1,2868,2026,1,1,,0,,,4,30,12,4/30/26 11:00, +1,1,2869,2026,1,1,,0,,,4,30,13,4/30/26 12:00, +1,1,2870,2026,1,1,,0,,,4,30,14,4/30/26 13:00, +1,1,2871,2026,1,1,,0,,,4,30,15,4/30/26 14:00, +1,1,2872,2026,1,1,,0,,,4,30,16,4/30/26 15:00, +1,1,2873,2026,1,1,,0,,,4,30,17,4/30/26 16:00, +1,1,2874,2026,1,1,,0,,,4,30,18,4/30/26 17:00, +1,1,2875,2026,1,1,,0,,,4,30,19,4/30/26 18:00, +1,1,2876,2026,1,1,,0,,,4,30,20,4/30/26 19:00, +1,1,2877,2026,1,1,,0,,,4,30,21,4/30/26 20:00, +1,1,2878,2026,1,1,,0,,,4,30,22,4/30/26 21:00, +1,1,2879,2026,1,1,,0,,,4,30,23,4/30/26 22:00, +1,1,2880,2026,1,1,,0,,,4,30,24,4/30/26 23:00, +1,1,2881,2026,1,1,,0,,,5,1,1,5/1/26 0:00, +1,1,2882,2026,1,1,,0,,,5,1,2,5/1/26 1:00, +1,1,2883,2026,1,1,,0,,,5,1,3,5/1/26 2:00, +1,1,2884,2026,1,1,,0,,,5,1,4,5/1/26 3:00, +1,1,2885,2026,1,1,,0,,,5,1,5,5/1/26 4:00, +1,1,2886,2026,1,1,,0,,,5,1,6,5/1/26 5:00, +1,1,2887,2026,1,1,,0,,,5,1,7,5/1/26 6:00, +1,1,2888,2026,1,1,,0,,,5,1,8,5/1/26 7:00, +1,1,2889,2026,1,1,,0,,,5,1,9,5/1/26 8:00, +1,1,2890,2026,1,1,,0,,,5,1,10,5/1/26 9:00, +1,1,2891,2026,1,1,,0,,,5,1,11,5/1/26 10:00, +1,1,2892,2026,1,1,,0,,,5,1,12,5/1/26 11:00, +1,1,2893,2026,1,1,,0,,,5,1,13,5/1/26 12:00, +1,1,2894,2026,1,1,,0,,,5,1,14,5/1/26 13:00, +1,1,2895,2026,1,1,,0,,,5,1,15,5/1/26 14:00, +1,1,2896,2026,1,1,,0,,,5,1,16,5/1/26 15:00, +1,1,2897,2026,1,1,,0,,,5,1,17,5/1/26 16:00, +1,1,2898,2026,1,1,,0,,,5,1,18,5/1/26 17:00, +1,1,2899,2026,1,1,,0,,,5,1,19,5/1/26 18:00, +1,1,2900,2026,1,1,,0,,,5,1,20,5/1/26 19:00, +1,1,2901,2026,1,1,,0,,,5,1,21,5/1/26 20:00, +1,1,2902,2026,1,1,,0,,,5,1,22,5/1/26 21:00, +1,1,2903,2026,1,1,,0,,,5,1,23,5/1/26 22:00, +1,1,2904,2026,1,1,,0,,,5,1,24,5/1/26 23:00, +1,1,2905,2026,1,1,,0,,,5,2,1,5/2/26 0:00, +1,1,2906,2026,1,1,,0,,,5,2,2,5/2/26 1:00, +1,1,2907,2026,1,1,,0,,,5,2,3,5/2/26 2:00, +1,1,2908,2026,1,1,,0,,,5,2,4,5/2/26 3:00, +1,1,2909,2026,1,1,,0,,,5,2,5,5/2/26 4:00, +1,1,2910,2026,1,1,,0,,,5,2,6,5/2/26 5:00, +1,1,2911,2026,1,1,,0,,,5,2,7,5/2/26 6:00, +1,1,2912,2026,1,1,,0,,,5,2,8,5/2/26 7:00, +1,1,2913,2026,1,1,,0,,,5,2,9,5/2/26 8:00, +1,1,2914,2026,1,1,,0,,,5,2,10,5/2/26 9:00, +1,1,2915,2026,1,1,,0,,,5,2,11,5/2/26 10:00, +1,1,2916,2026,1,1,,0,,,5,2,12,5/2/26 11:00, +1,1,2917,2026,1,1,,0,,,5,2,13,5/2/26 12:00, +1,1,2918,2026,1,1,,0,,,5,2,14,5/2/26 13:00, +1,1,2919,2026,1,1,,0,,,5,2,15,5/2/26 14:00, +1,1,2920,2026,1,1,,0,,,5,2,16,5/2/26 15:00, +1,1,2921,2026,1,1,,0,,,5,2,17,5/2/26 16:00, +1,1,2922,2026,1,1,,0,,,5,2,18,5/2/26 17:00, +1,1,2923,2026,1,1,,0,,,5,2,19,5/2/26 18:00, +1,1,2924,2026,1,1,,0,,,5,2,20,5/2/26 19:00, +1,1,2925,2026,1,1,,0,,,5,2,21,5/2/26 20:00, +1,1,2926,2026,1,1,,0,,,5,2,22,5/2/26 21:00, +1,1,2927,2026,1,1,,0,,,5,2,23,5/2/26 22:00, +1,1,2928,2026,1,1,,0,,,5,2,24,5/2/26 23:00, +1,1,2929,2026,1,1,,0,,,5,3,1,5/3/26 0:00, +1,1,2930,2026,1,1,,0,,,5,3,2,5/3/26 1:00, +1,1,2931,2026,1,1,,0,,,5,3,3,5/3/26 2:00, +1,1,2932,2026,1,1,,0,,,5,3,4,5/3/26 3:00, +1,1,2933,2026,1,1,,0,,,5,3,5,5/3/26 4:00, +1,1,2934,2026,1,1,,0,,,5,3,6,5/3/26 5:00, +1,1,2935,2026,1,1,,0,,,5,3,7,5/3/26 6:00, +1,1,2936,2026,1,1,,0,,,5,3,8,5/3/26 7:00, +1,1,2937,2026,1,1,,0,,,5,3,9,5/3/26 8:00, +1,1,2938,2026,1,1,,0,,,5,3,10,5/3/26 9:00, +1,1,2939,2026,1,1,,0,,,5,3,11,5/3/26 10:00, +1,1,2940,2026,1,1,,0,,,5,3,12,5/3/26 11:00, +1,1,2941,2026,1,1,,0,,,5,3,13,5/3/26 12:00, +1,1,2942,2026,1,1,,0,,,5,3,14,5/3/26 13:00, +1,1,2943,2026,1,1,,0,,,5,3,15,5/3/26 14:00, +1,1,2944,2026,1,1,,0,,,5,3,16,5/3/26 15:00, +1,1,2945,2026,1,1,,0,,,5,3,17,5/3/26 16:00, +1,1,2946,2026,1,1,,0,,,5,3,18,5/3/26 17:00, +1,1,2947,2026,1,1,,0,,,5,3,19,5/3/26 18:00, +1,1,2948,2026,1,1,,0,,,5,3,20,5/3/26 19:00, +1,1,2949,2026,1,1,,0,,,5,3,21,5/3/26 20:00, +1,1,2950,2026,1,1,,0,,,5,3,22,5/3/26 21:00, +1,1,2951,2026,1,1,,0,,,5,3,23,5/3/26 22:00, +1,1,2952,2026,1,1,,0,,,5,3,24,5/3/26 23:00, +1,1,2953,2026,1,1,,0,,,5,4,1,5/4/26 0:00, +1,1,2954,2026,1,1,,0,,,5,4,2,5/4/26 1:00, +1,1,2955,2026,1,1,,0,,,5,4,3,5/4/26 2:00, +1,1,2956,2026,1,1,,0,,,5,4,4,5/4/26 3:00, +1,1,2957,2026,1,1,,0,,,5,4,5,5/4/26 4:00, +1,1,2958,2026,1,1,,0,,,5,4,6,5/4/26 5:00, +1,1,2959,2026,1,1,,0,,,5,4,7,5/4/26 6:00, +1,1,2960,2026,1,1,,0,,,5,4,8,5/4/26 7:00, +1,1,2961,2026,1,1,,0,,,5,4,9,5/4/26 8:00, +1,1,2962,2026,1,1,,0,,,5,4,10,5/4/26 9:00, +1,1,2963,2026,1,1,,0,,,5,4,11,5/4/26 10:00, +1,1,2964,2026,1,1,,0,,,5,4,12,5/4/26 11:00, +1,1,2965,2026,1,1,,0,,,5,4,13,5/4/26 12:00, +1,1,2966,2026,1,1,,0,,,5,4,14,5/4/26 13:00, +1,1,2967,2026,1,1,,0,,,5,4,15,5/4/26 14:00, +1,1,2968,2026,1,1,,0,,,5,4,16,5/4/26 15:00, +1,1,2969,2026,1,1,,0,,,5,4,17,5/4/26 16:00, +1,1,2970,2026,1,1,,0,,,5,4,18,5/4/26 17:00, +1,1,2971,2026,1,1,,0,,,5,4,19,5/4/26 18:00, +1,1,2972,2026,1,1,,0,,,5,4,20,5/4/26 19:00, +1,1,2973,2026,1,1,,0,,,5,4,21,5/4/26 20:00, +1,1,2974,2026,1,1,,0,,,5,4,22,5/4/26 21:00, +1,1,2975,2026,1,1,,0,,,5,4,23,5/4/26 22:00, +1,1,2976,2026,1,1,,0,,,5,4,24,5/4/26 23:00, +1,1,2977,2026,1,1,,0,,,5,5,1,5/5/26 0:00, +1,1,2978,2026,1,1,,0,,,5,5,2,5/5/26 1:00, +1,1,2979,2026,1,1,,0,,,5,5,3,5/5/26 2:00, +1,1,2980,2026,1,1,,0,,,5,5,4,5/5/26 3:00, +1,1,2981,2026,1,1,,0,,,5,5,5,5/5/26 4:00, +1,1,2982,2026,1,1,,0,,,5,5,6,5/5/26 5:00, +1,1,2983,2026,1,1,,0,,,5,5,7,5/5/26 6:00, +1,1,2984,2026,1,1,,0,,,5,5,8,5/5/26 7:00, +1,1,2985,2026,1,1,,0,,,5,5,9,5/5/26 8:00, +1,1,2986,2026,1,1,,0,,,5,5,10,5/5/26 9:00, +1,1,2987,2026,1,1,,0,,,5,5,11,5/5/26 10:00, +1,1,2988,2026,1,1,,0,,,5,5,12,5/5/26 11:00, +1,1,2989,2026,1,1,,0,,,5,5,13,5/5/26 12:00, +1,1,2990,2026,1,1,,0,,,5,5,14,5/5/26 13:00, +1,1,2991,2026,1,1,,0,,,5,5,15,5/5/26 14:00, +1,1,2992,2026,1,1,,0,,,5,5,16,5/5/26 15:00, +1,1,2993,2026,1,1,,0,,,5,5,17,5/5/26 16:00, +1,1,2994,2026,1,1,,0,,,5,5,18,5/5/26 17:00, +1,1,2995,2026,1,1,,0,,,5,5,19,5/5/26 18:00, +1,1,2996,2026,1,1,,0,,,5,5,20,5/5/26 19:00, +1,1,2997,2026,1,1,,0,,,5,5,21,5/5/26 20:00, +1,1,2998,2026,1,1,,0,,,5,5,22,5/5/26 21:00, +1,1,2999,2026,1,1,,0,,,5,5,23,5/5/26 22:00, +1,1,3000,2026,1,1,,0,,,5,5,24,5/5/26 23:00, +1,1,3001,2026,1,1,,0,,,5,6,1,5/6/26 0:00, +1,1,3002,2026,1,1,,0,,,5,6,2,5/6/26 1:00, +1,1,3003,2026,1,1,,0,,,5,6,3,5/6/26 2:00, +1,1,3004,2026,1,1,,0,,,5,6,4,5/6/26 3:00, +1,1,3005,2026,1,1,,0,,,5,6,5,5/6/26 4:00, +1,1,3006,2026,1,1,,0,,,5,6,6,5/6/26 5:00, +1,1,3007,2026,1,1,,0,,,5,6,7,5/6/26 6:00, +1,1,3008,2026,1,1,,0,,,5,6,8,5/6/26 7:00, +1,1,3009,2026,1,1,,0,,,5,6,9,5/6/26 8:00, +1,1,3010,2026,1,1,,0,,,5,6,10,5/6/26 9:00, +1,1,3011,2026,1,1,,0,,,5,6,11,5/6/26 10:00, +1,1,3012,2026,1,1,,0,,,5,6,12,5/6/26 11:00, +1,1,3013,2026,1,1,,0,,,5,6,13,5/6/26 12:00, +1,1,3014,2026,1,1,,0,,,5,6,14,5/6/26 13:00, +1,1,3015,2026,1,1,,0,,,5,6,15,5/6/26 14:00, +1,1,3016,2026,1,1,,0,,,5,6,16,5/6/26 15:00, +1,1,3017,2026,1,1,,0,,,5,6,17,5/6/26 16:00, +1,1,3018,2026,1,1,,0,,,5,6,18,5/6/26 17:00, +1,1,3019,2026,1,1,,0,,,5,6,19,5/6/26 18:00, +1,1,3020,2026,1,1,,0,,,5,6,20,5/6/26 19:00, +1,1,3021,2026,1,1,,0,,,5,6,21,5/6/26 20:00, +1,1,3022,2026,1,1,,0,,,5,6,22,5/6/26 21:00, +1,1,3023,2026,1,1,,0,,,5,6,23,5/6/26 22:00, +1,1,3024,2026,1,1,,0,,,5,6,24,5/6/26 23:00, +1,1,3025,2026,1,1,,0,,,5,7,1,5/7/26 0:00, +1,1,3026,2026,1,1,,0,,,5,7,2,5/7/26 1:00, +1,1,3027,2026,1,1,,0,,,5,7,3,5/7/26 2:00, +1,1,3028,2026,1,1,,0,,,5,7,4,5/7/26 3:00, +1,1,3029,2026,1,1,,0,,,5,7,5,5/7/26 4:00, +1,1,3030,2026,1,1,,0,,,5,7,6,5/7/26 5:00, +1,1,3031,2026,1,1,,0,,,5,7,7,5/7/26 6:00, +1,1,3032,2026,1,1,,0,,,5,7,8,5/7/26 7:00, +1,1,3033,2026,1,1,,0,,,5,7,9,5/7/26 8:00, +1,1,3034,2026,1,1,,0,,,5,7,10,5/7/26 9:00, +1,1,3035,2026,1,1,,0,,,5,7,11,5/7/26 10:00, +1,1,3036,2026,1,1,,0,,,5,7,12,5/7/26 11:00, +1,1,3037,2026,1,1,,0,,,5,7,13,5/7/26 12:00, +1,1,3038,2026,1,1,,0,,,5,7,14,5/7/26 13:00, +1,1,3039,2026,1,1,,0,,,5,7,15,5/7/26 14:00, +1,1,3040,2026,1,1,,0,,,5,7,16,5/7/26 15:00, +1,1,3041,2026,1,1,,0,,,5,7,17,5/7/26 16:00, +1,1,3042,2026,1,1,,0,,,5,7,18,5/7/26 17:00, +1,1,3043,2026,1,1,,0,,,5,7,19,5/7/26 18:00, +1,1,3044,2026,1,1,,0,,,5,7,20,5/7/26 19:00, +1,1,3045,2026,1,1,,0,,,5,7,21,5/7/26 20:00, +1,1,3046,2026,1,1,,0,,,5,7,22,5/7/26 21:00, +1,1,3047,2026,1,1,,0,,,5,7,23,5/7/26 22:00, +1,1,3048,2026,1,1,,0,,,5,7,24,5/7/26 23:00, +1,1,3049,2026,1,1,,0,,,5,8,1,5/8/26 0:00, +1,1,3050,2026,1,1,,0,,,5,8,2,5/8/26 1:00, +1,1,3051,2026,1,1,,0,,,5,8,3,5/8/26 2:00, +1,1,3052,2026,1,1,,0,,,5,8,4,5/8/26 3:00, +1,1,3053,2026,1,1,,0,,,5,8,5,5/8/26 4:00, +1,1,3054,2026,1,1,,0,,,5,8,6,5/8/26 5:00, +1,1,3055,2026,1,1,,0,,,5,8,7,5/8/26 6:00, +1,1,3056,2026,1,1,,0,,,5,8,8,5/8/26 7:00, +1,1,3057,2026,1,1,,0,,,5,8,9,5/8/26 8:00, +1,1,3058,2026,1,1,,0,,,5,8,10,5/8/26 9:00, +1,1,3059,2026,1,1,,0,,,5,8,11,5/8/26 10:00, +1,1,3060,2026,1,1,,0,,,5,8,12,5/8/26 11:00, +1,1,3061,2026,1,1,,0,,,5,8,13,5/8/26 12:00, +1,1,3062,2026,1,1,,0,,,5,8,14,5/8/26 13:00, +1,1,3063,2026,1,1,,0,,,5,8,15,5/8/26 14:00, +1,1,3064,2026,1,1,,0,,,5,8,16,5/8/26 15:00, +1,1,3065,2026,1,1,,0,,,5,8,17,5/8/26 16:00, +1,1,3066,2026,1,1,,0,,,5,8,18,5/8/26 17:00, +1,1,3067,2026,1,1,,0,,,5,8,19,5/8/26 18:00, +1,1,3068,2026,1,1,,0,,,5,8,20,5/8/26 19:00, +1,1,3069,2026,1,1,,0,,,5,8,21,5/8/26 20:00, +1,1,3070,2026,1,1,,0,,,5,8,22,5/8/26 21:00, +1,1,3071,2026,1,1,,0,,,5,8,23,5/8/26 22:00, +1,1,3072,2026,1,1,,0,,,5,8,24,5/8/26 23:00, +1,1,3073,2026,1,1,,0,,,5,9,1,5/9/26 0:00, +1,1,3074,2026,1,1,,0,,,5,9,2,5/9/26 1:00, +1,1,3075,2026,1,1,,0,,,5,9,3,5/9/26 2:00, +1,1,3076,2026,1,1,,0,,,5,9,4,5/9/26 3:00, +1,1,3077,2026,1,1,,0,,,5,9,5,5/9/26 4:00, +1,1,3078,2026,1,1,,0,,,5,9,6,5/9/26 5:00, +1,1,3079,2026,1,1,,0,,,5,9,7,5/9/26 6:00, +1,1,3080,2026,1,1,,0,,,5,9,8,5/9/26 7:00, +1,1,3081,2026,1,1,,0,,,5,9,9,5/9/26 8:00, +1,1,3082,2026,1,1,,0,,,5,9,10,5/9/26 9:00, +1,1,3083,2026,1,1,,0,,,5,9,11,5/9/26 10:00, +1,1,3084,2026,1,1,,0,,,5,9,12,5/9/26 11:00, +1,1,3085,2026,1,1,,0,,,5,9,13,5/9/26 12:00, +1,1,3086,2026,1,1,,0,,,5,9,14,5/9/26 13:00, +1,1,3087,2026,1,1,,0,,,5,9,15,5/9/26 14:00, +1,1,3088,2026,1,1,,0,,,5,9,16,5/9/26 15:00, +1,1,3089,2026,1,1,,0,,,5,9,17,5/9/26 16:00, +1,1,3090,2026,1,1,,0,,,5,9,18,5/9/26 17:00, +1,1,3091,2026,1,1,,0,,,5,9,19,5/9/26 18:00, +1,1,3092,2026,1,1,,0,,,5,9,20,5/9/26 19:00, +1,1,3093,2026,1,1,,0,,,5,9,21,5/9/26 20:00, +1,1,3094,2026,1,1,,0,,,5,9,22,5/9/26 21:00, +1,1,3095,2026,1,1,,0,,,5,9,23,5/9/26 22:00, +1,1,3096,2026,1,1,,0,,,5,9,24,5/9/26 23:00, +1,1,3097,2026,1,1,,0,,,5,10,1,5/10/26 0:00, +1,1,3098,2026,1,1,,0,,,5,10,2,5/10/26 1:00, +1,1,3099,2026,1,1,,0,,,5,10,3,5/10/26 2:00, +1,1,3100,2026,1,1,,0,,,5,10,4,5/10/26 3:00, +1,1,3101,2026,1,1,,0,,,5,10,5,5/10/26 4:00, +1,1,3102,2026,1,1,,0,,,5,10,6,5/10/26 5:00, +1,1,3103,2026,1,1,,0,,,5,10,7,5/10/26 6:00, +1,1,3104,2026,1,1,,0,,,5,10,8,5/10/26 7:00, +1,1,3105,2026,1,1,,0,,,5,10,9,5/10/26 8:00, +1,1,3106,2026,1,1,,0,,,5,10,10,5/10/26 9:00, +1,1,3107,2026,1,1,,0,,,5,10,11,5/10/26 10:00, +1,1,3108,2026,1,1,,0,,,5,10,12,5/10/26 11:00, +1,1,3109,2026,1,1,,0,,,5,10,13,5/10/26 12:00, +1,1,3110,2026,1,1,,0,,,5,10,14,5/10/26 13:00, +1,1,3111,2026,1,1,,0,,,5,10,15,5/10/26 14:00, +1,1,3112,2026,1,1,,0,,,5,10,16,5/10/26 15:00, +1,1,3113,2026,1,1,,0,,,5,10,17,5/10/26 16:00, +1,1,3114,2026,1,1,,0,,,5,10,18,5/10/26 17:00, +1,1,3115,2026,1,1,,0,,,5,10,19,5/10/26 18:00, +1,1,3116,2026,1,1,,0,,,5,10,20,5/10/26 19:00, +1,1,3117,2026,1,1,,0,,,5,10,21,5/10/26 20:00, +1,1,3118,2026,1,1,,0,,,5,10,22,5/10/26 21:00, +1,1,3119,2026,1,1,,0,,,5,10,23,5/10/26 22:00, +1,1,3120,2026,1,1,,0,,,5,10,24,5/10/26 23:00, +1,1,3121,2026,1,1,,0,,,5,11,1,5/11/26 0:00, +1,1,3122,2026,1,1,,0,,,5,11,2,5/11/26 1:00, +1,1,3123,2026,1,1,,0,,,5,11,3,5/11/26 2:00, +1,1,3124,2026,1,1,,0,,,5,11,4,5/11/26 3:00, +1,1,3125,2026,1,1,,0,,,5,11,5,5/11/26 4:00, +1,1,3126,2026,1,1,,0,,,5,11,6,5/11/26 5:00, +1,1,3127,2026,1,1,,0,,,5,11,7,5/11/26 6:00, +1,1,3128,2026,1,1,,0,,,5,11,8,5/11/26 7:00, +1,1,3129,2026,1,1,,0,,,5,11,9,5/11/26 8:00, +1,1,3130,2026,1,1,,0,,,5,11,10,5/11/26 9:00, +1,1,3131,2026,1,1,,0,,,5,11,11,5/11/26 10:00, +1,1,3132,2026,1,1,,0,,,5,11,12,5/11/26 11:00, +1,1,3133,2026,1,1,,0,,,5,11,13,5/11/26 12:00, +1,1,3134,2026,1,1,,0,,,5,11,14,5/11/26 13:00, +1,1,3135,2026,1,1,,0,,,5,11,15,5/11/26 14:00, +1,1,3136,2026,1,1,,0,,,5,11,16,5/11/26 15:00, +1,1,3137,2026,1,1,,0,,,5,11,17,5/11/26 16:00, +1,1,3138,2026,1,1,,0,,,5,11,18,5/11/26 17:00, +1,1,3139,2026,1,1,,0,,,5,11,19,5/11/26 18:00, +1,1,3140,2026,1,1,,0,,,5,11,20,5/11/26 19:00, +1,1,3141,2026,1,1,,0,,,5,11,21,5/11/26 20:00, +1,1,3142,2026,1,1,,0,,,5,11,22,5/11/26 21:00, +1,1,3143,2026,1,1,,0,,,5,11,23,5/11/26 22:00, +1,1,3144,2026,1,1,,0,,,5,11,24,5/11/26 23:00, +1,1,3145,2026,1,1,,0,,,5,12,1,5/12/26 0:00, +1,1,3146,2026,1,1,,0,,,5,12,2,5/12/26 1:00, +1,1,3147,2026,1,1,,0,,,5,12,3,5/12/26 2:00, +1,1,3148,2026,1,1,,0,,,5,12,4,5/12/26 3:00, +1,1,3149,2026,1,1,,0,,,5,12,5,5/12/26 4:00, +1,1,3150,2026,1,1,,0,,,5,12,6,5/12/26 5:00, +1,1,3151,2026,1,1,,0,,,5,12,7,5/12/26 6:00, +1,1,3152,2026,1,1,,0,,,5,12,8,5/12/26 7:00, +1,1,3153,2026,1,1,,0,,,5,12,9,5/12/26 8:00, +1,1,3154,2026,1,1,,0,,,5,12,10,5/12/26 9:00, +1,1,3155,2026,1,1,,0,,,5,12,11,5/12/26 10:00, +1,1,3156,2026,1,1,,0,,,5,12,12,5/12/26 11:00, +1,1,3157,2026,1,1,,0,,,5,12,13,5/12/26 12:00, +1,1,3158,2026,1,1,,0,,,5,12,14,5/12/26 13:00, +1,1,3159,2026,1,1,,0,,,5,12,15,5/12/26 14:00, +1,1,3160,2026,1,1,,0,,,5,12,16,5/12/26 15:00, +1,1,3161,2026,1,1,,0,,,5,12,17,5/12/26 16:00, +1,1,3162,2026,1,1,,0,,,5,12,18,5/12/26 17:00, +1,1,3163,2026,1,1,,0,,,5,12,19,5/12/26 18:00, +1,1,3164,2026,1,1,,0,,,5,12,20,5/12/26 19:00, +1,1,3165,2026,1,1,,0,,,5,12,21,5/12/26 20:00, +1,1,3166,2026,1,1,,0,,,5,12,22,5/12/26 21:00, +1,1,3167,2026,1,1,,0,,,5,12,23,5/12/26 22:00, +1,1,3168,2026,1,1,,0,,,5,12,24,5/12/26 23:00, +1,1,3169,2026,1,1,,0,,,5,13,1,5/13/26 0:00, +1,1,3170,2026,1,1,,0,,,5,13,2,5/13/26 1:00, +1,1,3171,2026,1,1,,0,,,5,13,3,5/13/26 2:00, +1,1,3172,2026,1,1,,0,,,5,13,4,5/13/26 3:00, +1,1,3173,2026,1,1,,0,,,5,13,5,5/13/26 4:00, +1,1,3174,2026,1,1,,0,,,5,13,6,5/13/26 5:00, +1,1,3175,2026,1,1,,0,,,5,13,7,5/13/26 6:00, +1,1,3176,2026,1,1,,0,,,5,13,8,5/13/26 7:00, +1,1,3177,2026,1,1,,0,,,5,13,9,5/13/26 8:00, +1,1,3178,2026,1,1,,0,,,5,13,10,5/13/26 9:00, +1,1,3179,2026,1,1,,0,,,5,13,11,5/13/26 10:00, +1,1,3180,2026,1,1,,0,,,5,13,12,5/13/26 11:00, +1,1,3181,2026,1,1,,0,,,5,13,13,5/13/26 12:00, +1,1,3182,2026,1,1,,0,,,5,13,14,5/13/26 13:00, +1,1,3183,2026,1,1,,0,,,5,13,15,5/13/26 14:00, +1,1,3184,2026,1,1,,0,,,5,13,16,5/13/26 15:00, +1,1,3185,2026,1,1,,0,,,5,13,17,5/13/26 16:00, +1,1,3186,2026,1,1,,0,,,5,13,18,5/13/26 17:00, +1,1,3187,2026,1,1,,0,,,5,13,19,5/13/26 18:00, +1,1,3188,2026,1,1,,0,,,5,13,20,5/13/26 19:00, +1,1,3189,2026,1,1,,0,,,5,13,21,5/13/26 20:00, +1,1,3190,2026,1,1,,0,,,5,13,22,5/13/26 21:00, +1,1,3191,2026,1,1,,0,,,5,13,23,5/13/26 22:00, +1,1,3192,2026,1,1,,0,,,5,13,24,5/13/26 23:00, +1,1,3193,2026,1,1,,0,,,5,14,1,5/14/26 0:00, +1,1,3194,2026,1,1,,0,,,5,14,2,5/14/26 1:00, +1,1,3195,2026,1,1,,0,,,5,14,3,5/14/26 2:00, +1,1,3196,2026,1,1,,0,,,5,14,4,5/14/26 3:00, +1,1,3197,2026,1,1,,0,,,5,14,5,5/14/26 4:00, +1,1,3198,2026,1,1,,0,,,5,14,6,5/14/26 5:00, +1,1,3199,2026,1,1,,0,,,5,14,7,5/14/26 6:00, +1,1,3200,2026,1,1,,0,,,5,14,8,5/14/26 7:00, +1,1,3201,2026,1,1,,0,,,5,14,9,5/14/26 8:00, +1,1,3202,2026,1,1,,0,,,5,14,10,5/14/26 9:00, +1,1,3203,2026,1,1,,0,,,5,14,11,5/14/26 10:00, +1,1,3204,2026,1,1,,0,,,5,14,12,5/14/26 11:00, +1,1,3205,2026,1,1,,0,,,5,14,13,5/14/26 12:00, +1,1,3206,2026,1,1,,0,,,5,14,14,5/14/26 13:00, +1,1,3207,2026,1,1,,0,,,5,14,15,5/14/26 14:00, +1,1,3208,2026,1,1,,0,,,5,14,16,5/14/26 15:00, +1,1,3209,2026,1,1,,0,,,5,14,17,5/14/26 16:00, +1,1,3210,2026,1,1,,0,,,5,14,18,5/14/26 17:00, +1,1,3211,2026,1,1,,0,,,5,14,19,5/14/26 18:00, +1,1,3212,2026,1,1,,0,,,5,14,20,5/14/26 19:00, +1,1,3213,2026,1,1,,0,,,5,14,21,5/14/26 20:00, +1,1,3214,2026,1,1,,0,,,5,14,22,5/14/26 21:00, +1,1,3215,2026,1,1,,0,,,5,14,23,5/14/26 22:00, +1,1,3216,2026,1,1,,0,,,5,14,24,5/14/26 23:00, +1,1,3217,2026,1,1,,0,,,5,15,1,5/15/26 0:00, +1,1,3218,2026,1,1,,0,,,5,15,2,5/15/26 1:00, +1,1,3219,2026,1,1,,0,,,5,15,3,5/15/26 2:00, +1,1,3220,2026,1,1,,0,,,5,15,4,5/15/26 3:00, +1,1,3221,2026,1,1,,0,,,5,15,5,5/15/26 4:00, +1,1,3222,2026,1,1,,0,,,5,15,6,5/15/26 5:00, +1,1,3223,2026,1,1,,0,,,5,15,7,5/15/26 6:00, +1,1,3224,2026,1,1,,0,,,5,15,8,5/15/26 7:00, +1,1,3225,2026,1,1,,0,,,5,15,9,5/15/26 8:00, +1,1,3226,2026,1,1,,0,,,5,15,10,5/15/26 9:00, +1,1,3227,2026,1,1,,0,,,5,15,11,5/15/26 10:00, +1,1,3228,2026,1,1,,0,,,5,15,12,5/15/26 11:00, +1,1,3229,2026,1,1,,0,,,5,15,13,5/15/26 12:00, +1,1,3230,2026,1,1,,0,,,5,15,14,5/15/26 13:00, +1,1,3231,2026,1,1,,0,,,5,15,15,5/15/26 14:00, +1,1,3232,2026,1,1,,0,,,5,15,16,5/15/26 15:00, +1,1,3233,2026,1,1,,0,,,5,15,17,5/15/26 16:00, +1,1,3234,2026,1,1,,0,,,5,15,18,5/15/26 17:00, +1,1,3235,2026,1,1,,0,,,5,15,19,5/15/26 18:00, +1,1,3236,2026,1,1,,0,,,5,15,20,5/15/26 19:00, +1,1,3237,2026,1,1,,0,,,5,15,21,5/15/26 20:00, +1,1,3238,2026,1,1,,0,,,5,15,22,5/15/26 21:00, +1,1,3239,2026,1,1,,0,,,5,15,23,5/15/26 22:00, +1,1,3240,2026,1,1,,0,,,5,15,24,5/15/26 23:00, +1,1,3241,2026,1,1,,0,,,5,16,1,5/16/26 0:00, +1,1,3242,2026,1,1,,0,,,5,16,2,5/16/26 1:00, +1,1,3243,2026,1,1,,0,,,5,16,3,5/16/26 2:00, +1,1,3244,2026,1,1,,0,,,5,16,4,5/16/26 3:00, +1,1,3245,2026,1,1,,0,,,5,16,5,5/16/26 4:00, +1,1,3246,2026,1,1,,0,,,5,16,6,5/16/26 5:00, +1,1,3247,2026,1,1,,0,,,5,16,7,5/16/26 6:00, +1,1,3248,2026,1,1,,0,,,5,16,8,5/16/26 7:00, +1,1,3249,2026,1,1,,0,,,5,16,9,5/16/26 8:00, +1,1,3250,2026,1,1,,0,,,5,16,10,5/16/26 9:00, +1,1,3251,2026,1,1,,0,,,5,16,11,5/16/26 10:00, +1,1,3252,2026,1,1,,0,,,5,16,12,5/16/26 11:00, +1,1,3253,2026,1,1,,0,,,5,16,13,5/16/26 12:00, +1,1,3254,2026,1,1,,0,,,5,16,14,5/16/26 13:00, +1,1,3255,2026,1,1,,0,,,5,16,15,5/16/26 14:00, +1,1,3256,2026,1,1,,0,,,5,16,16,5/16/26 15:00, +1,1,3257,2026,1,1,,0,,,5,16,17,5/16/26 16:00, +1,1,3258,2026,1,1,,0,,,5,16,18,5/16/26 17:00, +1,1,3259,2026,1,1,,0,,,5,16,19,5/16/26 18:00, +1,1,3260,2026,1,1,,0,,,5,16,20,5/16/26 19:00, +1,1,3261,2026,1,1,,0,,,5,16,21,5/16/26 20:00, +1,1,3262,2026,1,1,,0,,,5,16,22,5/16/26 21:00, +1,1,3263,2026,1,1,,0,,,5,16,23,5/16/26 22:00, +1,1,3264,2026,1,1,,0,,,5,16,24,5/16/26 23:00, +1,1,3265,2026,1,1,,0,,,5,17,1,5/17/26 0:00, +1,1,3266,2026,1,1,,0,,,5,17,2,5/17/26 1:00, +1,1,3267,2026,1,1,,0,,,5,17,3,5/17/26 2:00, +1,1,3268,2026,1,1,,0,,,5,17,4,5/17/26 3:00, +1,1,3269,2026,1,1,,0,,,5,17,5,5/17/26 4:00, +1,1,3270,2026,1,1,,0,,,5,17,6,5/17/26 5:00, +1,1,3271,2026,1,1,,0,,,5,17,7,5/17/26 6:00, +1,1,3272,2026,1,1,,0,,,5,17,8,5/17/26 7:00, +1,1,3273,2026,1,1,,0,,,5,17,9,5/17/26 8:00, +1,1,3274,2026,1,1,,0,,,5,17,10,5/17/26 9:00, +1,1,3275,2026,1,1,,0,,,5,17,11,5/17/26 10:00, +1,1,3276,2026,1,1,,0,,,5,17,12,5/17/26 11:00, +1,1,3277,2026,1,1,,0,,,5,17,13,5/17/26 12:00, +1,1,3278,2026,1,1,,0,,,5,17,14,5/17/26 13:00, +1,1,3279,2026,1,1,,0,,,5,17,15,5/17/26 14:00, +1,1,3280,2026,1,1,,0,,,5,17,16,5/17/26 15:00, +1,1,3281,2026,1,1,,0,,,5,17,17,5/17/26 16:00, +1,1,3282,2026,1,1,,0,,,5,17,18,5/17/26 17:00, +1,1,3283,2026,1,1,,0,,,5,17,19,5/17/26 18:00, +1,1,3284,2026,1,1,,0,,,5,17,20,5/17/26 19:00, +1,1,3285,2026,1,1,,0,,,5,17,21,5/17/26 20:00, +1,1,3286,2026,1,1,,0,,,5,17,22,5/17/26 21:00, +1,1,3287,2026,1,1,,0,,,5,17,23,5/17/26 22:00, +1,1,3288,2026,1,1,,0,,,5,17,24,5/17/26 23:00, +1,1,3289,2026,1,1,,0,,,5,18,1,5/18/26 0:00, +1,1,3290,2026,1,1,,0,,,5,18,2,5/18/26 1:00, +1,1,3291,2026,1,1,,0,,,5,18,3,5/18/26 2:00, +1,1,3292,2026,1,1,,0,,,5,18,4,5/18/26 3:00, +1,1,3293,2026,1,1,,0,,,5,18,5,5/18/26 4:00, +1,1,3294,2026,1,1,,0,,,5,18,6,5/18/26 5:00, +1,1,3295,2026,1,1,,0,,,5,18,7,5/18/26 6:00, +1,1,3296,2026,1,1,,0,,,5,18,8,5/18/26 7:00, +1,1,3297,2026,1,1,,0,,,5,18,9,5/18/26 8:00, +1,1,3298,2026,1,1,,0,,,5,18,10,5/18/26 9:00, +1,1,3299,2026,1,1,,0,,,5,18,11,5/18/26 10:00, +1,1,3300,2026,1,1,,0,,,5,18,12,5/18/26 11:00, +1,1,3301,2026,1,1,,0,,,5,18,13,5/18/26 12:00, +1,1,3302,2026,1,1,,0,,,5,18,14,5/18/26 13:00, +1,1,3303,2026,1,1,,0,,,5,18,15,5/18/26 14:00, +1,1,3304,2026,1,1,,0,,,5,18,16,5/18/26 15:00, +1,1,3305,2026,1,1,,0,,,5,18,17,5/18/26 16:00, +1,1,3306,2026,1,1,,0,,,5,18,18,5/18/26 17:00, +1,1,3307,2026,1,1,,0,,,5,18,19,5/18/26 18:00, +1,1,3308,2026,1,1,,0,,,5,18,20,5/18/26 19:00, +1,1,3309,2026,1,1,,0,,,5,18,21,5/18/26 20:00, +1,1,3310,2026,1,1,,0,,,5,18,22,5/18/26 21:00, +1,1,3311,2026,1,1,,0,,,5,18,23,5/18/26 22:00, +1,1,3312,2026,1,1,,0,,,5,18,24,5/18/26 23:00, +1,1,3313,2026,1,1,,0,,,5,19,1,5/19/26 0:00, +1,1,3314,2026,1,1,,0,,,5,19,2,5/19/26 1:00, +1,1,3315,2026,1,1,,0,,,5,19,3,5/19/26 2:00, +1,1,3316,2026,1,1,,0,,,5,19,4,5/19/26 3:00, +1,1,3317,2026,1,1,,0,,,5,19,5,5/19/26 4:00, +1,1,3318,2026,1,1,,0,,,5,19,6,5/19/26 5:00, +1,1,3319,2026,1,1,,0,,,5,19,7,5/19/26 6:00, +1,1,3320,2026,1,1,,0,,,5,19,8,5/19/26 7:00, +1,1,3321,2026,1,1,,0,,,5,19,9,5/19/26 8:00, +1,1,3322,2026,1,1,,0,,,5,19,10,5/19/26 9:00, +1,1,3323,2026,1,1,,0,,,5,19,11,5/19/26 10:00, +1,1,3324,2026,1,1,,0,,,5,19,12,5/19/26 11:00, +1,1,3325,2026,1,1,,0,,,5,19,13,5/19/26 12:00, +1,1,3326,2026,1,1,,0,,,5,19,14,5/19/26 13:00, +1,1,3327,2026,1,1,,0,,,5,19,15,5/19/26 14:00, +1,1,3328,2026,1,1,,0,,,5,19,16,5/19/26 15:00, +1,1,3329,2026,1,1,,0,,,5,19,17,5/19/26 16:00, +1,1,3330,2026,1,1,,0,,,5,19,18,5/19/26 17:00, +1,1,3331,2026,1,1,,0,,,5,19,19,5/19/26 18:00, +1,1,3332,2026,1,1,,0,,,5,19,20,5/19/26 19:00, +1,1,3333,2026,1,1,,0,,,5,19,21,5/19/26 20:00, +1,1,3334,2026,1,1,,0,,,5,19,22,5/19/26 21:00, +1,1,3335,2026,1,1,,0,,,5,19,23,5/19/26 22:00, +1,1,3336,2026,1,1,,0,,,5,19,24,5/19/26 23:00, +1,1,3337,2026,1,1,,0,,,5,20,1,5/20/26 0:00, +1,1,3338,2026,1,1,,0,,,5,20,2,5/20/26 1:00, +1,1,3339,2026,1,1,,0,,,5,20,3,5/20/26 2:00, +1,1,3340,2026,1,1,,0,,,5,20,4,5/20/26 3:00, +1,1,3341,2026,1,1,,0,,,5,20,5,5/20/26 4:00, +1,1,3342,2026,1,1,,0,,,5,20,6,5/20/26 5:00, +1,1,3343,2026,1,1,,0,,,5,20,7,5/20/26 6:00, +1,1,3344,2026,1,1,,0,,,5,20,8,5/20/26 7:00, +1,1,3345,2026,1,1,,0,,,5,20,9,5/20/26 8:00, +1,1,3346,2026,1,1,,0,,,5,20,10,5/20/26 9:00, +1,1,3347,2026,1,1,,0,,,5,20,11,5/20/26 10:00, +1,1,3348,2026,1,1,,0,,,5,20,12,5/20/26 11:00, +1,1,3349,2026,1,1,,0,,,5,20,13,5/20/26 12:00, +1,1,3350,2026,1,1,,0,,,5,20,14,5/20/26 13:00, +1,1,3351,2026,1,1,,0,,,5,20,15,5/20/26 14:00, +1,1,3352,2026,1,1,,0,,,5,20,16,5/20/26 15:00, +1,1,3353,2026,1,1,,0,,,5,20,17,5/20/26 16:00, +1,1,3354,2026,1,1,,0,,,5,20,18,5/20/26 17:00, +1,1,3355,2026,1,1,,0,,,5,20,19,5/20/26 18:00, +1,1,3356,2026,1,1,,0,,,5,20,20,5/20/26 19:00, +1,1,3357,2026,1,1,,0,,,5,20,21,5/20/26 20:00, +1,1,3358,2026,1,1,,0,,,5,20,22,5/20/26 21:00, +1,1,3359,2026,1,1,,0,,,5,20,23,5/20/26 22:00, +1,1,3360,2026,1,1,,0,,,5,20,24,5/20/26 23:00, +1,1,3361,2026,1,1,,0,,,5,21,1,5/21/26 0:00, +1,1,3362,2026,1,1,,0,,,5,21,2,5/21/26 1:00, +1,1,3363,2026,1,1,,0,,,5,21,3,5/21/26 2:00, +1,1,3364,2026,1,1,,0,,,5,21,4,5/21/26 3:00, +1,1,3365,2026,1,1,,0,,,5,21,5,5/21/26 4:00, +1,1,3366,2026,1,1,,0,,,5,21,6,5/21/26 5:00, +1,1,3367,2026,1,1,,0,,,5,21,7,5/21/26 6:00, +1,1,3368,2026,1,1,,0,,,5,21,8,5/21/26 7:00, +1,1,3369,2026,1,1,,0,,,5,21,9,5/21/26 8:00, +1,1,3370,2026,1,1,,0,,,5,21,10,5/21/26 9:00, +1,1,3371,2026,1,1,,0,,,5,21,11,5/21/26 10:00, +1,1,3372,2026,1,1,,0,,,5,21,12,5/21/26 11:00, +1,1,3373,2026,1,1,,0,,,5,21,13,5/21/26 12:00, +1,1,3374,2026,1,1,,0,,,5,21,14,5/21/26 13:00, +1,1,3375,2026,1,1,,0,,,5,21,15,5/21/26 14:00, +1,1,3376,2026,1,1,,0,,,5,21,16,5/21/26 15:00, +1,1,3377,2026,1,1,,0,,,5,21,17,5/21/26 16:00, +1,1,3378,2026,1,1,,0,,,5,21,18,5/21/26 17:00, +1,1,3379,2026,1,1,,0,,,5,21,19,5/21/26 18:00, +1,1,3380,2026,1,1,,0,,,5,21,20,5/21/26 19:00, +1,1,3381,2026,1,1,,0,,,5,21,21,5/21/26 20:00, +1,1,3382,2026,1,1,,0,,,5,21,22,5/21/26 21:00, +1,1,3383,2026,1,1,,0,,,5,21,23,5/21/26 22:00, +1,1,3384,2026,1,1,,0,,,5,21,24,5/21/26 23:00, +1,1,3385,2026,1,1,,0,,,5,22,1,5/22/26 0:00, +1,1,3386,2026,1,1,,0,,,5,22,2,5/22/26 1:00, +1,1,3387,2026,1,1,,0,,,5,22,3,5/22/26 2:00, +1,1,3388,2026,1,1,,0,,,5,22,4,5/22/26 3:00, +1,1,3389,2026,1,1,,0,,,5,22,5,5/22/26 4:00, +1,1,3390,2026,1,1,,0,,,5,22,6,5/22/26 5:00, +1,1,3391,2026,1,1,,0,,,5,22,7,5/22/26 6:00, +1,1,3392,2026,1,1,,0,,,5,22,8,5/22/26 7:00, +1,1,3393,2026,1,1,,0,,,5,22,9,5/22/26 8:00, +1,1,3394,2026,1,1,,0,,,5,22,10,5/22/26 9:00, +1,1,3395,2026,1,1,,0,,,5,22,11,5/22/26 10:00, +1,1,3396,2026,1,1,,0,,,5,22,12,5/22/26 11:00, +1,1,3397,2026,1,1,,0,,,5,22,13,5/22/26 12:00, +1,1,3398,2026,1,1,,0,,,5,22,14,5/22/26 13:00, +1,1,3399,2026,1,1,,0,,,5,22,15,5/22/26 14:00, +1,1,3400,2026,1,1,,0,,,5,22,16,5/22/26 15:00, +1,1,3401,2026,1,1,,0,,,5,22,17,5/22/26 16:00, +1,1,3402,2026,1,1,,0,,,5,22,18,5/22/26 17:00, +1,1,3403,2026,1,1,,0,,,5,22,19,5/22/26 18:00, +1,1,3404,2026,1,1,,0,,,5,22,20,5/22/26 19:00, +1,1,3405,2026,1,1,,0,,,5,22,21,5/22/26 20:00, +1,1,3406,2026,1,1,,0,,,5,22,22,5/22/26 21:00, +1,1,3407,2026,1,1,,0,,,5,22,23,5/22/26 22:00, +1,1,3408,2026,1,1,,0,,,5,22,24,5/22/26 23:00, +1,1,3409,2026,1,1,,0,,,5,23,1,5/23/26 0:00, +1,1,3410,2026,1,1,,0,,,5,23,2,5/23/26 1:00, +1,1,3411,2026,1,1,,0,,,5,23,3,5/23/26 2:00, +1,1,3412,2026,1,1,,0,,,5,23,4,5/23/26 3:00, +1,1,3413,2026,1,1,,0,,,5,23,5,5/23/26 4:00, +1,1,3414,2026,1,1,,0,,,5,23,6,5/23/26 5:00, +1,1,3415,2026,1,1,,0,,,5,23,7,5/23/26 6:00, +1,1,3416,2026,1,1,,0,,,5,23,8,5/23/26 7:00, +1,1,3417,2026,1,1,,0,,,5,23,9,5/23/26 8:00, +1,1,3418,2026,1,1,,0,,,5,23,10,5/23/26 9:00, +1,1,3419,2026,1,1,,0,,,5,23,11,5/23/26 10:00, +1,1,3420,2026,1,1,,0,,,5,23,12,5/23/26 11:00, +1,1,3421,2026,1,1,,0,,,5,23,13,5/23/26 12:00, +1,1,3422,2026,1,1,,0,,,5,23,14,5/23/26 13:00, +1,1,3423,2026,1,1,,0,,,5,23,15,5/23/26 14:00, +1,1,3424,2026,1,1,,0,,,5,23,16,5/23/26 15:00, +1,1,3425,2026,1,1,,0,,,5,23,17,5/23/26 16:00, +1,1,3426,2026,1,1,,0,,,5,23,18,5/23/26 17:00, +1,1,3427,2026,1,1,,0,,,5,23,19,5/23/26 18:00, +1,1,3428,2026,1,1,,0,,,5,23,20,5/23/26 19:00, +1,1,3429,2026,1,1,,0,,,5,23,21,5/23/26 20:00, +1,1,3430,2026,1,1,,0,,,5,23,22,5/23/26 21:00, +1,1,3431,2026,1,1,,0,,,5,23,23,5/23/26 22:00, +1,1,3432,2026,1,1,,0,,,5,23,24,5/23/26 23:00, +1,1,3433,2026,1,1,,0,,,5,24,1,5/24/26 0:00, +1,1,3434,2026,1,1,,0,,,5,24,2,5/24/26 1:00, +1,1,3435,2026,1,1,,0,,,5,24,3,5/24/26 2:00, +1,1,3436,2026,1,1,,0,,,5,24,4,5/24/26 3:00, +1,1,3437,2026,1,1,,0,,,5,24,5,5/24/26 4:00, +1,1,3438,2026,1,1,,0,,,5,24,6,5/24/26 5:00, +1,1,3439,2026,1,1,,0,,,5,24,7,5/24/26 6:00, +1,1,3440,2026,1,1,,0,,,5,24,8,5/24/26 7:00, +1,1,3441,2026,1,1,,0,,,5,24,9,5/24/26 8:00, +1,1,3442,2026,1,1,,0,,,5,24,10,5/24/26 9:00, +1,1,3443,2026,1,1,,0,,,5,24,11,5/24/26 10:00, +1,1,3444,2026,1,1,,0,,,5,24,12,5/24/26 11:00, +1,1,3445,2026,1,1,,0,,,5,24,13,5/24/26 12:00, +1,1,3446,2026,1,1,,0,,,5,24,14,5/24/26 13:00, +1,1,3447,2026,1,1,,0,,,5,24,15,5/24/26 14:00, +1,1,3448,2026,1,1,,0,,,5,24,16,5/24/26 15:00, +1,1,3449,2026,1,1,,0,,,5,24,17,5/24/26 16:00, +1,1,3450,2026,1,1,,0,,,5,24,18,5/24/26 17:00, +1,1,3451,2026,1,1,,0,,,5,24,19,5/24/26 18:00, +1,1,3452,2026,1,1,,0,,,5,24,20,5/24/26 19:00, +1,1,3453,2026,1,1,,0,,,5,24,21,5/24/26 20:00, +1,1,3454,2026,1,1,,0,,,5,24,22,5/24/26 21:00, +1,1,3455,2026,1,1,,0,,,5,24,23,5/24/26 22:00, +1,1,3456,2026,1,1,,0,,,5,24,24,5/24/26 23:00, +1,1,3457,2026,1,1,,0,,,5,25,1,5/25/26 0:00, +1,1,3458,2026,1,1,,0,,,5,25,2,5/25/26 1:00, +1,1,3459,2026,1,1,,0,,,5,25,3,5/25/26 2:00, +1,1,3460,2026,1,1,,0,,,5,25,4,5/25/26 3:00, +1,1,3461,2026,1,1,,0,,,5,25,5,5/25/26 4:00, +1,1,3462,2026,1,1,,0,,,5,25,6,5/25/26 5:00, +1,1,3463,2026,1,1,,0,,,5,25,7,5/25/26 6:00, +1,1,3464,2026,1,1,,0,,,5,25,8,5/25/26 7:00, +1,1,3465,2026,1,1,,0,,,5,25,9,5/25/26 8:00, +1,1,3466,2026,1,1,,0,,,5,25,10,5/25/26 9:00, +1,1,3467,2026,1,1,,0,,,5,25,11,5/25/26 10:00, +1,1,3468,2026,1,1,,0,,,5,25,12,5/25/26 11:00, +1,1,3469,2026,1,1,,0,,,5,25,13,5/25/26 12:00, +1,1,3470,2026,1,1,,0,,,5,25,14,5/25/26 13:00, +1,1,3471,2026,1,1,,0,,,5,25,15,5/25/26 14:00, +1,1,3472,2026,1,1,,0,,,5,25,16,5/25/26 15:00, +1,1,3473,2026,1,1,,0,,,5,25,17,5/25/26 16:00, +1,1,3474,2026,1,1,,0,,,5,25,18,5/25/26 17:00, +1,1,3475,2026,1,1,,0,,,5,25,19,5/25/26 18:00, +1,1,3476,2026,1,1,,0,,,5,25,20,5/25/26 19:00, +1,1,3477,2026,1,1,,0,,,5,25,21,5/25/26 20:00, +1,1,3478,2026,1,1,,0,,,5,25,22,5/25/26 21:00, +1,1,3479,2026,1,1,,0,,,5,25,23,5/25/26 22:00, +1,1,3480,2026,1,1,,0,,,5,25,24,5/25/26 23:00, +1,1,3481,2026,1,1,,0,,,5,26,1,5/26/26 0:00, +1,1,3482,2026,1,1,,0,,,5,26,2,5/26/26 1:00, +1,1,3483,2026,1,1,,0,,,5,26,3,5/26/26 2:00, +1,1,3484,2026,1,1,,0,,,5,26,4,5/26/26 3:00, +1,1,3485,2026,1,1,,0,,,5,26,5,5/26/26 4:00, +1,1,3486,2026,1,1,,0,,,5,26,6,5/26/26 5:00, +1,1,3487,2026,1,1,,0,,,5,26,7,5/26/26 6:00, +1,1,3488,2026,1,1,,0,,,5,26,8,5/26/26 7:00, +1,1,3489,2026,1,1,,0,,,5,26,9,5/26/26 8:00, +1,1,3490,2026,1,1,,0,,,5,26,10,5/26/26 9:00, +1,1,3491,2026,1,1,,0,,,5,26,11,5/26/26 10:00, +1,1,3492,2026,1,1,,0,,,5,26,12,5/26/26 11:00, +1,1,3493,2026,1,1,,0,,,5,26,13,5/26/26 12:00, +1,1,3494,2026,1,1,,0,,,5,26,14,5/26/26 13:00, +1,1,3495,2026,1,1,,0,,,5,26,15,5/26/26 14:00, +1,1,3496,2026,1,1,,0,,,5,26,16,5/26/26 15:00, +1,1,3497,2026,1,1,,0,,,5,26,17,5/26/26 16:00, +1,1,3498,2026,1,1,,0,,,5,26,18,5/26/26 17:00, +1,1,3499,2026,1,1,,0,,,5,26,19,5/26/26 18:00, +1,1,3500,2026,1,1,,0,,,5,26,20,5/26/26 19:00, +1,1,3501,2026,1,1,,0,,,5,26,21,5/26/26 20:00, +1,1,3502,2026,1,1,,0,,,5,26,22,5/26/26 21:00, +1,1,3503,2026,1,1,,0,,,5,26,23,5/26/26 22:00, +1,1,3504,2026,1,1,,0,,,5,26,24,5/26/26 23:00, +1,1,3505,2026,1,1,,0,,,5,27,1,5/27/26 0:00, +1,1,3506,2026,1,1,,0,,,5,27,2,5/27/26 1:00, +1,1,3507,2026,1,1,,0,,,5,27,3,5/27/26 2:00, +1,1,3508,2026,1,1,,0,,,5,27,4,5/27/26 3:00, +1,1,3509,2026,1,1,,0,,,5,27,5,5/27/26 4:00, +1,1,3510,2026,1,1,,0,,,5,27,6,5/27/26 5:00, +1,1,3511,2026,1,1,,0,,,5,27,7,5/27/26 6:00, +1,1,3512,2026,1,1,,0,,,5,27,8,5/27/26 7:00, +1,1,3513,2026,1,1,,0,,,5,27,9,5/27/26 8:00, +1,1,3514,2026,1,1,,0,,,5,27,10,5/27/26 9:00, +1,1,3515,2026,1,1,,0,,,5,27,11,5/27/26 10:00, +1,1,3516,2026,1,1,,0,,,5,27,12,5/27/26 11:00, +1,1,3517,2026,1,1,,0,,,5,27,13,5/27/26 12:00, +1,1,3518,2026,1,1,,0,,,5,27,14,5/27/26 13:00, +1,1,3519,2026,1,1,,0,,,5,27,15,5/27/26 14:00, +1,1,3520,2026,1,1,,0,,,5,27,16,5/27/26 15:00, +1,1,3521,2026,1,1,,0,,,5,27,17,5/27/26 16:00, +1,1,3522,2026,1,1,,0,,,5,27,18,5/27/26 17:00, +1,1,3523,2026,1,1,,0,,,5,27,19,5/27/26 18:00, +1,1,3524,2026,1,1,,0,,,5,27,20,5/27/26 19:00, +1,1,3525,2026,1,1,,0,,,5,27,21,5/27/26 20:00, +1,1,3526,2026,1,1,,0,,,5,27,22,5/27/26 21:00, +1,1,3527,2026,1,1,,0,,,5,27,23,5/27/26 22:00, +1,1,3528,2026,1,1,,0,,,5,27,24,5/27/26 23:00, +1,1,3529,2026,1,1,,0,,,5,28,1,5/28/26 0:00, +1,1,3530,2026,1,1,,0,,,5,28,2,5/28/26 1:00, +1,1,3531,2026,1,1,,0,,,5,28,3,5/28/26 2:00, +1,1,3532,2026,1,1,,0,,,5,28,4,5/28/26 3:00, +1,1,3533,2026,1,1,,0,,,5,28,5,5/28/26 4:00, +1,1,3534,2026,1,1,,0,,,5,28,6,5/28/26 5:00, +1,1,3535,2026,1,1,,0,,,5,28,7,5/28/26 6:00, +1,1,3536,2026,1,1,,0,,,5,28,8,5/28/26 7:00, +1,1,3537,2026,1,1,,0,,,5,28,9,5/28/26 8:00, +1,1,3538,2026,1,1,,0,,,5,28,10,5/28/26 9:00, +1,1,3539,2026,1,1,,0,,,5,28,11,5/28/26 10:00, +1,1,3540,2026,1,1,,0,,,5,28,12,5/28/26 11:00, +1,1,3541,2026,1,1,,0,,,5,28,13,5/28/26 12:00, +1,1,3542,2026,1,1,,0,,,5,28,14,5/28/26 13:00, +1,1,3543,2026,1,1,,0,,,5,28,15,5/28/26 14:00, +1,1,3544,2026,1,1,,0,,,5,28,16,5/28/26 15:00, +1,1,3545,2026,1,1,,0,,,5,28,17,5/28/26 16:00, +1,1,3546,2026,1,1,,0,,,5,28,18,5/28/26 17:00, +1,1,3547,2026,1,1,,0,,,5,28,19,5/28/26 18:00, +1,1,3548,2026,1,1,,0,,,5,28,20,5/28/26 19:00, +1,1,3549,2026,1,1,,0,,,5,28,21,5/28/26 20:00, +1,1,3550,2026,1,1,,0,,,5,28,22,5/28/26 21:00, +1,1,3551,2026,1,1,,0,,,5,28,23,5/28/26 22:00, +1,1,3552,2026,1,1,,0,,,5,28,24,5/28/26 23:00, +1,1,3553,2026,1,1,,0,,,5,29,1,5/29/26 0:00, +1,1,3554,2026,1,1,,0,,,5,29,2,5/29/26 1:00, +1,1,3555,2026,1,1,,0,,,5,29,3,5/29/26 2:00, +1,1,3556,2026,1,1,,0,,,5,29,4,5/29/26 3:00, +1,1,3557,2026,1,1,,0,,,5,29,5,5/29/26 4:00, +1,1,3558,2026,1,1,,0,,,5,29,6,5/29/26 5:00, +1,1,3559,2026,1,1,,0,,,5,29,7,5/29/26 6:00, +1,1,3560,2026,1,1,,0,,,5,29,8,5/29/26 7:00, +1,1,3561,2026,1,1,,0,,,5,29,9,5/29/26 8:00, +1,1,3562,2026,1,1,,0,,,5,29,10,5/29/26 9:00, +1,1,3563,2026,1,1,,0,,,5,29,11,5/29/26 10:00, +1,1,3564,2026,1,1,,0,,,5,29,12,5/29/26 11:00, +1,1,3565,2026,1,1,,0,,,5,29,13,5/29/26 12:00, +1,1,3566,2026,1,1,,0,,,5,29,14,5/29/26 13:00, +1,1,3567,2026,1,1,,0,,,5,29,15,5/29/26 14:00, +1,1,3568,2026,1,1,,0,,,5,29,16,5/29/26 15:00, +1,1,3569,2026,1,1,,0,,,5,29,17,5/29/26 16:00, +1,1,3570,2026,1,1,,0,,,5,29,18,5/29/26 17:00, +1,1,3571,2026,1,1,,0,,,5,29,19,5/29/26 18:00, +1,1,3572,2026,1,1,,0,,,5,29,20,5/29/26 19:00, +1,1,3573,2026,1,1,,0,,,5,29,21,5/29/26 20:00, +1,1,3574,2026,1,1,,0,,,5,29,22,5/29/26 21:00, +1,1,3575,2026,1,1,,0,,,5,29,23,5/29/26 22:00, +1,1,3576,2026,1,1,,0,,,5,29,24,5/29/26 23:00, +1,1,3577,2026,1,1,,0,,,5,30,1,5/30/26 0:00, +1,1,3578,2026,1,1,,0,,,5,30,2,5/30/26 1:00, +1,1,3579,2026,1,1,,0,,,5,30,3,5/30/26 2:00, +1,1,3580,2026,1,1,,0,,,5,30,4,5/30/26 3:00, +1,1,3581,2026,1,1,,0,,,5,30,5,5/30/26 4:00, +1,1,3582,2026,1,1,,0,,,5,30,6,5/30/26 5:00, +1,1,3583,2026,1,1,,0,,,5,30,7,5/30/26 6:00, +1,1,3584,2026,1,1,,0,,,5,30,8,5/30/26 7:00, +1,1,3585,2026,1,1,,0,,,5,30,9,5/30/26 8:00, +1,1,3586,2026,1,1,,0,,,5,30,10,5/30/26 9:00, +1,1,3587,2026,1,1,,0,,,5,30,11,5/30/26 10:00, +1,1,3588,2026,1,1,,0,,,5,30,12,5/30/26 11:00, +1,1,3589,2026,1,1,,0,,,5,30,13,5/30/26 12:00, +1,1,3590,2026,1,1,,0,,,5,30,14,5/30/26 13:00, +1,1,3591,2026,1,1,,0,,,5,30,15,5/30/26 14:00, +1,1,3592,2026,1,1,,0,,,5,30,16,5/30/26 15:00, +1,1,3593,2026,1,1,,0,,,5,30,17,5/30/26 16:00, +1,1,3594,2026,1,1,,0,,,5,30,18,5/30/26 17:00, +1,1,3595,2026,1,1,,0,,,5,30,19,5/30/26 18:00, +1,1,3596,2026,1,1,,0,,,5,30,20,5/30/26 19:00, +1,1,3597,2026,1,1,,0,,,5,30,21,5/30/26 20:00, +1,1,3598,2026,1,1,,0,,,5,30,22,5/30/26 21:00, +1,1,3599,2026,1,1,,0,,,5,30,23,5/30/26 22:00, +1,1,3600,2026,1,1,,0,,,5,30,24,5/30/26 23:00, +1,1,3601,2026,1,1,,0,,,5,31,1,5/31/26 0:00, +1,1,3602,2026,1,1,,0,,,5,31,2,5/31/26 1:00, +1,1,3603,2026,1,1,,0,,,5,31,3,5/31/26 2:00, +1,1,3604,2026,1,1,,0,,,5,31,4,5/31/26 3:00, +1,1,3605,2026,1,1,,0,,,5,31,5,5/31/26 4:00, +1,1,3606,2026,1,1,,0,,,5,31,6,5/31/26 5:00, +1,1,3607,2026,1,1,,0,,,5,31,7,5/31/26 6:00, +1,1,3608,2026,1,1,,0,,,5,31,8,5/31/26 7:00, +1,1,3609,2026,1,1,,0,,,5,31,9,5/31/26 8:00, +1,1,3610,2026,1,1,,0,,,5,31,10,5/31/26 9:00, +1,1,3611,2026,1,1,,0,,,5,31,11,5/31/26 10:00, +1,1,3612,2026,1,1,,0,,,5,31,12,5/31/26 11:00, +1,1,3613,2026,1,1,,0,,,5,31,13,5/31/26 12:00, +1,1,3614,2026,1,1,,0,,,5,31,14,5/31/26 13:00, +1,1,3615,2026,1,1,,0,,,5,31,15,5/31/26 14:00, +1,1,3616,2026,1,1,,0,,,5,31,16,5/31/26 15:00, +1,1,3617,2026,1,1,,0,,,5,31,17,5/31/26 16:00, +1,1,3618,2026,1,1,,0,,,5,31,18,5/31/26 17:00, +1,1,3619,2026,1,1,,0,,,5,31,19,5/31/26 18:00, +1,1,3620,2026,1,1,,0,,,5,31,20,5/31/26 19:00, +1,1,3621,2026,1,1,,0,,,5,31,21,5/31/26 20:00, +1,1,3622,2026,1,1,,0,,,5,31,22,5/31/26 21:00, +1,1,3623,2026,1,1,,0,,,5,31,23,5/31/26 22:00, +1,1,3624,2026,1,1,,0,,,5,31,24,5/31/26 23:00, +1,1,3625,2026,1,1,,0,,,6,1,1,6/1/26 0:00, +1,1,3626,2026,1,1,,0,,,6,1,2,6/1/26 1:00, +1,1,3627,2026,1,1,,0,,,6,1,3,6/1/26 2:00, +1,1,3628,2026,1,1,,0,,,6,1,4,6/1/26 3:00, +1,1,3629,2026,1,1,,0,,,6,1,5,6/1/26 4:00, +1,1,3630,2026,1,1,,0,,,6,1,6,6/1/26 5:00, +1,1,3631,2026,1,1,,0,,,6,1,7,6/1/26 6:00, +1,1,3632,2026,1,1,,0,,,6,1,8,6/1/26 7:00, +1,1,3633,2026,1,1,,0,,,6,1,9,6/1/26 8:00, +1,1,3634,2026,1,1,,0,,,6,1,10,6/1/26 9:00, +1,1,3635,2026,1,1,,0,,,6,1,11,6/1/26 10:00, +1,1,3636,2026,1,1,,0,,,6,1,12,6/1/26 11:00, +1,1,3637,2026,1,1,,0,,,6,1,13,6/1/26 12:00, +1,1,3638,2026,1,1,,0,,,6,1,14,6/1/26 13:00, +1,1,3639,2026,1,1,,0,,,6,1,15,6/1/26 14:00, +1,1,3640,2026,1,1,,0,,,6,1,16,6/1/26 15:00, +1,1,3641,2026,1,1,,0,,,6,1,17,6/1/26 16:00, +1,1,3642,2026,1,1,,0,,,6,1,18,6/1/26 17:00, +1,1,3643,2026,1,1,,0,,,6,1,19,6/1/26 18:00, +1,1,3644,2026,1,1,,0,,,6,1,20,6/1/26 19:00, +1,1,3645,2026,1,1,,0,,,6,1,21,6/1/26 20:00, +1,1,3646,2026,1,1,,0,,,6,1,22,6/1/26 21:00, +1,1,3647,2026,1,1,,0,,,6,1,23,6/1/26 22:00, +1,1,3648,2026,1,1,,0,,,6,1,24,6/1/26 23:00, +1,1,3649,2026,1,1,,0,,,6,2,1,6/2/26 0:00, +1,1,3650,2026,1,1,,0,,,6,2,2,6/2/26 1:00, +1,1,3651,2026,1,1,,0,,,6,2,3,6/2/26 2:00, +1,1,3652,2026,1,1,,0,,,6,2,4,6/2/26 3:00, +1,1,3653,2026,1,1,,0,,,6,2,5,6/2/26 4:00, +1,1,3654,2026,1,1,,0,,,6,2,6,6/2/26 5:00, +1,1,3655,2026,1,1,,0,,,6,2,7,6/2/26 6:00, +1,1,3656,2026,1,1,,0,,,6,2,8,6/2/26 7:00, +1,1,3657,2026,1,1,,0,,,6,2,9,6/2/26 8:00, +1,1,3658,2026,1,1,,0,,,6,2,10,6/2/26 9:00, +1,1,3659,2026,1,1,,0,,,6,2,11,6/2/26 10:00, +1,1,3660,2026,1,1,,0,,,6,2,12,6/2/26 11:00, +1,1,3661,2026,1,1,,0,,,6,2,13,6/2/26 12:00, +1,1,3662,2026,1,1,,0,,,6,2,14,6/2/26 13:00, +1,1,3663,2026,1,1,,0,,,6,2,15,6/2/26 14:00, +1,1,3664,2026,1,1,,0,,,6,2,16,6/2/26 15:00, +1,1,3665,2026,1,1,,0,,,6,2,17,6/2/26 16:00, +1,1,3666,2026,1,1,,0,,,6,2,18,6/2/26 17:00, +1,1,3667,2026,1,1,,0,,,6,2,19,6/2/26 18:00, +1,1,3668,2026,1,1,,0,,,6,2,20,6/2/26 19:00, +1,1,3669,2026,1,1,,0,,,6,2,21,6/2/26 20:00, +1,1,3670,2026,1,1,,0,,,6,2,22,6/2/26 21:00, +1,1,3671,2026,1,1,,0,,,6,2,23,6/2/26 22:00, +1,1,3672,2026,1,1,,0,,,6,2,24,6/2/26 23:00, +1,1,3673,2026,1,1,,0,,,6,3,1,6/3/26 0:00, +1,1,3674,2026,1,1,,0,,,6,3,2,6/3/26 1:00, +1,1,3675,2026,1,1,,0,,,6,3,3,6/3/26 2:00, +1,1,3676,2026,1,1,,0,,,6,3,4,6/3/26 3:00, +1,1,3677,2026,1,1,,0,,,6,3,5,6/3/26 4:00, +1,1,3678,2026,1,1,,0,,,6,3,6,6/3/26 5:00, +1,1,3679,2026,1,1,,0,,,6,3,7,6/3/26 6:00, +1,1,3680,2026,1,1,,0,,,6,3,8,6/3/26 7:00, +1,1,3681,2026,1,1,,0,,,6,3,9,6/3/26 8:00, +1,1,3682,2026,1,1,,0,,,6,3,10,6/3/26 9:00, +1,1,3683,2026,1,1,,0,,,6,3,11,6/3/26 10:00, +1,1,3684,2026,1,1,,0,,,6,3,12,6/3/26 11:00, +1,1,3685,2026,1,1,,0,,,6,3,13,6/3/26 12:00, +1,1,3686,2026,1,1,,0,,,6,3,14,6/3/26 13:00, +1,1,3687,2026,1,1,,0,,,6,3,15,6/3/26 14:00, +1,1,3688,2026,1,1,,0,,,6,3,16,6/3/26 15:00, +1,1,3689,2026,1,1,,0,,,6,3,17,6/3/26 16:00, +1,1,3690,2026,1,1,,0,,,6,3,18,6/3/26 17:00, +1,1,3691,2026,1,1,,0,,,6,3,19,6/3/26 18:00, +1,1,3692,2026,1,1,,0,,,6,3,20,6/3/26 19:00, +1,1,3693,2026,1,1,,0,,,6,3,21,6/3/26 20:00, +1,1,3694,2026,1,1,,0,,,6,3,22,6/3/26 21:00, +1,1,3695,2026,1,1,,0,,,6,3,23,6/3/26 22:00, +1,1,3696,2026,1,1,,0,,,6,3,24,6/3/26 23:00, +1,1,3697,2026,1,1,,0,,,6,4,1,6/4/26 0:00, +1,1,3698,2026,1,1,,0,,,6,4,2,6/4/26 1:00, +1,1,3699,2026,1,1,,0,,,6,4,3,6/4/26 2:00, +1,1,3700,2026,1,1,,0,,,6,4,4,6/4/26 3:00, +1,1,3701,2026,1,1,,0,,,6,4,5,6/4/26 4:00, +1,1,3702,2026,1,1,,0,,,6,4,6,6/4/26 5:00, +1,1,3703,2026,1,1,,0,,,6,4,7,6/4/26 6:00, +1,1,3704,2026,1,1,,0,,,6,4,8,6/4/26 7:00, +1,1,3705,2026,1,1,,0,,,6,4,9,6/4/26 8:00, +1,1,3706,2026,1,1,,0,,,6,4,10,6/4/26 9:00, +1,1,3707,2026,1,1,,0,,,6,4,11,6/4/26 10:00, +1,1,3708,2026,1,1,,0,,,6,4,12,6/4/26 11:00, +1,1,3709,2026,1,1,,0,,,6,4,13,6/4/26 12:00, +1,1,3710,2026,1,1,,0,,,6,4,14,6/4/26 13:00, +1,1,3711,2026,1,1,,0,,,6,4,15,6/4/26 14:00, +1,1,3712,2026,1,1,,0,,,6,4,16,6/4/26 15:00, +1,1,3713,2026,1,1,,0,,,6,4,17,6/4/26 16:00, +1,1,3714,2026,1,1,,0,,,6,4,18,6/4/26 17:00, +1,1,3715,2026,1,1,,0,,,6,4,19,6/4/26 18:00, +1,1,3716,2026,1,1,,0,,,6,4,20,6/4/26 19:00, +1,1,3717,2026,1,1,,0,,,6,4,21,6/4/26 20:00, +1,1,3718,2026,1,1,,0,,,6,4,22,6/4/26 21:00, +1,1,3719,2026,1,1,,0,,,6,4,23,6/4/26 22:00, +1,1,3720,2026,1,1,,0,,,6,4,24,6/4/26 23:00, +1,1,3721,2026,1,1,,0,,,6,5,1,6/5/26 0:00, +1,1,3722,2026,1,1,,0,,,6,5,2,6/5/26 1:00, +1,1,3723,2026,1,1,,0,,,6,5,3,6/5/26 2:00, +1,1,3724,2026,1,1,,0,,,6,5,4,6/5/26 3:00, +1,1,3725,2026,1,1,,0,,,6,5,5,6/5/26 4:00, +1,1,3726,2026,1,1,,0,,,6,5,6,6/5/26 5:00, +1,1,3727,2026,1,1,,0,,,6,5,7,6/5/26 6:00, +1,1,3728,2026,1,1,,0,,,6,5,8,6/5/26 7:00, +1,1,3729,2026,1,1,,0,,,6,5,9,6/5/26 8:00, +1,1,3730,2026,1,1,,0,,,6,5,10,6/5/26 9:00, +1,1,3731,2026,1,1,,0,,,6,5,11,6/5/26 10:00, +1,1,3732,2026,1,1,,0,,,6,5,12,6/5/26 11:00, +1,1,3733,2026,1,1,,0,,,6,5,13,6/5/26 12:00, +1,1,3734,2026,1,1,,0,,,6,5,14,6/5/26 13:00, +1,1,3735,2026,1,1,,0,,,6,5,15,6/5/26 14:00, +1,1,3736,2026,1,1,,0,,,6,5,16,6/5/26 15:00, +1,1,3737,2026,1,1,,0,,,6,5,17,6/5/26 16:00, +1,1,3738,2026,1,1,,0,,,6,5,18,6/5/26 17:00, +1,1,3739,2026,1,1,,0,,,6,5,19,6/5/26 18:00, +1,1,3740,2026,1,1,,0,,,6,5,20,6/5/26 19:00, +1,1,3741,2026,1,1,,0,,,6,5,21,6/5/26 20:00, +1,1,3742,2026,1,1,,0,,,6,5,22,6/5/26 21:00, +1,1,3743,2026,1,1,,0,,,6,5,23,6/5/26 22:00, +1,1,3744,2026,1,1,,0,,,6,5,24,6/5/26 23:00, +1,1,3745,2026,1,1,,0,,,6,6,1,6/6/26 0:00, +1,1,3746,2026,1,1,,0,,,6,6,2,6/6/26 1:00, +1,1,3747,2026,1,1,,0,,,6,6,3,6/6/26 2:00, +1,1,3748,2026,1,1,,0,,,6,6,4,6/6/26 3:00, +1,1,3749,2026,1,1,,0,,,6,6,5,6/6/26 4:00, +1,1,3750,2026,1,1,,0,,,6,6,6,6/6/26 5:00, +1,1,3751,2026,1,1,,0,,,6,6,7,6/6/26 6:00, +1,1,3752,2026,1,1,,0,,,6,6,8,6/6/26 7:00, +1,1,3753,2026,1,1,,0,,,6,6,9,6/6/26 8:00, +1,1,3754,2026,1,1,,0,,,6,6,10,6/6/26 9:00, +1,1,3755,2026,1,1,,0,,,6,6,11,6/6/26 10:00, +1,1,3756,2026,1,1,,0,,,6,6,12,6/6/26 11:00, +1,1,3757,2026,1,1,,0,,,6,6,13,6/6/26 12:00, +1,1,3758,2026,1,1,,0,,,6,6,14,6/6/26 13:00, +1,1,3759,2026,1,1,,0,,,6,6,15,6/6/26 14:00, +1,1,3760,2026,1,1,,0,,,6,6,16,6/6/26 15:00, +1,1,3761,2026,1,1,,0,,,6,6,17,6/6/26 16:00, +1,1,3762,2026,1,1,,0,,,6,6,18,6/6/26 17:00, +1,1,3763,2026,1,1,,0,,,6,6,19,6/6/26 18:00, +1,1,3764,2026,1,1,,0,,,6,6,20,6/6/26 19:00, +1,1,3765,2026,1,1,,0,,,6,6,21,6/6/26 20:00, +1,1,3766,2026,1,1,,0,,,6,6,22,6/6/26 21:00, +1,1,3767,2026,1,1,,0,,,6,6,23,6/6/26 22:00, +1,1,3768,2026,1,1,,0,,,6,6,24,6/6/26 23:00, +1,1,3769,2026,1,1,,0,,,6,7,1,6/7/26 0:00, +1,1,3770,2026,1,1,,0,,,6,7,2,6/7/26 1:00, +1,1,3771,2026,1,1,,0,,,6,7,3,6/7/26 2:00, +1,1,3772,2026,1,1,,0,,,6,7,4,6/7/26 3:00, +1,1,3773,2026,1,1,,0,,,6,7,5,6/7/26 4:00, +1,1,3774,2026,1,1,,0,,,6,7,6,6/7/26 5:00, +1,1,3775,2026,1,1,,0,,,6,7,7,6/7/26 6:00, +1,1,3776,2026,1,1,,0,,,6,7,8,6/7/26 7:00, +1,1,3777,2026,1,1,,0,,,6,7,9,6/7/26 8:00, +1,1,3778,2026,1,1,,0,,,6,7,10,6/7/26 9:00, +1,1,3779,2026,1,1,,0,,,6,7,11,6/7/26 10:00, +1,1,3780,2026,1,1,,0,,,6,7,12,6/7/26 11:00, +1,1,3781,2026,1,1,,0,,,6,7,13,6/7/26 12:00, +1,1,3782,2026,1,1,,0,,,6,7,14,6/7/26 13:00, +1,1,3783,2026,1,1,,0,,,6,7,15,6/7/26 14:00, +1,1,3784,2026,1,1,,0,,,6,7,16,6/7/26 15:00, +1,1,3785,2026,1,1,,0,,,6,7,17,6/7/26 16:00, +1,1,3786,2026,1,1,,0,,,6,7,18,6/7/26 17:00, +1,1,3787,2026,1,1,,0,,,6,7,19,6/7/26 18:00, +1,1,3788,2026,1,1,,0,,,6,7,20,6/7/26 19:00, +1,1,3789,2026,1,1,,0,,,6,7,21,6/7/26 20:00, +1,1,3790,2026,1,1,,0,,,6,7,22,6/7/26 21:00, +1,1,3791,2026,1,1,,0,,,6,7,23,6/7/26 22:00, +1,1,3792,2026,1,1,,0,,,6,7,24,6/7/26 23:00, +1,1,3793,2026,1,1,,0,,,6,8,1,6/8/26 0:00, +1,1,3794,2026,1,1,,0,,,6,8,2,6/8/26 1:00, +1,1,3795,2026,1,1,,0,,,6,8,3,6/8/26 2:00, +1,1,3796,2026,1,1,,0,,,6,8,4,6/8/26 3:00, +1,1,3797,2026,1,1,,0,,,6,8,5,6/8/26 4:00, +1,1,3798,2026,1,1,,0,,,6,8,6,6/8/26 5:00, +1,1,3799,2026,1,1,,0,,,6,8,7,6/8/26 6:00, +1,1,3800,2026,1,1,,0,,,6,8,8,6/8/26 7:00, +1,1,3801,2026,1,1,,0,,,6,8,9,6/8/26 8:00, +1,1,3802,2026,1,1,,0,,,6,8,10,6/8/26 9:00, +1,1,3803,2026,1,1,,0,,,6,8,11,6/8/26 10:00, +1,1,3804,2026,1,1,,0,,,6,8,12,6/8/26 11:00, +1,1,3805,2026,1,1,,0,,,6,8,13,6/8/26 12:00, +1,1,3806,2026,1,1,,0,,,6,8,14,6/8/26 13:00, +1,1,3807,2026,1,1,,0,,,6,8,15,6/8/26 14:00, +1,1,3808,2026,1,1,,0,,,6,8,16,6/8/26 15:00, +1,1,3809,2026,1,1,,0,,,6,8,17,6/8/26 16:00, +1,1,3810,2026,1,1,,0,,,6,8,18,6/8/26 17:00, +1,1,3811,2026,1,1,,0,,,6,8,19,6/8/26 18:00, +1,1,3812,2026,1,1,,0,,,6,8,20,6/8/26 19:00, +1,1,3813,2026,1,1,,0,,,6,8,21,6/8/26 20:00, +1,1,3814,2026,1,1,,0,,,6,8,22,6/8/26 21:00, +1,1,3815,2026,1,1,,0,,,6,8,23,6/8/26 22:00, +1,1,3816,2026,1,1,,0,,,6,8,24,6/8/26 23:00, +1,1,3817,2026,1,1,,0,,,6,9,1,6/9/26 0:00, +1,1,3818,2026,1,1,,0,,,6,9,2,6/9/26 1:00, +1,1,3819,2026,1,1,,0,,,6,9,3,6/9/26 2:00, +1,1,3820,2026,1,1,,0,,,6,9,4,6/9/26 3:00, +1,1,3821,2026,1,1,,0,,,6,9,5,6/9/26 4:00, +1,1,3822,2026,1,1,,0,,,6,9,6,6/9/26 5:00, +1,1,3823,2026,1,1,,0,,,6,9,7,6/9/26 6:00, +1,1,3824,2026,1,1,,0,,,6,9,8,6/9/26 7:00, +1,1,3825,2026,1,1,,0,,,6,9,9,6/9/26 8:00, +1,1,3826,2026,1,1,,0,,,6,9,10,6/9/26 9:00, +1,1,3827,2026,1,1,,0,,,6,9,11,6/9/26 10:00, +1,1,3828,2026,1,1,,0,,,6,9,12,6/9/26 11:00, +1,1,3829,2026,1,1,,0,,,6,9,13,6/9/26 12:00, +1,1,3830,2026,1,1,,0,,,6,9,14,6/9/26 13:00, +1,1,3831,2026,1,1,,0,,,6,9,15,6/9/26 14:00, +1,1,3832,2026,1,1,,0,,,6,9,16,6/9/26 15:00, +1,1,3833,2026,1,1,,0,,,6,9,17,6/9/26 16:00, +1,1,3834,2026,1,1,,0,,,6,9,18,6/9/26 17:00, +1,1,3835,2026,1,1,,0,,,6,9,19,6/9/26 18:00, +1,1,3836,2026,1,1,,0,,,6,9,20,6/9/26 19:00, +1,1,3837,2026,1,1,,0,,,6,9,21,6/9/26 20:00, +1,1,3838,2026,1,1,,0,,,6,9,22,6/9/26 21:00, +1,1,3839,2026,1,1,,0,,,6,9,23,6/9/26 22:00, +1,1,3840,2026,1,1,,0,,,6,9,24,6/9/26 23:00, +1,1,3841,2026,1,1,,0,,,6,10,1,6/10/26 0:00, +1,1,3842,2026,1,1,,0,,,6,10,2,6/10/26 1:00, +1,1,3843,2026,1,1,,0,,,6,10,3,6/10/26 2:00, +1,1,3844,2026,1,1,,0,,,6,10,4,6/10/26 3:00, +1,1,3845,2026,1,1,,0,,,6,10,5,6/10/26 4:00, +1,1,3846,2026,1,1,,0,,,6,10,6,6/10/26 5:00, +1,1,3847,2026,1,1,,0,,,6,10,7,6/10/26 6:00, +1,1,3848,2026,1,1,,0,,,6,10,8,6/10/26 7:00, +1,1,3849,2026,1,1,,0,,,6,10,9,6/10/26 8:00, +1,1,3850,2026,1,1,,0,,,6,10,10,6/10/26 9:00, +1,1,3851,2026,1,1,,0,,,6,10,11,6/10/26 10:00, +1,1,3852,2026,1,1,,0,,,6,10,12,6/10/26 11:00, +1,1,3853,2026,1,1,,0,,,6,10,13,6/10/26 12:00, +1,1,3854,2026,1,1,,0,,,6,10,14,6/10/26 13:00, +1,1,3855,2026,1,1,,0,,,6,10,15,6/10/26 14:00, +1,1,3856,2026,1,1,,0,,,6,10,16,6/10/26 15:00, +1,1,3857,2026,1,1,,0,,,6,10,17,6/10/26 16:00, +1,1,3858,2026,1,1,,0,,,6,10,18,6/10/26 17:00, +1,1,3859,2026,1,1,,0,,,6,10,19,6/10/26 18:00, +1,1,3860,2026,1,1,,0,,,6,10,20,6/10/26 19:00, +1,1,3861,2026,1,1,,0,,,6,10,21,6/10/26 20:00, +1,1,3862,2026,1,1,,0,,,6,10,22,6/10/26 21:00, +1,1,3863,2026,1,1,,0,,,6,10,23,6/10/26 22:00, +1,1,3864,2026,1,1,,0,,,6,10,24,6/10/26 23:00, +1,1,3865,2026,1,1,,0,,,6,11,1,6/11/26 0:00, +1,1,3866,2026,1,1,,0,,,6,11,2,6/11/26 1:00, +1,1,3867,2026,1,1,,0,,,6,11,3,6/11/26 2:00, +1,1,3868,2026,1,1,,0,,,6,11,4,6/11/26 3:00, +1,1,3869,2026,1,1,,0,,,6,11,5,6/11/26 4:00, +1,1,3870,2026,1,1,,0,,,6,11,6,6/11/26 5:00, +1,1,3871,2026,1,1,,0,,,6,11,7,6/11/26 6:00, +1,1,3872,2026,1,1,,0,,,6,11,8,6/11/26 7:00, +1,1,3873,2026,1,1,,0,,,6,11,9,6/11/26 8:00, +1,1,3874,2026,1,1,,0,,,6,11,10,6/11/26 9:00, +1,1,3875,2026,1,1,,0,,,6,11,11,6/11/26 10:00, +1,1,3876,2026,1,1,,0,,,6,11,12,6/11/26 11:00, +1,1,3877,2026,1,1,,0,,,6,11,13,6/11/26 12:00, +1,1,3878,2026,1,1,,0,,,6,11,14,6/11/26 13:00, +1,1,3879,2026,1,1,,0,,,6,11,15,6/11/26 14:00, +1,1,3880,2026,1,1,,0,,,6,11,16,6/11/26 15:00, +1,1,3881,2026,1,1,,0,,,6,11,17,6/11/26 16:00, +1,1,3882,2026,1,1,,0,,,6,11,18,6/11/26 17:00, +1,1,3883,2026,1,1,,0,,,6,11,19,6/11/26 18:00, +1,1,3884,2026,1,1,,0,,,6,11,20,6/11/26 19:00, +1,1,3885,2026,1,1,,0,,,6,11,21,6/11/26 20:00, +1,1,3886,2026,1,1,,0,,,6,11,22,6/11/26 21:00, +1,1,3887,2026,1,1,,0,,,6,11,23,6/11/26 22:00, +1,1,3888,2026,1,1,,0,,,6,11,24,6/11/26 23:00, +1,1,3889,2026,1,1,,0,,,6,12,1,6/12/26 0:00, +1,1,3890,2026,1,1,,0,,,6,12,2,6/12/26 1:00, +1,1,3891,2026,1,1,,0,,,6,12,3,6/12/26 2:00, +1,1,3892,2026,1,1,,0,,,6,12,4,6/12/26 3:00, +1,1,3893,2026,1,1,,0,,,6,12,5,6/12/26 4:00, +1,1,3894,2026,1,1,,0,,,6,12,6,6/12/26 5:00, +1,1,3895,2026,1,1,,0,,,6,12,7,6/12/26 6:00, +1,1,3896,2026,1,1,,0,,,6,12,8,6/12/26 7:00, +1,1,3897,2026,1,1,,0,,,6,12,9,6/12/26 8:00, +1,1,3898,2026,1,1,,0,,,6,12,10,6/12/26 9:00, +1,1,3899,2026,1,1,,0,,,6,12,11,6/12/26 10:00, +1,1,3900,2026,1,1,,0,,,6,12,12,6/12/26 11:00, +1,1,3901,2026,1,1,,0,,,6,12,13,6/12/26 12:00, +1,1,3902,2026,1,1,,0,,,6,12,14,6/12/26 13:00, +1,1,3903,2026,1,1,,0,,,6,12,15,6/12/26 14:00, +1,1,3904,2026,1,1,,0,,,6,12,16,6/12/26 15:00, +1,1,3905,2026,1,1,,0,,,6,12,17,6/12/26 16:00, +1,1,3906,2026,1,1,,0,,,6,12,18,6/12/26 17:00, +1,1,3907,2026,1,1,,0,,,6,12,19,6/12/26 18:00, +1,1,3908,2026,1,1,,0,,,6,12,20,6/12/26 19:00, +1,1,3909,2026,1,1,,0,,,6,12,21,6/12/26 20:00, +1,1,3910,2026,1,1,,0,,,6,12,22,6/12/26 21:00, +1,1,3911,2026,1,1,,0,,,6,12,23,6/12/26 22:00, +1,1,3912,2026,1,1,,0,,,6,12,24,6/12/26 23:00, +1,1,3913,2026,1,1,,0,,,6,13,1,6/13/26 0:00, +1,1,3914,2026,1,1,,0,,,6,13,2,6/13/26 1:00, +1,1,3915,2026,1,1,,0,,,6,13,3,6/13/26 2:00, +1,1,3916,2026,1,1,,0,,,6,13,4,6/13/26 3:00, +1,1,3917,2026,1,1,,0,,,6,13,5,6/13/26 4:00, +1,1,3918,2026,1,1,,0,,,6,13,6,6/13/26 5:00, +1,1,3919,2026,1,1,,0,,,6,13,7,6/13/26 6:00, +1,1,3920,2026,1,1,,0,,,6,13,8,6/13/26 7:00, +1,1,3921,2026,1,1,,0,,,6,13,9,6/13/26 8:00, +1,1,3922,2026,1,1,,0,,,6,13,10,6/13/26 9:00, +1,1,3923,2026,1,1,,0,,,6,13,11,6/13/26 10:00, +1,1,3924,2026,1,1,,0,,,6,13,12,6/13/26 11:00, +1,1,3925,2026,1,1,,0,,,6,13,13,6/13/26 12:00, +1,1,3926,2026,1,1,,0,,,6,13,14,6/13/26 13:00, +1,1,3927,2026,1,1,,0,,,6,13,15,6/13/26 14:00, +1,1,3928,2026,1,1,,0,,,6,13,16,6/13/26 15:00, +1,1,3929,2026,1,1,,0,,,6,13,17,6/13/26 16:00, +1,1,3930,2026,1,1,,0,,,6,13,18,6/13/26 17:00, +1,1,3931,2026,1,1,,0,,,6,13,19,6/13/26 18:00, +1,1,3932,2026,1,1,,0,,,6,13,20,6/13/26 19:00, +1,1,3933,2026,1,1,,0,,,6,13,21,6/13/26 20:00, +1,1,3934,2026,1,1,,0,,,6,13,22,6/13/26 21:00, +1,1,3935,2026,1,1,,0,,,6,13,23,6/13/26 22:00, +1,1,3936,2026,1,1,,0,,,6,13,24,6/13/26 23:00, +1,1,3937,2026,1,1,,0,,,6,14,1,6/14/26 0:00, +1,1,3938,2026,1,1,,0,,,6,14,2,6/14/26 1:00, +1,1,3939,2026,1,1,,0,,,6,14,3,6/14/26 2:00, +1,1,3940,2026,1,1,,0,,,6,14,4,6/14/26 3:00, +1,1,3941,2026,1,1,,0,,,6,14,5,6/14/26 4:00, +1,1,3942,2026,1,1,,0,,,6,14,6,6/14/26 5:00, +1,1,3943,2026,1,1,,0,,,6,14,7,6/14/26 6:00, +1,1,3944,2026,1,1,,0,,,6,14,8,6/14/26 7:00, +1,1,3945,2026,1,1,,0,,,6,14,9,6/14/26 8:00, +1,1,3946,2026,1,1,,0,,,6,14,10,6/14/26 9:00, +1,1,3947,2026,1,1,,0,,,6,14,11,6/14/26 10:00, +1,1,3948,2026,1,1,,0,,,6,14,12,6/14/26 11:00, +1,1,3949,2026,1,1,,0,,,6,14,13,6/14/26 12:00, +1,1,3950,2026,1,1,,0,,,6,14,14,6/14/26 13:00, +1,1,3951,2026,1,1,,0,,,6,14,15,6/14/26 14:00, +1,1,3952,2026,1,1,,0,,,6,14,16,6/14/26 15:00, +1,1,3953,2026,1,1,,0,,,6,14,17,6/14/26 16:00, +1,1,3954,2026,1,1,,0,,,6,14,18,6/14/26 17:00, +1,1,3955,2026,1,1,,0,,,6,14,19,6/14/26 18:00, +1,1,3956,2026,1,1,,0,,,6,14,20,6/14/26 19:00, +1,1,3957,2026,1,1,,0,,,6,14,21,6/14/26 20:00, +1,1,3958,2026,1,1,,0,,,6,14,22,6/14/26 21:00, +1,1,3959,2026,1,1,,0,,,6,14,23,6/14/26 22:00, +1,1,3960,2026,1,1,,0,,,6,14,24,6/14/26 23:00, +1,1,3961,2026,1,1,,0,,,6,15,1,6/15/26 0:00, +1,1,3962,2026,1,1,,0,,,6,15,2,6/15/26 1:00, +1,1,3963,2026,1,1,,0,,,6,15,3,6/15/26 2:00, +1,1,3964,2026,1,1,,0,,,6,15,4,6/15/26 3:00, +1,1,3965,2026,1,1,,0,,,6,15,5,6/15/26 4:00, +1,1,3966,2026,1,1,,0,,,6,15,6,6/15/26 5:00, +1,1,3967,2026,1,1,,0,,,6,15,7,6/15/26 6:00, +1,1,3968,2026,1,1,,0,,,6,15,8,6/15/26 7:00, +1,1,3969,2026,1,1,,0,,,6,15,9,6/15/26 8:00, +1,1,3970,2026,1,1,,0,,,6,15,10,6/15/26 9:00, +1,1,3971,2026,1,1,,0,,,6,15,11,6/15/26 10:00, +1,1,3972,2026,1,1,,0,,,6,15,12,6/15/26 11:00, +1,1,3973,2026,1,1,,0,,,6,15,13,6/15/26 12:00, +1,1,3974,2026,1,1,,0,,,6,15,14,6/15/26 13:00, +1,1,3975,2026,1,1,,0,,,6,15,15,6/15/26 14:00, +1,1,3976,2026,1,1,,0,,,6,15,16,6/15/26 15:00, +1,1,3977,2026,1,1,,0,,,6,15,17,6/15/26 16:00, +1,1,3978,2026,1,1,,0,,,6,15,18,6/15/26 17:00, +1,1,3979,2026,1,1,,0,,,6,15,19,6/15/26 18:00, +1,1,3980,2026,1,1,,0,,,6,15,20,6/15/26 19:00, +1,1,3981,2026,1,1,,0,,,6,15,21,6/15/26 20:00, +1,1,3982,2026,1,1,,0,,,6,15,22,6/15/26 21:00, +1,1,3983,2026,1,1,,0,,,6,15,23,6/15/26 22:00, +1,1,3984,2026,1,1,,0,,,6,15,24,6/15/26 23:00, +1,1,3985,2026,1,1,,0,,,6,16,1,6/16/26 0:00, +1,1,3986,2026,1,1,,0,,,6,16,2,6/16/26 1:00, +1,1,3987,2026,1,1,,0,,,6,16,3,6/16/26 2:00, +1,1,3988,2026,1,1,,0,,,6,16,4,6/16/26 3:00, +1,1,3989,2026,1,1,,0,,,6,16,5,6/16/26 4:00, +1,1,3990,2026,1,1,,0,,,6,16,6,6/16/26 5:00, +1,1,3991,2026,1,1,,0,,,6,16,7,6/16/26 6:00, +1,1,3992,2026,1,1,,0,,,6,16,8,6/16/26 7:00, +1,1,3993,2026,1,1,,0,,,6,16,9,6/16/26 8:00, +1,1,3994,2026,1,1,,0,,,6,16,10,6/16/26 9:00, +1,1,3995,2026,1,1,,0,,,6,16,11,6/16/26 10:00, +1,1,3996,2026,1,1,,0,,,6,16,12,6/16/26 11:00, +1,1,3997,2026,1,1,,0,,,6,16,13,6/16/26 12:00, +1,1,3998,2026,1,1,,0,,,6,16,14,6/16/26 13:00, +1,1,3999,2026,1,1,,0,,,6,16,15,6/16/26 14:00, +1,1,4000,2026,1,1,,0,,,6,16,16,6/16/26 15:00, +1,1,4001,2026,1,1,,0,,,6,16,17,6/16/26 16:00, +1,1,4002,2026,1,1,,0,,,6,16,18,6/16/26 17:00, +1,1,4003,2026,1,1,,0,,,6,16,19,6/16/26 18:00, +1,1,4004,2026,1,1,,0,,,6,16,20,6/16/26 19:00, +1,1,4005,2026,1,1,,0,,,6,16,21,6/16/26 20:00, +1,1,4006,2026,1,1,,0,,,6,16,22,6/16/26 21:00, +1,1,4007,2026,1,1,,0,,,6,16,23,6/16/26 22:00, +1,1,4008,2026,1,1,,0,,,6,16,24,6/16/26 23:00, +1,1,4009,2026,1,1,,0,,,6,17,1,6/17/26 0:00, +1,1,4010,2026,1,1,,0,,,6,17,2,6/17/26 1:00, +1,1,4011,2026,1,1,,0,,,6,17,3,6/17/26 2:00, +1,1,4012,2026,1,1,,0,,,6,17,4,6/17/26 3:00, +1,1,4013,2026,1,1,,0,,,6,17,5,6/17/26 4:00, +1,1,4014,2026,1,1,,0,,,6,17,6,6/17/26 5:00, +1,1,4015,2026,1,1,,0,,,6,17,7,6/17/26 6:00, +1,1,4016,2026,1,1,,0,,,6,17,8,6/17/26 7:00, +1,1,4017,2026,1,1,,0,,,6,17,9,6/17/26 8:00, +1,1,4018,2026,1,1,,0,,,6,17,10,6/17/26 9:00, +1,1,4019,2026,1,1,,0,,,6,17,11,6/17/26 10:00, +1,1,4020,2026,1,1,,0,,,6,17,12,6/17/26 11:00, +1,1,4021,2026,1,1,,0,,,6,17,13,6/17/26 12:00, +1,1,4022,2026,1,1,,0,,,6,17,14,6/17/26 13:00, +1,1,4023,2026,1,1,,0,,,6,17,15,6/17/26 14:00, +1,1,4024,2026,1,1,,0,,,6,17,16,6/17/26 15:00, +1,1,4025,2026,1,1,,0,,,6,17,17,6/17/26 16:00, +1,1,4026,2026,1,1,,0,,,6,17,18,6/17/26 17:00, +1,1,4027,2026,1,1,,0,,,6,17,19,6/17/26 18:00, +1,1,4028,2026,1,1,,0,,,6,17,20,6/17/26 19:00, +1,1,4029,2026,1,1,,0,,,6,17,21,6/17/26 20:00, +1,1,4030,2026,1,1,,0,,,6,17,22,6/17/26 21:00, +1,1,4031,2026,1,1,,0,,,6,17,23,6/17/26 22:00, +1,1,4032,2026,1,1,,0,,,6,17,24,6/17/26 23:00, +1,1,4033,2026,1,1,,0,,,6,18,1,6/18/26 0:00, +1,1,4034,2026,1,1,,0,,,6,18,2,6/18/26 1:00, +1,1,4035,2026,1,1,,0,,,6,18,3,6/18/26 2:00, +1,1,4036,2026,1,1,,0,,,6,18,4,6/18/26 3:00, +1,1,4037,2026,1,1,,0,,,6,18,5,6/18/26 4:00, +1,1,4038,2026,1,1,,0,,,6,18,6,6/18/26 5:00, +1,1,4039,2026,1,1,,0,,,6,18,7,6/18/26 6:00, +1,1,4040,2026,1,1,,0,,,6,18,8,6/18/26 7:00, +1,1,4041,2026,1,1,,0,,,6,18,9,6/18/26 8:00, +1,1,4042,2026,1,1,,0,,,6,18,10,6/18/26 9:00, +1,1,4043,2026,1,1,,0,,,6,18,11,6/18/26 10:00, +1,1,4044,2026,1,1,,0,,,6,18,12,6/18/26 11:00, +1,1,4045,2026,1,1,,0,,,6,18,13,6/18/26 12:00, +1,1,4046,2026,1,1,,0,,,6,18,14,6/18/26 13:00, +1,1,4047,2026,1,1,,0,,,6,18,15,6/18/26 14:00, +1,1,4048,2026,1,1,,0,,,6,18,16,6/18/26 15:00, +1,1,4049,2026,1,1,,0,,,6,18,17,6/18/26 16:00, +1,1,4050,2026,1,1,,0,,,6,18,18,6/18/26 17:00, +1,1,4051,2026,1,1,,0,,,6,18,19,6/18/26 18:00, +1,1,4052,2026,1,1,,0,,,6,18,20,6/18/26 19:00, +1,1,4053,2026,1,1,,0,,,6,18,21,6/18/26 20:00, +1,1,4054,2026,1,1,,0,,,6,18,22,6/18/26 21:00, +1,1,4055,2026,1,1,,0,,,6,18,23,6/18/26 22:00, +1,1,4056,2026,1,1,,0,,,6,18,24,6/18/26 23:00, +1,1,4057,2026,1,1,,0,,,6,19,1,6/19/26 0:00, +1,1,4058,2026,1,1,,0,,,6,19,2,6/19/26 1:00, +1,1,4059,2026,1,1,,0,,,6,19,3,6/19/26 2:00, +1,1,4060,2026,1,1,,0,,,6,19,4,6/19/26 3:00, +1,1,4061,2026,1,1,,0,,,6,19,5,6/19/26 4:00, +1,1,4062,2026,1,1,,0,,,6,19,6,6/19/26 5:00, +1,1,4063,2026,1,1,,0,,,6,19,7,6/19/26 6:00, +1,1,4064,2026,1,1,,0,,,6,19,8,6/19/26 7:00, +1,1,4065,2026,1,1,,0,,,6,19,9,6/19/26 8:00, +1,1,4066,2026,1,1,,0,,,6,19,10,6/19/26 9:00, +1,1,4067,2026,1,1,,0,,,6,19,11,6/19/26 10:00, +1,1,4068,2026,1,1,,0,,,6,19,12,6/19/26 11:00, +1,1,4069,2026,1,1,,0,,,6,19,13,6/19/26 12:00, +1,1,4070,2026,1,1,,0,,,6,19,14,6/19/26 13:00, +1,1,4071,2026,1,1,,0,,,6,19,15,6/19/26 14:00, +1,1,4072,2026,1,1,,0,,,6,19,16,6/19/26 15:00, +1,1,4073,2026,1,1,,0,,,6,19,17,6/19/26 16:00, +1,1,4074,2026,1,1,,0,,,6,19,18,6/19/26 17:00, +1,1,4075,2026,1,1,,0,,,6,19,19,6/19/26 18:00, +1,1,4076,2026,1,1,,0,,,6,19,20,6/19/26 19:00, +1,1,4077,2026,1,1,,0,,,6,19,21,6/19/26 20:00, +1,1,4078,2026,1,1,,0,,,6,19,22,6/19/26 21:00, +1,1,4079,2026,1,1,,0,,,6,19,23,6/19/26 22:00, +1,1,4080,2026,1,1,,0,,,6,19,24,6/19/26 23:00, +1,1,4081,2026,1,1,,0,,,6,20,1,6/20/26 0:00, +1,1,4082,2026,1,1,,0,,,6,20,2,6/20/26 1:00, +1,1,4083,2026,1,1,,0,,,6,20,3,6/20/26 2:00, +1,1,4084,2026,1,1,,0,,,6,20,4,6/20/26 3:00, +1,1,4085,2026,1,1,,0,,,6,20,5,6/20/26 4:00, +1,1,4086,2026,1,1,,0,,,6,20,6,6/20/26 5:00, +1,1,4087,2026,1,1,,0,,,6,20,7,6/20/26 6:00, +1,1,4088,2026,1,1,,0,,,6,20,8,6/20/26 7:00, +1,1,4089,2026,1,1,,0,,,6,20,9,6/20/26 8:00, +1,1,4090,2026,1,1,,0,,,6,20,10,6/20/26 9:00, +1,1,4091,2026,1,1,,0,,,6,20,11,6/20/26 10:00, +1,1,4092,2026,1,1,,0,,,6,20,12,6/20/26 11:00, +1,1,4093,2026,1,1,,0,,,6,20,13,6/20/26 12:00, +1,1,4094,2026,1,1,,0,,,6,20,14,6/20/26 13:00, +1,1,4095,2026,1,1,,0,,,6,20,15,6/20/26 14:00, +1,1,4096,2026,1,1,,0,,,6,20,16,6/20/26 15:00, +1,1,4097,2026,1,1,,0,,,6,20,17,6/20/26 16:00, +1,1,4098,2026,1,1,,0,,,6,20,18,6/20/26 17:00, +1,1,4099,2026,1,1,,0,,,6,20,19,6/20/26 18:00, +1,1,4100,2026,1,1,,0,,,6,20,20,6/20/26 19:00, +1,1,4101,2026,1,1,,0,,,6,20,21,6/20/26 20:00, +1,1,4102,2026,1,1,,0,,,6,20,22,6/20/26 21:00, +1,1,4103,2026,1,1,,0,,,6,20,23,6/20/26 22:00, +1,1,4104,2026,1,1,,0,,,6,20,24,6/20/26 23:00, +1,1,4105,2026,1,1,,0,,,6,21,1,6/21/26 0:00, +1,1,4106,2026,1,1,,0,,,6,21,2,6/21/26 1:00, +1,1,4107,2026,1,1,,0,,,6,21,3,6/21/26 2:00, +1,1,4108,2026,1,1,,0,,,6,21,4,6/21/26 3:00, +1,1,4109,2026,1,1,,0,,,6,21,5,6/21/26 4:00, +1,1,4110,2026,1,1,,0,,,6,21,6,6/21/26 5:00, +1,1,4111,2026,1,1,,0,,,6,21,7,6/21/26 6:00, +1,1,4112,2026,1,1,,0,,,6,21,8,6/21/26 7:00, +1,1,4113,2026,1,1,,0,,,6,21,9,6/21/26 8:00, +1,1,4114,2026,1,1,,0,,,6,21,10,6/21/26 9:00, +1,1,4115,2026,1,1,,0,,,6,21,11,6/21/26 10:00, +1,1,4116,2026,1,1,,0,,,6,21,12,6/21/26 11:00, +1,1,4117,2026,1,1,,0,,,6,21,13,6/21/26 12:00, +1,1,4118,2026,1,1,,0,,,6,21,14,6/21/26 13:00, +1,1,4119,2026,1,1,,0,,,6,21,15,6/21/26 14:00, +1,1,4120,2026,1,1,,0,,,6,21,16,6/21/26 15:00, +1,1,4121,2026,1,1,,0,,,6,21,17,6/21/26 16:00, +1,1,4122,2026,1,1,,0,,,6,21,18,6/21/26 17:00, +1,1,4123,2026,1,1,,0,,,6,21,19,6/21/26 18:00, +1,1,4124,2026,1,1,,0,,,6,21,20,6/21/26 19:00, +1,1,4125,2026,1,1,,0,,,6,21,21,6/21/26 20:00, +1,1,4126,2026,1,1,,0,,,6,21,22,6/21/26 21:00, +1,1,4127,2026,1,1,,0,,,6,21,23,6/21/26 22:00, +1,1,4128,2026,1,1,,0,,,6,21,24,6/21/26 23:00, +1,1,4129,2026,1,1,,0,,,6,22,1,6/22/26 0:00, +1,1,4130,2026,1,1,,0,,,6,22,2,6/22/26 1:00, +1,1,4131,2026,1,1,,0,,,6,22,3,6/22/26 2:00, +1,1,4132,2026,1,1,,0,,,6,22,4,6/22/26 3:00, +1,1,4133,2026,1,1,,0,,,6,22,5,6/22/26 4:00, +1,1,4134,2026,1,1,,0,,,6,22,6,6/22/26 5:00, +1,1,4135,2026,1,1,,0,,,6,22,7,6/22/26 6:00, +1,1,4136,2026,1,1,,0,,,6,22,8,6/22/26 7:00, +1,1,4137,2026,1,1,,0,,,6,22,9,6/22/26 8:00, +1,1,4138,2026,1,1,,0,,,6,22,10,6/22/26 9:00, +1,1,4139,2026,1,1,,0,,,6,22,11,6/22/26 10:00, +1,1,4140,2026,1,1,,0,,,6,22,12,6/22/26 11:00, +1,1,4141,2026,1,1,,0,,,6,22,13,6/22/26 12:00, +1,1,4142,2026,1,1,,0,,,6,22,14,6/22/26 13:00, +1,1,4143,2026,1,1,,0,,,6,22,15,6/22/26 14:00, +1,1,4144,2026,1,1,,0,,,6,22,16,6/22/26 15:00, +1,1,4145,2026,1,1,,0,,,6,22,17,6/22/26 16:00, +1,1,4146,2026,1,1,,0,,,6,22,18,6/22/26 17:00, +1,1,4147,2026,1,1,,0,,,6,22,19,6/22/26 18:00, +1,1,4148,2026,1,1,,0,,,6,22,20,6/22/26 19:00, +1,1,4149,2026,1,1,,0,,,6,22,21,6/22/26 20:00, +1,1,4150,2026,1,1,,0,,,6,22,22,6/22/26 21:00, +1,1,4151,2026,1,1,,0,,,6,22,23,6/22/26 22:00, +1,1,4152,2026,1,1,,0,,,6,22,24,6/22/26 23:00, +1,1,4153,2026,1,1,,0,,,6,23,1,6/23/26 0:00, +1,1,4154,2026,1,1,,0,,,6,23,2,6/23/26 1:00, +1,1,4155,2026,1,1,,0,,,6,23,3,6/23/26 2:00, +1,1,4156,2026,1,1,,0,,,6,23,4,6/23/26 3:00, +1,1,4157,2026,1,1,,0,,,6,23,5,6/23/26 4:00, +1,1,4158,2026,1,1,,0,,,6,23,6,6/23/26 5:00, +1,1,4159,2026,1,1,,0,,,6,23,7,6/23/26 6:00, +1,1,4160,2026,1,1,,0,,,6,23,8,6/23/26 7:00, +1,1,4161,2026,1,1,,0,,,6,23,9,6/23/26 8:00, +1,1,4162,2026,1,1,,0,,,6,23,10,6/23/26 9:00, +1,1,4163,2026,1,1,,0,,,6,23,11,6/23/26 10:00, +1,1,4164,2026,1,1,,0,,,6,23,12,6/23/26 11:00, +1,1,4165,2026,1,1,,0,,,6,23,13,6/23/26 12:00, +1,1,4166,2026,1,1,,0,,,6,23,14,6/23/26 13:00, +1,1,4167,2026,1,1,,0,,,6,23,15,6/23/26 14:00, +1,1,4168,2026,1,1,,0,,,6,23,16,6/23/26 15:00, +1,1,4169,2026,1,1,,0,,,6,23,17,6/23/26 16:00, +1,1,4170,2026,1,1,,0,,,6,23,18,6/23/26 17:00, +1,1,4171,2026,1,1,,0,,,6,23,19,6/23/26 18:00, +1,1,4172,2026,1,1,,0,,,6,23,20,6/23/26 19:00, +1,1,4173,2026,1,1,,0,,,6,23,21,6/23/26 20:00, +1,1,4174,2026,1,1,,0,,,6,23,22,6/23/26 21:00, +1,1,4175,2026,1,1,,0,,,6,23,23,6/23/26 22:00, +1,1,4176,2026,1,1,,0,,,6,23,24,6/23/26 23:00, +1,1,4177,2026,1,1,,0,,,6,24,1,6/24/26 0:00, +1,1,4178,2026,1,1,,0,,,6,24,2,6/24/26 1:00, +1,1,4179,2026,1,1,,0,,,6,24,3,6/24/26 2:00, +1,1,4180,2026,1,1,,0,,,6,24,4,6/24/26 3:00, +1,1,4181,2026,1,1,,0,,,6,24,5,6/24/26 4:00, +1,1,4182,2026,1,1,,0,,,6,24,6,6/24/26 5:00, +1,1,4183,2026,1,1,,0,,,6,24,7,6/24/26 6:00, +1,1,4184,2026,1,1,,0,,,6,24,8,6/24/26 7:00, +1,1,4185,2026,1,1,,0,,,6,24,9,6/24/26 8:00, +1,1,4186,2026,1,1,,0,,,6,24,10,6/24/26 9:00, +1,1,4187,2026,1,1,,0,,,6,24,11,6/24/26 10:00, +1,1,4188,2026,1,1,,0,,,6,24,12,6/24/26 11:00, +1,1,4189,2026,1,1,,0,,,6,24,13,6/24/26 12:00, +1,1,4190,2026,1,1,,0,,,6,24,14,6/24/26 13:00, +1,1,4191,2026,1,1,,0,,,6,24,15,6/24/26 14:00, +1,1,4192,2026,1,1,,0,,,6,24,16,6/24/26 15:00, +1,1,4193,2026,1,1,,0,,,6,24,17,6/24/26 16:00, +1,1,4194,2026,1,1,,0,,,6,24,18,6/24/26 17:00, +1,1,4195,2026,1,1,,0,,,6,24,19,6/24/26 18:00, +1,1,4196,2026,1,1,,0,,,6,24,20,6/24/26 19:00, +1,1,4197,2026,1,1,,0,,,6,24,21,6/24/26 20:00, +1,1,4198,2026,1,1,,0,,,6,24,22,6/24/26 21:00, +1,1,4199,2026,1,1,,0,,,6,24,23,6/24/26 22:00, +1,1,4200,2026,1,1,,0,,,6,24,24,6/24/26 23:00, +1,1,4201,2026,1,1,,0,,,6,25,1,6/25/26 0:00, +1,1,4202,2026,1,1,,0,,,6,25,2,6/25/26 1:00, +1,1,4203,2026,1,1,,0,,,6,25,3,6/25/26 2:00, +1,1,4204,2026,1,1,,0,,,6,25,4,6/25/26 3:00, +1,1,4205,2026,1,1,,0,,,6,25,5,6/25/26 4:00, +1,1,4206,2026,1,1,,0,,,6,25,6,6/25/26 5:00, +1,1,4207,2026,1,1,,0,,,6,25,7,6/25/26 6:00, +1,1,4208,2026,1,1,,0,,,6,25,8,6/25/26 7:00, +1,1,4209,2026,1,1,,0,,,6,25,9,6/25/26 8:00, +1,1,4210,2026,1,1,,0,,,6,25,10,6/25/26 9:00, +1,1,4211,2026,1,1,,0,,,6,25,11,6/25/26 10:00, +1,1,4212,2026,1,1,,0,,,6,25,12,6/25/26 11:00, +1,1,4213,2026,1,1,,0,,,6,25,13,6/25/26 12:00, +1,1,4214,2026,1,1,,0,,,6,25,14,6/25/26 13:00, +1,1,4215,2026,1,1,,0,,,6,25,15,6/25/26 14:00, +1,1,4216,2026,1,1,,0,,,6,25,16,6/25/26 15:00, +1,1,4217,2026,1,1,,0,,,6,25,17,6/25/26 16:00, +1,1,4218,2026,1,1,,0,,,6,25,18,6/25/26 17:00, +1,1,4219,2026,1,1,,0,,,6,25,19,6/25/26 18:00, +1,1,4220,2026,1,1,,0,,,6,25,20,6/25/26 19:00, +1,1,4221,2026,1,1,,0,,,6,25,21,6/25/26 20:00, +1,1,4222,2026,1,1,,0,,,6,25,22,6/25/26 21:00, +1,1,4223,2026,1,1,,0,,,6,25,23,6/25/26 22:00, +1,1,4224,2026,1,1,,0,,,6,25,24,6/25/26 23:00, +1,1,4225,2026,1,1,,0,,,6,26,1,6/26/26 0:00, +1,1,4226,2026,1,1,,0,,,6,26,2,6/26/26 1:00, +1,1,4227,2026,1,1,,0,,,6,26,3,6/26/26 2:00, +1,1,4228,2026,1,1,,0,,,6,26,4,6/26/26 3:00, +1,1,4229,2026,1,1,,0,,,6,26,5,6/26/26 4:00, +1,1,4230,2026,1,1,,0,,,6,26,6,6/26/26 5:00, +1,1,4231,2026,1,1,,0,,,6,26,7,6/26/26 6:00, +1,1,4232,2026,1,1,,0,,,6,26,8,6/26/26 7:00, +1,1,4233,2026,1,1,,0,,,6,26,9,6/26/26 8:00, +1,1,4234,2026,1,1,,0,,,6,26,10,6/26/26 9:00, +1,1,4235,2026,1,1,,0,,,6,26,11,6/26/26 10:00, +1,1,4236,2026,1,1,,0,,,6,26,12,6/26/26 11:00, +1,1,4237,2026,1,1,,0,,,6,26,13,6/26/26 12:00, +1,1,4238,2026,1,1,,0,,,6,26,14,6/26/26 13:00, +1,1,4239,2026,1,1,,0,,,6,26,15,6/26/26 14:00, +1,1,4240,2026,1,1,,0,,,6,26,16,6/26/26 15:00, +1,1,4241,2026,1,1,,0,,,6,26,17,6/26/26 16:00, +1,1,4242,2026,1,1,,0,,,6,26,18,6/26/26 17:00, +1,1,4243,2026,1,1,,0,,,6,26,19,6/26/26 18:00, +1,1,4244,2026,1,1,,0,,,6,26,20,6/26/26 19:00, +1,1,4245,2026,1,1,,0,,,6,26,21,6/26/26 20:00, +1,1,4246,2026,1,1,,0,,,6,26,22,6/26/26 21:00, +1,1,4247,2026,1,1,,0,,,6,26,23,6/26/26 22:00, +1,1,4248,2026,1,1,,0,,,6,26,24,6/26/26 23:00, +1,1,4249,2026,1,1,,0,,,6,27,1,6/27/26 0:00, +1,1,4250,2026,1,1,,0,,,6,27,2,6/27/26 1:00, +1,1,4251,2026,1,1,,0,,,6,27,3,6/27/26 2:00, +1,1,4252,2026,1,1,,0,,,6,27,4,6/27/26 3:00, +1,1,4253,2026,1,1,,0,,,6,27,5,6/27/26 4:00, +1,1,4254,2026,1,1,,0,,,6,27,6,6/27/26 5:00, +1,1,4255,2026,1,1,,0,,,6,27,7,6/27/26 6:00, +1,1,4256,2026,1,1,,0,,,6,27,8,6/27/26 7:00, +1,1,4257,2026,1,1,,0,,,6,27,9,6/27/26 8:00, +1,1,4258,2026,1,1,,0,,,6,27,10,6/27/26 9:00, +1,1,4259,2026,1,1,,0,,,6,27,11,6/27/26 10:00, +1,1,4260,2026,1,1,,0,,,6,27,12,6/27/26 11:00, +1,1,4261,2026,1,1,,0,,,6,27,13,6/27/26 12:00, +1,1,4262,2026,1,1,,0,,,6,27,14,6/27/26 13:00, +1,1,4263,2026,1,1,,0,,,6,27,15,6/27/26 14:00, +1,1,4264,2026,1,1,,0,,,6,27,16,6/27/26 15:00, +1,1,4265,2026,1,1,,0,,,6,27,17,6/27/26 16:00, +1,1,4266,2026,1,1,,0,,,6,27,18,6/27/26 17:00, +1,1,4267,2026,1,1,,0,,,6,27,19,6/27/26 18:00, +1,1,4268,2026,1,1,,0,,,6,27,20,6/27/26 19:00, +1,1,4269,2026,1,1,,0,,,6,27,21,6/27/26 20:00, +1,1,4270,2026,1,1,,0,,,6,27,22,6/27/26 21:00, +1,1,4271,2026,1,1,,0,,,6,27,23,6/27/26 22:00, +1,1,4272,2026,1,1,,0,,,6,27,24,6/27/26 23:00, +1,1,4273,2026,1,1,,0,,,6,28,1,6/28/26 0:00, +1,1,4274,2026,1,1,,0,,,6,28,2,6/28/26 1:00, +1,1,4275,2026,1,1,,0,,,6,28,3,6/28/26 2:00, +1,1,4276,2026,1,1,,0,,,6,28,4,6/28/26 3:00, +1,1,4277,2026,1,1,,0,,,6,28,5,6/28/26 4:00, +1,1,4278,2026,1,1,,0,,,6,28,6,6/28/26 5:00, +1,1,4279,2026,1,1,,0,,,6,28,7,6/28/26 6:00, +1,1,4280,2026,1,1,,0,,,6,28,8,6/28/26 7:00, +1,1,4281,2026,1,1,,0,,,6,28,9,6/28/26 8:00, +1,1,4282,2026,1,1,,0,,,6,28,10,6/28/26 9:00, +1,1,4283,2026,1,1,,0,,,6,28,11,6/28/26 10:00, +1,1,4284,2026,1,1,,0,,,6,28,12,6/28/26 11:00, +1,1,4285,2026,1,1,,0,,,6,28,13,6/28/26 12:00, +1,1,4286,2026,1,1,,0,,,6,28,14,6/28/26 13:00, +1,1,4287,2026,1,1,,0,,,6,28,15,6/28/26 14:00, +1,1,4288,2026,1,1,,0,,,6,28,16,6/28/26 15:00, +1,1,4289,2026,1,1,,0,,,6,28,17,6/28/26 16:00, +1,1,4290,2026,1,1,,0,,,6,28,18,6/28/26 17:00, +1,1,4291,2026,1,1,,0,,,6,28,19,6/28/26 18:00, +1,1,4292,2026,1,1,,0,,,6,28,20,6/28/26 19:00, +1,1,4293,2026,1,1,,0,,,6,28,21,6/28/26 20:00, +1,1,4294,2026,1,1,,0,,,6,28,22,6/28/26 21:00, +1,1,4295,2026,1,1,,0,,,6,28,23,6/28/26 22:00, +1,1,4296,2026,1,1,,0,,,6,28,24,6/28/26 23:00, +1,1,4297,2026,1,1,,0,,,6,29,1,6/29/26 0:00, +1,1,4298,2026,1,1,,0,,,6,29,2,6/29/26 1:00, +1,1,4299,2026,1,1,,0,,,6,29,3,6/29/26 2:00, +1,1,4300,2026,1,1,,0,,,6,29,4,6/29/26 3:00, +1,1,4301,2026,1,1,,0,,,6,29,5,6/29/26 4:00, +1,1,4302,2026,1,1,,0,,,6,29,6,6/29/26 5:00, +1,1,4303,2026,1,1,,0,,,6,29,7,6/29/26 6:00, +1,1,4304,2026,1,1,,0,,,6,29,8,6/29/26 7:00, +1,1,4305,2026,1,1,,0,,,6,29,9,6/29/26 8:00, +1,1,4306,2026,1,1,,0,,,6,29,10,6/29/26 9:00, +1,1,4307,2026,1,1,,0,,,6,29,11,6/29/26 10:00, +1,1,4308,2026,1,1,,0,,,6,29,12,6/29/26 11:00, +1,1,4309,2026,1,1,,0,,,6,29,13,6/29/26 12:00, +1,1,4310,2026,1,1,,0,,,6,29,14,6/29/26 13:00, +1,1,4311,2026,1,1,,0,,,6,29,15,6/29/26 14:00, +1,1,4312,2026,1,1,,0,,,6,29,16,6/29/26 15:00, +1,1,4313,2026,1,1,,0,,,6,29,17,6/29/26 16:00, +1,1,4314,2026,1,1,,0,,,6,29,18,6/29/26 17:00, +1,1,4315,2026,1,1,,0,,,6,29,19,6/29/26 18:00, +1,1,4316,2026,1,1,,0,,,6,29,20,6/29/26 19:00, +1,1,4317,2026,1,1,,0,,,6,29,21,6/29/26 20:00, +1,1,4318,2026,1,1,,0,,,6,29,22,6/29/26 21:00, +1,1,4319,2026,1,1,,0,,,6,29,23,6/29/26 22:00, +1,1,4320,2026,1,1,,0,,,6,29,24,6/29/26 23:00, +1,1,4321,2026,1,1,,0,,,6,30,1,6/30/26 0:00, +1,1,4322,2026,1,1,,0,,,6,30,2,6/30/26 1:00, +1,1,4323,2026,1,1,,0,,,6,30,3,6/30/26 2:00, +1,1,4324,2026,1,1,,0,,,6,30,4,6/30/26 3:00, +1,1,4325,2026,1,1,,0,,,6,30,5,6/30/26 4:00, +1,1,4326,2026,1,1,,0,,,6,30,6,6/30/26 5:00, +1,1,4327,2026,1,1,,0,,,6,30,7,6/30/26 6:00, +1,1,4328,2026,1,1,,0,,,6,30,8,6/30/26 7:00, +1,1,4329,2026,1,1,,0,,,6,30,9,6/30/26 8:00, +1,1,4330,2026,1,1,,0,,,6,30,10,6/30/26 9:00, +1,1,4331,2026,1,1,,0,,,6,30,11,6/30/26 10:00, +1,1,4332,2026,1,1,,0,,,6,30,12,6/30/26 11:00, +1,1,4333,2026,1,1,,0,,,6,30,13,6/30/26 12:00, +1,1,4334,2026,1,1,,0,,,6,30,14,6/30/26 13:00, +1,1,4335,2026,1,1,,0,,,6,30,15,6/30/26 14:00, +1,1,4336,2026,1,1,,0,,,6,30,16,6/30/26 15:00, +1,1,4337,2026,1,1,,0,,,6,30,17,6/30/26 16:00, +1,1,4338,2026,1,1,,0,,,6,30,18,6/30/26 17:00, +1,1,4339,2026,1,1,,0,,,6,30,19,6/30/26 18:00, +1,1,4340,2026,1,1,,0,,,6,30,20,6/30/26 19:00, +1,1,4341,2026,1,1,,0,,,6,30,21,6/30/26 20:00, +1,1,4342,2026,1,1,,0,,,6,30,22,6/30/26 21:00, +1,1,4343,2026,1,1,,0,,,6,30,23,6/30/26 22:00, +1,1,4344,2026,1,1,,0,,,6,30,24,6/30/26 23:00, +1,1,4345,2026,1,1,,0,,,7,1,1,7/1/26 0:00, +1,1,4346,2026,1,1,,0,,,7,1,2,7/1/26 1:00, +1,1,4347,2026,1,1,,0,,,7,1,3,7/1/26 2:00, +1,1,4348,2026,1,1,,0,,,7,1,4,7/1/26 3:00, +1,1,4349,2026,1,1,,0,,,7,1,5,7/1/26 4:00, +1,1,4350,2026,1,1,,0,,,7,1,6,7/1/26 5:00, +1,1,4351,2026,1,1,,0,,,7,1,7,7/1/26 6:00, +1,1,4352,2026,1,1,,0,,,7,1,8,7/1/26 7:00, +1,1,4353,2026,1,1,,0,,,7,1,9,7/1/26 8:00, +1,1,4354,2026,1,1,,0,,,7,1,10,7/1/26 9:00, +1,1,4355,2026,1,1,,0,,,7,1,11,7/1/26 10:00, +1,1,4356,2026,1,1,,0,,,7,1,12,7/1/26 11:00, +1,1,4357,2026,1,1,,0,,,7,1,13,7/1/26 12:00, +1,1,4358,2026,1,1,,0,,,7,1,14,7/1/26 13:00, +1,1,4359,2026,1,1,,0,,,7,1,15,7/1/26 14:00, +1,1,4360,2026,1,1,,0,,,7,1,16,7/1/26 15:00, +1,1,4361,2026,1,1,,0,,,7,1,17,7/1/26 16:00, +1,1,4362,2026,1,1,,0,,,7,1,18,7/1/26 17:00, +1,1,4363,2026,1,1,,0,,,7,1,19,7/1/26 18:00, +1,1,4364,2026,1,1,,0,,,7,1,20,7/1/26 19:00, +1,1,4365,2026,1,1,,0,,,7,1,21,7/1/26 20:00, +1,1,4366,2026,1,1,,0,,,7,1,22,7/1/26 21:00, +1,1,4367,2026,1,1,,0,,,7,1,23,7/1/26 22:00, +1,1,4368,2026,1,1,,0,,,7,1,24,7/1/26 23:00, +1,1,4369,2026,1,1,,0,,,7,2,1,7/2/26 0:00, +1,1,4370,2026,1,1,,0,,,7,2,2,7/2/26 1:00, +1,1,4371,2026,1,1,,0,,,7,2,3,7/2/26 2:00, +1,1,4372,2026,1,1,,0,,,7,2,4,7/2/26 3:00, +1,1,4373,2026,1,1,,0,,,7,2,5,7/2/26 4:00, +1,1,4374,2026,1,1,,0,,,7,2,6,7/2/26 5:00, +1,1,4375,2026,1,1,,0,,,7,2,7,7/2/26 6:00, +1,1,4376,2026,1,1,,0,,,7,2,8,7/2/26 7:00, +1,1,4377,2026,1,1,,0,,,7,2,9,7/2/26 8:00, +1,1,4378,2026,1,1,,0,,,7,2,10,7/2/26 9:00, +1,1,4379,2026,1,1,,0,,,7,2,11,7/2/26 10:00, +1,1,4380,2026,1,1,,0,,,7,2,12,7/2/26 11:00, +1,1,4381,2026,1,1,,0,,,7,2,13,7/2/26 12:00, +1,1,4382,2026,1,1,,0,,,7,2,14,7/2/26 13:00, +1,1,4383,2026,1,1,,0,,,7,2,15,7/2/26 14:00, +1,1,4384,2026,1,1,,0,,,7,2,16,7/2/26 15:00, +1,1,4385,2026,1,1,,0,,,7,2,17,7/2/26 16:00, +1,1,4386,2026,1,1,,0,,,7,2,18,7/2/26 17:00, +1,1,4387,2026,1,1,,0,,,7,2,19,7/2/26 18:00, +1,1,4388,2026,1,1,,0,,,7,2,20,7/2/26 19:00, +1,1,4389,2026,1,1,,0,,,7,2,21,7/2/26 20:00, +1,1,4390,2026,1,1,,0,,,7,2,22,7/2/26 21:00, +1,1,4391,2026,1,1,,0,,,7,2,23,7/2/26 22:00, +1,1,4392,2026,1,1,,0,,,7,2,24,7/2/26 23:00, +1,1,4393,2026,1,1,,0,,,7,3,1,7/3/26 0:00, +1,1,4394,2026,1,1,,0,,,7,3,2,7/3/26 1:00, +1,1,4395,2026,1,1,,0,,,7,3,3,7/3/26 2:00, +1,1,4396,2026,1,1,,0,,,7,3,4,7/3/26 3:00, +1,1,4397,2026,1,1,,0,,,7,3,5,7/3/26 4:00, +1,1,4398,2026,1,1,,0,,,7,3,6,7/3/26 5:00, +1,1,4399,2026,1,1,,0,,,7,3,7,7/3/26 6:00, +1,1,4400,2026,1,1,,0,,,7,3,8,7/3/26 7:00, +1,1,4401,2026,1,1,,0,,,7,3,9,7/3/26 8:00, +1,1,4402,2026,1,1,,0,,,7,3,10,7/3/26 9:00, +1,1,4403,2026,1,1,,0,,,7,3,11,7/3/26 10:00, +1,1,4404,2026,1,1,,0,,,7,3,12,7/3/26 11:00, +1,1,4405,2026,1,1,,0,,,7,3,13,7/3/26 12:00, +1,1,4406,2026,1,1,,0,,,7,3,14,7/3/26 13:00, +1,1,4407,2026,1,1,,0,,,7,3,15,7/3/26 14:00, +1,1,4408,2026,1,1,,0,,,7,3,16,7/3/26 15:00, +1,1,4409,2026,1,1,,0,,,7,3,17,7/3/26 16:00, +1,1,4410,2026,1,1,,0,,,7,3,18,7/3/26 17:00, +1,1,4411,2026,1,1,,0,,,7,3,19,7/3/26 18:00, +1,1,4412,2026,1,1,,0,,,7,3,20,7/3/26 19:00, +1,1,4413,2026,1,1,,0,,,7,3,21,7/3/26 20:00, +1,1,4414,2026,1,1,,0,,,7,3,22,7/3/26 21:00, +1,1,4415,2026,1,1,,0,,,7,3,23,7/3/26 22:00, +1,1,4416,2026,1,1,,0,,,7,3,24,7/3/26 23:00, +1,1,4417,2026,1,1,,0,,,7,4,1,7/4/26 0:00, +1,1,4418,2026,1,1,,0,,,7,4,2,7/4/26 1:00, +1,1,4419,2026,1,1,,0,,,7,4,3,7/4/26 2:00, +1,1,4420,2026,1,1,,0,,,7,4,4,7/4/26 3:00, +1,1,4421,2026,1,1,,0,,,7,4,5,7/4/26 4:00, +1,1,4422,2026,1,1,,0,,,7,4,6,7/4/26 5:00, +1,1,4423,2026,1,1,,0,,,7,4,7,7/4/26 6:00, +1,1,4424,2026,1,1,,0,,,7,4,8,7/4/26 7:00, +1,1,4425,2026,1,1,,0,,,7,4,9,7/4/26 8:00, +1,1,4426,2026,1,1,,0,,,7,4,10,7/4/26 9:00, +1,1,4427,2026,1,1,,0,,,7,4,11,7/4/26 10:00, +1,1,4428,2026,1,1,,0,,,7,4,12,7/4/26 11:00, +1,1,4429,2026,1,1,,0,,,7,4,13,7/4/26 12:00, +1,1,4430,2026,1,1,,0,,,7,4,14,7/4/26 13:00, +1,1,4431,2026,1,1,,0,,,7,4,15,7/4/26 14:00, +1,1,4432,2026,1,1,,0,,,7,4,16,7/4/26 15:00, +1,1,4433,2026,1,1,,0,,,7,4,17,7/4/26 16:00, +1,1,4434,2026,1,1,,0,,,7,4,18,7/4/26 17:00, +1,1,4435,2026,1,1,,0,,,7,4,19,7/4/26 18:00, +1,1,4436,2026,1,1,,0,,,7,4,20,7/4/26 19:00, +1,1,4437,2026,1,1,,0,,,7,4,21,7/4/26 20:00, +1,1,4438,2026,1,1,,0,,,7,4,22,7/4/26 21:00, +1,1,4439,2026,1,1,,0,,,7,4,23,7/4/26 22:00, +1,1,4440,2026,1,1,,0,,,7,4,24,7/4/26 23:00, +1,1,4441,2026,1,1,,0,,,7,5,1,7/5/26 0:00, +1,1,4442,2026,1,1,,0,,,7,5,2,7/5/26 1:00, +1,1,4443,2026,1,1,,0,,,7,5,3,7/5/26 2:00, +1,1,4444,2026,1,1,,0,,,7,5,4,7/5/26 3:00, +1,1,4445,2026,1,1,,0,,,7,5,5,7/5/26 4:00, +1,1,4446,2026,1,1,,0,,,7,5,6,7/5/26 5:00, +1,1,4447,2026,1,1,,0,,,7,5,7,7/5/26 6:00, +1,1,4448,2026,1,1,,0,,,7,5,8,7/5/26 7:00, +1,1,4449,2026,1,1,,0,,,7,5,9,7/5/26 8:00, +1,1,4450,2026,1,1,,0,,,7,5,10,7/5/26 9:00, +1,1,4451,2026,1,1,,0,,,7,5,11,7/5/26 10:00, +1,1,4452,2026,1,1,,0,,,7,5,12,7/5/26 11:00, +1,1,4453,2026,1,1,,0,,,7,5,13,7/5/26 12:00, +1,1,4454,2026,1,1,,0,,,7,5,14,7/5/26 13:00, +1,1,4455,2026,1,1,,0,,,7,5,15,7/5/26 14:00, +1,1,4456,2026,1,1,,0,,,7,5,16,7/5/26 15:00, +1,1,4457,2026,1,1,,0,,,7,5,17,7/5/26 16:00, +1,1,4458,2026,1,1,,0,,,7,5,18,7/5/26 17:00, +1,1,4459,2026,1,1,,0,,,7,5,19,7/5/26 18:00, +1,1,4460,2026,1,1,,0,,,7,5,20,7/5/26 19:00, +1,1,4461,2026,1,1,,0,,,7,5,21,7/5/26 20:00, +1,1,4462,2026,1,1,,0,,,7,5,22,7/5/26 21:00, +1,1,4463,2026,1,1,,0,,,7,5,23,7/5/26 22:00, +1,1,4464,2026,1,1,,0,,,7,5,24,7/5/26 23:00, +1,1,4465,2026,1,1,,0,,,7,6,1,7/6/26 0:00, +1,1,4466,2026,1,1,,0,,,7,6,2,7/6/26 1:00, +1,1,4467,2026,1,1,,0,,,7,6,3,7/6/26 2:00, +1,1,4468,2026,1,1,,0,,,7,6,4,7/6/26 3:00, +1,1,4469,2026,1,1,,0,,,7,6,5,7/6/26 4:00, +1,1,4470,2026,1,1,,0,,,7,6,6,7/6/26 5:00, +1,1,4471,2026,1,1,,0,,,7,6,7,7/6/26 6:00, +1,1,4472,2026,1,1,,0,,,7,6,8,7/6/26 7:00, +1,1,4473,2026,1,1,,0,,,7,6,9,7/6/26 8:00, +1,1,4474,2026,1,1,,0,,,7,6,10,7/6/26 9:00, +1,1,4475,2026,1,1,,0,,,7,6,11,7/6/26 10:00, +1,1,4476,2026,1,1,,0,,,7,6,12,7/6/26 11:00, +1,1,4477,2026,1,1,,0,,,7,6,13,7/6/26 12:00, +1,1,4478,2026,1,1,,0,,,7,6,14,7/6/26 13:00, +1,1,4479,2026,1,1,,0,,,7,6,15,7/6/26 14:00, +1,1,4480,2026,1,1,,0,,,7,6,16,7/6/26 15:00, +1,1,4481,2026,1,1,,0,,,7,6,17,7/6/26 16:00, +1,1,4482,2026,1,1,,0,,,7,6,18,7/6/26 17:00, +1,1,4483,2026,1,1,,0,,,7,6,19,7/6/26 18:00, +1,1,4484,2026,1,1,,0,,,7,6,20,7/6/26 19:00, +1,1,4485,2026,1,1,,0,,,7,6,21,7/6/26 20:00, +1,1,4486,2026,1,1,,0,,,7,6,22,7/6/26 21:00, +1,1,4487,2026,1,1,,0,,,7,6,23,7/6/26 22:00, +1,1,4488,2026,1,1,,0,,,7,6,24,7/6/26 23:00, +1,1,4489,2026,1,1,,0,,,7,7,1,7/7/26 0:00, +1,1,4490,2026,1,1,,0,,,7,7,2,7/7/26 1:00, +1,1,4491,2026,1,1,,0,,,7,7,3,7/7/26 2:00, +1,1,4492,2026,1,1,,0,,,7,7,4,7/7/26 3:00, +1,1,4493,2026,1,1,,0,,,7,7,5,7/7/26 4:00, +1,1,4494,2026,1,1,,0,,,7,7,6,7/7/26 5:00, +1,1,4495,2026,1,1,,0,,,7,7,7,7/7/26 6:00, +1,1,4496,2026,1,1,,0,,,7,7,8,7/7/26 7:00, +1,1,4497,2026,1,1,,0,,,7,7,9,7/7/26 8:00, +1,1,4498,2026,1,1,,0,,,7,7,10,7/7/26 9:00, +1,1,4499,2026,1,1,,0,,,7,7,11,7/7/26 10:00, +1,1,4500,2026,1,1,,0,,,7,7,12,7/7/26 11:00, +1,1,4501,2026,1,1,,0,,,7,7,13,7/7/26 12:00, +1,1,4502,2026,1,1,,0,,,7,7,14,7/7/26 13:00, +1,1,4503,2026,1,1,,0,,,7,7,15,7/7/26 14:00, +1,1,4504,2026,1,1,,0,,,7,7,16,7/7/26 15:00, +1,1,4505,2026,1,1,,0,,,7,7,17,7/7/26 16:00, +1,1,4506,2026,1,1,,0,,,7,7,18,7/7/26 17:00, +1,1,4507,2026,1,1,,0,,,7,7,19,7/7/26 18:00, +1,1,4508,2026,1,1,,0,,,7,7,20,7/7/26 19:00, +1,1,4509,2026,1,1,,0,,,7,7,21,7/7/26 20:00, +1,1,4510,2026,1,1,,0,,,7,7,22,7/7/26 21:00, +1,1,4511,2026,1,1,,0,,,7,7,23,7/7/26 22:00, +1,1,4512,2026,1,1,,0,,,7,7,24,7/7/26 23:00, +1,1,4513,2026,1,1,,0,,,7,8,1,7/8/26 0:00, +1,1,4514,2026,1,1,,0,,,7,8,2,7/8/26 1:00, +1,1,4515,2026,1,1,,0,,,7,8,3,7/8/26 2:00, +1,1,4516,2026,1,1,,0,,,7,8,4,7/8/26 3:00, +1,1,4517,2026,1,1,,0,,,7,8,5,7/8/26 4:00, +1,1,4518,2026,1,1,,0,,,7,8,6,7/8/26 5:00, +1,1,4519,2026,1,1,,0,,,7,8,7,7/8/26 6:00, +1,1,4520,2026,1,1,,0,,,7,8,8,7/8/26 7:00, +1,1,4521,2026,1,1,,0,,,7,8,9,7/8/26 8:00, +1,1,4522,2026,1,1,,0,,,7,8,10,7/8/26 9:00, +1,1,4523,2026,1,1,,0,,,7,8,11,7/8/26 10:00, +1,1,4524,2026,1,1,,0,,,7,8,12,7/8/26 11:00, +1,1,4525,2026,1,1,,0,,,7,8,13,7/8/26 12:00, +1,1,4526,2026,1,1,,0,,,7,8,14,7/8/26 13:00, +1,1,4527,2026,1,1,,0,,,7,8,15,7/8/26 14:00, +1,1,4528,2026,1,1,,0,,,7,8,16,7/8/26 15:00, +1,1,4529,2026,1,1,,0,,,7,8,17,7/8/26 16:00, +1,1,4530,2026,1,1,,0,,,7,8,18,7/8/26 17:00, +1,1,4531,2026,1,1,,0,,,7,8,19,7/8/26 18:00, +1,1,4532,2026,1,1,,0,,,7,8,20,7/8/26 19:00, +1,1,4533,2026,1,1,,0,,,7,8,21,7/8/26 20:00, +1,1,4534,2026,1,1,,0,,,7,8,22,7/8/26 21:00, +1,1,4535,2026,1,1,,0,,,7,8,23,7/8/26 22:00, +1,1,4536,2026,1,1,,0,,,7,8,24,7/8/26 23:00, +1,1,4537,2026,1,1,,0,,,7,9,1,7/9/26 0:00, +1,1,4538,2026,1,1,,0,,,7,9,2,7/9/26 1:00, +1,1,4539,2026,1,1,,0,,,7,9,3,7/9/26 2:00, +1,1,4540,2026,1,1,,0,,,7,9,4,7/9/26 3:00, +1,1,4541,2026,1,1,,0,,,7,9,5,7/9/26 4:00, +1,1,4542,2026,1,1,,0,,,7,9,6,7/9/26 5:00, +1,1,4543,2026,1,1,,0,,,7,9,7,7/9/26 6:00, +1,1,4544,2026,1,1,,0,,,7,9,8,7/9/26 7:00, +1,1,4545,2026,1,1,,0,,,7,9,9,7/9/26 8:00, +1,1,4546,2026,1,1,,0,,,7,9,10,7/9/26 9:00, +1,1,4547,2026,1,1,,0,,,7,9,11,7/9/26 10:00, +1,1,4548,2026,1,1,,0,,,7,9,12,7/9/26 11:00, +1,1,4549,2026,1,1,,0,,,7,9,13,7/9/26 12:00, +1,1,4550,2026,1,1,,0,,,7,9,14,7/9/26 13:00, +1,1,4551,2026,1,1,,0,,,7,9,15,7/9/26 14:00, +1,1,4552,2026,1,1,,0,,,7,9,16,7/9/26 15:00, +1,1,4553,2026,1,1,,0,,,7,9,17,7/9/26 16:00, +1,1,4554,2026,1,1,,0,,,7,9,18,7/9/26 17:00, +1,1,4555,2026,1,1,,0,,,7,9,19,7/9/26 18:00, +1,1,4556,2026,1,1,,0,,,7,9,20,7/9/26 19:00, +1,1,4557,2026,1,1,,0,,,7,9,21,7/9/26 20:00, +1,1,4558,2026,1,1,,0,,,7,9,22,7/9/26 21:00, +1,1,4559,2026,1,1,,0,,,7,9,23,7/9/26 22:00, +1,1,4560,2026,1,1,,0,,,7,9,24,7/9/26 23:00, +1,1,4561,2026,1,1,,0,,,7,10,1,7/10/26 0:00, +1,1,4562,2026,1,1,,0,,,7,10,2,7/10/26 1:00, +1,1,4563,2026,1,1,,0,,,7,10,3,7/10/26 2:00, +1,1,4564,2026,1,1,,0,,,7,10,4,7/10/26 3:00, +1,1,4565,2026,1,1,,0,,,7,10,5,7/10/26 4:00, +1,1,4566,2026,1,1,,0,,,7,10,6,7/10/26 5:00, +1,1,4567,2026,1,1,,0,,,7,10,7,7/10/26 6:00, +1,1,4568,2026,1,1,,0,,,7,10,8,7/10/26 7:00, +1,1,4569,2026,1,1,,0,,,7,10,9,7/10/26 8:00, +1,1,4570,2026,1,1,,0,,,7,10,10,7/10/26 9:00, +1,1,4571,2026,1,1,,0,,,7,10,11,7/10/26 10:00, +1,1,4572,2026,1,1,,0,,,7,10,12,7/10/26 11:00, +1,1,4573,2026,1,1,,0,,,7,10,13,7/10/26 12:00, +1,1,4574,2026,1,1,,0,,,7,10,14,7/10/26 13:00, +1,1,4575,2026,1,1,,0,,,7,10,15,7/10/26 14:00, +1,1,4576,2026,1,1,,0,,,7,10,16,7/10/26 15:00, +1,1,4577,2026,1,1,,0,,,7,10,17,7/10/26 16:00, +1,1,4578,2026,1,1,,0,,,7,10,18,7/10/26 17:00, +1,1,4579,2026,1,1,,0,,,7,10,19,7/10/26 18:00, +1,1,4580,2026,1,1,,0,,,7,10,20,7/10/26 19:00, +1,1,4581,2026,1,1,,0,,,7,10,21,7/10/26 20:00, +1,1,4582,2026,1,1,,0,,,7,10,22,7/10/26 21:00, +1,1,4583,2026,1,1,,0,,,7,10,23,7/10/26 22:00, +1,1,4584,2026,1,1,,0,,,7,10,24,7/10/26 23:00, +1,1,4585,2026,1,1,,0,,,7,11,1,7/11/26 0:00, +1,1,4586,2026,1,1,,0,,,7,11,2,7/11/26 1:00, +1,1,4587,2026,1,1,,0,,,7,11,3,7/11/26 2:00, +1,1,4588,2026,1,1,,0,,,7,11,4,7/11/26 3:00, +1,1,4589,2026,1,1,,0,,,7,11,5,7/11/26 4:00, +1,1,4590,2026,1,1,,0,,,7,11,6,7/11/26 5:00, +1,1,4591,2026,1,1,,0,,,7,11,7,7/11/26 6:00, +1,1,4592,2026,1,1,,0,,,7,11,8,7/11/26 7:00, +1,1,4593,2026,1,1,,0,,,7,11,9,7/11/26 8:00, +1,1,4594,2026,1,1,,0,,,7,11,10,7/11/26 9:00, +1,1,4595,2026,1,1,,0,,,7,11,11,7/11/26 10:00, +1,1,4596,2026,1,1,,0,,,7,11,12,7/11/26 11:00, +1,1,4597,2026,1,1,,0,,,7,11,13,7/11/26 12:00, +1,1,4598,2026,1,1,,0,,,7,11,14,7/11/26 13:00, +1,1,4599,2026,1,1,,0,,,7,11,15,7/11/26 14:00, +1,1,4600,2026,1,1,,0,,,7,11,16,7/11/26 15:00, +1,1,4601,2026,1,1,,0,,,7,11,17,7/11/26 16:00, +1,1,4602,2026,1,1,,0,,,7,11,18,7/11/26 17:00, +1,1,4603,2026,1,1,,0,,,7,11,19,7/11/26 18:00, +1,1,4604,2026,1,1,,0,,,7,11,20,7/11/26 19:00, +1,1,4605,2026,1,1,,0,,,7,11,21,7/11/26 20:00, +1,1,4606,2026,1,1,,0,,,7,11,22,7/11/26 21:00, +1,1,4607,2026,1,1,,0,,,7,11,23,7/11/26 22:00, +1,1,4608,2026,1,1,,0,,,7,11,24,7/11/26 23:00, +1,1,4609,2026,1,1,,0,,,7,12,1,7/12/26 0:00, +1,1,4610,2026,1,1,,0,,,7,12,2,7/12/26 1:00, +1,1,4611,2026,1,1,,0,,,7,12,3,7/12/26 2:00, +1,1,4612,2026,1,1,,0,,,7,12,4,7/12/26 3:00, +1,1,4613,2026,1,1,,0,,,7,12,5,7/12/26 4:00, +1,1,4614,2026,1,1,,0,,,7,12,6,7/12/26 5:00, +1,1,4615,2026,1,1,,0,,,7,12,7,7/12/26 6:00, +1,1,4616,2026,1,1,,0,,,7,12,8,7/12/26 7:00, +1,1,4617,2026,1,1,,0,,,7,12,9,7/12/26 8:00, +1,1,4618,2026,1,1,,0,,,7,12,10,7/12/26 9:00, +1,1,4619,2026,1,1,,0,,,7,12,11,7/12/26 10:00, +1,1,4620,2026,1,1,,0,,,7,12,12,7/12/26 11:00, +1,1,4621,2026,1,1,,0,,,7,12,13,7/12/26 12:00, +1,1,4622,2026,1,1,,0,,,7,12,14,7/12/26 13:00, +1,1,4623,2026,1,1,,0,,,7,12,15,7/12/26 14:00, +1,1,4624,2026,1,1,,0,,,7,12,16,7/12/26 15:00, +1,1,4625,2026,1,1,,0,,,7,12,17,7/12/26 16:00, +1,1,4626,2026,1,1,,0,,,7,12,18,7/12/26 17:00, +1,1,4627,2026,1,1,,0,,,7,12,19,7/12/26 18:00, +1,1,4628,2026,1,1,,0,,,7,12,20,7/12/26 19:00, +1,1,4629,2026,1,1,,0,,,7,12,21,7/12/26 20:00, +1,1,4630,2026,1,1,,0,,,7,12,22,7/12/26 21:00, +1,1,4631,2026,1,1,,0,,,7,12,23,7/12/26 22:00, +1,1,4632,2026,1,1,,0,,,7,12,24,7/12/26 23:00, +1,1,4633,2026,1,1,,0,,,7,13,1,7/13/26 0:00, +1,1,4634,2026,1,1,,0,,,7,13,2,7/13/26 1:00, +1,1,4635,2026,1,1,,0,,,7,13,3,7/13/26 2:00, +1,1,4636,2026,1,1,,0,,,7,13,4,7/13/26 3:00, +1,1,4637,2026,1,1,,0,,,7,13,5,7/13/26 4:00, +1,1,4638,2026,1,1,,0,,,7,13,6,7/13/26 5:00, +1,1,4639,2026,1,1,,0,,,7,13,7,7/13/26 6:00, +1,1,4640,2026,1,1,,0,,,7,13,8,7/13/26 7:00, +1,1,4641,2026,1,1,,0,,,7,13,9,7/13/26 8:00, +1,1,4642,2026,1,1,,0,,,7,13,10,7/13/26 9:00, +1,1,4643,2026,1,1,,0,,,7,13,11,7/13/26 10:00, +1,1,4644,2026,1,1,,0,,,7,13,12,7/13/26 11:00, +1,1,4645,2026,1,1,,0,,,7,13,13,7/13/26 12:00, +1,1,4646,2026,1,1,,0,,,7,13,14,7/13/26 13:00, +1,1,4647,2026,1,1,,0,,,7,13,15,7/13/26 14:00, +1,1,4648,2026,1,1,,0,,,7,13,16,7/13/26 15:00, +1,1,4649,2026,1,1,,0,,,7,13,17,7/13/26 16:00, +1,1,4650,2026,1,1,,0,,,7,13,18,7/13/26 17:00, +1,1,4651,2026,1,1,,0,,,7,13,19,7/13/26 18:00, +1,1,4652,2026,1,1,,0,,,7,13,20,7/13/26 19:00, +1,1,4653,2026,1,1,,0,,,7,13,21,7/13/26 20:00, +1,1,4654,2026,1,1,,0,,,7,13,22,7/13/26 21:00, +1,1,4655,2026,1,1,,0,,,7,13,23,7/13/26 22:00, +1,1,4656,2026,1,1,,0,,,7,13,24,7/13/26 23:00, +1,1,4657,2026,1,1,,0,,,7,14,1,7/14/26 0:00, +1,1,4658,2026,1,1,,0,,,7,14,2,7/14/26 1:00, +1,1,4659,2026,1,1,,0,,,7,14,3,7/14/26 2:00, +1,1,4660,2026,1,1,,0,,,7,14,4,7/14/26 3:00, +1,1,4661,2026,1,1,,0,,,7,14,5,7/14/26 4:00, +1,1,4662,2026,1,1,,0,,,7,14,6,7/14/26 5:00, +1,1,4663,2026,1,1,,0,,,7,14,7,7/14/26 6:00, +1,1,4664,2026,1,1,,0,,,7,14,8,7/14/26 7:00, +1,1,4665,2026,1,1,,0,,,7,14,9,7/14/26 8:00, +1,1,4666,2026,1,1,,0,,,7,14,10,7/14/26 9:00, +1,1,4667,2026,1,1,,0,,,7,14,11,7/14/26 10:00, +1,1,4668,2026,1,1,,0,,,7,14,12,7/14/26 11:00, +1,1,4669,2026,1,1,,0,,,7,14,13,7/14/26 12:00, +1,1,4670,2026,1,1,,0,,,7,14,14,7/14/26 13:00, +1,1,4671,2026,1,1,,0,,,7,14,15,7/14/26 14:00, +1,1,4672,2026,1,1,,0,,,7,14,16,7/14/26 15:00, +1,1,4673,2026,1,1,,0,,,7,14,17,7/14/26 16:00, +1,1,4674,2026,1,1,,0,,,7,14,18,7/14/26 17:00, +1,1,4675,2026,1,1,,0,,,7,14,19,7/14/26 18:00, +1,1,4676,2026,1,1,,0,,,7,14,20,7/14/26 19:00, +1,1,4677,2026,1,1,,0,,,7,14,21,7/14/26 20:00, +1,1,4678,2026,1,1,,0,,,7,14,22,7/14/26 21:00, +1,1,4679,2026,1,1,,0,,,7,14,23,7/14/26 22:00, +1,1,4680,2026,1,1,,0,,,7,14,24,7/14/26 23:00, +1,1,4681,2026,1,1,,0,,,7,15,1,7/15/26 0:00, +1,1,4682,2026,1,1,,0,,,7,15,2,7/15/26 1:00, +1,1,4683,2026,1,1,,0,,,7,15,3,7/15/26 2:00, +1,1,4684,2026,1,1,,0,,,7,15,4,7/15/26 3:00, +1,1,4685,2026,1,1,,0,,,7,15,5,7/15/26 4:00, +1,1,4686,2026,1,1,,0,,,7,15,6,7/15/26 5:00, +1,1,4687,2026,1,1,,0,,,7,15,7,7/15/26 6:00, +1,1,4688,2026,1,1,,0,,,7,15,8,7/15/26 7:00, +1,1,4689,2026,1,1,,0,,,7,15,9,7/15/26 8:00, +1,1,4690,2026,1,1,,0,,,7,15,10,7/15/26 9:00, +1,1,4691,2026,1,1,,0,,,7,15,11,7/15/26 10:00, +1,1,4692,2026,1,1,,0,,,7,15,12,7/15/26 11:00, +1,1,4693,2026,1,1,,0,,,7,15,13,7/15/26 12:00, +1,1,4694,2026,1,1,,0,,,7,15,14,7/15/26 13:00, +1,1,4695,2026,1,1,,0,,,7,15,15,7/15/26 14:00, +1,1,4696,2026,1,1,,0,,,7,15,16,7/15/26 15:00, +1,1,4697,2026,1,1,,0,,,7,15,17,7/15/26 16:00, +1,1,4698,2026,1,1,,0,,,7,15,18,7/15/26 17:00, +1,1,4699,2026,1,1,,0,,,7,15,19,7/15/26 18:00, +1,1,4700,2026,1,1,,0,,,7,15,20,7/15/26 19:00, +1,1,4701,2026,1,1,,0,,,7,15,21,7/15/26 20:00, +1,1,4702,2026,1,1,,0,,,7,15,22,7/15/26 21:00, +1,1,4703,2026,1,1,,0,,,7,15,23,7/15/26 22:00, +1,1,4704,2026,1,1,,0,,,7,15,24,7/15/26 23:00, +1,1,4705,2026,1,1,,0,,,7,16,1,7/16/26 0:00, +1,1,4706,2026,1,1,,0,,,7,16,2,7/16/26 1:00, +1,1,4707,2026,1,1,,0,,,7,16,3,7/16/26 2:00, +1,1,4708,2026,1,1,,0,,,7,16,4,7/16/26 3:00, +1,1,4709,2026,1,1,,0,,,7,16,5,7/16/26 4:00, +1,1,4710,2026,1,1,,0,,,7,16,6,7/16/26 5:00, +1,1,4711,2026,1,1,,0,,,7,16,7,7/16/26 6:00, +1,1,4712,2026,1,1,,0,,,7,16,8,7/16/26 7:00, +1,1,4713,2026,1,1,,0,,,7,16,9,7/16/26 8:00, +1,1,4714,2026,1,1,,0,,,7,16,10,7/16/26 9:00, +1,1,4715,2026,1,1,,0,,,7,16,11,7/16/26 10:00, +1,1,4716,2026,1,1,,0,,,7,16,12,7/16/26 11:00, +1,1,4717,2026,1,1,,0,,,7,16,13,7/16/26 12:00, +1,1,4718,2026,1,1,,0,,,7,16,14,7/16/26 13:00, +1,1,4719,2026,1,1,,0,,,7,16,15,7/16/26 14:00, +1,1,4720,2026,1,1,,0,,,7,16,16,7/16/26 15:00, +1,1,4721,2026,1,1,,0,,,7,16,17,7/16/26 16:00, +1,1,4722,2026,1,1,,0,,,7,16,18,7/16/26 17:00, +1,1,4723,2026,1,1,,0,,,7,16,19,7/16/26 18:00, +1,1,4724,2026,1,1,,0,,,7,16,20,7/16/26 19:00, +1,1,4725,2026,1,1,,0,,,7,16,21,7/16/26 20:00, +1,1,4726,2026,1,1,,0,,,7,16,22,7/16/26 21:00, +1,1,4727,2026,1,1,,0,,,7,16,23,7/16/26 22:00, +1,1,4728,2026,1,1,,0,,,7,16,24,7/16/26 23:00, +1,1,4729,2026,1,1,,0,,,7,17,1,7/17/26 0:00, +1,1,4730,2026,1,1,,0,,,7,17,2,7/17/26 1:00, +1,1,4731,2026,1,1,,0,,,7,17,3,7/17/26 2:00, +1,1,4732,2026,1,1,,0,,,7,17,4,7/17/26 3:00, +1,1,4733,2026,1,1,,0,,,7,17,5,7/17/26 4:00, +1,1,4734,2026,1,1,,0,,,7,17,6,7/17/26 5:00, +1,1,4735,2026,1,1,,0,,,7,17,7,7/17/26 6:00, +1,1,4736,2026,1,1,,0,,,7,17,8,7/17/26 7:00, +1,1,4737,2026,1,1,,0,,,7,17,9,7/17/26 8:00, +1,1,4738,2026,1,1,,0,,,7,17,10,7/17/26 9:00, +1,1,4739,2026,1,1,,0,,,7,17,11,7/17/26 10:00, +1,1,4740,2026,1,1,,0,,,7,17,12,7/17/26 11:00, +1,1,4741,2026,1,1,,0,,,7,17,13,7/17/26 12:00, +1,1,4742,2026,1,1,,0,,,7,17,14,7/17/26 13:00, +1,1,4743,2026,1,1,,0,,,7,17,15,7/17/26 14:00, +1,1,4744,2026,1,1,,0,,,7,17,16,7/17/26 15:00, +1,1,4745,2026,1,1,,0,,,7,17,17,7/17/26 16:00, +1,1,4746,2026,1,1,,0,,,7,17,18,7/17/26 17:00, +1,1,4747,2026,1,1,,0,,,7,17,19,7/17/26 18:00, +1,1,4748,2026,1,1,,0,,,7,17,20,7/17/26 19:00, +1,1,4749,2026,1,1,,0,,,7,17,21,7/17/26 20:00, +1,1,4750,2026,1,1,,0,,,7,17,22,7/17/26 21:00, +1,1,4751,2026,1,1,,0,,,7,17,23,7/17/26 22:00, +1,1,4752,2026,1,1,,0,,,7,17,24,7/17/26 23:00, +1,1,4753,2026,1,1,,0,,,7,18,1,7/18/26 0:00, +1,1,4754,2026,1,1,,0,,,7,18,2,7/18/26 1:00, +1,1,4755,2026,1,1,,0,,,7,18,3,7/18/26 2:00, +1,1,4756,2026,1,1,,0,,,7,18,4,7/18/26 3:00, +1,1,4757,2026,1,1,,0,,,7,18,5,7/18/26 4:00, +1,1,4758,2026,1,1,,0,,,7,18,6,7/18/26 5:00, +1,1,4759,2026,1,1,,0,,,7,18,7,7/18/26 6:00, +1,1,4760,2026,1,1,,0,,,7,18,8,7/18/26 7:00, +1,1,4761,2026,1,1,,0,,,7,18,9,7/18/26 8:00, +1,1,4762,2026,1,1,,0,,,7,18,10,7/18/26 9:00, +1,1,4763,2026,1,1,,0,,,7,18,11,7/18/26 10:00, +1,1,4764,2026,1,1,,0,,,7,18,12,7/18/26 11:00, +1,1,4765,2026,1,1,,0,,,7,18,13,7/18/26 12:00, +1,1,4766,2026,1,1,,0,,,7,18,14,7/18/26 13:00, +1,1,4767,2026,1,1,,0,,,7,18,15,7/18/26 14:00, +1,1,4768,2026,1,1,,0,,,7,18,16,7/18/26 15:00, +1,1,4769,2026,1,1,,0,,,7,18,17,7/18/26 16:00, +1,1,4770,2026,1,1,,0,,,7,18,18,7/18/26 17:00, +1,1,4771,2026,1,1,,0,,,7,18,19,7/18/26 18:00, +1,1,4772,2026,1,1,,0,,,7,18,20,7/18/26 19:00, +1,1,4773,2026,1,1,,0,,,7,18,21,7/18/26 20:00, +1,1,4774,2026,1,1,,0,,,7,18,22,7/18/26 21:00, +1,1,4775,2026,1,1,,0,,,7,18,23,7/18/26 22:00, +1,1,4776,2026,1,1,,0,,,7,18,24,7/18/26 23:00, +1,1,4777,2026,1,1,,0,,,7,19,1,7/19/26 0:00, +1,1,4778,2026,1,1,,0,,,7,19,2,7/19/26 1:00, +1,1,4779,2026,1,1,,0,,,7,19,3,7/19/26 2:00, +1,1,4780,2026,1,1,,0,,,7,19,4,7/19/26 3:00, +1,1,4781,2026,1,1,,0,,,7,19,5,7/19/26 4:00, +1,1,4782,2026,1,1,,0,,,7,19,6,7/19/26 5:00, +1,1,4783,2026,1,1,,0,,,7,19,7,7/19/26 6:00, +1,1,4784,2026,1,1,,0,,,7,19,8,7/19/26 7:00, +1,1,4785,2026,1,1,,0,,,7,19,9,7/19/26 8:00, +1,1,4786,2026,1,1,,0,,,7,19,10,7/19/26 9:00, +1,1,4787,2026,1,1,,0,,,7,19,11,7/19/26 10:00, +1,1,4788,2026,1,1,,0,,,7,19,12,7/19/26 11:00, +1,1,4789,2026,1,1,,0,,,7,19,13,7/19/26 12:00, +1,1,4790,2026,1,1,,0,,,7,19,14,7/19/26 13:00, +1,1,4791,2026,1,1,,0,,,7,19,15,7/19/26 14:00, +1,1,4792,2026,1,1,,0,,,7,19,16,7/19/26 15:00, +1,1,4793,2026,1,1,,0,,,7,19,17,7/19/26 16:00, +1,1,4794,2026,1,1,,0,,,7,19,18,7/19/26 17:00, +1,1,4795,2026,1,1,,0,,,7,19,19,7/19/26 18:00, +1,1,4796,2026,1,1,,0,,,7,19,20,7/19/26 19:00, +1,1,4797,2026,1,1,,0,,,7,19,21,7/19/26 20:00, +1,1,4798,2026,1,1,,0,,,7,19,22,7/19/26 21:00, +1,1,4799,2026,1,1,,0,,,7,19,23,7/19/26 22:00, +1,1,4800,2026,1,1,,0,,,7,19,24,7/19/26 23:00, +1,1,4801,2026,1,1,,0,,,7,20,1,7/20/26 0:00, +1,1,4802,2026,1,1,,0,,,7,20,2,7/20/26 1:00, +1,1,4803,2026,1,1,,0,,,7,20,3,7/20/26 2:00, +1,1,4804,2026,1,1,,0,,,7,20,4,7/20/26 3:00, +1,1,4805,2026,1,1,,0,,,7,20,5,7/20/26 4:00, +1,1,4806,2026,1,1,,0,,,7,20,6,7/20/26 5:00, +1,1,4807,2026,1,1,,0,,,7,20,7,7/20/26 6:00, +1,1,4808,2026,1,1,,0,,,7,20,8,7/20/26 7:00, +1,1,4809,2026,1,1,,0,,,7,20,9,7/20/26 8:00, +1,1,4810,2026,1,1,,0,,,7,20,10,7/20/26 9:00, +1,1,4811,2026,1,1,,0,,,7,20,11,7/20/26 10:00, +1,1,4812,2026,1,1,,0,,,7,20,12,7/20/26 11:00, +1,1,4813,2026,1,1,,0,,,7,20,13,7/20/26 12:00, +1,1,4814,2026,1,1,,0,,,7,20,14,7/20/26 13:00, +1,1,4815,2026,1,1,,0,,,7,20,15,7/20/26 14:00, +1,1,4816,2026,1,1,,0,,,7,20,16,7/20/26 15:00, +1,1,4817,2026,1,1,,0,,,7,20,17,7/20/26 16:00, +1,1,4818,2026,1,1,,0,,,7,20,18,7/20/26 17:00, +1,1,4819,2026,1,1,,0,,,7,20,19,7/20/26 18:00, +1,1,4820,2026,1,1,,0,,,7,20,20,7/20/26 19:00, +1,1,4821,2026,1,1,,0,,,7,20,21,7/20/26 20:00, +1,1,4822,2026,1,1,,0,,,7,20,22,7/20/26 21:00, +1,1,4823,2026,1,1,,0,,,7,20,23,7/20/26 22:00, +1,1,4824,2026,1,1,,0,,,7,20,24,7/20/26 23:00, +1,1,4825,2026,1,1,,0,,,7,21,1,7/21/26 0:00, +1,1,4826,2026,1,1,,0,,,7,21,2,7/21/26 1:00, +1,1,4827,2026,1,1,,0,,,7,21,3,7/21/26 2:00, +1,1,4828,2026,1,1,,0,,,7,21,4,7/21/26 3:00, +1,1,4829,2026,1,1,,0,,,7,21,5,7/21/26 4:00, +1,1,4830,2026,1,1,,0,,,7,21,6,7/21/26 5:00, +1,1,4831,2026,1,1,,0,,,7,21,7,7/21/26 6:00, +1,1,4832,2026,1,1,,0,,,7,21,8,7/21/26 7:00, +1,1,4833,2026,1,1,,0,,,7,21,9,7/21/26 8:00, +1,1,4834,2026,1,1,,0,,,7,21,10,7/21/26 9:00, +1,1,4835,2026,1,1,,0,,,7,21,11,7/21/26 10:00, +1,1,4836,2026,1,1,,0,,,7,21,12,7/21/26 11:00, +1,1,4837,2026,1,1,,0,,,7,21,13,7/21/26 12:00, +1,1,4838,2026,1,1,,0,,,7,21,14,7/21/26 13:00, +1,1,4839,2026,1,1,,0,,,7,21,15,7/21/26 14:00, +1,1,4840,2026,1,1,,0,,,7,21,16,7/21/26 15:00, +1,1,4841,2026,1,1,,0,,,7,21,17,7/21/26 16:00, +1,1,4842,2026,1,1,,0,,,7,21,18,7/21/26 17:00, +1,1,4843,2026,1,1,,0,,,7,21,19,7/21/26 18:00, +1,1,4844,2026,1,1,,0,,,7,21,20,7/21/26 19:00, +1,1,4845,2026,1,1,,0,,,7,21,21,7/21/26 20:00, +1,1,4846,2026,1,1,,0,,,7,21,22,7/21/26 21:00, +1,1,4847,2026,1,1,,0,,,7,21,23,7/21/26 22:00, +1,1,4848,2026,1,1,,0,,,7,21,24,7/21/26 23:00, +1,1,4849,2026,1,1,,0,,,7,22,1,7/22/26 0:00, +1,1,4850,2026,1,1,,0,,,7,22,2,7/22/26 1:00, +1,1,4851,2026,1,1,,0,,,7,22,3,7/22/26 2:00, +1,1,4852,2026,1,1,,0,,,7,22,4,7/22/26 3:00, +1,1,4853,2026,1,1,,0,,,7,22,5,7/22/26 4:00, +1,1,4854,2026,1,1,,0,,,7,22,6,7/22/26 5:00, +1,1,4855,2026,1,1,,0,,,7,22,7,7/22/26 6:00, +1,1,4856,2026,1,1,,0,,,7,22,8,7/22/26 7:00, +1,1,4857,2026,1,1,,0,,,7,22,9,7/22/26 8:00, +1,1,4858,2026,1,1,,0,,,7,22,10,7/22/26 9:00, +1,1,4859,2026,1,1,,0,,,7,22,11,7/22/26 10:00, +1,1,4860,2026,1,1,,0,,,7,22,12,7/22/26 11:00, +1,1,4861,2026,1,1,,0,,,7,22,13,7/22/26 12:00, +1,1,4862,2026,1,1,,0,,,7,22,14,7/22/26 13:00, +1,1,4863,2026,1,1,,0,,,7,22,15,7/22/26 14:00, +1,1,4864,2026,1,1,,0,,,7,22,16,7/22/26 15:00, +1,1,4865,2026,1,1,,0,,,7,22,17,7/22/26 16:00, +1,1,4866,2026,1,1,,0,,,7,22,18,7/22/26 17:00, +1,1,4867,2026,1,1,,0,,,7,22,19,7/22/26 18:00, +1,1,4868,2026,1,1,,0,,,7,22,20,7/22/26 19:00, +1,1,4869,2026,1,1,,0,,,7,22,21,7/22/26 20:00, +1,1,4870,2026,1,1,,0,,,7,22,22,7/22/26 21:00, +1,1,4871,2026,1,1,,0,,,7,22,23,7/22/26 22:00, +1,1,4872,2026,1,1,,0,,,7,22,24,7/22/26 23:00, +1,1,4873,2026,1,1,,0,,,7,23,1,7/23/26 0:00, +1,1,4874,2026,1,1,,0,,,7,23,2,7/23/26 1:00, +1,1,4875,2026,1,1,,0,,,7,23,3,7/23/26 2:00, +1,1,4876,2026,1,1,,0,,,7,23,4,7/23/26 3:00, +1,1,4877,2026,1,1,,0,,,7,23,5,7/23/26 4:00, +1,1,4878,2026,1,1,,0,,,7,23,6,7/23/26 5:00, +1,1,4879,2026,1,1,,0,,,7,23,7,7/23/26 6:00, +1,1,4880,2026,1,1,,0,,,7,23,8,7/23/26 7:00, +1,1,4881,2026,1,1,,0,,,7,23,9,7/23/26 8:00, +1,1,4882,2026,1,1,,0,,,7,23,10,7/23/26 9:00, +1,1,4883,2026,1,1,,0,,,7,23,11,7/23/26 10:00, +1,1,4884,2026,1,1,,0,,,7,23,12,7/23/26 11:00, +1,1,4885,2026,1,1,,0,,,7,23,13,7/23/26 12:00, +1,1,4886,2026,1,1,,0,,,7,23,14,7/23/26 13:00, +1,1,4887,2026,1,1,,0,,,7,23,15,7/23/26 14:00, +1,1,4888,2026,1,1,,0,,,7,23,16,7/23/26 15:00, +1,1,4889,2026,1,1,,0,,,7,23,17,7/23/26 16:00, +1,1,4890,2026,1,1,,0,,,7,23,18,7/23/26 17:00, +1,1,4891,2026,1,1,,0,,,7,23,19,7/23/26 18:00, +1,1,4892,2026,1,1,,0,,,7,23,20,7/23/26 19:00, +1,1,4893,2026,1,1,,0,,,7,23,21,7/23/26 20:00, +1,1,4894,2026,1,1,,0,,,7,23,22,7/23/26 21:00, +1,1,4895,2026,1,1,,0,,,7,23,23,7/23/26 22:00, +1,1,4896,2026,1,1,,0,,,7,23,24,7/23/26 23:00, +1,1,4897,2026,1,1,,0,,,7,24,1,7/24/26 0:00, +1,1,4898,2026,1,1,,0,,,7,24,2,7/24/26 1:00, +1,1,4899,2026,1,1,,0,,,7,24,3,7/24/26 2:00, +1,1,4900,2026,1,1,,0,,,7,24,4,7/24/26 3:00, +1,1,4901,2026,1,1,,0,,,7,24,5,7/24/26 4:00, +1,1,4902,2026,1,1,,0,,,7,24,6,7/24/26 5:00, +1,1,4903,2026,1,1,,0,,,7,24,7,7/24/26 6:00, +1,1,4904,2026,1,1,,0,,,7,24,8,7/24/26 7:00, +1,1,4905,2026,1,1,,0,,,7,24,9,7/24/26 8:00, +1,1,4906,2026,1,1,,0,,,7,24,10,7/24/26 9:00, +1,1,4907,2026,1,1,,0,,,7,24,11,7/24/26 10:00, +1,1,4908,2026,1,1,,0,,,7,24,12,7/24/26 11:00, +1,1,4909,2026,1,1,,0,,,7,24,13,7/24/26 12:00, +1,1,4910,2026,1,1,,0,,,7,24,14,7/24/26 13:00, +1,1,4911,2026,1,1,,0,,,7,24,15,7/24/26 14:00, +1,1,4912,2026,1,1,,0,,,7,24,16,7/24/26 15:00, +1,1,4913,2026,1,1,,0,,,7,24,17,7/24/26 16:00, +1,1,4914,2026,1,1,,0,,,7,24,18,7/24/26 17:00, +1,1,4915,2026,1,1,,0,,,7,24,19,7/24/26 18:00, +1,1,4916,2026,1,1,,0,,,7,24,20,7/24/26 19:00, +1,1,4917,2026,1,1,,0,,,7,24,21,7/24/26 20:00, +1,1,4918,2026,1,1,,0,,,7,24,22,7/24/26 21:00, +1,1,4919,2026,1,1,,0,,,7,24,23,7/24/26 22:00, +1,1,4920,2026,1,1,,0,,,7,24,24,7/24/26 23:00, +1,1,4921,2026,1,1,,0,,,7,25,1,7/25/26 0:00, +1,1,4922,2026,1,1,,0,,,7,25,2,7/25/26 1:00, +1,1,4923,2026,1,1,,0,,,7,25,3,7/25/26 2:00, +1,1,4924,2026,1,1,,0,,,7,25,4,7/25/26 3:00, +1,1,4925,2026,1,1,,0,,,7,25,5,7/25/26 4:00, +1,1,4926,2026,1,1,,0,,,7,25,6,7/25/26 5:00, +1,1,4927,2026,1,1,,0,,,7,25,7,7/25/26 6:00, +1,1,4928,2026,1,1,,0,,,7,25,8,7/25/26 7:00, +1,1,4929,2026,1,1,,0,,,7,25,9,7/25/26 8:00, +1,1,4930,2026,1,1,,0,,,7,25,10,7/25/26 9:00, +1,1,4931,2026,1,1,,0,,,7,25,11,7/25/26 10:00, +1,1,4932,2026,1,1,,0,,,7,25,12,7/25/26 11:00, +1,1,4933,2026,1,1,,0,,,7,25,13,7/25/26 12:00, +1,1,4934,2026,1,1,,0,,,7,25,14,7/25/26 13:00, +1,1,4935,2026,1,1,,0,,,7,25,15,7/25/26 14:00, +1,1,4936,2026,1,1,,0,,,7,25,16,7/25/26 15:00, +1,1,4937,2026,1,1,,0,,,7,25,17,7/25/26 16:00, +1,1,4938,2026,1,1,,0,,,7,25,18,7/25/26 17:00, +1,1,4939,2026,1,1,,0,,,7,25,19,7/25/26 18:00, +1,1,4940,2026,1,1,,0,,,7,25,20,7/25/26 19:00, +1,1,4941,2026,1,1,,0,,,7,25,21,7/25/26 20:00, +1,1,4942,2026,1,1,,0,,,7,25,22,7/25/26 21:00, +1,1,4943,2026,1,1,,0,,,7,25,23,7/25/26 22:00, +1,1,4944,2026,1,1,,0,,,7,25,24,7/25/26 23:00, +1,1,4945,2026,1,1,,0,,,7,26,1,7/26/26 0:00, +1,1,4946,2026,1,1,,0,,,7,26,2,7/26/26 1:00, +1,1,4947,2026,1,1,,0,,,7,26,3,7/26/26 2:00, +1,1,4948,2026,1,1,,0,,,7,26,4,7/26/26 3:00, +1,1,4949,2026,1,1,,0,,,7,26,5,7/26/26 4:00, +1,1,4950,2026,1,1,,0,,,7,26,6,7/26/26 5:00, +1,1,4951,2026,1,1,,0,,,7,26,7,7/26/26 6:00, +1,1,4952,2026,1,1,,0,,,7,26,8,7/26/26 7:00, +1,1,4953,2026,1,1,,0,,,7,26,9,7/26/26 8:00, +1,1,4954,2026,1,1,,0,,,7,26,10,7/26/26 9:00, +1,1,4955,2026,1,1,,0,,,7,26,11,7/26/26 10:00, +1,1,4956,2026,1,1,,0,,,7,26,12,7/26/26 11:00, +1,1,4957,2026,1,1,,0,,,7,26,13,7/26/26 12:00, +1,1,4958,2026,1,1,,0,,,7,26,14,7/26/26 13:00, +1,1,4959,2026,1,1,,0,,,7,26,15,7/26/26 14:00, +1,1,4960,2026,1,1,,0,,,7,26,16,7/26/26 15:00, +1,1,4961,2026,1,1,,0,,,7,26,17,7/26/26 16:00, +1,1,4962,2026,1,1,,0,,,7,26,18,7/26/26 17:00, +1,1,4963,2026,1,1,,0,,,7,26,19,7/26/26 18:00, +1,1,4964,2026,1,1,,0,,,7,26,20,7/26/26 19:00, +1,1,4965,2026,1,1,,0,,,7,26,21,7/26/26 20:00, +1,1,4966,2026,1,1,,0,,,7,26,22,7/26/26 21:00, +1,1,4967,2026,1,1,,0,,,7,26,23,7/26/26 22:00, +1,1,4968,2026,1,1,,0,,,7,26,24,7/26/26 23:00, +1,1,4969,2026,1,1,,0,,,7,27,1,7/27/26 0:00, +1,1,4970,2026,1,1,,0,,,7,27,2,7/27/26 1:00, +1,1,4971,2026,1,1,,0,,,7,27,3,7/27/26 2:00, +1,1,4972,2026,1,1,,0,,,7,27,4,7/27/26 3:00, +1,1,4973,2026,1,1,,0,,,7,27,5,7/27/26 4:00, +1,1,4974,2026,1,1,,0,,,7,27,6,7/27/26 5:00, +1,1,4975,2026,1,1,,0,,,7,27,7,7/27/26 6:00, +1,1,4976,2026,1,1,,0,,,7,27,8,7/27/26 7:00, +1,1,4977,2026,1,1,,0,,,7,27,9,7/27/26 8:00, +1,1,4978,2026,1,1,,0,,,7,27,10,7/27/26 9:00, +1,1,4979,2026,1,1,,0,,,7,27,11,7/27/26 10:00, +1,1,4980,2026,1,1,,0,,,7,27,12,7/27/26 11:00, +1,1,4981,2026,1,1,,0,,,7,27,13,7/27/26 12:00, +1,1,4982,2026,1,1,,0,,,7,27,14,7/27/26 13:00, +1,1,4983,2026,1,1,,0,,,7,27,15,7/27/26 14:00, +1,1,4984,2026,1,1,,0,,,7,27,16,7/27/26 15:00, +1,1,4985,2026,1,1,,0,,,7,27,17,7/27/26 16:00, +1,1,4986,2026,1,1,,0,,,7,27,18,7/27/26 17:00, +1,1,4987,2026,1,1,,0,,,7,27,19,7/27/26 18:00, +1,1,4988,2026,1,1,,0,,,7,27,20,7/27/26 19:00, +1,1,4989,2026,1,1,,0,,,7,27,21,7/27/26 20:00, +1,1,4990,2026,1,1,,0,,,7,27,22,7/27/26 21:00, +1,1,4991,2026,1,1,,0,,,7,27,23,7/27/26 22:00, +1,1,4992,2026,1,1,,0,,,7,27,24,7/27/26 23:00, +1,1,4993,2026,1,1,,0,,,7,28,1,7/28/26 0:00, +1,1,4994,2026,1,1,,0,,,7,28,2,7/28/26 1:00, +1,1,4995,2026,1,1,,0,,,7,28,3,7/28/26 2:00, +1,1,4996,2026,1,1,,0,,,7,28,4,7/28/26 3:00, +1,1,4997,2026,1,1,,0,,,7,28,5,7/28/26 4:00, +1,1,4998,2026,1,1,,0,,,7,28,6,7/28/26 5:00, +1,1,4999,2026,1,1,,0,,,7,28,7,7/28/26 6:00, +1,1,5000,2026,1,1,,0,,,7,28,8,7/28/26 7:00, +1,1,5001,2026,1,1,,0,,,7,28,9,7/28/26 8:00, +1,1,5002,2026,1,1,,0,,,7,28,10,7/28/26 9:00, +1,1,5003,2026,1,1,,0,,,7,28,11,7/28/26 10:00, +1,1,5004,2026,1,1,,0,,,7,28,12,7/28/26 11:00, +1,1,5005,2026,1,1,,0,,,7,28,13,7/28/26 12:00, +1,1,5006,2026,1,1,,0,,,7,28,14,7/28/26 13:00, +1,1,5007,2026,1,1,,0,,,7,28,15,7/28/26 14:00, +1,1,5008,2026,1,1,,0,,,7,28,16,7/28/26 15:00, +1,1,5009,2026,1,1,,0,,,7,28,17,7/28/26 16:00, +1,1,5010,2026,1,1,,0,,,7,28,18,7/28/26 17:00, +1,1,5011,2026,1,1,,0,,,7,28,19,7/28/26 18:00, +1,1,5012,2026,1,1,,0,,,7,28,20,7/28/26 19:00, +1,1,5013,2026,1,1,,0,,,7,28,21,7/28/26 20:00, +1,1,5014,2026,1,1,,0,,,7,28,22,7/28/26 21:00, +1,1,5015,2026,1,1,,0,,,7,28,23,7/28/26 22:00, +1,1,5016,2026,1,1,,0,,,7,28,24,7/28/26 23:00, +1,1,5017,2026,1,1,,0,,,7,29,1,7/29/26 0:00, +1,1,5018,2026,1,1,,0,,,7,29,2,7/29/26 1:00, +1,1,5019,2026,1,1,,0,,,7,29,3,7/29/26 2:00, +1,1,5020,2026,1,1,,0,,,7,29,4,7/29/26 3:00, +1,1,5021,2026,1,1,,0,,,7,29,5,7/29/26 4:00, +1,1,5022,2026,1,1,,0,,,7,29,6,7/29/26 5:00, +1,1,5023,2026,1,1,,0,,,7,29,7,7/29/26 6:00, +1,1,5024,2026,1,1,,0,,,7,29,8,7/29/26 7:00, +1,1,5025,2026,1,1,,0,,,7,29,9,7/29/26 8:00, +1,1,5026,2026,1,1,,0,,,7,29,10,7/29/26 9:00, +1,1,5027,2026,1,1,,0,,,7,29,11,7/29/26 10:00, +1,1,5028,2026,1,1,,0,,,7,29,12,7/29/26 11:00, +1,1,5029,2026,1,1,,0,,,7,29,13,7/29/26 12:00, +1,1,5030,2026,1,1,,0,,,7,29,14,7/29/26 13:00, +1,1,5031,2026,1,1,,0,,,7,29,15,7/29/26 14:00, +1,1,5032,2026,1,1,,0,,,7,29,16,7/29/26 15:00, +1,1,5033,2026,1,1,,0,,,7,29,17,7/29/26 16:00, +1,1,5034,2026,1,1,,0,,,7,29,18,7/29/26 17:00, +1,1,5035,2026,1,1,,0,,,7,29,19,7/29/26 18:00, +1,1,5036,2026,1,1,,0,,,7,29,20,7/29/26 19:00, +1,1,5037,2026,1,1,,0,,,7,29,21,7/29/26 20:00, +1,1,5038,2026,1,1,,0,,,7,29,22,7/29/26 21:00, +1,1,5039,2026,1,1,,0,,,7,29,23,7/29/26 22:00, +1,1,5040,2026,1,1,,0,,,7,29,24,7/29/26 23:00, +1,1,5041,2026,1,1,,0,,,7,30,1,7/30/26 0:00, +1,1,5042,2026,1,1,,0,,,7,30,2,7/30/26 1:00, +1,1,5043,2026,1,1,,0,,,7,30,3,7/30/26 2:00, +1,1,5044,2026,1,1,,0,,,7,30,4,7/30/26 3:00, +1,1,5045,2026,1,1,,0,,,7,30,5,7/30/26 4:00, +1,1,5046,2026,1,1,,0,,,7,30,6,7/30/26 5:00, +1,1,5047,2026,1,1,,0,,,7,30,7,7/30/26 6:00, +1,1,5048,2026,1,1,,0,,,7,30,8,7/30/26 7:00, +1,1,5049,2026,1,1,,0,,,7,30,9,7/30/26 8:00, +1,1,5050,2026,1,1,,0,,,7,30,10,7/30/26 9:00, +1,1,5051,2026,1,1,,0,,,7,30,11,7/30/26 10:00, +1,1,5052,2026,1,1,,0,,,7,30,12,7/30/26 11:00, +1,1,5053,2026,1,1,,0,,,7,30,13,7/30/26 12:00, +1,1,5054,2026,1,1,,0,,,7,30,14,7/30/26 13:00, +1,1,5055,2026,1,1,,0,,,7,30,15,7/30/26 14:00, +1,1,5056,2026,1,1,,0,,,7,30,16,7/30/26 15:00, +1,1,5057,2026,1,1,,0,,,7,30,17,7/30/26 16:00, +1,1,5058,2026,1,1,,0,,,7,30,18,7/30/26 17:00, +1,1,5059,2026,1,1,,0,,,7,30,19,7/30/26 18:00, +1,1,5060,2026,1,1,,0,,,7,30,20,7/30/26 19:00, +1,1,5061,2026,1,1,,0,,,7,30,21,7/30/26 20:00, +1,1,5062,2026,1,1,,0,,,7,30,22,7/30/26 21:00, +1,1,5063,2026,1,1,,0,,,7,30,23,7/30/26 22:00, +1,1,5064,2026,1,1,,0,,,7,30,24,7/30/26 23:00, +1,1,5065,2026,1,1,,0,,,7,31,1,7/31/26 0:00, +1,1,5066,2026,1,1,,0,,,7,31,2,7/31/26 1:00, +1,1,5067,2026,1,1,,0,,,7,31,3,7/31/26 2:00, +1,1,5068,2026,1,1,,0,,,7,31,4,7/31/26 3:00, +1,1,5069,2026,1,1,,0,,,7,31,5,7/31/26 4:00, +1,1,5070,2026,1,1,,0,,,7,31,6,7/31/26 5:00, +1,1,5071,2026,1,1,,0,,,7,31,7,7/31/26 6:00, +1,1,5072,2026,1,1,,0,,,7,31,8,7/31/26 7:00, +1,1,5073,2026,1,1,,0,,,7,31,9,7/31/26 8:00, +1,1,5074,2026,1,1,,0,,,7,31,10,7/31/26 9:00, +1,1,5075,2026,1,1,,0,,,7,31,11,7/31/26 10:00, +1,1,5076,2026,1,1,,0,,,7,31,12,7/31/26 11:00, +1,1,5077,2026,1,1,,0,,,7,31,13,7/31/26 12:00, +1,1,5078,2026,1,1,,0,,,7,31,14,7/31/26 13:00, +1,1,5079,2026,1,1,,0,,,7,31,15,7/31/26 14:00, +1,1,5080,2026,1,1,,0,,,7,31,16,7/31/26 15:00, +1,1,5081,2026,1,1,,0,,,7,31,17,7/31/26 16:00, +1,1,5082,2026,1,1,,0,,,7,31,18,7/31/26 17:00, +1,1,5083,2026,1,1,,0,,,7,31,19,7/31/26 18:00, +1,1,5084,2026,1,1,,0,,,7,31,20,7/31/26 19:00, +1,1,5085,2026,1,1,,0,,,7,31,21,7/31/26 20:00, +1,1,5086,2026,1,1,,0,,,7,31,22,7/31/26 21:00, +1,1,5087,2026,1,1,,0,,,7,31,23,7/31/26 22:00, +1,1,5088,2026,1,1,,0,,,7,31,24,7/31/26 23:00, +1,1,5089,2026,1,1,,0,,,8,1,1,8/1/26 0:00, +1,1,5090,2026,1,1,,0,,,8,1,2,8/1/26 1:00, +1,1,5091,2026,1,1,,0,,,8,1,3,8/1/26 2:00, +1,1,5092,2026,1,1,,0,,,8,1,4,8/1/26 3:00, +1,1,5093,2026,1,1,,0,,,8,1,5,8/1/26 4:00, +1,1,5094,2026,1,1,,0,,,8,1,6,8/1/26 5:00, +1,1,5095,2026,1,1,,0,,,8,1,7,8/1/26 6:00, +1,1,5096,2026,1,1,,0,,,8,1,8,8/1/26 7:00, +1,1,5097,2026,1,1,,0,,,8,1,9,8/1/26 8:00, +1,1,5098,2026,1,1,,0,,,8,1,10,8/1/26 9:00, +1,1,5099,2026,1,1,,0,,,8,1,11,8/1/26 10:00, +1,1,5100,2026,1,1,,0,,,8,1,12,8/1/26 11:00, +1,1,5101,2026,1,1,,0,,,8,1,13,8/1/26 12:00, +1,1,5102,2026,1,1,,0,,,8,1,14,8/1/26 13:00, +1,1,5103,2026,1,1,,0,,,8,1,15,8/1/26 14:00, +1,1,5104,2026,1,1,,0,,,8,1,16,8/1/26 15:00, +1,1,5105,2026,1,1,,0,,,8,1,17,8/1/26 16:00, +1,1,5106,2026,1,1,,0,,,8,1,18,8/1/26 17:00, +1,1,5107,2026,1,1,,0,,,8,1,19,8/1/26 18:00, +1,1,5108,2026,1,1,,0,,,8,1,20,8/1/26 19:00, +1,1,5109,2026,1,1,,0,,,8,1,21,8/1/26 20:00, +1,1,5110,2026,1,1,,0,,,8,1,22,8/1/26 21:00, +1,1,5111,2026,1,1,,0,,,8,1,23,8/1/26 22:00, +1,1,5112,2026,1,1,,0,,,8,1,24,8/1/26 23:00, +1,1,5113,2026,1,1,,0,,,8,2,1,8/2/26 0:00, +1,1,5114,2026,1,1,,0,,,8,2,2,8/2/26 1:00, +1,1,5115,2026,1,1,,0,,,8,2,3,8/2/26 2:00, +1,1,5116,2026,1,1,,0,,,8,2,4,8/2/26 3:00, +1,1,5117,2026,1,1,,0,,,8,2,5,8/2/26 4:00, +1,1,5118,2026,1,1,,0,,,8,2,6,8/2/26 5:00, +1,1,5119,2026,1,1,,0,,,8,2,7,8/2/26 6:00, +1,1,5120,2026,1,1,,0,,,8,2,8,8/2/26 7:00, +1,1,5121,2026,1,1,,0,,,8,2,9,8/2/26 8:00, +1,1,5122,2026,1,1,,0,,,8,2,10,8/2/26 9:00, +1,1,5123,2026,1,1,,0,,,8,2,11,8/2/26 10:00, +1,1,5124,2026,1,1,,0,,,8,2,12,8/2/26 11:00, +1,1,5125,2026,1,1,,0,,,8,2,13,8/2/26 12:00, +1,1,5126,2026,1,1,,0,,,8,2,14,8/2/26 13:00, +1,1,5127,2026,1,1,,0,,,8,2,15,8/2/26 14:00, +1,1,5128,2026,1,1,,0,,,8,2,16,8/2/26 15:00, +1,1,5129,2026,1,1,,0,,,8,2,17,8/2/26 16:00, +1,1,5130,2026,1,1,,0,,,8,2,18,8/2/26 17:00, +1,1,5131,2026,1,1,,0,,,8,2,19,8/2/26 18:00, +1,1,5132,2026,1,1,,0,,,8,2,20,8/2/26 19:00, +1,1,5133,2026,1,1,,0,,,8,2,21,8/2/26 20:00, +1,1,5134,2026,1,1,,0,,,8,2,22,8/2/26 21:00, +1,1,5135,2026,1,1,,0,,,8,2,23,8/2/26 22:00, +1,1,5136,2026,1,1,,0,,,8,2,24,8/2/26 23:00, +1,1,5137,2026,1,1,,0,,,8,3,1,8/3/26 0:00, +1,1,5138,2026,1,1,,0,,,8,3,2,8/3/26 1:00, +1,1,5139,2026,1,1,,0,,,8,3,3,8/3/26 2:00, +1,1,5140,2026,1,1,,0,,,8,3,4,8/3/26 3:00, +1,1,5141,2026,1,1,,0,,,8,3,5,8/3/26 4:00, +1,1,5142,2026,1,1,,0,,,8,3,6,8/3/26 5:00, +1,1,5143,2026,1,1,,0,,,8,3,7,8/3/26 6:00, +1,1,5144,2026,1,1,,0,,,8,3,8,8/3/26 7:00, +1,1,5145,2026,1,1,,0,,,8,3,9,8/3/26 8:00, +1,1,5146,2026,1,1,,0,,,8,3,10,8/3/26 9:00, +1,1,5147,2026,1,1,,0,,,8,3,11,8/3/26 10:00, +1,1,5148,2026,1,1,,0,,,8,3,12,8/3/26 11:00, +1,1,5149,2026,1,1,,0,,,8,3,13,8/3/26 12:00, +1,1,5150,2026,1,1,,0,,,8,3,14,8/3/26 13:00, +1,1,5151,2026,1,1,,0,,,8,3,15,8/3/26 14:00, +1,1,5152,2026,1,1,,0,,,8,3,16,8/3/26 15:00, +1,1,5153,2026,1,1,,0,,,8,3,17,8/3/26 16:00, +1,1,5154,2026,1,1,,0,,,8,3,18,8/3/26 17:00, +1,1,5155,2026,1,1,,0,,,8,3,19,8/3/26 18:00, +1,1,5156,2026,1,1,,0,,,8,3,20,8/3/26 19:00, +1,1,5157,2026,1,1,,0,,,8,3,21,8/3/26 20:00, +1,1,5158,2026,1,1,,0,,,8,3,22,8/3/26 21:00, +1,1,5159,2026,1,1,,0,,,8,3,23,8/3/26 22:00, +1,1,5160,2026,1,1,,0,,,8,3,24,8/3/26 23:00, +1,1,5161,2026,1,1,,0,,,8,4,1,8/4/26 0:00, +1,1,5162,2026,1,1,,0,,,8,4,2,8/4/26 1:00, +1,1,5163,2026,1,1,,0,,,8,4,3,8/4/26 2:00, +1,1,5164,2026,1,1,,0,,,8,4,4,8/4/26 3:00, +1,1,5165,2026,1,1,,0,,,8,4,5,8/4/26 4:00, +1,1,5166,2026,1,1,,0,,,8,4,6,8/4/26 5:00, +1,1,5167,2026,1,1,,0,,,8,4,7,8/4/26 6:00, +1,1,5168,2026,1,1,,0,,,8,4,8,8/4/26 7:00, +1,1,5169,2026,1,1,,0,,,8,4,9,8/4/26 8:00, +1,1,5170,2026,1,1,,0,,,8,4,10,8/4/26 9:00, +1,1,5171,2026,1,1,,0,,,8,4,11,8/4/26 10:00, +1,1,5172,2026,1,1,,0,,,8,4,12,8/4/26 11:00, +1,1,5173,2026,1,1,,0,,,8,4,13,8/4/26 12:00, +1,1,5174,2026,1,1,,0,,,8,4,14,8/4/26 13:00, +1,1,5175,2026,1,1,,0,,,8,4,15,8/4/26 14:00, +1,1,5176,2026,1,1,,0,,,8,4,16,8/4/26 15:00, +1,1,5177,2026,1,1,,0,,,8,4,17,8/4/26 16:00, +1,1,5178,2026,1,1,,0,,,8,4,18,8/4/26 17:00, +1,1,5179,2026,1,1,,0,,,8,4,19,8/4/26 18:00, +1,1,5180,2026,1,1,,0,,,8,4,20,8/4/26 19:00, +1,1,5181,2026,1,1,,0,,,8,4,21,8/4/26 20:00, +1,1,5182,2026,1,1,,0,,,8,4,22,8/4/26 21:00, +1,1,5183,2026,1,1,,0,,,8,4,23,8/4/26 22:00, +1,1,5184,2026,1,1,,0,,,8,4,24,8/4/26 23:00, +1,1,5185,2026,1,1,,0,,,8,5,1,8/5/26 0:00, +1,1,5186,2026,1,1,,0,,,8,5,2,8/5/26 1:00, +1,1,5187,2026,1,1,,0,,,8,5,3,8/5/26 2:00, +1,1,5188,2026,1,1,,0,,,8,5,4,8/5/26 3:00, +1,1,5189,2026,1,1,,0,,,8,5,5,8/5/26 4:00, +1,1,5190,2026,1,1,,0,,,8,5,6,8/5/26 5:00, +1,1,5191,2026,1,1,,0,,,8,5,7,8/5/26 6:00, +1,1,5192,2026,1,1,,0,,,8,5,8,8/5/26 7:00, +1,1,5193,2026,1,1,,0,,,8,5,9,8/5/26 8:00, +1,1,5194,2026,1,1,,0,,,8,5,10,8/5/26 9:00, +1,1,5195,2026,1,1,,0,,,8,5,11,8/5/26 10:00, +1,1,5196,2026,1,1,,0,,,8,5,12,8/5/26 11:00, +1,1,5197,2026,1,1,,0,,,8,5,13,8/5/26 12:00, +1,1,5198,2026,1,1,,0,,,8,5,14,8/5/26 13:00, +1,1,5199,2026,1,1,,0,,,8,5,15,8/5/26 14:00, +1,1,5200,2026,1,1,,0,,,8,5,16,8/5/26 15:00, +1,1,5201,2026,1,1,,0,,,8,5,17,8/5/26 16:00, +1,1,5202,2026,1,1,,0,,,8,5,18,8/5/26 17:00, +1,1,5203,2026,1,1,,0,,,8,5,19,8/5/26 18:00, +1,1,5204,2026,1,1,,0,,,8,5,20,8/5/26 19:00, +1,1,5205,2026,1,1,,0,,,8,5,21,8/5/26 20:00, +1,1,5206,2026,1,1,,0,,,8,5,22,8/5/26 21:00, +1,1,5207,2026,1,1,,0,,,8,5,23,8/5/26 22:00, +1,1,5208,2026,1,1,,0,,,8,5,24,8/5/26 23:00, +1,1,5209,2026,1,1,,0,,,8,6,1,8/6/26 0:00, +1,1,5210,2026,1,1,,0,,,8,6,2,8/6/26 1:00, +1,1,5211,2026,1,1,,0,,,8,6,3,8/6/26 2:00, +1,1,5212,2026,1,1,,0,,,8,6,4,8/6/26 3:00, +1,1,5213,2026,1,1,,0,,,8,6,5,8/6/26 4:00, +1,1,5214,2026,1,1,,0,,,8,6,6,8/6/26 5:00, +1,1,5215,2026,1,1,,0,,,8,6,7,8/6/26 6:00, +1,1,5216,2026,1,1,,0,,,8,6,8,8/6/26 7:00, +1,1,5217,2026,1,1,,0,,,8,6,9,8/6/26 8:00, +1,1,5218,2026,1,1,,0,,,8,6,10,8/6/26 9:00, +1,1,5219,2026,1,1,,0,,,8,6,11,8/6/26 10:00, +1,1,5220,2026,1,1,,0,,,8,6,12,8/6/26 11:00, +1,1,5221,2026,1,1,,0,,,8,6,13,8/6/26 12:00, +1,1,5222,2026,1,1,,0,,,8,6,14,8/6/26 13:00, +1,1,5223,2026,1,1,,0,,,8,6,15,8/6/26 14:00, +1,1,5224,2026,1,1,,0,,,8,6,16,8/6/26 15:00, +1,1,5225,2026,1,1,,0,,,8,6,17,8/6/26 16:00, +1,1,5226,2026,1,1,,0,,,8,6,18,8/6/26 17:00, +1,1,5227,2026,1,1,,0,,,8,6,19,8/6/26 18:00, +1,1,5228,2026,1,1,,0,,,8,6,20,8/6/26 19:00, +1,1,5229,2026,1,1,,0,,,8,6,21,8/6/26 20:00, +1,1,5230,2026,1,1,,0,,,8,6,22,8/6/26 21:00, +1,1,5231,2026,1,1,,0,,,8,6,23,8/6/26 22:00, +1,1,5232,2026,1,1,,0,,,8,6,24,8/6/26 23:00, +1,1,5233,2026,1,1,,0,,,8,7,1,8/7/26 0:00, +1,1,5234,2026,1,1,,0,,,8,7,2,8/7/26 1:00, +1,1,5235,2026,1,1,,0,,,8,7,3,8/7/26 2:00, +1,1,5236,2026,1,1,,0,,,8,7,4,8/7/26 3:00, +1,1,5237,2026,1,1,,0,,,8,7,5,8/7/26 4:00, +1,1,5238,2026,1,1,,0,,,8,7,6,8/7/26 5:00, +1,1,5239,2026,1,1,,0,,,8,7,7,8/7/26 6:00, +1,1,5240,2026,1,1,,0,,,8,7,8,8/7/26 7:00, +1,1,5241,2026,1,1,,0,,,8,7,9,8/7/26 8:00, +1,1,5242,2026,1,1,,0,,,8,7,10,8/7/26 9:00, +1,1,5243,2026,1,1,,0,,,8,7,11,8/7/26 10:00, +1,1,5244,2026,1,1,,0,,,8,7,12,8/7/26 11:00, +1,1,5245,2026,1,1,,0,,,8,7,13,8/7/26 12:00, +1,1,5246,2026,1,1,,0,,,8,7,14,8/7/26 13:00, +1,1,5247,2026,1,1,,0,,,8,7,15,8/7/26 14:00, +1,1,5248,2026,1,1,,0,,,8,7,16,8/7/26 15:00, +1,1,5249,2026,1,1,,0,,,8,7,17,8/7/26 16:00, +1,1,5250,2026,1,1,,0,,,8,7,18,8/7/26 17:00, +1,1,5251,2026,1,1,,0,,,8,7,19,8/7/26 18:00, +1,1,5252,2026,1,1,,0,,,8,7,20,8/7/26 19:00, +1,1,5253,2026,1,1,,0,,,8,7,21,8/7/26 20:00, +1,1,5254,2026,1,1,,0,,,8,7,22,8/7/26 21:00, +1,1,5255,2026,1,1,,0,,,8,7,23,8/7/26 22:00, +1,1,5256,2026,1,1,,0,,,8,7,24,8/7/26 23:00, +1,1,5257,2026,1,1,,0,,,8,8,1,8/8/26 0:00, +1,1,5258,2026,1,1,,0,,,8,8,2,8/8/26 1:00, +1,1,5259,2026,1,1,,0,,,8,8,3,8/8/26 2:00, +1,1,5260,2026,1,1,,0,,,8,8,4,8/8/26 3:00, +1,1,5261,2026,1,1,,0,,,8,8,5,8/8/26 4:00, +1,1,5262,2026,1,1,,0,,,8,8,6,8/8/26 5:00, +1,1,5263,2026,1,1,,0,,,8,8,7,8/8/26 6:00, +1,1,5264,2026,1,1,,0,,,8,8,8,8/8/26 7:00, +1,1,5265,2026,1,1,,0,,,8,8,9,8/8/26 8:00, +1,1,5266,2026,1,1,,0,,,8,8,10,8/8/26 9:00, +1,1,5267,2026,1,1,,0,,,8,8,11,8/8/26 10:00, +1,1,5268,2026,1,1,,0,,,8,8,12,8/8/26 11:00, +1,1,5269,2026,1,1,,0,,,8,8,13,8/8/26 12:00, +1,1,5270,2026,1,1,,0,,,8,8,14,8/8/26 13:00, +1,1,5271,2026,1,1,,0,,,8,8,15,8/8/26 14:00, +1,1,5272,2026,1,1,,0,,,8,8,16,8/8/26 15:00, +1,1,5273,2026,1,1,,0,,,8,8,17,8/8/26 16:00, +1,1,5274,2026,1,1,,0,,,8,8,18,8/8/26 17:00, +1,1,5275,2026,1,1,,0,,,8,8,19,8/8/26 18:00, +1,1,5276,2026,1,1,,0,,,8,8,20,8/8/26 19:00, +1,1,5277,2026,1,1,,0,,,8,8,21,8/8/26 20:00, +1,1,5278,2026,1,1,,0,,,8,8,22,8/8/26 21:00, +1,1,5279,2026,1,1,,0,,,8,8,23,8/8/26 22:00, +1,1,5280,2026,1,1,,0,,,8,8,24,8/8/26 23:00, +1,1,5281,2026,1,1,,0,,,8,9,1,8/9/26 0:00, +1,1,5282,2026,1,1,,0,,,8,9,2,8/9/26 1:00, +1,1,5283,2026,1,1,,0,,,8,9,3,8/9/26 2:00, +1,1,5284,2026,1,1,,0,,,8,9,4,8/9/26 3:00, +1,1,5285,2026,1,1,,0,,,8,9,5,8/9/26 4:00, +1,1,5286,2026,1,1,,0,,,8,9,6,8/9/26 5:00, +1,1,5287,2026,1,1,,0,,,8,9,7,8/9/26 6:00, +1,1,5288,2026,1,1,,0,,,8,9,8,8/9/26 7:00, +1,1,5289,2026,1,1,,0,,,8,9,9,8/9/26 8:00, +1,1,5290,2026,1,1,,0,,,8,9,10,8/9/26 9:00, +1,1,5291,2026,1,1,,0,,,8,9,11,8/9/26 10:00, +1,1,5292,2026,1,1,,0,,,8,9,12,8/9/26 11:00, +1,1,5293,2026,1,1,,0,,,8,9,13,8/9/26 12:00, +1,1,5294,2026,1,1,,0,,,8,9,14,8/9/26 13:00, +1,1,5295,2026,1,1,,0,,,8,9,15,8/9/26 14:00, +1,1,5296,2026,1,1,,0,,,8,9,16,8/9/26 15:00, +1,1,5297,2026,1,1,,0,,,8,9,17,8/9/26 16:00, +1,1,5298,2026,1,1,,0,,,8,9,18,8/9/26 17:00, +1,1,5299,2026,1,1,,0,,,8,9,19,8/9/26 18:00, +1,1,5300,2026,1,1,,0,,,8,9,20,8/9/26 19:00, +1,1,5301,2026,1,1,,0,,,8,9,21,8/9/26 20:00, +1,1,5302,2026,1,1,,0,,,8,9,22,8/9/26 21:00, +1,1,5303,2026,1,1,,0,,,8,9,23,8/9/26 22:00, +1,1,5304,2026,1,1,,0,,,8,9,24,8/9/26 23:00, +1,1,5305,2026,1,1,,0,,,8,10,1,8/10/26 0:00, +1,1,5306,2026,1,1,,0,,,8,10,2,8/10/26 1:00, +1,1,5307,2026,1,1,,0,,,8,10,3,8/10/26 2:00, +1,1,5308,2026,1,1,,0,,,8,10,4,8/10/26 3:00, +1,1,5309,2026,1,1,,0,,,8,10,5,8/10/26 4:00, +1,1,5310,2026,1,1,,0,,,8,10,6,8/10/26 5:00, +1,1,5311,2026,1,1,,0,,,8,10,7,8/10/26 6:00, +1,1,5312,2026,1,1,,0,,,8,10,8,8/10/26 7:00, +1,1,5313,2026,1,1,,0,,,8,10,9,8/10/26 8:00, +1,1,5314,2026,1,1,,0,,,8,10,10,8/10/26 9:00, +1,1,5315,2026,1,1,,0,,,8,10,11,8/10/26 10:00, +1,1,5316,2026,1,1,,0,,,8,10,12,8/10/26 11:00, +1,1,5317,2026,1,1,,0,,,8,10,13,8/10/26 12:00, +1,1,5318,2026,1,1,,0,,,8,10,14,8/10/26 13:00, +1,1,5319,2026,1,1,,0,,,8,10,15,8/10/26 14:00, +1,1,5320,2026,1,1,,0,,,8,10,16,8/10/26 15:00, +1,1,5321,2026,1,1,,0,,,8,10,17,8/10/26 16:00, +1,1,5322,2026,1,1,,0,,,8,10,18,8/10/26 17:00, +1,1,5323,2026,1,1,,0,,,8,10,19,8/10/26 18:00, +1,1,5324,2026,1,1,,0,,,8,10,20,8/10/26 19:00, +1,1,5325,2026,1,1,,0,,,8,10,21,8/10/26 20:00, +1,1,5326,2026,1,1,,0,,,8,10,22,8/10/26 21:00, +1,1,5327,2026,1,1,,0,,,8,10,23,8/10/26 22:00, +1,1,5328,2026,1,1,,0,,,8,10,24,8/10/26 23:00, +1,1,5329,2026,1,1,,0,,,8,11,1,8/11/26 0:00, +1,1,5330,2026,1,1,,0,,,8,11,2,8/11/26 1:00, +1,1,5331,2026,1,1,,0,,,8,11,3,8/11/26 2:00, +1,1,5332,2026,1,1,,0,,,8,11,4,8/11/26 3:00, +1,1,5333,2026,1,1,,0,,,8,11,5,8/11/26 4:00, +1,1,5334,2026,1,1,,0,,,8,11,6,8/11/26 5:00, +1,1,5335,2026,1,1,,0,,,8,11,7,8/11/26 6:00, +1,1,5336,2026,1,1,,0,,,8,11,8,8/11/26 7:00, +1,1,5337,2026,1,1,,0,,,8,11,9,8/11/26 8:00, +1,1,5338,2026,1,1,,0,,,8,11,10,8/11/26 9:00, +1,1,5339,2026,1,1,,0,,,8,11,11,8/11/26 10:00, +1,1,5340,2026,1,1,,0,,,8,11,12,8/11/26 11:00, +1,1,5341,2026,1,1,,0,,,8,11,13,8/11/26 12:00, +1,1,5342,2026,1,1,,0,,,8,11,14,8/11/26 13:00, +1,1,5343,2026,1,1,,0,,,8,11,15,8/11/26 14:00, +1,1,5344,2026,1,1,,0,,,8,11,16,8/11/26 15:00, +1,1,5345,2026,1,1,,0,,,8,11,17,8/11/26 16:00, +1,1,5346,2026,1,1,,0,,,8,11,18,8/11/26 17:00, +1,1,5347,2026,1,1,,0,,,8,11,19,8/11/26 18:00, +1,1,5348,2026,1,1,,0,,,8,11,20,8/11/26 19:00, +1,1,5349,2026,1,1,,0,,,8,11,21,8/11/26 20:00, +1,1,5350,2026,1,1,,0,,,8,11,22,8/11/26 21:00, +1,1,5351,2026,1,1,,0,,,8,11,23,8/11/26 22:00, +1,1,5352,2026,1,1,,0,,,8,11,24,8/11/26 23:00, +1,1,5353,2026,1,1,,0,,,8,12,1,8/12/26 0:00, +1,1,5354,2026,1,1,,0,,,8,12,2,8/12/26 1:00, +1,1,5355,2026,1,1,,0,,,8,12,3,8/12/26 2:00, +1,1,5356,2026,1,1,,0,,,8,12,4,8/12/26 3:00, +1,1,5357,2026,1,1,,0,,,8,12,5,8/12/26 4:00, +1,1,5358,2026,1,1,,0,,,8,12,6,8/12/26 5:00, +1,1,5359,2026,1,1,,0,,,8,12,7,8/12/26 6:00, +1,1,5360,2026,1,1,,0,,,8,12,8,8/12/26 7:00, +1,1,5361,2026,1,1,,0,,,8,12,9,8/12/26 8:00, +1,1,5362,2026,1,1,,0,,,8,12,10,8/12/26 9:00, +1,1,5363,2026,1,1,,0,,,8,12,11,8/12/26 10:00, +1,1,5364,2026,1,1,,0,,,8,12,12,8/12/26 11:00, +1,1,5365,2026,1,1,,0,,,8,12,13,8/12/26 12:00, +1,1,5366,2026,1,1,,0,,,8,12,14,8/12/26 13:00, +1,1,5367,2026,1,1,,0,,,8,12,15,8/12/26 14:00, +1,1,5368,2026,1,1,,0,,,8,12,16,8/12/26 15:00, +1,1,5369,2026,1,1,,0,,,8,12,17,8/12/26 16:00, +1,1,5370,2026,1,1,,0,,,8,12,18,8/12/26 17:00, +1,1,5371,2026,1,1,,0,,,8,12,19,8/12/26 18:00, +1,1,5372,2026,1,1,,0,,,8,12,20,8/12/26 19:00, +1,1,5373,2026,1,1,,0,,,8,12,21,8/12/26 20:00, +1,1,5374,2026,1,1,,0,,,8,12,22,8/12/26 21:00, +1,1,5375,2026,1,1,,0,,,8,12,23,8/12/26 22:00, +1,1,5376,2026,1,1,,0,,,8,12,24,8/12/26 23:00, +1,1,5377,2026,1,1,,0,,,8,13,1,8/13/26 0:00, +1,1,5378,2026,1,1,,0,,,8,13,2,8/13/26 1:00, +1,1,5379,2026,1,1,,0,,,8,13,3,8/13/26 2:00, +1,1,5380,2026,1,1,,0,,,8,13,4,8/13/26 3:00, +1,1,5381,2026,1,1,,0,,,8,13,5,8/13/26 4:00, +1,1,5382,2026,1,1,,0,,,8,13,6,8/13/26 5:00, +1,1,5383,2026,1,1,,0,,,8,13,7,8/13/26 6:00, +1,1,5384,2026,1,1,,0,,,8,13,8,8/13/26 7:00, +1,1,5385,2026,1,1,,0,,,8,13,9,8/13/26 8:00, +1,1,5386,2026,1,1,,0,,,8,13,10,8/13/26 9:00, +1,1,5387,2026,1,1,,0,,,8,13,11,8/13/26 10:00, +1,1,5388,2026,1,1,,0,,,8,13,12,8/13/26 11:00, +1,1,5389,2026,1,1,,0,,,8,13,13,8/13/26 12:00, +1,1,5390,2026,1,1,,0,,,8,13,14,8/13/26 13:00, +1,1,5391,2026,1,1,,0,,,8,13,15,8/13/26 14:00, +1,1,5392,2026,1,1,,0,,,8,13,16,8/13/26 15:00, +1,1,5393,2026,1,1,,0,,,8,13,17,8/13/26 16:00, +1,1,5394,2026,1,1,,0,,,8,13,18,8/13/26 17:00, +1,1,5395,2026,1,1,,0,,,8,13,19,8/13/26 18:00, +1,1,5396,2026,1,1,,0,,,8,13,20,8/13/26 19:00, +1,1,5397,2026,1,1,,0,,,8,13,21,8/13/26 20:00, +1,1,5398,2026,1,1,,0,,,8,13,22,8/13/26 21:00, +1,1,5399,2026,1,1,,0,,,8,13,23,8/13/26 22:00, +1,1,5400,2026,1,1,,0,,,8,13,24,8/13/26 23:00, +1,1,5401,2026,1,1,,0,,,8,14,1,8/14/26 0:00, +1,1,5402,2026,1,1,,0,,,8,14,2,8/14/26 1:00, +1,1,5403,2026,1,1,,0,,,8,14,3,8/14/26 2:00, +1,1,5404,2026,1,1,,0,,,8,14,4,8/14/26 3:00, +1,1,5405,2026,1,1,,0,,,8,14,5,8/14/26 4:00, +1,1,5406,2026,1,1,,0,,,8,14,6,8/14/26 5:00, +1,1,5407,2026,1,1,,0,,,8,14,7,8/14/26 6:00, +1,1,5408,2026,1,1,,0,,,8,14,8,8/14/26 7:00, +1,1,5409,2026,1,1,,0,,,8,14,9,8/14/26 8:00, +1,1,5410,2026,1,1,,0,,,8,14,10,8/14/26 9:00, +1,1,5411,2026,1,1,,0,,,8,14,11,8/14/26 10:00, +1,1,5412,2026,1,1,,0,,,8,14,12,8/14/26 11:00, +1,1,5413,2026,1,1,,0,,,8,14,13,8/14/26 12:00, +1,1,5414,2026,1,1,,0,,,8,14,14,8/14/26 13:00, +1,1,5415,2026,1,1,,0,,,8,14,15,8/14/26 14:00, +1,1,5416,2026,1,1,,0,,,8,14,16,8/14/26 15:00, +1,1,5417,2026,1,1,,0,,,8,14,17,8/14/26 16:00, +1,1,5418,2026,1,1,,0,,,8,14,18,8/14/26 17:00, +1,1,5419,2026,1,1,,0,,,8,14,19,8/14/26 18:00, +1,1,5420,2026,1,1,,0,,,8,14,20,8/14/26 19:00, +1,1,5421,2026,1,1,,0,,,8,14,21,8/14/26 20:00, +1,1,5422,2026,1,1,,0,,,8,14,22,8/14/26 21:00, +1,1,5423,2026,1,1,,0,,,8,14,23,8/14/26 22:00, +1,1,5424,2026,1,1,,0,,,8,14,24,8/14/26 23:00, +1,1,5425,2026,1,1,,0,,,8,15,1,8/15/26 0:00, +1,1,5426,2026,1,1,,0,,,8,15,2,8/15/26 1:00, +1,1,5427,2026,1,1,,0,,,8,15,3,8/15/26 2:00, +1,1,5428,2026,1,1,,0,,,8,15,4,8/15/26 3:00, +1,1,5429,2026,1,1,,0,,,8,15,5,8/15/26 4:00, +1,1,5430,2026,1,1,,0,,,8,15,6,8/15/26 5:00, +1,1,5431,2026,1,1,,0,,,8,15,7,8/15/26 6:00, +1,1,5432,2026,1,1,,0,,,8,15,8,8/15/26 7:00, +1,1,5433,2026,1,1,,0,,,8,15,9,8/15/26 8:00, +1,1,5434,2026,1,1,,0,,,8,15,10,8/15/26 9:00, +1,1,5435,2026,1,1,,0,,,8,15,11,8/15/26 10:00, +1,1,5436,2026,1,1,,0,,,8,15,12,8/15/26 11:00, +1,1,5437,2026,1,1,,0,,,8,15,13,8/15/26 12:00, +1,1,5438,2026,1,1,,0,,,8,15,14,8/15/26 13:00, +1,1,5439,2026,1,1,,0,,,8,15,15,8/15/26 14:00, +1,1,5440,2026,1,1,,0,,,8,15,16,8/15/26 15:00, +1,1,5441,2026,1,1,,0,,,8,15,17,8/15/26 16:00, +1,1,5442,2026,1,1,,0,,,8,15,18,8/15/26 17:00, +1,1,5443,2026,1,1,,0,,,8,15,19,8/15/26 18:00, +1,1,5444,2026,1,1,,0,,,8,15,20,8/15/26 19:00, +1,1,5445,2026,1,1,,0,,,8,15,21,8/15/26 20:00, +1,1,5446,2026,1,1,,0,,,8,15,22,8/15/26 21:00, +1,1,5447,2026,1,1,,0,,,8,15,23,8/15/26 22:00, +1,1,5448,2026,1,1,,0,,,8,15,24,8/15/26 23:00, +1,1,5449,2026,1,1,,0,,,8,16,1,8/16/26 0:00, +1,1,5450,2026,1,1,,0,,,8,16,2,8/16/26 1:00, +1,1,5451,2026,1,1,,0,,,8,16,3,8/16/26 2:00, +1,1,5452,2026,1,1,,0,,,8,16,4,8/16/26 3:00, +1,1,5453,2026,1,1,,0,,,8,16,5,8/16/26 4:00, +1,1,5454,2026,1,1,,0,,,8,16,6,8/16/26 5:00, +1,1,5455,2026,1,1,,0,,,8,16,7,8/16/26 6:00, +1,1,5456,2026,1,1,,0,,,8,16,8,8/16/26 7:00, +1,1,5457,2026,1,1,,0,,,8,16,9,8/16/26 8:00, +1,1,5458,2026,1,1,,0,,,8,16,10,8/16/26 9:00, +1,1,5459,2026,1,1,,0,,,8,16,11,8/16/26 10:00, +1,1,5460,2026,1,1,,0,,,8,16,12,8/16/26 11:00, +1,1,5461,2026,1,1,,0,,,8,16,13,8/16/26 12:00, +1,1,5462,2026,1,1,,0,,,8,16,14,8/16/26 13:00, +1,1,5463,2026,1,1,,0,,,8,16,15,8/16/26 14:00, +1,1,5464,2026,1,1,,0,,,8,16,16,8/16/26 15:00, +1,1,5465,2026,1,1,,0,,,8,16,17,8/16/26 16:00, +1,1,5466,2026,1,1,,0,,,8,16,18,8/16/26 17:00, +1,1,5467,2026,1,1,,0,,,8,16,19,8/16/26 18:00, +1,1,5468,2026,1,1,,0,,,8,16,20,8/16/26 19:00, +1,1,5469,2026,1,1,,0,,,8,16,21,8/16/26 20:00, +1,1,5470,2026,1,1,,0,,,8,16,22,8/16/26 21:00, +1,1,5471,2026,1,1,,0,,,8,16,23,8/16/26 22:00, +1,1,5472,2026,1,1,,0,,,8,16,24,8/16/26 23:00, +1,1,5473,2026,1,1,,0,,,8,17,1,8/17/26 0:00, +1,1,5474,2026,1,1,,0,,,8,17,2,8/17/26 1:00, +1,1,5475,2026,1,1,,0,,,8,17,3,8/17/26 2:00, +1,1,5476,2026,1,1,,0,,,8,17,4,8/17/26 3:00, +1,1,5477,2026,1,1,,0,,,8,17,5,8/17/26 4:00, +1,1,5478,2026,1,1,,0,,,8,17,6,8/17/26 5:00, +1,1,5479,2026,1,1,,0,,,8,17,7,8/17/26 6:00, +1,1,5480,2026,1,1,,0,,,8,17,8,8/17/26 7:00, +1,1,5481,2026,1,1,,0,,,8,17,9,8/17/26 8:00, +1,1,5482,2026,1,1,,0,,,8,17,10,8/17/26 9:00, +1,1,5483,2026,1,1,,0,,,8,17,11,8/17/26 10:00, +1,1,5484,2026,1,1,,0,,,8,17,12,8/17/26 11:00, +1,1,5485,2026,1,1,,0,,,8,17,13,8/17/26 12:00, +1,1,5486,2026,1,1,,0,,,8,17,14,8/17/26 13:00, +1,1,5487,2026,1,1,,0,,,8,17,15,8/17/26 14:00, +1,1,5488,2026,1,1,,0,,,8,17,16,8/17/26 15:00, +1,1,5489,2026,1,1,,0,,,8,17,17,8/17/26 16:00, +1,1,5490,2026,1,1,,0,,,8,17,18,8/17/26 17:00, +1,1,5491,2026,1,1,,0,,,8,17,19,8/17/26 18:00, +1,1,5492,2026,1,1,,0,,,8,17,20,8/17/26 19:00, +1,1,5493,2026,1,1,,0,,,8,17,21,8/17/26 20:00, +1,1,5494,2026,1,1,,0,,,8,17,22,8/17/26 21:00, +1,1,5495,2026,1,1,,0,,,8,17,23,8/17/26 22:00, +1,1,5496,2026,1,1,,0,,,8,17,24,8/17/26 23:00, +1,1,5497,2026,1,1,,0,,,8,18,1,8/18/26 0:00, +1,1,5498,2026,1,1,,0,,,8,18,2,8/18/26 1:00, +1,1,5499,2026,1,1,,0,,,8,18,3,8/18/26 2:00, +1,1,5500,2026,1,1,,0,,,8,18,4,8/18/26 3:00, +1,1,5501,2026,1,1,,0,,,8,18,5,8/18/26 4:00, +1,1,5502,2026,1,1,,0,,,8,18,6,8/18/26 5:00, +1,1,5503,2026,1,1,,0,,,8,18,7,8/18/26 6:00, +1,1,5504,2026,1,1,,0,,,8,18,8,8/18/26 7:00, +1,1,5505,2026,1,1,,0,,,8,18,9,8/18/26 8:00, +1,1,5506,2026,1,1,,0,,,8,18,10,8/18/26 9:00, +1,1,5507,2026,1,1,,0,,,8,18,11,8/18/26 10:00, +1,1,5508,2026,1,1,,0,,,8,18,12,8/18/26 11:00, +1,1,5509,2026,1,1,,0,,,8,18,13,8/18/26 12:00, +1,1,5510,2026,1,1,,0,,,8,18,14,8/18/26 13:00, +1,1,5511,2026,1,1,,0,,,8,18,15,8/18/26 14:00, +1,1,5512,2026,1,1,,0,,,8,18,16,8/18/26 15:00, +1,1,5513,2026,1,1,,0,,,8,18,17,8/18/26 16:00, +1,1,5514,2026,1,1,,0,,,8,18,18,8/18/26 17:00, +1,1,5515,2026,1,1,,0,,,8,18,19,8/18/26 18:00, +1,1,5516,2026,1,1,,0,,,8,18,20,8/18/26 19:00, +1,1,5517,2026,1,1,,0,,,8,18,21,8/18/26 20:00, +1,1,5518,2026,1,1,,0,,,8,18,22,8/18/26 21:00, +1,1,5519,2026,1,1,,0,,,8,18,23,8/18/26 22:00, +1,1,5520,2026,1,1,,0,,,8,18,24,8/18/26 23:00, +1,1,5521,2026,1,1,,0,,,8,19,1,8/19/26 0:00, +1,1,5522,2026,1,1,,0,,,8,19,2,8/19/26 1:00, +1,1,5523,2026,1,1,,0,,,8,19,3,8/19/26 2:00, +1,1,5524,2026,1,1,,0,,,8,19,4,8/19/26 3:00, +1,1,5525,2026,1,1,,0,,,8,19,5,8/19/26 4:00, +1,1,5526,2026,1,1,,0,,,8,19,6,8/19/26 5:00, +1,1,5527,2026,1,1,,0,,,8,19,7,8/19/26 6:00, +1,1,5528,2026,1,1,,0,,,8,19,8,8/19/26 7:00, +1,1,5529,2026,1,1,,0,,,8,19,9,8/19/26 8:00, +1,1,5530,2026,1,1,,0,,,8,19,10,8/19/26 9:00, +1,1,5531,2026,1,1,,0,,,8,19,11,8/19/26 10:00, +1,1,5532,2026,1,1,,0,,,8,19,12,8/19/26 11:00, +1,1,5533,2026,1,1,,0,,,8,19,13,8/19/26 12:00, +1,1,5534,2026,1,1,,0,,,8,19,14,8/19/26 13:00, +1,1,5535,2026,1,1,,0,,,8,19,15,8/19/26 14:00, +1,1,5536,2026,1,1,,0,,,8,19,16,8/19/26 15:00, +1,1,5537,2026,1,1,,0,,,8,19,17,8/19/26 16:00, +1,1,5538,2026,1,1,,0,,,8,19,18,8/19/26 17:00, +1,1,5539,2026,1,1,,0,,,8,19,19,8/19/26 18:00, +1,1,5540,2026,1,1,,0,,,8,19,20,8/19/26 19:00, +1,1,5541,2026,1,1,,0,,,8,19,21,8/19/26 20:00, +1,1,5542,2026,1,1,,0,,,8,19,22,8/19/26 21:00, +1,1,5543,2026,1,1,,0,,,8,19,23,8/19/26 22:00, +1,1,5544,2026,1,1,,0,,,8,19,24,8/19/26 23:00, +1,1,5545,2026,1,1,,0,,,8,20,1,8/20/26 0:00, +1,1,5546,2026,1,1,,0,,,8,20,2,8/20/26 1:00, +1,1,5547,2026,1,1,,0,,,8,20,3,8/20/26 2:00, +1,1,5548,2026,1,1,,0,,,8,20,4,8/20/26 3:00, +1,1,5549,2026,1,1,,0,,,8,20,5,8/20/26 4:00, +1,1,5550,2026,1,1,,0,,,8,20,6,8/20/26 5:00, +1,1,5551,2026,1,1,,0,,,8,20,7,8/20/26 6:00, +1,1,5552,2026,1,1,,0,,,8,20,8,8/20/26 7:00, +1,1,5553,2026,1,1,,0,,,8,20,9,8/20/26 8:00, +1,1,5554,2026,1,1,,0,,,8,20,10,8/20/26 9:00, +1,1,5555,2026,1,1,,0,,,8,20,11,8/20/26 10:00, +1,1,5556,2026,1,1,,0,,,8,20,12,8/20/26 11:00, +1,1,5557,2026,1,1,,0,,,8,20,13,8/20/26 12:00, +1,1,5558,2026,1,1,,0,,,8,20,14,8/20/26 13:00, +1,1,5559,2026,1,1,,0,,,8,20,15,8/20/26 14:00, +1,1,5560,2026,1,1,,0,,,8,20,16,8/20/26 15:00, +1,1,5561,2026,1,1,,0,,,8,20,17,8/20/26 16:00, +1,1,5562,2026,1,1,,0,,,8,20,18,8/20/26 17:00, +1,1,5563,2026,1,1,,0,,,8,20,19,8/20/26 18:00, +1,1,5564,2026,1,1,,0,,,8,20,20,8/20/26 19:00, +1,1,5565,2026,1,1,,0,,,8,20,21,8/20/26 20:00, +1,1,5566,2026,1,1,,0,,,8,20,22,8/20/26 21:00, +1,1,5567,2026,1,1,,0,,,8,20,23,8/20/26 22:00, +1,1,5568,2026,1,1,,0,,,8,20,24,8/20/26 23:00, +1,1,5569,2026,1,1,,0,,,8,21,1,8/21/26 0:00, +1,1,5570,2026,1,1,,0,,,8,21,2,8/21/26 1:00, +1,1,5571,2026,1,1,,0,,,8,21,3,8/21/26 2:00, +1,1,5572,2026,1,1,,0,,,8,21,4,8/21/26 3:00, +1,1,5573,2026,1,1,,0,,,8,21,5,8/21/26 4:00, +1,1,5574,2026,1,1,,0,,,8,21,6,8/21/26 5:00, +1,1,5575,2026,1,1,,0,,,8,21,7,8/21/26 6:00, +1,1,5576,2026,1,1,,0,,,8,21,8,8/21/26 7:00, +1,1,5577,2026,1,1,,0,,,8,21,9,8/21/26 8:00, +1,1,5578,2026,1,1,,0,,,8,21,10,8/21/26 9:00, +1,1,5579,2026,1,1,,0,,,8,21,11,8/21/26 10:00, +1,1,5580,2026,1,1,,0,,,8,21,12,8/21/26 11:00, +1,1,5581,2026,1,1,,0,,,8,21,13,8/21/26 12:00, +1,1,5582,2026,1,1,,0,,,8,21,14,8/21/26 13:00, +1,1,5583,2026,1,1,,0,,,8,21,15,8/21/26 14:00, +1,1,5584,2026,1,1,,0,,,8,21,16,8/21/26 15:00, +1,1,5585,2026,1,1,,0,,,8,21,17,8/21/26 16:00, +1,1,5586,2026,1,1,,0,,,8,21,18,8/21/26 17:00, +1,1,5587,2026,1,1,,0,,,8,21,19,8/21/26 18:00, +1,1,5588,2026,1,1,,0,,,8,21,20,8/21/26 19:00, +1,1,5589,2026,1,1,,0,,,8,21,21,8/21/26 20:00, +1,1,5590,2026,1,1,,0,,,8,21,22,8/21/26 21:00, +1,1,5591,2026,1,1,,0,,,8,21,23,8/21/26 22:00, +1,1,5592,2026,1,1,,0,,,8,21,24,8/21/26 23:00, +1,1,5593,2026,1,1,,0,,,8,22,1,8/22/26 0:00, +1,1,5594,2026,1,1,,0,,,8,22,2,8/22/26 1:00, +1,1,5595,2026,1,1,,0,,,8,22,3,8/22/26 2:00, +1,1,5596,2026,1,1,,0,,,8,22,4,8/22/26 3:00, +1,1,5597,2026,1,1,,0,,,8,22,5,8/22/26 4:00, +1,1,5598,2026,1,1,,0,,,8,22,6,8/22/26 5:00, +1,1,5599,2026,1,1,,0,,,8,22,7,8/22/26 6:00, +1,1,5600,2026,1,1,,0,,,8,22,8,8/22/26 7:00, +1,1,5601,2026,1,1,,0,,,8,22,9,8/22/26 8:00, +1,1,5602,2026,1,1,,0,,,8,22,10,8/22/26 9:00, +1,1,5603,2026,1,1,,0,,,8,22,11,8/22/26 10:00, +1,1,5604,2026,1,1,,0,,,8,22,12,8/22/26 11:00, +1,1,5605,2026,1,1,,0,,,8,22,13,8/22/26 12:00, +1,1,5606,2026,1,1,,0,,,8,22,14,8/22/26 13:00, +1,1,5607,2026,1,1,,0,,,8,22,15,8/22/26 14:00, +1,1,5608,2026,1,1,,0,,,8,22,16,8/22/26 15:00, +1,1,5609,2026,1,1,,0,,,8,22,17,8/22/26 16:00, +1,1,5610,2026,1,1,,0,,,8,22,18,8/22/26 17:00, +1,1,5611,2026,1,1,,0,,,8,22,19,8/22/26 18:00, +1,1,5612,2026,1,1,,0,,,8,22,20,8/22/26 19:00, +1,1,5613,2026,1,1,,0,,,8,22,21,8/22/26 20:00, +1,1,5614,2026,1,1,,0,,,8,22,22,8/22/26 21:00, +1,1,5615,2026,1,1,,0,,,8,22,23,8/22/26 22:00, +1,1,5616,2026,1,1,,0,,,8,22,24,8/22/26 23:00, +1,1,5617,2026,1,1,,0,,,8,23,1,8/23/26 0:00, +1,1,5618,2026,1,1,,0,,,8,23,2,8/23/26 1:00, +1,1,5619,2026,1,1,,0,,,8,23,3,8/23/26 2:00, +1,1,5620,2026,1,1,,0,,,8,23,4,8/23/26 3:00, +1,1,5621,2026,1,1,,0,,,8,23,5,8/23/26 4:00, +1,1,5622,2026,1,1,,0,,,8,23,6,8/23/26 5:00, +1,1,5623,2026,1,1,,0,,,8,23,7,8/23/26 6:00, +1,1,5624,2026,1,1,,0,,,8,23,8,8/23/26 7:00, +1,1,5625,2026,1,1,,0,,,8,23,9,8/23/26 8:00, +1,1,5626,2026,1,1,,0,,,8,23,10,8/23/26 9:00, +1,1,5627,2026,1,1,,0,,,8,23,11,8/23/26 10:00, +1,1,5628,2026,1,1,,0,,,8,23,12,8/23/26 11:00, +1,1,5629,2026,1,1,,0,,,8,23,13,8/23/26 12:00, +1,1,5630,2026,1,1,,0,,,8,23,14,8/23/26 13:00, +1,1,5631,2026,1,1,,0,,,8,23,15,8/23/26 14:00, +1,1,5632,2026,1,1,,0,,,8,23,16,8/23/26 15:00, +1,1,5633,2026,1,1,,0,,,8,23,17,8/23/26 16:00, +1,1,5634,2026,1,1,,0,,,8,23,18,8/23/26 17:00, +1,1,5635,2026,1,1,,0,,,8,23,19,8/23/26 18:00, +1,1,5636,2026,1,1,,0,,,8,23,20,8/23/26 19:00, +1,1,5637,2026,1,1,,0,,,8,23,21,8/23/26 20:00, +1,1,5638,2026,1,1,,0,,,8,23,22,8/23/26 21:00, +1,1,5639,2026,1,1,,0,,,8,23,23,8/23/26 22:00, +1,1,5640,2026,1,1,,0,,,8,23,24,8/23/26 23:00, +1,1,5641,2026,1,1,,0,,,8,24,1,8/24/26 0:00, +1,1,5642,2026,1,1,,0,,,8,24,2,8/24/26 1:00, +1,1,5643,2026,1,1,,0,,,8,24,3,8/24/26 2:00, +1,1,5644,2026,1,1,,0,,,8,24,4,8/24/26 3:00, +1,1,5645,2026,1,1,,0,,,8,24,5,8/24/26 4:00, +1,1,5646,2026,1,1,,0,,,8,24,6,8/24/26 5:00, +1,1,5647,2026,1,1,,0,,,8,24,7,8/24/26 6:00, +1,1,5648,2026,1,1,,0,,,8,24,8,8/24/26 7:00, +1,1,5649,2026,1,1,,0,,,8,24,9,8/24/26 8:00, +1,1,5650,2026,1,1,,0,,,8,24,10,8/24/26 9:00, +1,1,5651,2026,1,1,,0,,,8,24,11,8/24/26 10:00, +1,1,5652,2026,1,1,,0,,,8,24,12,8/24/26 11:00, +1,1,5653,2026,1,1,,0,,,8,24,13,8/24/26 12:00, +1,1,5654,2026,1,1,,0,,,8,24,14,8/24/26 13:00, +1,1,5655,2026,1,1,,0,,,8,24,15,8/24/26 14:00, +1,1,5656,2026,1,1,,0,,,8,24,16,8/24/26 15:00, +1,1,5657,2026,1,1,,0,,,8,24,17,8/24/26 16:00, +1,1,5658,2026,1,1,,0,,,8,24,18,8/24/26 17:00, +1,1,5659,2026,1,1,,0,,,8,24,19,8/24/26 18:00, +1,1,5660,2026,1,1,,0,,,8,24,20,8/24/26 19:00, +1,1,5661,2026,1,1,,0,,,8,24,21,8/24/26 20:00, +1,1,5662,2026,1,1,,0,,,8,24,22,8/24/26 21:00, +1,1,5663,2026,1,1,,0,,,8,24,23,8/24/26 22:00, +1,1,5664,2026,1,1,,0,,,8,24,24,8/24/26 23:00, +1,1,5665,2026,1,1,,0,,,8,25,1,8/25/26 0:00, +1,1,5666,2026,1,1,,0,,,8,25,2,8/25/26 1:00, +1,1,5667,2026,1,1,,0,,,8,25,3,8/25/26 2:00, +1,1,5668,2026,1,1,,0,,,8,25,4,8/25/26 3:00, +1,1,5669,2026,1,1,,0,,,8,25,5,8/25/26 4:00, +1,1,5670,2026,1,1,,0,,,8,25,6,8/25/26 5:00, +1,1,5671,2026,1,1,,0,,,8,25,7,8/25/26 6:00, +1,1,5672,2026,1,1,,0,,,8,25,8,8/25/26 7:00, +1,1,5673,2026,1,1,,0,,,8,25,9,8/25/26 8:00, +1,1,5674,2026,1,1,,0,,,8,25,10,8/25/26 9:00, +1,1,5675,2026,1,1,,0,,,8,25,11,8/25/26 10:00, +1,1,5676,2026,1,1,,0,,,8,25,12,8/25/26 11:00, +1,1,5677,2026,1,1,,0,,,8,25,13,8/25/26 12:00, +1,1,5678,2026,1,1,,0,,,8,25,14,8/25/26 13:00, +1,1,5679,2026,1,1,,0,,,8,25,15,8/25/26 14:00, +1,1,5680,2026,1,1,,0,,,8,25,16,8/25/26 15:00, +1,1,5681,2026,1,1,,0,,,8,25,17,8/25/26 16:00, +1,1,5682,2026,1,1,,0,,,8,25,18,8/25/26 17:00, +1,1,5683,2026,1,1,,0,,,8,25,19,8/25/26 18:00, +1,1,5684,2026,1,1,,0,,,8,25,20,8/25/26 19:00, +1,1,5685,2026,1,1,,0,,,8,25,21,8/25/26 20:00, +1,1,5686,2026,1,1,,0,,,8,25,22,8/25/26 21:00, +1,1,5687,2026,1,1,,0,,,8,25,23,8/25/26 22:00, +1,1,5688,2026,1,1,,0,,,8,25,24,8/25/26 23:00, +1,1,5689,2026,1,1,,0,,,8,26,1,8/26/26 0:00, +1,1,5690,2026,1,1,,0,,,8,26,2,8/26/26 1:00, +1,1,5691,2026,1,1,,0,,,8,26,3,8/26/26 2:00, +1,1,5692,2026,1,1,,0,,,8,26,4,8/26/26 3:00, +1,1,5693,2026,1,1,,0,,,8,26,5,8/26/26 4:00, +1,1,5694,2026,1,1,,0,,,8,26,6,8/26/26 5:00, +1,1,5695,2026,1,1,,0,,,8,26,7,8/26/26 6:00, +1,1,5696,2026,1,1,,0,,,8,26,8,8/26/26 7:00, +1,1,5697,2026,1,1,,0,,,8,26,9,8/26/26 8:00, +1,1,5698,2026,1,1,,0,,,8,26,10,8/26/26 9:00, +1,1,5699,2026,1,1,,0,,,8,26,11,8/26/26 10:00, +1,1,5700,2026,1,1,,0,,,8,26,12,8/26/26 11:00, +1,1,5701,2026,1,1,,0,,,8,26,13,8/26/26 12:00, +1,1,5702,2026,1,1,,0,,,8,26,14,8/26/26 13:00, +1,1,5703,2026,1,1,,0,,,8,26,15,8/26/26 14:00, +1,1,5704,2026,1,1,,0,,,8,26,16,8/26/26 15:00, +1,1,5705,2026,1,1,,0,,,8,26,17,8/26/26 16:00, +1,1,5706,2026,1,1,,0,,,8,26,18,8/26/26 17:00, +1,1,5707,2026,1,1,,0,,,8,26,19,8/26/26 18:00, +1,1,5708,2026,1,1,,0,,,8,26,20,8/26/26 19:00, +1,1,5709,2026,1,1,,0,,,8,26,21,8/26/26 20:00, +1,1,5710,2026,1,1,,0,,,8,26,22,8/26/26 21:00, +1,1,5711,2026,1,1,,0,,,8,26,23,8/26/26 22:00, +1,1,5712,2026,1,1,,0,,,8,26,24,8/26/26 23:00, +1,1,5713,2026,1,1,,0,,,8,27,1,8/27/26 0:00, +1,1,5714,2026,1,1,,0,,,8,27,2,8/27/26 1:00, +1,1,5715,2026,1,1,,0,,,8,27,3,8/27/26 2:00, +1,1,5716,2026,1,1,,0,,,8,27,4,8/27/26 3:00, +1,1,5717,2026,1,1,,0,,,8,27,5,8/27/26 4:00, +1,1,5718,2026,1,1,,0,,,8,27,6,8/27/26 5:00, +1,1,5719,2026,1,1,,0,,,8,27,7,8/27/26 6:00, +1,1,5720,2026,1,1,,0,,,8,27,8,8/27/26 7:00, +1,1,5721,2026,1,1,,0,,,8,27,9,8/27/26 8:00, +1,1,5722,2026,1,1,,0,,,8,27,10,8/27/26 9:00, +1,1,5723,2026,1,1,,0,,,8,27,11,8/27/26 10:00, +1,1,5724,2026,1,1,,0,,,8,27,12,8/27/26 11:00, +1,1,5725,2026,1,1,,0,,,8,27,13,8/27/26 12:00, +1,1,5726,2026,1,1,,0,,,8,27,14,8/27/26 13:00, +1,1,5727,2026,1,1,,0,,,8,27,15,8/27/26 14:00, +1,1,5728,2026,1,1,,0,,,8,27,16,8/27/26 15:00, +1,1,5729,2026,1,1,,0,,,8,27,17,8/27/26 16:00, +1,1,5730,2026,1,1,,0,,,8,27,18,8/27/26 17:00, +1,1,5731,2026,1,1,,0,,,8,27,19,8/27/26 18:00, +1,1,5732,2026,1,1,,0,,,8,27,20,8/27/26 19:00, +1,1,5733,2026,1,1,,0,,,8,27,21,8/27/26 20:00, +1,1,5734,2026,1,1,,0,,,8,27,22,8/27/26 21:00, +1,1,5735,2026,1,1,,0,,,8,27,23,8/27/26 22:00, +1,1,5736,2026,1,1,,0,,,8,27,24,8/27/26 23:00, +1,1,5737,2026,1,1,,0,,,8,28,1,8/28/26 0:00, +1,1,5738,2026,1,1,,0,,,8,28,2,8/28/26 1:00, +1,1,5739,2026,1,1,,0,,,8,28,3,8/28/26 2:00, +1,1,5740,2026,1,1,,0,,,8,28,4,8/28/26 3:00, +1,1,5741,2026,1,1,,0,,,8,28,5,8/28/26 4:00, +1,1,5742,2026,1,1,,0,,,8,28,6,8/28/26 5:00, +1,1,5743,2026,1,1,,0,,,8,28,7,8/28/26 6:00, +1,1,5744,2026,1,1,,0,,,8,28,8,8/28/26 7:00, +1,1,5745,2026,1,1,,0,,,8,28,9,8/28/26 8:00, +1,1,5746,2026,1,1,,0,,,8,28,10,8/28/26 9:00, +1,1,5747,2026,1,1,,0,,,8,28,11,8/28/26 10:00, +1,1,5748,2026,1,1,,0,,,8,28,12,8/28/26 11:00, +1,1,5749,2026,1,1,,0,,,8,28,13,8/28/26 12:00, +1,1,5750,2026,1,1,,0,,,8,28,14,8/28/26 13:00, +1,1,5751,2026,1,1,,0,,,8,28,15,8/28/26 14:00, +1,1,5752,2026,1,1,,0,,,8,28,16,8/28/26 15:00, +1,1,5753,2026,1,1,,0,,,8,28,17,8/28/26 16:00, +1,1,5754,2026,1,1,,0,,,8,28,18,8/28/26 17:00, +1,1,5755,2026,1,1,,0,,,8,28,19,8/28/26 18:00, +1,1,5756,2026,1,1,,0,,,8,28,20,8/28/26 19:00, +1,1,5757,2026,1,1,,0,,,8,28,21,8/28/26 20:00, +1,1,5758,2026,1,1,,0,,,8,28,22,8/28/26 21:00, +1,1,5759,2026,1,1,,0,,,8,28,23,8/28/26 22:00, +1,1,5760,2026,1,1,,0,,,8,28,24,8/28/26 23:00, +1,1,5761,2026,1,1,,0,,,8,29,1,8/29/26 0:00, +1,1,5762,2026,1,1,,0,,,8,29,2,8/29/26 1:00, +1,1,5763,2026,1,1,,0,,,8,29,3,8/29/26 2:00, +1,1,5764,2026,1,1,,0,,,8,29,4,8/29/26 3:00, +1,1,5765,2026,1,1,,0,,,8,29,5,8/29/26 4:00, +1,1,5766,2026,1,1,,0,,,8,29,6,8/29/26 5:00, +1,1,5767,2026,1,1,,0,,,8,29,7,8/29/26 6:00, +1,1,5768,2026,1,1,,0,,,8,29,8,8/29/26 7:00, +1,1,5769,2026,1,1,,0,,,8,29,9,8/29/26 8:00, +1,1,5770,2026,1,1,,0,,,8,29,10,8/29/26 9:00, +1,1,5771,2026,1,1,,0,,,8,29,11,8/29/26 10:00, +1,1,5772,2026,1,1,,0,,,8,29,12,8/29/26 11:00, +1,1,5773,2026,1,1,,0,,,8,29,13,8/29/26 12:00, +1,1,5774,2026,1,1,,0,,,8,29,14,8/29/26 13:00, +1,1,5775,2026,1,1,,0,,,8,29,15,8/29/26 14:00, +1,1,5776,2026,1,1,,0,,,8,29,16,8/29/26 15:00, +1,1,5777,2026,1,1,,0,,,8,29,17,8/29/26 16:00, +1,1,5778,2026,1,1,,0,,,8,29,18,8/29/26 17:00, +1,1,5779,2026,1,1,,0,,,8,29,19,8/29/26 18:00, +1,1,5780,2026,1,1,,0,,,8,29,20,8/29/26 19:00, +1,1,5781,2026,1,1,,0,,,8,29,21,8/29/26 20:00, +1,1,5782,2026,1,1,,0,,,8,29,22,8/29/26 21:00, +1,1,5783,2026,1,1,,0,,,8,29,23,8/29/26 22:00, +1,1,5784,2026,1,1,,0,,,8,29,24,8/29/26 23:00, +1,1,5785,2026,1,1,,0,,,8,30,1,8/30/26 0:00, +1,1,5786,2026,1,1,,0,,,8,30,2,8/30/26 1:00, +1,1,5787,2026,1,1,,0,,,8,30,3,8/30/26 2:00, +1,1,5788,2026,1,1,,0,,,8,30,4,8/30/26 3:00, +1,1,5789,2026,1,1,,0,,,8,30,5,8/30/26 4:00, +1,1,5790,2026,1,1,,0,,,8,30,6,8/30/26 5:00, +1,1,5791,2026,1,1,,0,,,8,30,7,8/30/26 6:00, +1,1,5792,2026,1,1,,0,,,8,30,8,8/30/26 7:00, +1,1,5793,2026,1,1,,0,,,8,30,9,8/30/26 8:00, +1,1,5794,2026,1,1,,0,,,8,30,10,8/30/26 9:00, +1,1,5795,2026,1,1,,0,,,8,30,11,8/30/26 10:00, +1,1,5796,2026,1,1,,0,,,8,30,12,8/30/26 11:00, +1,1,5797,2026,1,1,,0,,,8,30,13,8/30/26 12:00, +1,1,5798,2026,1,1,,0,,,8,30,14,8/30/26 13:00, +1,1,5799,2026,1,1,,0,,,8,30,15,8/30/26 14:00, +1,1,5800,2026,1,1,,0,,,8,30,16,8/30/26 15:00, +1,1,5801,2026,1,1,,0,,,8,30,17,8/30/26 16:00, +1,1,5802,2026,1,1,,0,,,8,30,18,8/30/26 17:00, +1,1,5803,2026,1,1,,0,,,8,30,19,8/30/26 18:00, +1,1,5804,2026,1,1,,0,,,8,30,20,8/30/26 19:00, +1,1,5805,2026,1,1,,0,,,8,30,21,8/30/26 20:00, +1,1,5806,2026,1,1,,0,,,8,30,22,8/30/26 21:00, +1,1,5807,2026,1,1,,0,,,8,30,23,8/30/26 22:00, +1,1,5808,2026,1,1,,0,,,8,30,24,8/30/26 23:00, +1,1,5809,2026,1,1,,0,,,8,31,1,8/31/26 0:00, +1,1,5810,2026,1,1,,0,,,8,31,2,8/31/26 1:00, +1,1,5811,2026,1,1,,0,,,8,31,3,8/31/26 2:00, +1,1,5812,2026,1,1,,0,,,8,31,4,8/31/26 3:00, +1,1,5813,2026,1,1,,0,,,8,31,5,8/31/26 4:00, +1,1,5814,2026,1,1,,0,,,8,31,6,8/31/26 5:00, +1,1,5815,2026,1,1,,0,,,8,31,7,8/31/26 6:00, +1,1,5816,2026,1,1,,0,,,8,31,8,8/31/26 7:00, +1,1,5817,2026,1,1,,0,,,8,31,9,8/31/26 8:00, +1,1,5818,2026,1,1,,0,,,8,31,10,8/31/26 9:00, +1,1,5819,2026,1,1,,0,,,8,31,11,8/31/26 10:00, +1,1,5820,2026,1,1,,0,,,8,31,12,8/31/26 11:00, +1,1,5821,2026,1,1,,0,,,8,31,13,8/31/26 12:00, +1,1,5822,2026,1,1,,0,,,8,31,14,8/31/26 13:00, +1,1,5823,2026,1,1,,0,,,8,31,15,8/31/26 14:00, +1,1,5824,2026,1,1,,0,,,8,31,16,8/31/26 15:00, +1,1,5825,2026,1,1,,0,,,8,31,17,8/31/26 16:00, +1,1,5826,2026,1,1,,0,,,8,31,18,8/31/26 17:00, +1,1,5827,2026,1,1,,0,,,8,31,19,8/31/26 18:00, +1,1,5828,2026,1,1,,0,,,8,31,20,8/31/26 19:00, +1,1,5829,2026,1,1,,0,,,8,31,21,8/31/26 20:00, +1,1,5830,2026,1,1,,0,,,8,31,22,8/31/26 21:00, +1,1,5831,2026,1,1,,0,,,8,31,23,8/31/26 22:00, +1,1,5832,2026,1,1,,0,,,8,31,24,8/31/26 23:00, +1,1,5833,2026,1,1,,0,,,9,1,1,9/1/26 0:00, +1,1,5834,2026,1,1,,0,,,9,1,2,9/1/26 1:00, +1,1,5835,2026,1,1,,0,,,9,1,3,9/1/26 2:00, +1,1,5836,2026,1,1,,0,,,9,1,4,9/1/26 3:00, +1,1,5837,2026,1,1,,0,,,9,1,5,9/1/26 4:00, +1,1,5838,2026,1,1,,0,,,9,1,6,9/1/26 5:00, +1,1,5839,2026,1,1,,0,,,9,1,7,9/1/26 6:00, +1,1,5840,2026,1,1,,0,,,9,1,8,9/1/26 7:00, +1,1,5841,2026,1,1,,0,,,9,1,9,9/1/26 8:00, +1,1,5842,2026,1,1,,0,,,9,1,10,9/1/26 9:00, +1,1,5843,2026,1,1,,0,,,9,1,11,9/1/26 10:00, +1,1,5844,2026,1,1,,0,,,9,1,12,9/1/26 11:00, +1,1,5845,2026,1,1,,0,,,9,1,13,9/1/26 12:00, +1,1,5846,2026,1,1,,0,,,9,1,14,9/1/26 13:00, +1,1,5847,2026,1,1,,0,,,9,1,15,9/1/26 14:00, +1,1,5848,2026,1,1,,0,,,9,1,16,9/1/26 15:00, +1,1,5849,2026,1,1,,0,,,9,1,17,9/1/26 16:00, +1,1,5850,2026,1,1,,0,,,9,1,18,9/1/26 17:00, +1,1,5851,2026,1,1,,0,,,9,1,19,9/1/26 18:00, +1,1,5852,2026,1,1,,0,,,9,1,20,9/1/26 19:00, +1,1,5853,2026,1,1,,0,,,9,1,21,9/1/26 20:00, +1,1,5854,2026,1,1,,0,,,9,1,22,9/1/26 21:00, +1,1,5855,2026,1,1,,0,,,9,1,23,9/1/26 22:00, +1,1,5856,2026,1,1,,0,,,9,1,24,9/1/26 23:00, +1,1,5857,2026,1,1,,0,,,9,2,1,9/2/26 0:00, +1,1,5858,2026,1,1,,0,,,9,2,2,9/2/26 1:00, +1,1,5859,2026,1,1,,0,,,9,2,3,9/2/26 2:00, +1,1,5860,2026,1,1,,0,,,9,2,4,9/2/26 3:00, +1,1,5861,2026,1,1,,0,,,9,2,5,9/2/26 4:00, +1,1,5862,2026,1,1,,0,,,9,2,6,9/2/26 5:00, +1,1,5863,2026,1,1,,0,,,9,2,7,9/2/26 6:00, +1,1,5864,2026,1,1,,0,,,9,2,8,9/2/26 7:00, +1,1,5865,2026,1,1,,0,,,9,2,9,9/2/26 8:00, +1,1,5866,2026,1,1,,0,,,9,2,10,9/2/26 9:00, +1,1,5867,2026,1,1,,0,,,9,2,11,9/2/26 10:00, +1,1,5868,2026,1,1,,0,,,9,2,12,9/2/26 11:00, +1,1,5869,2026,1,1,,0,,,9,2,13,9/2/26 12:00, +1,1,5870,2026,1,1,,0,,,9,2,14,9/2/26 13:00, +1,1,5871,2026,1,1,,0,,,9,2,15,9/2/26 14:00, +1,1,5872,2026,1,1,,0,,,9,2,16,9/2/26 15:00, +1,1,5873,2026,1,1,,0,,,9,2,17,9/2/26 16:00, +1,1,5874,2026,1,1,,0,,,9,2,18,9/2/26 17:00, +1,1,5875,2026,1,1,,0,,,9,2,19,9/2/26 18:00, +1,1,5876,2026,1,1,,0,,,9,2,20,9/2/26 19:00, +1,1,5877,2026,1,1,,0,,,9,2,21,9/2/26 20:00, +1,1,5878,2026,1,1,,0,,,9,2,22,9/2/26 21:00, +1,1,5879,2026,1,1,,0,,,9,2,23,9/2/26 22:00, +1,1,5880,2026,1,1,,0,,,9,2,24,9/2/26 23:00, +1,1,5881,2026,1,1,,0,,,9,3,1,9/3/26 0:00, +1,1,5882,2026,1,1,,0,,,9,3,2,9/3/26 1:00, +1,1,5883,2026,1,1,,0,,,9,3,3,9/3/26 2:00, +1,1,5884,2026,1,1,,0,,,9,3,4,9/3/26 3:00, +1,1,5885,2026,1,1,,0,,,9,3,5,9/3/26 4:00, +1,1,5886,2026,1,1,,0,,,9,3,6,9/3/26 5:00, +1,1,5887,2026,1,1,,0,,,9,3,7,9/3/26 6:00, +1,1,5888,2026,1,1,,0,,,9,3,8,9/3/26 7:00, +1,1,5889,2026,1,1,,0,,,9,3,9,9/3/26 8:00, +1,1,5890,2026,1,1,,0,,,9,3,10,9/3/26 9:00, +1,1,5891,2026,1,1,,0,,,9,3,11,9/3/26 10:00, +1,1,5892,2026,1,1,,0,,,9,3,12,9/3/26 11:00, +1,1,5893,2026,1,1,,0,,,9,3,13,9/3/26 12:00, +1,1,5894,2026,1,1,,0,,,9,3,14,9/3/26 13:00, +1,1,5895,2026,1,1,,0,,,9,3,15,9/3/26 14:00, +1,1,5896,2026,1,1,,0,,,9,3,16,9/3/26 15:00, +1,1,5897,2026,1,1,,0,,,9,3,17,9/3/26 16:00, +1,1,5898,2026,1,1,,0,,,9,3,18,9/3/26 17:00, +1,1,5899,2026,1,1,,0,,,9,3,19,9/3/26 18:00, +1,1,5900,2026,1,1,,0,,,9,3,20,9/3/26 19:00, +1,1,5901,2026,1,1,,0,,,9,3,21,9/3/26 20:00, +1,1,5902,2026,1,1,,0,,,9,3,22,9/3/26 21:00, +1,1,5903,2026,1,1,,0,,,9,3,23,9/3/26 22:00, +1,1,5904,2026,1,1,,0,,,9,3,24,9/3/26 23:00, +1,1,5905,2026,1,1,,0,,,9,4,1,9/4/26 0:00, +1,1,5906,2026,1,1,,0,,,9,4,2,9/4/26 1:00, +1,1,5907,2026,1,1,,0,,,9,4,3,9/4/26 2:00, +1,1,5908,2026,1,1,,0,,,9,4,4,9/4/26 3:00, +1,1,5909,2026,1,1,,0,,,9,4,5,9/4/26 4:00, +1,1,5910,2026,1,1,,0,,,9,4,6,9/4/26 5:00, +1,1,5911,2026,1,1,,0,,,9,4,7,9/4/26 6:00, +1,1,5912,2026,1,1,,0,,,9,4,8,9/4/26 7:00, +1,1,5913,2026,1,1,,0,,,9,4,9,9/4/26 8:00, +1,1,5914,2026,1,1,,0,,,9,4,10,9/4/26 9:00, +1,1,5915,2026,1,1,,0,,,9,4,11,9/4/26 10:00, +1,1,5916,2026,1,1,,0,,,9,4,12,9/4/26 11:00, +1,1,5917,2026,1,1,,0,,,9,4,13,9/4/26 12:00, +1,1,5918,2026,1,1,,0,,,9,4,14,9/4/26 13:00, +1,1,5919,2026,1,1,,0,,,9,4,15,9/4/26 14:00, +1,1,5920,2026,1,1,,0,,,9,4,16,9/4/26 15:00, +1,1,5921,2026,1,1,,0,,,9,4,17,9/4/26 16:00, +1,1,5922,2026,1,1,,0,,,9,4,18,9/4/26 17:00, +1,1,5923,2026,1,1,,0,,,9,4,19,9/4/26 18:00, +1,1,5924,2026,1,1,,0,,,9,4,20,9/4/26 19:00, +1,1,5925,2026,1,1,,0,,,9,4,21,9/4/26 20:00, +1,1,5926,2026,1,1,,0,,,9,4,22,9/4/26 21:00, +1,1,5927,2026,1,1,,0,,,9,4,23,9/4/26 22:00, +1,1,5928,2026,1,1,,0,,,9,4,24,9/4/26 23:00, +1,1,5929,2026,1,1,,0,,,9,5,1,9/5/26 0:00, +1,1,5930,2026,1,1,,0,,,9,5,2,9/5/26 1:00, +1,1,5931,2026,1,1,,0,,,9,5,3,9/5/26 2:00, +1,1,5932,2026,1,1,,0,,,9,5,4,9/5/26 3:00, +1,1,5933,2026,1,1,,0,,,9,5,5,9/5/26 4:00, +1,1,5934,2026,1,1,,0,,,9,5,6,9/5/26 5:00, +1,1,5935,2026,1,1,,0,,,9,5,7,9/5/26 6:00, +1,1,5936,2026,1,1,,0,,,9,5,8,9/5/26 7:00, +1,1,5937,2026,1,1,,0,,,9,5,9,9/5/26 8:00, +1,1,5938,2026,1,1,,0,,,9,5,10,9/5/26 9:00, +1,1,5939,2026,1,1,,0,,,9,5,11,9/5/26 10:00, +1,1,5940,2026,1,1,,0,,,9,5,12,9/5/26 11:00, +1,1,5941,2026,1,1,,0,,,9,5,13,9/5/26 12:00, +1,1,5942,2026,1,1,,0,,,9,5,14,9/5/26 13:00, +1,1,5943,2026,1,1,,0,,,9,5,15,9/5/26 14:00, +1,1,5944,2026,1,1,,0,,,9,5,16,9/5/26 15:00, +1,1,5945,2026,1,1,,0,,,9,5,17,9/5/26 16:00, +1,1,5946,2026,1,1,,0,,,9,5,18,9/5/26 17:00, +1,1,5947,2026,1,1,,0,,,9,5,19,9/5/26 18:00, +1,1,5948,2026,1,1,,0,,,9,5,20,9/5/26 19:00, +1,1,5949,2026,1,1,,0,,,9,5,21,9/5/26 20:00, +1,1,5950,2026,1,1,,0,,,9,5,22,9/5/26 21:00, +1,1,5951,2026,1,1,,0,,,9,5,23,9/5/26 22:00, +1,1,5952,2026,1,1,,0,,,9,5,24,9/5/26 23:00, +1,1,5953,2026,1,1,,0,,,9,6,1,9/6/26 0:00, +1,1,5954,2026,1,1,,0,,,9,6,2,9/6/26 1:00, +1,1,5955,2026,1,1,,0,,,9,6,3,9/6/26 2:00, +1,1,5956,2026,1,1,,0,,,9,6,4,9/6/26 3:00, +1,1,5957,2026,1,1,,0,,,9,6,5,9/6/26 4:00, +1,1,5958,2026,1,1,,0,,,9,6,6,9/6/26 5:00, +1,1,5959,2026,1,1,,0,,,9,6,7,9/6/26 6:00, +1,1,5960,2026,1,1,,0,,,9,6,8,9/6/26 7:00, +1,1,5961,2026,1,1,,0,,,9,6,9,9/6/26 8:00, +1,1,5962,2026,1,1,,0,,,9,6,10,9/6/26 9:00, +1,1,5963,2026,1,1,,0,,,9,6,11,9/6/26 10:00, +1,1,5964,2026,1,1,,0,,,9,6,12,9/6/26 11:00, +1,1,5965,2026,1,1,,0,,,9,6,13,9/6/26 12:00, +1,1,5966,2026,1,1,,0,,,9,6,14,9/6/26 13:00, +1,1,5967,2026,1,1,,0,,,9,6,15,9/6/26 14:00, +1,1,5968,2026,1,1,,0,,,9,6,16,9/6/26 15:00, +1,1,5969,2026,1,1,,0,,,9,6,17,9/6/26 16:00, +1,1,5970,2026,1,1,,0,,,9,6,18,9/6/26 17:00, +1,1,5971,2026,1,1,,0,,,9,6,19,9/6/26 18:00, +1,1,5972,2026,1,1,,0,,,9,6,20,9/6/26 19:00, +1,1,5973,2026,1,1,,0,,,9,6,21,9/6/26 20:00, +1,1,5974,2026,1,1,,0,,,9,6,22,9/6/26 21:00, +1,1,5975,2026,1,1,,0,,,9,6,23,9/6/26 22:00, +1,1,5976,2026,1,1,,0,,,9,6,24,9/6/26 23:00, +1,1,5977,2026,1,1,,0,,,9,7,1,9/7/26 0:00, +1,1,5978,2026,1,1,,0,,,9,7,2,9/7/26 1:00, +1,1,5979,2026,1,1,,0,,,9,7,3,9/7/26 2:00, +1,1,5980,2026,1,1,,0,,,9,7,4,9/7/26 3:00, +1,1,5981,2026,1,1,,0,,,9,7,5,9/7/26 4:00, +1,1,5982,2026,1,1,,0,,,9,7,6,9/7/26 5:00, +1,1,5983,2026,1,1,,0,,,9,7,7,9/7/26 6:00, +1,1,5984,2026,1,1,,0,,,9,7,8,9/7/26 7:00, +1,1,5985,2026,1,1,,0,,,9,7,9,9/7/26 8:00, +1,1,5986,2026,1,1,,0,,,9,7,10,9/7/26 9:00, +1,1,5987,2026,1,1,,0,,,9,7,11,9/7/26 10:00, +1,1,5988,2026,1,1,,0,,,9,7,12,9/7/26 11:00, +1,1,5989,2026,1,1,,0,,,9,7,13,9/7/26 12:00, +1,1,5990,2026,1,1,,0,,,9,7,14,9/7/26 13:00, +1,1,5991,2026,1,1,,0,,,9,7,15,9/7/26 14:00, +1,1,5992,2026,1,1,,0,,,9,7,16,9/7/26 15:00, +1,1,5993,2026,1,1,,0,,,9,7,17,9/7/26 16:00, +1,1,5994,2026,1,1,,0,,,9,7,18,9/7/26 17:00, +1,1,5995,2026,1,1,,0,,,9,7,19,9/7/26 18:00, +1,1,5996,2026,1,1,,0,,,9,7,20,9/7/26 19:00, +1,1,5997,2026,1,1,,0,,,9,7,21,9/7/26 20:00, +1,1,5998,2026,1,1,,0,,,9,7,22,9/7/26 21:00, +1,1,5999,2026,1,1,,0,,,9,7,23,9/7/26 22:00, +1,1,6000,2026,1,1,,0,,,9,7,24,9/7/26 23:00, +1,1,6001,2026,1,1,,0,,,9,8,1,9/8/26 0:00, +1,1,6002,2026,1,1,,0,,,9,8,2,9/8/26 1:00, +1,1,6003,2026,1,1,,0,,,9,8,3,9/8/26 2:00, +1,1,6004,2026,1,1,,0,,,9,8,4,9/8/26 3:00, +1,1,6005,2026,1,1,,0,,,9,8,5,9/8/26 4:00, +1,1,6006,2026,1,1,,0,,,9,8,6,9/8/26 5:00, +1,1,6007,2026,1,1,,0,,,9,8,7,9/8/26 6:00, +1,1,6008,2026,1,1,,0,,,9,8,8,9/8/26 7:00, +1,1,6009,2026,1,1,,0,,,9,8,9,9/8/26 8:00, +1,1,6010,2026,1,1,,0,,,9,8,10,9/8/26 9:00, +1,1,6011,2026,1,1,,0,,,9,8,11,9/8/26 10:00, +1,1,6012,2026,1,1,,0,,,9,8,12,9/8/26 11:00, +1,1,6013,2026,1,1,,0,,,9,8,13,9/8/26 12:00, +1,1,6014,2026,1,1,,0,,,9,8,14,9/8/26 13:00, +1,1,6015,2026,1,1,,0,,,9,8,15,9/8/26 14:00, +1,1,6016,2026,1,1,,0,,,9,8,16,9/8/26 15:00, +1,1,6017,2026,1,1,,0,,,9,8,17,9/8/26 16:00, +1,1,6018,2026,1,1,,0,,,9,8,18,9/8/26 17:00, +1,1,6019,2026,1,1,,0,,,9,8,19,9/8/26 18:00, +1,1,6020,2026,1,1,,0,,,9,8,20,9/8/26 19:00, +1,1,6021,2026,1,1,,0,,,9,8,21,9/8/26 20:00, +1,1,6022,2026,1,1,,0,,,9,8,22,9/8/26 21:00, +1,1,6023,2026,1,1,,0,,,9,8,23,9/8/26 22:00, +1,1,6024,2026,1,1,,0,,,9,8,24,9/8/26 23:00, +1,1,6025,2026,1,1,,0,,,9,9,1,9/9/26 0:00, +1,1,6026,2026,1,1,,0,,,9,9,2,9/9/26 1:00, +1,1,6027,2026,1,1,,0,,,9,9,3,9/9/26 2:00, +1,1,6028,2026,1,1,,0,,,9,9,4,9/9/26 3:00, +1,1,6029,2026,1,1,,0,,,9,9,5,9/9/26 4:00, +1,1,6030,2026,1,1,,0,,,9,9,6,9/9/26 5:00, +1,1,6031,2026,1,1,,0,,,9,9,7,9/9/26 6:00, +1,1,6032,2026,1,1,,0,,,9,9,8,9/9/26 7:00, +1,1,6033,2026,1,1,,0,,,9,9,9,9/9/26 8:00, +1,1,6034,2026,1,1,,0,,,9,9,10,9/9/26 9:00, +1,1,6035,2026,1,1,,0,,,9,9,11,9/9/26 10:00, +1,1,6036,2026,1,1,,0,,,9,9,12,9/9/26 11:00, +1,1,6037,2026,1,1,,0,,,9,9,13,9/9/26 12:00, +1,1,6038,2026,1,1,,0,,,9,9,14,9/9/26 13:00, +1,1,6039,2026,1,1,,0,,,9,9,15,9/9/26 14:00, +1,1,6040,2026,1,1,,0,,,9,9,16,9/9/26 15:00, +1,1,6041,2026,1,1,,0,,,9,9,17,9/9/26 16:00, +1,1,6042,2026,1,1,,0,,,9,9,18,9/9/26 17:00, +1,1,6043,2026,1,1,,0,,,9,9,19,9/9/26 18:00, +1,1,6044,2026,1,1,,0,,,9,9,20,9/9/26 19:00, +1,1,6045,2026,1,1,,0,,,9,9,21,9/9/26 20:00, +1,1,6046,2026,1,1,,0,,,9,9,22,9/9/26 21:00, +1,1,6047,2026,1,1,,0,,,9,9,23,9/9/26 22:00, +1,1,6048,2026,1,1,,0,,,9,9,24,9/9/26 23:00, +1,1,6049,2026,1,1,,0,,,9,10,1,9/10/26 0:00, +1,1,6050,2026,1,1,,0,,,9,10,2,9/10/26 1:00, +1,1,6051,2026,1,1,,0,,,9,10,3,9/10/26 2:00, +1,1,6052,2026,1,1,,0,,,9,10,4,9/10/26 3:00, +1,1,6053,2026,1,1,,0,,,9,10,5,9/10/26 4:00, +1,1,6054,2026,1,1,,0,,,9,10,6,9/10/26 5:00, +1,1,6055,2026,1,1,,0,,,9,10,7,9/10/26 6:00, +1,1,6056,2026,1,1,,0,,,9,10,8,9/10/26 7:00, +1,1,6057,2026,1,1,,0,,,9,10,9,9/10/26 8:00, +1,1,6058,2026,1,1,,0,,,9,10,10,9/10/26 9:00, +1,1,6059,2026,1,1,,0,,,9,10,11,9/10/26 10:00, +1,1,6060,2026,1,1,,0,,,9,10,12,9/10/26 11:00, +1,1,6061,2026,1,1,,0,,,9,10,13,9/10/26 12:00, +1,1,6062,2026,1,1,,0,,,9,10,14,9/10/26 13:00, +1,1,6063,2026,1,1,,0,,,9,10,15,9/10/26 14:00, +1,1,6064,2026,1,1,,0,,,9,10,16,9/10/26 15:00, +1,1,6065,2026,1,1,,0,,,9,10,17,9/10/26 16:00, +1,1,6066,2026,1,1,,0,,,9,10,18,9/10/26 17:00, +1,1,6067,2026,1,1,,0,,,9,10,19,9/10/26 18:00, +1,1,6068,2026,1,1,,0,,,9,10,20,9/10/26 19:00, +1,1,6069,2026,1,1,,0,,,9,10,21,9/10/26 20:00, +1,1,6070,2026,1,1,,0,,,9,10,22,9/10/26 21:00, +1,1,6071,2026,1,1,,0,,,9,10,23,9/10/26 22:00, +1,1,6072,2026,1,1,,0,,,9,10,24,9/10/26 23:00, +1,1,6073,2026,1,1,,0,,,9,11,1,9/11/26 0:00, +1,1,6074,2026,1,1,,0,,,9,11,2,9/11/26 1:00, +1,1,6075,2026,1,1,,0,,,9,11,3,9/11/26 2:00, +1,1,6076,2026,1,1,,0,,,9,11,4,9/11/26 3:00, +1,1,6077,2026,1,1,,0,,,9,11,5,9/11/26 4:00, +1,1,6078,2026,1,1,,0,,,9,11,6,9/11/26 5:00, +1,1,6079,2026,1,1,,0,,,9,11,7,9/11/26 6:00, +1,1,6080,2026,1,1,,0,,,9,11,8,9/11/26 7:00, +1,1,6081,2026,1,1,,0,,,9,11,9,9/11/26 8:00, +1,1,6082,2026,1,1,,0,,,9,11,10,9/11/26 9:00, +1,1,6083,2026,1,1,,0,,,9,11,11,9/11/26 10:00, +1,1,6084,2026,1,1,,0,,,9,11,12,9/11/26 11:00, +1,1,6085,2026,1,1,,0,,,9,11,13,9/11/26 12:00, +1,1,6086,2026,1,1,,0,,,9,11,14,9/11/26 13:00, +1,1,6087,2026,1,1,,0,,,9,11,15,9/11/26 14:00, +1,1,6088,2026,1,1,,0,,,9,11,16,9/11/26 15:00, +1,1,6089,2026,1,1,,0,,,9,11,17,9/11/26 16:00, +1,1,6090,2026,1,1,,0,,,9,11,18,9/11/26 17:00, +1,1,6091,2026,1,1,,0,,,9,11,19,9/11/26 18:00, +1,1,6092,2026,1,1,,0,,,9,11,20,9/11/26 19:00, +1,1,6093,2026,1,1,,0,,,9,11,21,9/11/26 20:00, +1,1,6094,2026,1,1,,0,,,9,11,22,9/11/26 21:00, +1,1,6095,2026,1,1,,0,,,9,11,23,9/11/26 22:00, +1,1,6096,2026,1,1,,0,,,9,11,24,9/11/26 23:00, +1,1,6097,2026,1,1,,0,,,9,12,1,9/12/26 0:00, +1,1,6098,2026,1,1,,0,,,9,12,2,9/12/26 1:00, +1,1,6099,2026,1,1,,0,,,9,12,3,9/12/26 2:00, +1,1,6100,2026,1,1,,0,,,9,12,4,9/12/26 3:00, +1,1,6101,2026,1,1,,0,,,9,12,5,9/12/26 4:00, +1,1,6102,2026,1,1,,0,,,9,12,6,9/12/26 5:00, +1,1,6103,2026,1,1,,0,,,9,12,7,9/12/26 6:00, +1,1,6104,2026,1,1,,0,,,9,12,8,9/12/26 7:00, +1,1,6105,2026,1,1,,0,,,9,12,9,9/12/26 8:00, +1,1,6106,2026,1,1,,0,,,9,12,10,9/12/26 9:00, +1,1,6107,2026,1,1,,0,,,9,12,11,9/12/26 10:00, +1,1,6108,2026,1,1,,0,,,9,12,12,9/12/26 11:00, +1,1,6109,2026,1,1,,0,,,9,12,13,9/12/26 12:00, +1,1,6110,2026,1,1,,0,,,9,12,14,9/12/26 13:00, +1,1,6111,2026,1,1,,0,,,9,12,15,9/12/26 14:00, +1,1,6112,2026,1,1,,0,,,9,12,16,9/12/26 15:00, +1,1,6113,2026,1,1,,0,,,9,12,17,9/12/26 16:00, +1,1,6114,2026,1,1,,0,,,9,12,18,9/12/26 17:00, +1,1,6115,2026,1,1,,0,,,9,12,19,9/12/26 18:00, +1,1,6116,2026,1,1,,0,,,9,12,20,9/12/26 19:00, +1,1,6117,2026,1,1,,0,,,9,12,21,9/12/26 20:00, +1,1,6118,2026,1,1,,0,,,9,12,22,9/12/26 21:00, +1,1,6119,2026,1,1,,0,,,9,12,23,9/12/26 22:00, +1,1,6120,2026,1,1,,0,,,9,12,24,9/12/26 23:00, +1,1,6121,2026,1,1,,0,,,9,13,1,9/13/26 0:00, +1,1,6122,2026,1,1,,0,,,9,13,2,9/13/26 1:00, +1,1,6123,2026,1,1,,0,,,9,13,3,9/13/26 2:00, +1,1,6124,2026,1,1,,0,,,9,13,4,9/13/26 3:00, +1,1,6125,2026,1,1,,0,,,9,13,5,9/13/26 4:00, +1,1,6126,2026,1,1,,0,,,9,13,6,9/13/26 5:00, +1,1,6127,2026,1,1,,0,,,9,13,7,9/13/26 6:00, +1,1,6128,2026,1,1,,0,,,9,13,8,9/13/26 7:00, +1,1,6129,2026,1,1,,0,,,9,13,9,9/13/26 8:00, +1,1,6130,2026,1,1,,0,,,9,13,10,9/13/26 9:00, +1,1,6131,2026,1,1,,0,,,9,13,11,9/13/26 10:00, +1,1,6132,2026,1,1,,0,,,9,13,12,9/13/26 11:00, +1,1,6133,2026,1,1,,0,,,9,13,13,9/13/26 12:00, +1,1,6134,2026,1,1,,0,,,9,13,14,9/13/26 13:00, +1,1,6135,2026,1,1,,0,,,9,13,15,9/13/26 14:00, +1,1,6136,2026,1,1,,0,,,9,13,16,9/13/26 15:00, +1,1,6137,2026,1,1,,0,,,9,13,17,9/13/26 16:00, +1,1,6138,2026,1,1,,0,,,9,13,18,9/13/26 17:00, +1,1,6139,2026,1,1,,0,,,9,13,19,9/13/26 18:00, +1,1,6140,2026,1,1,,0,,,9,13,20,9/13/26 19:00, +1,1,6141,2026,1,1,,0,,,9,13,21,9/13/26 20:00, +1,1,6142,2026,1,1,,0,,,9,13,22,9/13/26 21:00, +1,1,6143,2026,1,1,,0,,,9,13,23,9/13/26 22:00, +1,1,6144,2026,1,1,,0,,,9,13,24,9/13/26 23:00, +1,1,6145,2026,1,1,,0,,,9,14,1,9/14/26 0:00, +1,1,6146,2026,1,1,,0,,,9,14,2,9/14/26 1:00, +1,1,6147,2026,1,1,,0,,,9,14,3,9/14/26 2:00, +1,1,6148,2026,1,1,,0,,,9,14,4,9/14/26 3:00, +1,1,6149,2026,1,1,,0,,,9,14,5,9/14/26 4:00, +1,1,6150,2026,1,1,,0,,,9,14,6,9/14/26 5:00, +1,1,6151,2026,1,1,,0,,,9,14,7,9/14/26 6:00, +1,1,6152,2026,1,1,,0,,,9,14,8,9/14/26 7:00, +1,1,6153,2026,1,1,,0,,,9,14,9,9/14/26 8:00, +1,1,6154,2026,1,1,,0,,,9,14,10,9/14/26 9:00, +1,1,6155,2026,1,1,,0,,,9,14,11,9/14/26 10:00, +1,1,6156,2026,1,1,,0,,,9,14,12,9/14/26 11:00, +1,1,6157,2026,1,1,,0,,,9,14,13,9/14/26 12:00, +1,1,6158,2026,1,1,,0,,,9,14,14,9/14/26 13:00, +1,1,6159,2026,1,1,,0,,,9,14,15,9/14/26 14:00, +1,1,6160,2026,1,1,,0,,,9,14,16,9/14/26 15:00, +1,1,6161,2026,1,1,,0,,,9,14,17,9/14/26 16:00, +1,1,6162,2026,1,1,,0,,,9,14,18,9/14/26 17:00, +1,1,6163,2026,1,1,,0,,,9,14,19,9/14/26 18:00, +1,1,6164,2026,1,1,,0,,,9,14,20,9/14/26 19:00, +1,1,6165,2026,1,1,,0,,,9,14,21,9/14/26 20:00, +1,1,6166,2026,1,1,,0,,,9,14,22,9/14/26 21:00, +1,1,6167,2026,1,1,,0,,,9,14,23,9/14/26 22:00, +1,1,6168,2026,1,1,,0,,,9,14,24,9/14/26 23:00, +1,1,6169,2026,1,1,,0,,,9,15,1,9/15/26 0:00, +1,1,6170,2026,1,1,,0,,,9,15,2,9/15/26 1:00, +1,1,6171,2026,1,1,,0,,,9,15,3,9/15/26 2:00, +1,1,6172,2026,1,1,,0,,,9,15,4,9/15/26 3:00, +1,1,6173,2026,1,1,,0,,,9,15,5,9/15/26 4:00, +1,1,6174,2026,1,1,,0,,,9,15,6,9/15/26 5:00, +1,1,6175,2026,1,1,,0,,,9,15,7,9/15/26 6:00, +1,1,6176,2026,1,1,,0,,,9,15,8,9/15/26 7:00, +1,1,6177,2026,1,1,,0,,,9,15,9,9/15/26 8:00, +1,1,6178,2026,1,1,,0,,,9,15,10,9/15/26 9:00, +1,1,6179,2026,1,1,,0,,,9,15,11,9/15/26 10:00, +1,1,6180,2026,1,1,,0,,,9,15,12,9/15/26 11:00, +1,1,6181,2026,1,1,,0,,,9,15,13,9/15/26 12:00, +1,1,6182,2026,1,1,,0,,,9,15,14,9/15/26 13:00, +1,1,6183,2026,1,1,,0,,,9,15,15,9/15/26 14:00, +1,1,6184,2026,1,1,,0,,,9,15,16,9/15/26 15:00, +1,1,6185,2026,1,1,,0,,,9,15,17,9/15/26 16:00, +1,1,6186,2026,1,1,,0,,,9,15,18,9/15/26 17:00, +1,1,6187,2026,1,1,,0,,,9,15,19,9/15/26 18:00, +1,1,6188,2026,1,1,,0,,,9,15,20,9/15/26 19:00, +1,1,6189,2026,1,1,,0,,,9,15,21,9/15/26 20:00, +1,1,6190,2026,1,1,,0,,,9,15,22,9/15/26 21:00, +1,1,6191,2026,1,1,,0,,,9,15,23,9/15/26 22:00, +1,1,6192,2026,1,1,,0,,,9,15,24,9/15/26 23:00, +1,1,6193,2026,1,1,,0,,,9,16,1,9/16/26 0:00, +1,1,6194,2026,1,1,,0,,,9,16,2,9/16/26 1:00, +1,1,6195,2026,1,1,,0,,,9,16,3,9/16/26 2:00, +1,1,6196,2026,1,1,,0,,,9,16,4,9/16/26 3:00, +1,1,6197,2026,1,1,,0,,,9,16,5,9/16/26 4:00, +1,1,6198,2026,1,1,,0,,,9,16,6,9/16/26 5:00, +1,1,6199,2026,1,1,,0,,,9,16,7,9/16/26 6:00, +1,1,6200,2026,1,1,,0,,,9,16,8,9/16/26 7:00, +1,1,6201,2026,1,1,,0,,,9,16,9,9/16/26 8:00, +1,1,6202,2026,1,1,,0,,,9,16,10,9/16/26 9:00, +1,1,6203,2026,1,1,,0,,,9,16,11,9/16/26 10:00, +1,1,6204,2026,1,1,,0,,,9,16,12,9/16/26 11:00, +1,1,6205,2026,1,1,,0,,,9,16,13,9/16/26 12:00, +1,1,6206,2026,1,1,,0,,,9,16,14,9/16/26 13:00, +1,1,6207,2026,1,1,,0,,,9,16,15,9/16/26 14:00, +1,1,6208,2026,1,1,,0,,,9,16,16,9/16/26 15:00, +1,1,6209,2026,1,1,,0,,,9,16,17,9/16/26 16:00, +1,1,6210,2026,1,1,,0,,,9,16,18,9/16/26 17:00, +1,1,6211,2026,1,1,,0,,,9,16,19,9/16/26 18:00, +1,1,6212,2026,1,1,,0,,,9,16,20,9/16/26 19:00, +1,1,6213,2026,1,1,,0,,,9,16,21,9/16/26 20:00, +1,1,6214,2026,1,1,,0,,,9,16,22,9/16/26 21:00, +1,1,6215,2026,1,1,,0,,,9,16,23,9/16/26 22:00, +1,1,6216,2026,1,1,,0,,,9,16,24,9/16/26 23:00, +1,1,6217,2026,1,1,,0,,,9,17,1,9/17/26 0:00, +1,1,6218,2026,1,1,,0,,,9,17,2,9/17/26 1:00, +1,1,6219,2026,1,1,,0,,,9,17,3,9/17/26 2:00, +1,1,6220,2026,1,1,,0,,,9,17,4,9/17/26 3:00, +1,1,6221,2026,1,1,,0,,,9,17,5,9/17/26 4:00, +1,1,6222,2026,1,1,,0,,,9,17,6,9/17/26 5:00, +1,1,6223,2026,1,1,,0,,,9,17,7,9/17/26 6:00, +1,1,6224,2026,1,1,,0,,,9,17,8,9/17/26 7:00, +1,1,6225,2026,1,1,,0,,,9,17,9,9/17/26 8:00, +1,1,6226,2026,1,1,,0,,,9,17,10,9/17/26 9:00, +1,1,6227,2026,1,1,,0,,,9,17,11,9/17/26 10:00, +1,1,6228,2026,1,1,,0,,,9,17,12,9/17/26 11:00, +1,1,6229,2026,1,1,,0,,,9,17,13,9/17/26 12:00, +1,1,6230,2026,1,1,,0,,,9,17,14,9/17/26 13:00, +1,1,6231,2026,1,1,,0,,,9,17,15,9/17/26 14:00, +1,1,6232,2026,1,1,,0,,,9,17,16,9/17/26 15:00, +1,1,6233,2026,1,1,,0,,,9,17,17,9/17/26 16:00, +1,1,6234,2026,1,1,,0,,,9,17,18,9/17/26 17:00, +1,1,6235,2026,1,1,,0,,,9,17,19,9/17/26 18:00, +1,1,6236,2026,1,1,,0,,,9,17,20,9/17/26 19:00, +1,1,6237,2026,1,1,,0,,,9,17,21,9/17/26 20:00, +1,1,6238,2026,1,1,,0,,,9,17,22,9/17/26 21:00, +1,1,6239,2026,1,1,,0,,,9,17,23,9/17/26 22:00, +1,1,6240,2026,1,1,,0,,,9,17,24,9/17/26 23:00, +1,1,6241,2026,1,1,,0,,,9,18,1,9/18/26 0:00, +1,1,6242,2026,1,1,,0,,,9,18,2,9/18/26 1:00, +1,1,6243,2026,1,1,,0,,,9,18,3,9/18/26 2:00, +1,1,6244,2026,1,1,,0,,,9,18,4,9/18/26 3:00, +1,1,6245,2026,1,1,,0,,,9,18,5,9/18/26 4:00, +1,1,6246,2026,1,1,,0,,,9,18,6,9/18/26 5:00, +1,1,6247,2026,1,1,,0,,,9,18,7,9/18/26 6:00, +1,1,6248,2026,1,1,,0,,,9,18,8,9/18/26 7:00, +1,1,6249,2026,1,1,,0,,,9,18,9,9/18/26 8:00, +1,1,6250,2026,1,1,,0,,,9,18,10,9/18/26 9:00, +1,1,6251,2026,1,1,,0,,,9,18,11,9/18/26 10:00, +1,1,6252,2026,1,1,,0,,,9,18,12,9/18/26 11:00, +1,1,6253,2026,1,1,,0,,,9,18,13,9/18/26 12:00, +1,1,6254,2026,1,1,,0,,,9,18,14,9/18/26 13:00, +1,1,6255,2026,1,1,,0,,,9,18,15,9/18/26 14:00, +1,1,6256,2026,1,1,,0,,,9,18,16,9/18/26 15:00, +1,1,6257,2026,1,1,,0,,,9,18,17,9/18/26 16:00, +1,1,6258,2026,1,1,,0,,,9,18,18,9/18/26 17:00, +1,1,6259,2026,1,1,,0,,,9,18,19,9/18/26 18:00, +1,1,6260,2026,1,1,,0,,,9,18,20,9/18/26 19:00, +1,1,6261,2026,1,1,,0,,,9,18,21,9/18/26 20:00, +1,1,6262,2026,1,1,,0,,,9,18,22,9/18/26 21:00, +1,1,6263,2026,1,1,,0,,,9,18,23,9/18/26 22:00, +1,1,6264,2026,1,1,,0,,,9,18,24,9/18/26 23:00, +1,1,6265,2026,1,1,,0,,,9,19,1,9/19/26 0:00, +1,1,6266,2026,1,1,,0,,,9,19,2,9/19/26 1:00, +1,1,6267,2026,1,1,,0,,,9,19,3,9/19/26 2:00, +1,1,6268,2026,1,1,,0,,,9,19,4,9/19/26 3:00, +1,1,6269,2026,1,1,,0,,,9,19,5,9/19/26 4:00, +1,1,6270,2026,1,1,,0,,,9,19,6,9/19/26 5:00, +1,1,6271,2026,1,1,,0,,,9,19,7,9/19/26 6:00, +1,1,6272,2026,1,1,,0,,,9,19,8,9/19/26 7:00, +1,1,6273,2026,1,1,,0,,,9,19,9,9/19/26 8:00, +1,1,6274,2026,1,1,,0,,,9,19,10,9/19/26 9:00, +1,1,6275,2026,1,1,,0,,,9,19,11,9/19/26 10:00, +1,1,6276,2026,1,1,,0,,,9,19,12,9/19/26 11:00, +1,1,6277,2026,1,1,,0,,,9,19,13,9/19/26 12:00, +1,1,6278,2026,1,1,,0,,,9,19,14,9/19/26 13:00, +1,1,6279,2026,1,1,,0,,,9,19,15,9/19/26 14:00, +1,1,6280,2026,1,1,,0,,,9,19,16,9/19/26 15:00, +1,1,6281,2026,1,1,,0,,,9,19,17,9/19/26 16:00, +1,1,6282,2026,1,1,,0,,,9,19,18,9/19/26 17:00, +1,1,6283,2026,1,1,,0,,,9,19,19,9/19/26 18:00, +1,1,6284,2026,1,1,,0,,,9,19,20,9/19/26 19:00, +1,1,6285,2026,1,1,,0,,,9,19,21,9/19/26 20:00, +1,1,6286,2026,1,1,,0,,,9,19,22,9/19/26 21:00, +1,1,6287,2026,1,1,,0,,,9,19,23,9/19/26 22:00, +1,1,6288,2026,1,1,,0,,,9,19,24,9/19/26 23:00, +1,1,6289,2026,1,1,,0,,,9,20,1,9/20/26 0:00, +1,1,6290,2026,1,1,,0,,,9,20,2,9/20/26 1:00, +1,1,6291,2026,1,1,,0,,,9,20,3,9/20/26 2:00, +1,1,6292,2026,1,1,,0,,,9,20,4,9/20/26 3:00, +1,1,6293,2026,1,1,,0,,,9,20,5,9/20/26 4:00, +1,1,6294,2026,1,1,,0,,,9,20,6,9/20/26 5:00, +1,1,6295,2026,1,1,,0,,,9,20,7,9/20/26 6:00, +1,1,6296,2026,1,1,,0,,,9,20,8,9/20/26 7:00, +1,1,6297,2026,1,1,,0,,,9,20,9,9/20/26 8:00, +1,1,6298,2026,1,1,,0,,,9,20,10,9/20/26 9:00, +1,1,6299,2026,1,1,,0,,,9,20,11,9/20/26 10:00, +1,1,6300,2026,1,1,,0,,,9,20,12,9/20/26 11:00, +1,1,6301,2026,1,1,,0,,,9,20,13,9/20/26 12:00, +1,1,6302,2026,1,1,,0,,,9,20,14,9/20/26 13:00, +1,1,6303,2026,1,1,,0,,,9,20,15,9/20/26 14:00, +1,1,6304,2026,1,1,,0,,,9,20,16,9/20/26 15:00, +1,1,6305,2026,1,1,,0,,,9,20,17,9/20/26 16:00, +1,1,6306,2026,1,1,,0,,,9,20,18,9/20/26 17:00, +1,1,6307,2026,1,1,,0,,,9,20,19,9/20/26 18:00, +1,1,6308,2026,1,1,,0,,,9,20,20,9/20/26 19:00, +1,1,6309,2026,1,1,,0,,,9,20,21,9/20/26 20:00, +1,1,6310,2026,1,1,,0,,,9,20,22,9/20/26 21:00, +1,1,6311,2026,1,1,,0,,,9,20,23,9/20/26 22:00, +1,1,6312,2026,1,1,,0,,,9,20,24,9/20/26 23:00, +1,1,6313,2026,1,1,,0,,,9,21,1,9/21/26 0:00, +1,1,6314,2026,1,1,,0,,,9,21,2,9/21/26 1:00, +1,1,6315,2026,1,1,,0,,,9,21,3,9/21/26 2:00, +1,1,6316,2026,1,1,,0,,,9,21,4,9/21/26 3:00, +1,1,6317,2026,1,1,,0,,,9,21,5,9/21/26 4:00, +1,1,6318,2026,1,1,,0,,,9,21,6,9/21/26 5:00, +1,1,6319,2026,1,1,,0,,,9,21,7,9/21/26 6:00, +1,1,6320,2026,1,1,,0,,,9,21,8,9/21/26 7:00, +1,1,6321,2026,1,1,,0,,,9,21,9,9/21/26 8:00, +1,1,6322,2026,1,1,,0,,,9,21,10,9/21/26 9:00, +1,1,6323,2026,1,1,,0,,,9,21,11,9/21/26 10:00, +1,1,6324,2026,1,1,,0,,,9,21,12,9/21/26 11:00, +1,1,6325,2026,1,1,,0,,,9,21,13,9/21/26 12:00, +1,1,6326,2026,1,1,,0,,,9,21,14,9/21/26 13:00, +1,1,6327,2026,1,1,,0,,,9,21,15,9/21/26 14:00, +1,1,6328,2026,1,1,,0,,,9,21,16,9/21/26 15:00, +1,1,6329,2026,1,1,,0,,,9,21,17,9/21/26 16:00, +1,1,6330,2026,1,1,,0,,,9,21,18,9/21/26 17:00, +1,1,6331,2026,1,1,,0,,,9,21,19,9/21/26 18:00, +1,1,6332,2026,1,1,,0,,,9,21,20,9/21/26 19:00, +1,1,6333,2026,1,1,,0,,,9,21,21,9/21/26 20:00, +1,1,6334,2026,1,1,,0,,,9,21,22,9/21/26 21:00, +1,1,6335,2026,1,1,,0,,,9,21,23,9/21/26 22:00, +1,1,6336,2026,1,1,,0,,,9,21,24,9/21/26 23:00, +1,1,6337,2026,1,1,,0,,,9,22,1,9/22/26 0:00, +1,1,6338,2026,1,1,,0,,,9,22,2,9/22/26 1:00, +1,1,6339,2026,1,1,,0,,,9,22,3,9/22/26 2:00, +1,1,6340,2026,1,1,,0,,,9,22,4,9/22/26 3:00, +1,1,6341,2026,1,1,,0,,,9,22,5,9/22/26 4:00, +1,1,6342,2026,1,1,,0,,,9,22,6,9/22/26 5:00, +1,1,6343,2026,1,1,,0,,,9,22,7,9/22/26 6:00, +1,1,6344,2026,1,1,,0,,,9,22,8,9/22/26 7:00, +1,1,6345,2026,1,1,,0,,,9,22,9,9/22/26 8:00, +1,1,6346,2026,1,1,,0,,,9,22,10,9/22/26 9:00, +1,1,6347,2026,1,1,,0,,,9,22,11,9/22/26 10:00, +1,1,6348,2026,1,1,,0,,,9,22,12,9/22/26 11:00, +1,1,6349,2026,1,1,,0,,,9,22,13,9/22/26 12:00, +1,1,6350,2026,1,1,,0,,,9,22,14,9/22/26 13:00, +1,1,6351,2026,1,1,,0,,,9,22,15,9/22/26 14:00, +1,1,6352,2026,1,1,,0,,,9,22,16,9/22/26 15:00, +1,1,6353,2026,1,1,,0,,,9,22,17,9/22/26 16:00, +1,1,6354,2026,1,1,,0,,,9,22,18,9/22/26 17:00, +1,1,6355,2026,1,1,,0,,,9,22,19,9/22/26 18:00, +1,1,6356,2026,1,1,,0,,,9,22,20,9/22/26 19:00, +1,1,6357,2026,1,1,,0,,,9,22,21,9/22/26 20:00, +1,1,6358,2026,1,1,,0,,,9,22,22,9/22/26 21:00, +1,1,6359,2026,1,1,,0,,,9,22,23,9/22/26 22:00, +1,1,6360,2026,1,1,,0,,,9,22,24,9/22/26 23:00, +1,1,6361,2026,1,1,,0,,,9,23,1,9/23/26 0:00, +1,1,6362,2026,1,1,,0,,,9,23,2,9/23/26 1:00, +1,1,6363,2026,1,1,,0,,,9,23,3,9/23/26 2:00, +1,1,6364,2026,1,1,,0,,,9,23,4,9/23/26 3:00, +1,1,6365,2026,1,1,,0,,,9,23,5,9/23/26 4:00, +1,1,6366,2026,1,1,,0,,,9,23,6,9/23/26 5:00, +1,1,6367,2026,1,1,,0,,,9,23,7,9/23/26 6:00, +1,1,6368,2026,1,1,,0,,,9,23,8,9/23/26 7:00, +1,1,6369,2026,1,1,,0,,,9,23,9,9/23/26 8:00, +1,1,6370,2026,1,1,,0,,,9,23,10,9/23/26 9:00, +1,1,6371,2026,1,1,,0,,,9,23,11,9/23/26 10:00, +1,1,6372,2026,1,1,,0,,,9,23,12,9/23/26 11:00, +1,1,6373,2026,1,1,,0,,,9,23,13,9/23/26 12:00, +1,1,6374,2026,1,1,,0,,,9,23,14,9/23/26 13:00, +1,1,6375,2026,1,1,,0,,,9,23,15,9/23/26 14:00, +1,1,6376,2026,1,1,,0,,,9,23,16,9/23/26 15:00, +1,1,6377,2026,1,1,,0,,,9,23,17,9/23/26 16:00, +1,1,6378,2026,1,1,,0,,,9,23,18,9/23/26 17:00, +1,1,6379,2026,1,1,,0,,,9,23,19,9/23/26 18:00, +1,1,6380,2026,1,1,,0,,,9,23,20,9/23/26 19:00, +1,1,6381,2026,1,1,,0,,,9,23,21,9/23/26 20:00, +1,1,6382,2026,1,1,,0,,,9,23,22,9/23/26 21:00, +1,1,6383,2026,1,1,,0,,,9,23,23,9/23/26 22:00, +1,1,6384,2026,1,1,,0,,,9,23,24,9/23/26 23:00, +1,1,6385,2026,1,1,,0,,,9,24,1,9/24/26 0:00, +1,1,6386,2026,1,1,,0,,,9,24,2,9/24/26 1:00, +1,1,6387,2026,1,1,,0,,,9,24,3,9/24/26 2:00, +1,1,6388,2026,1,1,,0,,,9,24,4,9/24/26 3:00, +1,1,6389,2026,1,1,,0,,,9,24,5,9/24/26 4:00, +1,1,6390,2026,1,1,,0,,,9,24,6,9/24/26 5:00, +1,1,6391,2026,1,1,,0,,,9,24,7,9/24/26 6:00, +1,1,6392,2026,1,1,,0,,,9,24,8,9/24/26 7:00, +1,1,6393,2026,1,1,,0,,,9,24,9,9/24/26 8:00, +1,1,6394,2026,1,1,,0,,,9,24,10,9/24/26 9:00, +1,1,6395,2026,1,1,,0,,,9,24,11,9/24/26 10:00, +1,1,6396,2026,1,1,,0,,,9,24,12,9/24/26 11:00, +1,1,6397,2026,1,1,,0,,,9,24,13,9/24/26 12:00, +1,1,6398,2026,1,1,,0,,,9,24,14,9/24/26 13:00, +1,1,6399,2026,1,1,,0,,,9,24,15,9/24/26 14:00, +1,1,6400,2026,1,1,,0,,,9,24,16,9/24/26 15:00, +1,1,6401,2026,1,1,,0,,,9,24,17,9/24/26 16:00, +1,1,6402,2026,1,1,,0,,,9,24,18,9/24/26 17:00, +1,1,6403,2026,1,1,,0,,,9,24,19,9/24/26 18:00, +1,1,6404,2026,1,1,,0,,,9,24,20,9/24/26 19:00, +1,1,6405,2026,1,1,,0,,,9,24,21,9/24/26 20:00, +1,1,6406,2026,1,1,,0,,,9,24,22,9/24/26 21:00, +1,1,6407,2026,1,1,,0,,,9,24,23,9/24/26 22:00, +1,1,6408,2026,1,1,,0,,,9,24,24,9/24/26 23:00, +1,1,6409,2026,1,1,,0,,,9,25,1,9/25/26 0:00, +1,1,6410,2026,1,1,,0,,,9,25,2,9/25/26 1:00, +1,1,6411,2026,1,1,,0,,,9,25,3,9/25/26 2:00, +1,1,6412,2026,1,1,,0,,,9,25,4,9/25/26 3:00, +1,1,6413,2026,1,1,,0,,,9,25,5,9/25/26 4:00, +1,1,6414,2026,1,1,,0,,,9,25,6,9/25/26 5:00, +1,1,6415,2026,1,1,,0,,,9,25,7,9/25/26 6:00, +1,1,6416,2026,1,1,,0,,,9,25,8,9/25/26 7:00, +1,1,6417,2026,1,1,,0,,,9,25,9,9/25/26 8:00, +1,1,6418,2026,1,1,,0,,,9,25,10,9/25/26 9:00, +1,1,6419,2026,1,1,,0,,,9,25,11,9/25/26 10:00, +1,1,6420,2026,1,1,,0,,,9,25,12,9/25/26 11:00, +1,1,6421,2026,1,1,,0,,,9,25,13,9/25/26 12:00, +1,1,6422,2026,1,1,,0,,,9,25,14,9/25/26 13:00, +1,1,6423,2026,1,1,,0,,,9,25,15,9/25/26 14:00, +1,1,6424,2026,1,1,,0,,,9,25,16,9/25/26 15:00, +1,1,6425,2026,1,1,,0,,,9,25,17,9/25/26 16:00, +1,1,6426,2026,1,1,,0,,,9,25,18,9/25/26 17:00, +1,1,6427,2026,1,1,,0,,,9,25,19,9/25/26 18:00, +1,1,6428,2026,1,1,,0,,,9,25,20,9/25/26 19:00, +1,1,6429,2026,1,1,,0,,,9,25,21,9/25/26 20:00, +1,1,6430,2026,1,1,,0,,,9,25,22,9/25/26 21:00, +1,1,6431,2026,1,1,,0,,,9,25,23,9/25/26 22:00, +1,1,6432,2026,1,1,,0,,,9,25,24,9/25/26 23:00, +1,1,6433,2026,1,1,,0,,,9,26,1,9/26/26 0:00, +1,1,6434,2026,1,1,,0,,,9,26,2,9/26/26 1:00, +1,1,6435,2026,1,1,,0,,,9,26,3,9/26/26 2:00, +1,1,6436,2026,1,1,,0,,,9,26,4,9/26/26 3:00, +1,1,6437,2026,1,1,,0,,,9,26,5,9/26/26 4:00, +1,1,6438,2026,1,1,,0,,,9,26,6,9/26/26 5:00, +1,1,6439,2026,1,1,,0,,,9,26,7,9/26/26 6:00, +1,1,6440,2026,1,1,,0,,,9,26,8,9/26/26 7:00, +1,1,6441,2026,1,1,,0,,,9,26,9,9/26/26 8:00, +1,1,6442,2026,1,1,,0,,,9,26,10,9/26/26 9:00, +1,1,6443,2026,1,1,,0,,,9,26,11,9/26/26 10:00, +1,1,6444,2026,1,1,,0,,,9,26,12,9/26/26 11:00, +1,1,6445,2026,1,1,,0,,,9,26,13,9/26/26 12:00, +1,1,6446,2026,1,1,,0,,,9,26,14,9/26/26 13:00, +1,1,6447,2026,1,1,,0,,,9,26,15,9/26/26 14:00, +1,1,6448,2026,1,1,,0,,,9,26,16,9/26/26 15:00, +1,1,6449,2026,1,1,,0,,,9,26,17,9/26/26 16:00, +1,1,6450,2026,1,1,,0,,,9,26,18,9/26/26 17:00, +1,1,6451,2026,1,1,,0,,,9,26,19,9/26/26 18:00, +1,1,6452,2026,1,1,,0,,,9,26,20,9/26/26 19:00, +1,1,6453,2026,1,1,,0,,,9,26,21,9/26/26 20:00, +1,1,6454,2026,1,1,,0,,,9,26,22,9/26/26 21:00, +1,1,6455,2026,1,1,,0,,,9,26,23,9/26/26 22:00, +1,1,6456,2026,1,1,,0,,,9,26,24,9/26/26 23:00, +1,1,6457,2026,1,1,,0,,,9,27,1,9/27/26 0:00, +1,1,6458,2026,1,1,,0,,,9,27,2,9/27/26 1:00, +1,1,6459,2026,1,1,,0,,,9,27,3,9/27/26 2:00, +1,1,6460,2026,1,1,,0,,,9,27,4,9/27/26 3:00, +1,1,6461,2026,1,1,,0,,,9,27,5,9/27/26 4:00, +1,1,6462,2026,1,1,,0,,,9,27,6,9/27/26 5:00, +1,1,6463,2026,1,1,,0,,,9,27,7,9/27/26 6:00, +1,1,6464,2026,1,1,,0,,,9,27,8,9/27/26 7:00, +1,1,6465,2026,1,1,,0,,,9,27,9,9/27/26 8:00, +1,1,6466,2026,1,1,,0,,,9,27,10,9/27/26 9:00, +1,1,6467,2026,1,1,,0,,,9,27,11,9/27/26 10:00, +1,1,6468,2026,1,1,,0,,,9,27,12,9/27/26 11:00, +1,1,6469,2026,1,1,,0,,,9,27,13,9/27/26 12:00, +1,1,6470,2026,1,1,,0,,,9,27,14,9/27/26 13:00, +1,1,6471,2026,1,1,,0,,,9,27,15,9/27/26 14:00, +1,1,6472,2026,1,1,,0,,,9,27,16,9/27/26 15:00, +1,1,6473,2026,1,1,,0,,,9,27,17,9/27/26 16:00, +1,1,6474,2026,1,1,,0,,,9,27,18,9/27/26 17:00, +1,1,6475,2026,1,1,,0,,,9,27,19,9/27/26 18:00, +1,1,6476,2026,1,1,,0,,,9,27,20,9/27/26 19:00, +1,1,6477,2026,1,1,,0,,,9,27,21,9/27/26 20:00, +1,1,6478,2026,1,1,,0,,,9,27,22,9/27/26 21:00, +1,1,6479,2026,1,1,,0,,,9,27,23,9/27/26 22:00, +1,1,6480,2026,1,1,,0,,,9,27,24,9/27/26 23:00, +1,1,6481,2026,1,1,,0,,,9,28,1,9/28/26 0:00, +1,1,6482,2026,1,1,,0,,,9,28,2,9/28/26 1:00, +1,1,6483,2026,1,1,,0,,,9,28,3,9/28/26 2:00, +1,1,6484,2026,1,1,,0,,,9,28,4,9/28/26 3:00, +1,1,6485,2026,1,1,,0,,,9,28,5,9/28/26 4:00, +1,1,6486,2026,1,1,,0,,,9,28,6,9/28/26 5:00, +1,1,6487,2026,1,1,,0,,,9,28,7,9/28/26 6:00, +1,1,6488,2026,1,1,,0,,,9,28,8,9/28/26 7:00, +1,1,6489,2026,1,1,,0,,,9,28,9,9/28/26 8:00, +1,1,6490,2026,1,1,,0,,,9,28,10,9/28/26 9:00, +1,1,6491,2026,1,1,,0,,,9,28,11,9/28/26 10:00, +1,1,6492,2026,1,1,,0,,,9,28,12,9/28/26 11:00, +1,1,6493,2026,1,1,,0,,,9,28,13,9/28/26 12:00, +1,1,6494,2026,1,1,,0,,,9,28,14,9/28/26 13:00, +1,1,6495,2026,1,1,,0,,,9,28,15,9/28/26 14:00, +1,1,6496,2026,1,1,,0,,,9,28,16,9/28/26 15:00, +1,1,6497,2026,1,1,,0,,,9,28,17,9/28/26 16:00, +1,1,6498,2026,1,1,,0,,,9,28,18,9/28/26 17:00, +1,1,6499,2026,1,1,,0,,,9,28,19,9/28/26 18:00, +1,1,6500,2026,1,1,,0,,,9,28,20,9/28/26 19:00, +1,1,6501,2026,1,1,,0,,,9,28,21,9/28/26 20:00, +1,1,6502,2026,1,1,,0,,,9,28,22,9/28/26 21:00, +1,1,6503,2026,1,1,,0,,,9,28,23,9/28/26 22:00, +1,1,6504,2026,1,1,,0,,,9,28,24,9/28/26 23:00, +1,1,6505,2026,1,1,,0,,,9,29,1,9/29/26 0:00, +1,1,6506,2026,1,1,,0,,,9,29,2,9/29/26 1:00, +1,1,6507,2026,1,1,,0,,,9,29,3,9/29/26 2:00, +1,1,6508,2026,1,1,,0,,,9,29,4,9/29/26 3:00, +1,1,6509,2026,1,1,,0,,,9,29,5,9/29/26 4:00, +1,1,6510,2026,1,1,,0,,,9,29,6,9/29/26 5:00, +1,1,6511,2026,1,1,,0,,,9,29,7,9/29/26 6:00, +1,1,6512,2026,1,1,,0,,,9,29,8,9/29/26 7:00, +1,1,6513,2026,1,1,,0,,,9,29,9,9/29/26 8:00, +1,1,6514,2026,1,1,,0,,,9,29,10,9/29/26 9:00, +1,1,6515,2026,1,1,,0,,,9,29,11,9/29/26 10:00, +1,1,6516,2026,1,1,,0,,,9,29,12,9/29/26 11:00, +1,1,6517,2026,1,1,,0,,,9,29,13,9/29/26 12:00, +1,1,6518,2026,1,1,,0,,,9,29,14,9/29/26 13:00, +1,1,6519,2026,1,1,,0,,,9,29,15,9/29/26 14:00, +1,1,6520,2026,1,1,,0,,,9,29,16,9/29/26 15:00, +1,1,6521,2026,1,1,,0,,,9,29,17,9/29/26 16:00, +1,1,6522,2026,1,1,,0,,,9,29,18,9/29/26 17:00, +1,1,6523,2026,1,1,,0,,,9,29,19,9/29/26 18:00, +1,1,6524,2026,1,1,,0,,,9,29,20,9/29/26 19:00, +1,1,6525,2026,1,1,,0,,,9,29,21,9/29/26 20:00, +1,1,6526,2026,1,1,,0,,,9,29,22,9/29/26 21:00, +1,1,6527,2026,1,1,,0,,,9,29,23,9/29/26 22:00, +1,1,6528,2026,1,1,,0,,,9,29,24,9/29/26 23:00, +1,1,6529,2026,1,1,,0,,,9,30,1,9/30/26 0:00, +1,1,6530,2026,1,1,,0,,,9,30,2,9/30/26 1:00, +1,1,6531,2026,1,1,,0,,,9,30,3,9/30/26 2:00, +1,1,6532,2026,1,1,,0,,,9,30,4,9/30/26 3:00, +1,1,6533,2026,1,1,,0,,,9,30,5,9/30/26 4:00, +1,1,6534,2026,1,1,,0,,,9,30,6,9/30/26 5:00, +1,1,6535,2026,1,1,,0,,,9,30,7,9/30/26 6:00, +1,1,6536,2026,1,1,,0,,,9,30,8,9/30/26 7:00, +1,1,6537,2026,1,1,,0,,,9,30,9,9/30/26 8:00, +1,1,6538,2026,1,1,,0,,,9,30,10,9/30/26 9:00, +1,1,6539,2026,1,1,,0,,,9,30,11,9/30/26 10:00, +1,1,6540,2026,1,1,,0,,,9,30,12,9/30/26 11:00, +1,1,6541,2026,1,1,,0,,,9,30,13,9/30/26 12:00, +1,1,6542,2026,1,1,,0,,,9,30,14,9/30/26 13:00, +1,1,6543,2026,1,1,,0,,,9,30,15,9/30/26 14:00, +1,1,6544,2026,1,1,,0,,,9,30,16,9/30/26 15:00, +1,1,6545,2026,1,1,,0,,,9,30,17,9/30/26 16:00, +1,1,6546,2026,1,1,,0,,,9,30,18,9/30/26 17:00, +1,1,6547,2026,1,1,,0,,,9,30,19,9/30/26 18:00, +1,1,6548,2026,1,1,,0,,,9,30,20,9/30/26 19:00, +1,1,6549,2026,1,1,,0,,,9,30,21,9/30/26 20:00, +1,1,6550,2026,1,1,,0,,,9,30,22,9/30/26 21:00, +1,1,6551,2026,1,1,,0,,,9,30,23,9/30/26 22:00, +1,1,6552,2026,1,1,,0,,,9,30,24,9/30/26 23:00, +1,1,6553,2026,1,1,,0,,,10,1,1,10/1/26 0:00, +1,1,6554,2026,1,1,,0,,,10,1,2,10/1/26 1:00, +1,1,6555,2026,1,1,,0,,,10,1,3,10/1/26 2:00, +1,1,6556,2026,1,1,,0,,,10,1,4,10/1/26 3:00, +1,1,6557,2026,1,1,,0,,,10,1,5,10/1/26 4:00, +1,1,6558,2026,1,1,,0,,,10,1,6,10/1/26 5:00, +1,1,6559,2026,1,1,,0,,,10,1,7,10/1/26 6:00, +1,1,6560,2026,1,1,,0,,,10,1,8,10/1/26 7:00, +1,1,6561,2026,1,1,,0,,,10,1,9,10/1/26 8:00, +1,1,6562,2026,1,1,,0,,,10,1,10,10/1/26 9:00, +1,1,6563,2026,1,1,,0,,,10,1,11,10/1/26 10:00, +1,1,6564,2026,1,1,,0,,,10,1,12,10/1/26 11:00, +1,1,6565,2026,1,1,,0,,,10,1,13,10/1/26 12:00, +1,1,6566,2026,1,1,,0,,,10,1,14,10/1/26 13:00, +1,1,6567,2026,1,1,,0,,,10,1,15,10/1/26 14:00, +1,1,6568,2026,1,1,,0,,,10,1,16,10/1/26 15:00, +1,1,6569,2026,1,1,,0,,,10,1,17,10/1/26 16:00, +1,1,6570,2026,1,1,,0,,,10,1,18,10/1/26 17:00, +1,1,6571,2026,1,1,,0,,,10,1,19,10/1/26 18:00, +1,1,6572,2026,1,1,,0,,,10,1,20,10/1/26 19:00, +1,1,6573,2026,1,1,,0,,,10,1,21,10/1/26 20:00, +1,1,6574,2026,1,1,,0,,,10,1,22,10/1/26 21:00, +1,1,6575,2026,1,1,,0,,,10,1,23,10/1/26 22:00, +1,1,6576,2026,1,1,,0,,,10,1,24,10/1/26 23:00, +1,1,6577,2026,1,1,,0,,,10,2,1,10/2/26 0:00, +1,1,6578,2026,1,1,,0,,,10,2,2,10/2/26 1:00, +1,1,6579,2026,1,1,,0,,,10,2,3,10/2/26 2:00, +1,1,6580,2026,1,1,,0,,,10,2,4,10/2/26 3:00, +1,1,6581,2026,1,1,,0,,,10,2,5,10/2/26 4:00, +1,1,6582,2026,1,1,,0,,,10,2,6,10/2/26 5:00, +1,1,6583,2026,1,1,,0,,,10,2,7,10/2/26 6:00, +1,1,6584,2026,1,1,,0,,,10,2,8,10/2/26 7:00, +1,1,6585,2026,1,1,,0,,,10,2,9,10/2/26 8:00, +1,1,6586,2026,1,1,,0,,,10,2,10,10/2/26 9:00, +1,1,6587,2026,1,1,,0,,,10,2,11,10/2/26 10:00, +1,1,6588,2026,1,1,,0,,,10,2,12,10/2/26 11:00, +1,1,6589,2026,1,1,,0,,,10,2,13,10/2/26 12:00, +1,1,6590,2026,1,1,,0,,,10,2,14,10/2/26 13:00, +1,1,6591,2026,1,1,,0,,,10,2,15,10/2/26 14:00, +1,1,6592,2026,1,1,,0,,,10,2,16,10/2/26 15:00, +1,1,6593,2026,1,1,,0,,,10,2,17,10/2/26 16:00, +1,1,6594,2026,1,1,,0,,,10,2,18,10/2/26 17:00, +1,1,6595,2026,1,1,,0,,,10,2,19,10/2/26 18:00, +1,1,6596,2026,1,1,,0,,,10,2,20,10/2/26 19:00, +1,1,6597,2026,1,1,,0,,,10,2,21,10/2/26 20:00, +1,1,6598,2026,1,1,,0,,,10,2,22,10/2/26 21:00, +1,1,6599,2026,1,1,,0,,,10,2,23,10/2/26 22:00, +1,1,6600,2026,1,1,,0,,,10,2,24,10/2/26 23:00, +1,1,6601,2026,1,1,,0,,,10,3,1,10/3/26 0:00, +1,1,6602,2026,1,1,,0,,,10,3,2,10/3/26 1:00, +1,1,6603,2026,1,1,,0,,,10,3,3,10/3/26 2:00, +1,1,6604,2026,1,1,,0,,,10,3,4,10/3/26 3:00, +1,1,6605,2026,1,1,,0,,,10,3,5,10/3/26 4:00, +1,1,6606,2026,1,1,,0,,,10,3,6,10/3/26 5:00, +1,1,6607,2026,1,1,,0,,,10,3,7,10/3/26 6:00, +1,1,6608,2026,1,1,,0,,,10,3,8,10/3/26 7:00, +1,1,6609,2026,1,1,,0,,,10,3,9,10/3/26 8:00, +1,1,6610,2026,1,1,,0,,,10,3,10,10/3/26 9:00, +1,1,6611,2026,1,1,,0,,,10,3,11,10/3/26 10:00, +1,1,6612,2026,1,1,,0,,,10,3,12,10/3/26 11:00, +1,1,6613,2026,1,1,,0,,,10,3,13,10/3/26 12:00, +1,1,6614,2026,1,1,,0,,,10,3,14,10/3/26 13:00, +1,1,6615,2026,1,1,,0,,,10,3,15,10/3/26 14:00, +1,1,6616,2026,1,1,,0,,,10,3,16,10/3/26 15:00, +1,1,6617,2026,1,1,,0,,,10,3,17,10/3/26 16:00, +1,1,6618,2026,1,1,,0,,,10,3,18,10/3/26 17:00, +1,1,6619,2026,1,1,,0,,,10,3,19,10/3/26 18:00, +1,1,6620,2026,1,1,,0,,,10,3,20,10/3/26 19:00, +1,1,6621,2026,1,1,,0,,,10,3,21,10/3/26 20:00, +1,1,6622,2026,1,1,,0,,,10,3,22,10/3/26 21:00, +1,1,6623,2026,1,1,,0,,,10,3,23,10/3/26 22:00, +1,1,6624,2026,1,1,,0,,,10,3,24,10/3/26 23:00, +1,1,6625,2026,1,1,,0,,,10,4,1,10/4/26 0:00, +1,1,6626,2026,1,1,,0,,,10,4,2,10/4/26 1:00, +1,1,6627,2026,1,1,,0,,,10,4,3,10/4/26 2:00, +1,1,6628,2026,1,1,,0,,,10,4,4,10/4/26 3:00, +1,1,6629,2026,1,1,,0,,,10,4,5,10/4/26 4:00, +1,1,6630,2026,1,1,,0,,,10,4,6,10/4/26 5:00, +1,1,6631,2026,1,1,,0,,,10,4,7,10/4/26 6:00, +1,1,6632,2026,1,1,,0,,,10,4,8,10/4/26 7:00, +1,1,6633,2026,1,1,,0,,,10,4,9,10/4/26 8:00, +1,1,6634,2026,1,1,,0,,,10,4,10,10/4/26 9:00, +1,1,6635,2026,1,1,,0,,,10,4,11,10/4/26 10:00, +1,1,6636,2026,1,1,,0,,,10,4,12,10/4/26 11:00, +1,1,6637,2026,1,1,,0,,,10,4,13,10/4/26 12:00, +1,1,6638,2026,1,1,,0,,,10,4,14,10/4/26 13:00, +1,1,6639,2026,1,1,,0,,,10,4,15,10/4/26 14:00, +1,1,6640,2026,1,1,,0,,,10,4,16,10/4/26 15:00, +1,1,6641,2026,1,1,,0,,,10,4,17,10/4/26 16:00, +1,1,6642,2026,1,1,,0,,,10,4,18,10/4/26 17:00, +1,1,6643,2026,1,1,,0,,,10,4,19,10/4/26 18:00, +1,1,6644,2026,1,1,,0,,,10,4,20,10/4/26 19:00, +1,1,6645,2026,1,1,,0,,,10,4,21,10/4/26 20:00, +1,1,6646,2026,1,1,,0,,,10,4,22,10/4/26 21:00, +1,1,6647,2026,1,1,,0,,,10,4,23,10/4/26 22:00, +1,1,6648,2026,1,1,,0,,,10,4,24,10/4/26 23:00, +1,1,6649,2026,1,1,,0,,,10,5,1,10/5/26 0:00, +1,1,6650,2026,1,1,,0,,,10,5,2,10/5/26 1:00, +1,1,6651,2026,1,1,,0,,,10,5,3,10/5/26 2:00, +1,1,6652,2026,1,1,,0,,,10,5,4,10/5/26 3:00, +1,1,6653,2026,1,1,,0,,,10,5,5,10/5/26 4:00, +1,1,6654,2026,1,1,,0,,,10,5,6,10/5/26 5:00, +1,1,6655,2026,1,1,,0,,,10,5,7,10/5/26 6:00, +1,1,6656,2026,1,1,,0,,,10,5,8,10/5/26 7:00, +1,1,6657,2026,1,1,,0,,,10,5,9,10/5/26 8:00, +1,1,6658,2026,1,1,,0,,,10,5,10,10/5/26 9:00, +1,1,6659,2026,1,1,,0,,,10,5,11,10/5/26 10:00, +1,1,6660,2026,1,1,,0,,,10,5,12,10/5/26 11:00, +1,1,6661,2026,1,1,,0,,,10,5,13,10/5/26 12:00, +1,1,6662,2026,1,1,,0,,,10,5,14,10/5/26 13:00, +1,1,6663,2026,1,1,,0,,,10,5,15,10/5/26 14:00, +1,1,6664,2026,1,1,,0,,,10,5,16,10/5/26 15:00, +1,1,6665,2026,1,1,,0,,,10,5,17,10/5/26 16:00, +1,1,6666,2026,1,1,,0,,,10,5,18,10/5/26 17:00, +1,1,6667,2026,1,1,,0,,,10,5,19,10/5/26 18:00, +1,1,6668,2026,1,1,,0,,,10,5,20,10/5/26 19:00, +1,1,6669,2026,1,1,,0,,,10,5,21,10/5/26 20:00, +1,1,6670,2026,1,1,,0,,,10,5,22,10/5/26 21:00, +1,1,6671,2026,1,1,,0,,,10,5,23,10/5/26 22:00, +1,1,6672,2026,1,1,,0,,,10,5,24,10/5/26 23:00, +1,1,6673,2026,1,1,,0,,,10,6,1,10/6/26 0:00, +1,1,6674,2026,1,1,,0,,,10,6,2,10/6/26 1:00, +1,1,6675,2026,1,1,,0,,,10,6,3,10/6/26 2:00, +1,1,6676,2026,1,1,,0,,,10,6,4,10/6/26 3:00, +1,1,6677,2026,1,1,,0,,,10,6,5,10/6/26 4:00, +1,1,6678,2026,1,1,,0,,,10,6,6,10/6/26 5:00, +1,1,6679,2026,1,1,,0,,,10,6,7,10/6/26 6:00, +1,1,6680,2026,1,1,,0,,,10,6,8,10/6/26 7:00, +1,1,6681,2026,1,1,,0,,,10,6,9,10/6/26 8:00, +1,1,6682,2026,1,1,,0,,,10,6,10,10/6/26 9:00, +1,1,6683,2026,1,1,,0,,,10,6,11,10/6/26 10:00, +1,1,6684,2026,1,1,,0,,,10,6,12,10/6/26 11:00, +1,1,6685,2026,1,1,,0,,,10,6,13,10/6/26 12:00, +1,1,6686,2026,1,1,,0,,,10,6,14,10/6/26 13:00, +1,1,6687,2026,1,1,,0,,,10,6,15,10/6/26 14:00, +1,1,6688,2026,1,1,,0,,,10,6,16,10/6/26 15:00, +1,1,6689,2026,1,1,,0,,,10,6,17,10/6/26 16:00, +1,1,6690,2026,1,1,,0,,,10,6,18,10/6/26 17:00, +1,1,6691,2026,1,1,,0,,,10,6,19,10/6/26 18:00, +1,1,6692,2026,1,1,,0,,,10,6,20,10/6/26 19:00, +1,1,6693,2026,1,1,,0,,,10,6,21,10/6/26 20:00, +1,1,6694,2026,1,1,,0,,,10,6,22,10/6/26 21:00, +1,1,6695,2026,1,1,,0,,,10,6,23,10/6/26 22:00, +1,1,6696,2026,1,1,,0,,,10,6,24,10/6/26 23:00, +1,1,6697,2026,1,1,,0,,,10,7,1,10/7/26 0:00, +1,1,6698,2026,1,1,,0,,,10,7,2,10/7/26 1:00, +1,1,6699,2026,1,1,,0,,,10,7,3,10/7/26 2:00, +1,1,6700,2026,1,1,,0,,,10,7,4,10/7/26 3:00, +1,1,6701,2026,1,1,,0,,,10,7,5,10/7/26 4:00, +1,1,6702,2026,1,1,,0,,,10,7,6,10/7/26 5:00, +1,1,6703,2026,1,1,,0,,,10,7,7,10/7/26 6:00, +1,1,6704,2026,1,1,,0,,,10,7,8,10/7/26 7:00, +1,1,6705,2026,1,1,,0,,,10,7,9,10/7/26 8:00, +1,1,6706,2026,1,1,,0,,,10,7,10,10/7/26 9:00, +1,1,6707,2026,1,1,,0,,,10,7,11,10/7/26 10:00, +1,1,6708,2026,1,1,,0,,,10,7,12,10/7/26 11:00, +1,1,6709,2026,1,1,,0,,,10,7,13,10/7/26 12:00, +1,1,6710,2026,1,1,,0,,,10,7,14,10/7/26 13:00, +1,1,6711,2026,1,1,,0,,,10,7,15,10/7/26 14:00, +1,1,6712,2026,1,1,,0,,,10,7,16,10/7/26 15:00, +1,1,6713,2026,1,1,,0,,,10,7,17,10/7/26 16:00, +1,1,6714,2026,1,1,,0,,,10,7,18,10/7/26 17:00, +1,1,6715,2026,1,1,,0,,,10,7,19,10/7/26 18:00, +1,1,6716,2026,1,1,,0,,,10,7,20,10/7/26 19:00, +1,1,6717,2026,1,1,,0,,,10,7,21,10/7/26 20:00, +1,1,6718,2026,1,1,,0,,,10,7,22,10/7/26 21:00, +1,1,6719,2026,1,1,,0,,,10,7,23,10/7/26 22:00, +1,1,6720,2026,1,1,,0,,,10,7,24,10/7/26 23:00, +1,1,6721,2026,1,1,,0,,,10,8,1,10/8/26 0:00, +1,1,6722,2026,1,1,,0,,,10,8,2,10/8/26 1:00, +1,1,6723,2026,1,1,,0,,,10,8,3,10/8/26 2:00, +1,1,6724,2026,1,1,,0,,,10,8,4,10/8/26 3:00, +1,1,6725,2026,1,1,,0,,,10,8,5,10/8/26 4:00, +1,1,6726,2026,1,1,,0,,,10,8,6,10/8/26 5:00, +1,1,6727,2026,1,1,,0,,,10,8,7,10/8/26 6:00, +1,1,6728,2026,1,1,,0,,,10,8,8,10/8/26 7:00, +1,1,6729,2026,1,1,,0,,,10,8,9,10/8/26 8:00, +1,1,6730,2026,1,1,,0,,,10,8,10,10/8/26 9:00, +1,1,6731,2026,1,1,,0,,,10,8,11,10/8/26 10:00, +1,1,6732,2026,1,1,,0,,,10,8,12,10/8/26 11:00, +1,1,6733,2026,1,1,,0,,,10,8,13,10/8/26 12:00, +1,1,6734,2026,1,1,,0,,,10,8,14,10/8/26 13:00, +1,1,6735,2026,1,1,,0,,,10,8,15,10/8/26 14:00, +1,1,6736,2026,1,1,,0,,,10,8,16,10/8/26 15:00, +1,1,6737,2026,1,1,,0,,,10,8,17,10/8/26 16:00, +1,1,6738,2026,1,1,,0,,,10,8,18,10/8/26 17:00, +1,1,6739,2026,1,1,,0,,,10,8,19,10/8/26 18:00, +1,1,6740,2026,1,1,,0,,,10,8,20,10/8/26 19:00, +1,1,6741,2026,1,1,,0,,,10,8,21,10/8/26 20:00, +1,1,6742,2026,1,1,,0,,,10,8,22,10/8/26 21:00, +1,1,6743,2026,1,1,,0,,,10,8,23,10/8/26 22:00, +1,1,6744,2026,1,1,,0,,,10,8,24,10/8/26 23:00, +1,1,6745,2026,1,1,,0,,,10,9,1,10/9/26 0:00, +1,1,6746,2026,1,1,,0,,,10,9,2,10/9/26 1:00, +1,1,6747,2026,1,1,,0,,,10,9,3,10/9/26 2:00, +1,1,6748,2026,1,1,,0,,,10,9,4,10/9/26 3:00, +1,1,6749,2026,1,1,,0,,,10,9,5,10/9/26 4:00, +1,1,6750,2026,1,1,,0,,,10,9,6,10/9/26 5:00, +1,1,6751,2026,1,1,,0,,,10,9,7,10/9/26 6:00, +1,1,6752,2026,1,1,,0,,,10,9,8,10/9/26 7:00, +1,1,6753,2026,1,1,,0,,,10,9,9,10/9/26 8:00, +1,1,6754,2026,1,1,,0,,,10,9,10,10/9/26 9:00, +1,1,6755,2026,1,1,,0,,,10,9,11,10/9/26 10:00, +1,1,6756,2026,1,1,,0,,,10,9,12,10/9/26 11:00, +1,1,6757,2026,1,1,,0,,,10,9,13,10/9/26 12:00, +1,1,6758,2026,1,1,,0,,,10,9,14,10/9/26 13:00, +1,1,6759,2026,1,1,,0,,,10,9,15,10/9/26 14:00, +1,1,6760,2026,1,1,,0,,,10,9,16,10/9/26 15:00, +1,1,6761,2026,1,1,,0,,,10,9,17,10/9/26 16:00, +1,1,6762,2026,1,1,,0,,,10,9,18,10/9/26 17:00, +1,1,6763,2026,1,1,,0,,,10,9,19,10/9/26 18:00, +1,1,6764,2026,1,1,,0,,,10,9,20,10/9/26 19:00, +1,1,6765,2026,1,1,,0,,,10,9,21,10/9/26 20:00, +1,1,6766,2026,1,1,,0,,,10,9,22,10/9/26 21:00, +1,1,6767,2026,1,1,,0,,,10,9,23,10/9/26 22:00, +1,1,6768,2026,1,1,,0,,,10,9,24,10/9/26 23:00, +1,1,6769,2026,1,1,,0,,,10,10,1,10/10/26 0:00, +1,1,6770,2026,1,1,,0,,,10,10,2,10/10/26 1:00, +1,1,6771,2026,1,1,,0,,,10,10,3,10/10/26 2:00, +1,1,6772,2026,1,1,,0,,,10,10,4,10/10/26 3:00, +1,1,6773,2026,1,1,,0,,,10,10,5,10/10/26 4:00, +1,1,6774,2026,1,1,,0,,,10,10,6,10/10/26 5:00, +1,1,6775,2026,1,1,,0,,,10,10,7,10/10/26 6:00, +1,1,6776,2026,1,1,,0,,,10,10,8,10/10/26 7:00, +1,1,6777,2026,1,1,,0,,,10,10,9,10/10/26 8:00, +1,1,6778,2026,1,1,,0,,,10,10,10,10/10/26 9:00, +1,1,6779,2026,1,1,,0,,,10,10,11,10/10/26 10:00, +1,1,6780,2026,1,1,,0,,,10,10,12,10/10/26 11:00, +1,1,6781,2026,1,1,,0,,,10,10,13,10/10/26 12:00, +1,1,6782,2026,1,1,,0,,,10,10,14,10/10/26 13:00, +1,1,6783,2026,1,1,,0,,,10,10,15,10/10/26 14:00, +1,1,6784,2026,1,1,,0,,,10,10,16,10/10/26 15:00, +1,1,6785,2026,1,1,,0,,,10,10,17,10/10/26 16:00, +1,1,6786,2026,1,1,,0,,,10,10,18,10/10/26 17:00, +1,1,6787,2026,1,1,,0,,,10,10,19,10/10/26 18:00, +1,1,6788,2026,1,1,,0,,,10,10,20,10/10/26 19:00, +1,1,6789,2026,1,1,,0,,,10,10,21,10/10/26 20:00, +1,1,6790,2026,1,1,,0,,,10,10,22,10/10/26 21:00, +1,1,6791,2026,1,1,,0,,,10,10,23,10/10/26 22:00, +1,1,6792,2026,1,1,,0,,,10,10,24,10/10/26 23:00, +1,1,6793,2026,1,1,,0,,,10,11,1,10/11/26 0:00, +1,1,6794,2026,1,1,,0,,,10,11,2,10/11/26 1:00, +1,1,6795,2026,1,1,,0,,,10,11,3,10/11/26 2:00, +1,1,6796,2026,1,1,,0,,,10,11,4,10/11/26 3:00, +1,1,6797,2026,1,1,,0,,,10,11,5,10/11/26 4:00, +1,1,6798,2026,1,1,,0,,,10,11,6,10/11/26 5:00, +1,1,6799,2026,1,1,,0,,,10,11,7,10/11/26 6:00, +1,1,6800,2026,1,1,,0,,,10,11,8,10/11/26 7:00, +1,1,6801,2026,1,1,,0,,,10,11,9,10/11/26 8:00, +1,1,6802,2026,1,1,,0,,,10,11,10,10/11/26 9:00, +1,1,6803,2026,1,1,,0,,,10,11,11,10/11/26 10:00, +1,1,6804,2026,1,1,,0,,,10,11,12,10/11/26 11:00, +1,1,6805,2026,1,1,,0,,,10,11,13,10/11/26 12:00, +1,1,6806,2026,1,1,,0,,,10,11,14,10/11/26 13:00, +1,1,6807,2026,1,1,,0,,,10,11,15,10/11/26 14:00, +1,1,6808,2026,1,1,,0,,,10,11,16,10/11/26 15:00, +1,1,6809,2026,1,1,,0,,,10,11,17,10/11/26 16:00, +1,1,6810,2026,1,1,,0,,,10,11,18,10/11/26 17:00, +1,1,6811,2026,1,1,,0,,,10,11,19,10/11/26 18:00, +1,1,6812,2026,1,1,,0,,,10,11,20,10/11/26 19:00, +1,1,6813,2026,1,1,,0,,,10,11,21,10/11/26 20:00, +1,1,6814,2026,1,1,,0,,,10,11,22,10/11/26 21:00, +1,1,6815,2026,1,1,,0,,,10,11,23,10/11/26 22:00, +1,1,6816,2026,1,1,,0,,,10,11,24,10/11/26 23:00, +1,1,6817,2026,1,1,,0,,,10,12,1,10/12/26 0:00, +1,1,6818,2026,1,1,,0,,,10,12,2,10/12/26 1:00, +1,1,6819,2026,1,1,,0,,,10,12,3,10/12/26 2:00, +1,1,6820,2026,1,1,,0,,,10,12,4,10/12/26 3:00, +1,1,6821,2026,1,1,,0,,,10,12,5,10/12/26 4:00, +1,1,6822,2026,1,1,,0,,,10,12,6,10/12/26 5:00, +1,1,6823,2026,1,1,,0,,,10,12,7,10/12/26 6:00, +1,1,6824,2026,1,1,,0,,,10,12,8,10/12/26 7:00, +1,1,6825,2026,1,1,,0,,,10,12,9,10/12/26 8:00, +1,1,6826,2026,1,1,,0,,,10,12,10,10/12/26 9:00, +1,1,6827,2026,1,1,,0,,,10,12,11,10/12/26 10:00, +1,1,6828,2026,1,1,,0,,,10,12,12,10/12/26 11:00, +1,1,6829,2026,1,1,,0,,,10,12,13,10/12/26 12:00, +1,1,6830,2026,1,1,,0,,,10,12,14,10/12/26 13:00, +1,1,6831,2026,1,1,,0,,,10,12,15,10/12/26 14:00, +1,1,6832,2026,1,1,,0,,,10,12,16,10/12/26 15:00, +1,1,6833,2026,1,1,,0,,,10,12,17,10/12/26 16:00, +1,1,6834,2026,1,1,,0,,,10,12,18,10/12/26 17:00, +1,1,6835,2026,1,1,,0,,,10,12,19,10/12/26 18:00, +1,1,6836,2026,1,1,,0,,,10,12,20,10/12/26 19:00, +1,1,6837,2026,1,1,,0,,,10,12,21,10/12/26 20:00, +1,1,6838,2026,1,1,,0,,,10,12,22,10/12/26 21:00, +1,1,6839,2026,1,1,,0,,,10,12,23,10/12/26 22:00, +1,1,6840,2026,1,1,,0,,,10,12,24,10/12/26 23:00, +1,1,6841,2026,1,1,,0,,,10,13,1,10/13/26 0:00, +1,1,6842,2026,1,1,,0,,,10,13,2,10/13/26 1:00, +1,1,6843,2026,1,1,,0,,,10,13,3,10/13/26 2:00, +1,1,6844,2026,1,1,,0,,,10,13,4,10/13/26 3:00, +1,1,6845,2026,1,1,,0,,,10,13,5,10/13/26 4:00, +1,1,6846,2026,1,1,,0,,,10,13,6,10/13/26 5:00, +1,1,6847,2026,1,1,,0,,,10,13,7,10/13/26 6:00, +1,1,6848,2026,1,1,,0,,,10,13,8,10/13/26 7:00, +1,1,6849,2026,1,1,,0,,,10,13,9,10/13/26 8:00, +1,1,6850,2026,1,1,,0,,,10,13,10,10/13/26 9:00, +1,1,6851,2026,1,1,,0,,,10,13,11,10/13/26 10:00, +1,1,6852,2026,1,1,,0,,,10,13,12,10/13/26 11:00, +1,1,6853,2026,1,1,,0,,,10,13,13,10/13/26 12:00, +1,1,6854,2026,1,1,,0,,,10,13,14,10/13/26 13:00, +1,1,6855,2026,1,1,,0,,,10,13,15,10/13/26 14:00, +1,1,6856,2026,1,1,,0,,,10,13,16,10/13/26 15:00, +1,1,6857,2026,1,1,,0,,,10,13,17,10/13/26 16:00, +1,1,6858,2026,1,1,,0,,,10,13,18,10/13/26 17:00, +1,1,6859,2026,1,1,,0,,,10,13,19,10/13/26 18:00, +1,1,6860,2026,1,1,,0,,,10,13,20,10/13/26 19:00, +1,1,6861,2026,1,1,,0,,,10,13,21,10/13/26 20:00, +1,1,6862,2026,1,1,,0,,,10,13,22,10/13/26 21:00, +1,1,6863,2026,1,1,,0,,,10,13,23,10/13/26 22:00, +1,1,6864,2026,1,1,,0,,,10,13,24,10/13/26 23:00, +1,1,6865,2026,1,1,,0,,,10,14,1,10/14/26 0:00, +1,1,6866,2026,1,1,,0,,,10,14,2,10/14/26 1:00, +1,1,6867,2026,1,1,,0,,,10,14,3,10/14/26 2:00, +1,1,6868,2026,1,1,,0,,,10,14,4,10/14/26 3:00, +1,1,6869,2026,1,1,,0,,,10,14,5,10/14/26 4:00, +1,1,6870,2026,1,1,,0,,,10,14,6,10/14/26 5:00, +1,1,6871,2026,1,1,,0,,,10,14,7,10/14/26 6:00, +1,1,6872,2026,1,1,,0,,,10,14,8,10/14/26 7:00, +1,1,6873,2026,1,1,,0,,,10,14,9,10/14/26 8:00, +1,1,6874,2026,1,1,,0,,,10,14,10,10/14/26 9:00, +1,1,6875,2026,1,1,,0,,,10,14,11,10/14/26 10:00, +1,1,6876,2026,1,1,,0,,,10,14,12,10/14/26 11:00, +1,1,6877,2026,1,1,,0,,,10,14,13,10/14/26 12:00, +1,1,6878,2026,1,1,,0,,,10,14,14,10/14/26 13:00, +1,1,6879,2026,1,1,,0,,,10,14,15,10/14/26 14:00, +1,1,6880,2026,1,1,,0,,,10,14,16,10/14/26 15:00, +1,1,6881,2026,1,1,,0,,,10,14,17,10/14/26 16:00, +1,1,6882,2026,1,1,,0,,,10,14,18,10/14/26 17:00, +1,1,6883,2026,1,1,,0,,,10,14,19,10/14/26 18:00, +1,1,6884,2026,1,1,,0,,,10,14,20,10/14/26 19:00, +1,1,6885,2026,1,1,,0,,,10,14,21,10/14/26 20:00, +1,1,6886,2026,1,1,,0,,,10,14,22,10/14/26 21:00, +1,1,6887,2026,1,1,,0,,,10,14,23,10/14/26 22:00, +1,1,6888,2026,1,1,,0,,,10,14,24,10/14/26 23:00, +1,1,6889,2026,1,1,,0,,,10,15,1,10/15/26 0:00, +1,1,6890,2026,1,1,,0,,,10,15,2,10/15/26 1:00, +1,1,6891,2026,1,1,,0,,,10,15,3,10/15/26 2:00, +1,1,6892,2026,1,1,,0,,,10,15,4,10/15/26 3:00, +1,1,6893,2026,1,1,,0,,,10,15,5,10/15/26 4:00, +1,1,6894,2026,1,1,,0,,,10,15,6,10/15/26 5:00, +1,1,6895,2026,1,1,,0,,,10,15,7,10/15/26 6:00, +1,1,6896,2026,1,1,,0,,,10,15,8,10/15/26 7:00, +1,1,6897,2026,1,1,,0,,,10,15,9,10/15/26 8:00, +1,1,6898,2026,1,1,,0,,,10,15,10,10/15/26 9:00, +1,1,6899,2026,1,1,,0,,,10,15,11,10/15/26 10:00, +1,1,6900,2026,1,1,,0,,,10,15,12,10/15/26 11:00, +1,1,6901,2026,1,1,,0,,,10,15,13,10/15/26 12:00, +1,1,6902,2026,1,1,,0,,,10,15,14,10/15/26 13:00, +1,1,6903,2026,1,1,,0,,,10,15,15,10/15/26 14:00, +1,1,6904,2026,1,1,,0,,,10,15,16,10/15/26 15:00, +1,1,6905,2026,1,1,,0,,,10,15,17,10/15/26 16:00, +1,1,6906,2026,1,1,,0,,,10,15,18,10/15/26 17:00, +1,1,6907,2026,1,1,,0,,,10,15,19,10/15/26 18:00, +1,1,6908,2026,1,1,,0,,,10,15,20,10/15/26 19:00, +1,1,6909,2026,1,1,,0,,,10,15,21,10/15/26 20:00, +1,1,6910,2026,1,1,,0,,,10,15,22,10/15/26 21:00, +1,1,6911,2026,1,1,,0,,,10,15,23,10/15/26 22:00, +1,1,6912,2026,1,1,,0,,,10,15,24,10/15/26 23:00, +1,1,6913,2026,1,1,,0,,,10,16,1,10/16/26 0:00, +1,1,6914,2026,1,1,,0,,,10,16,2,10/16/26 1:00, +1,1,6915,2026,1,1,,0,,,10,16,3,10/16/26 2:00, +1,1,6916,2026,1,1,,0,,,10,16,4,10/16/26 3:00, +1,1,6917,2026,1,1,,0,,,10,16,5,10/16/26 4:00, +1,1,6918,2026,1,1,,0,,,10,16,6,10/16/26 5:00, +1,1,6919,2026,1,1,,0,,,10,16,7,10/16/26 6:00, +1,1,6920,2026,1,1,,0,,,10,16,8,10/16/26 7:00, +1,1,6921,2026,1,1,,0,,,10,16,9,10/16/26 8:00, +1,1,6922,2026,1,1,,0,,,10,16,10,10/16/26 9:00, +1,1,6923,2026,1,1,,0,,,10,16,11,10/16/26 10:00, +1,1,6924,2026,1,1,,0,,,10,16,12,10/16/26 11:00, +1,1,6925,2026,1,1,,0,,,10,16,13,10/16/26 12:00, +1,1,6926,2026,1,1,,0,,,10,16,14,10/16/26 13:00, +1,1,6927,2026,1,1,,0,,,10,16,15,10/16/26 14:00, +1,1,6928,2026,1,1,,0,,,10,16,16,10/16/26 15:00, +1,1,6929,2026,1,1,,0,,,10,16,17,10/16/26 16:00, +1,1,6930,2026,1,1,,0,,,10,16,18,10/16/26 17:00, +1,1,6931,2026,1,1,,0,,,10,16,19,10/16/26 18:00, +1,1,6932,2026,1,1,,0,,,10,16,20,10/16/26 19:00, +1,1,6933,2026,1,1,,0,,,10,16,21,10/16/26 20:00, +1,1,6934,2026,1,1,,0,,,10,16,22,10/16/26 21:00, +1,1,6935,2026,1,1,,0,,,10,16,23,10/16/26 22:00, +1,1,6936,2026,1,1,,0,,,10,16,24,10/16/26 23:00, +1,1,6937,2026,1,1,,0,,,10,17,1,10/17/26 0:00, +1,1,6938,2026,1,1,,0,,,10,17,2,10/17/26 1:00, +1,1,6939,2026,1,1,,0,,,10,17,3,10/17/26 2:00, +1,1,6940,2026,1,1,,0,,,10,17,4,10/17/26 3:00, +1,1,6941,2026,1,1,,0,,,10,17,5,10/17/26 4:00, +1,1,6942,2026,1,1,,0,,,10,17,6,10/17/26 5:00, +1,1,6943,2026,1,1,,0,,,10,17,7,10/17/26 6:00, +1,1,6944,2026,1,1,,0,,,10,17,8,10/17/26 7:00, +1,1,6945,2026,1,1,,0,,,10,17,9,10/17/26 8:00, +1,1,6946,2026,1,1,,0,,,10,17,10,10/17/26 9:00, +1,1,6947,2026,1,1,,0,,,10,17,11,10/17/26 10:00, +1,1,6948,2026,1,1,,0,,,10,17,12,10/17/26 11:00, +1,1,6949,2026,1,1,,0,,,10,17,13,10/17/26 12:00, +1,1,6950,2026,1,1,,0,,,10,17,14,10/17/26 13:00, +1,1,6951,2026,1,1,,0,,,10,17,15,10/17/26 14:00, +1,1,6952,2026,1,1,,0,,,10,17,16,10/17/26 15:00, +1,1,6953,2026,1,1,,0,,,10,17,17,10/17/26 16:00, +1,1,6954,2026,1,1,,0,,,10,17,18,10/17/26 17:00, +1,1,6955,2026,1,1,,0,,,10,17,19,10/17/26 18:00, +1,1,6956,2026,1,1,,0,,,10,17,20,10/17/26 19:00, +1,1,6957,2026,1,1,,0,,,10,17,21,10/17/26 20:00, +1,1,6958,2026,1,1,,0,,,10,17,22,10/17/26 21:00, +1,1,6959,2026,1,1,,0,,,10,17,23,10/17/26 22:00, +1,1,6960,2026,1,1,,0,,,10,17,24,10/17/26 23:00, +1,1,6961,2026,1,1,,0,,,10,18,1,10/18/26 0:00, +1,1,6962,2026,1,1,,0,,,10,18,2,10/18/26 1:00, +1,1,6963,2026,1,1,,0,,,10,18,3,10/18/26 2:00, +1,1,6964,2026,1,1,,0,,,10,18,4,10/18/26 3:00, +1,1,6965,2026,1,1,,0,,,10,18,5,10/18/26 4:00, +1,1,6966,2026,1,1,,0,,,10,18,6,10/18/26 5:00, +1,1,6967,2026,1,1,,0,,,10,18,7,10/18/26 6:00, +1,1,6968,2026,1,1,,0,,,10,18,8,10/18/26 7:00, +1,1,6969,2026,1,1,,0,,,10,18,9,10/18/26 8:00, +1,1,6970,2026,1,1,,0,,,10,18,10,10/18/26 9:00, +1,1,6971,2026,1,1,,0,,,10,18,11,10/18/26 10:00, +1,1,6972,2026,1,1,,0,,,10,18,12,10/18/26 11:00, +1,1,6973,2026,1,1,,0,,,10,18,13,10/18/26 12:00, +1,1,6974,2026,1,1,,0,,,10,18,14,10/18/26 13:00, +1,1,6975,2026,1,1,,0,,,10,18,15,10/18/26 14:00, +1,1,6976,2026,1,1,,0,,,10,18,16,10/18/26 15:00, +1,1,6977,2026,1,1,,0,,,10,18,17,10/18/26 16:00, +1,1,6978,2026,1,1,,0,,,10,18,18,10/18/26 17:00, +1,1,6979,2026,1,1,,0,,,10,18,19,10/18/26 18:00, +1,1,6980,2026,1,1,,0,,,10,18,20,10/18/26 19:00, +1,1,6981,2026,1,1,,0,,,10,18,21,10/18/26 20:00, +1,1,6982,2026,1,1,,0,,,10,18,22,10/18/26 21:00, +1,1,6983,2026,1,1,,0,,,10,18,23,10/18/26 22:00, +1,1,6984,2026,1,1,,0,,,10,18,24,10/18/26 23:00, +1,1,6985,2026,1,1,,0,,,10,19,1,10/19/26 0:00, +1,1,6986,2026,1,1,,0,,,10,19,2,10/19/26 1:00, +1,1,6987,2026,1,1,,0,,,10,19,3,10/19/26 2:00, +1,1,6988,2026,1,1,,0,,,10,19,4,10/19/26 3:00, +1,1,6989,2026,1,1,,0,,,10,19,5,10/19/26 4:00, +1,1,6990,2026,1,1,,0,,,10,19,6,10/19/26 5:00, +1,1,6991,2026,1,1,,0,,,10,19,7,10/19/26 6:00, +1,1,6992,2026,1,1,,0,,,10,19,8,10/19/26 7:00, +1,1,6993,2026,1,1,,0,,,10,19,9,10/19/26 8:00, +1,1,6994,2026,1,1,,0,,,10,19,10,10/19/26 9:00, +1,1,6995,2026,1,1,,0,,,10,19,11,10/19/26 10:00, +1,1,6996,2026,1,1,,0,,,10,19,12,10/19/26 11:00, +1,1,6997,2026,1,1,,0,,,10,19,13,10/19/26 12:00, +1,1,6998,2026,1,1,,0,,,10,19,14,10/19/26 13:00, +1,1,6999,2026,1,1,,0,,,10,19,15,10/19/26 14:00, +1,1,7000,2026,1,1,,0,,,10,19,16,10/19/26 15:00, +1,1,7001,2026,1,1,,0,,,10,19,17,10/19/26 16:00, +1,1,7002,2026,1,1,,0,,,10,19,18,10/19/26 17:00, +1,1,7003,2026,1,1,,0,,,10,19,19,10/19/26 18:00, +1,1,7004,2026,1,1,,0,,,10,19,20,10/19/26 19:00, +1,1,7005,2026,1,1,,0,,,10,19,21,10/19/26 20:00, +1,1,7006,2026,1,1,,0,,,10,19,22,10/19/26 21:00, +1,1,7007,2026,1,1,,0,,,10,19,23,10/19/26 22:00, +1,1,7008,2026,1,1,,0,,,10,19,24,10/19/26 23:00, +1,1,7009,2026,1,1,,0,,,10,20,1,10/20/26 0:00, +1,1,7010,2026,1,1,,0,,,10,20,2,10/20/26 1:00, +1,1,7011,2026,1,1,,0,,,10,20,3,10/20/26 2:00, +1,1,7012,2026,1,1,,0,,,10,20,4,10/20/26 3:00, +1,1,7013,2026,1,1,,0,,,10,20,5,10/20/26 4:00, +1,1,7014,2026,1,1,,0,,,10,20,6,10/20/26 5:00, +1,1,7015,2026,1,1,,0,,,10,20,7,10/20/26 6:00, +1,1,7016,2026,1,1,,0,,,10,20,8,10/20/26 7:00, +1,1,7017,2026,1,1,,0,,,10,20,9,10/20/26 8:00, +1,1,7018,2026,1,1,,0,,,10,20,10,10/20/26 9:00, +1,1,7019,2026,1,1,,0,,,10,20,11,10/20/26 10:00, +1,1,7020,2026,1,1,,0,,,10,20,12,10/20/26 11:00, +1,1,7021,2026,1,1,,0,,,10,20,13,10/20/26 12:00, +1,1,7022,2026,1,1,,0,,,10,20,14,10/20/26 13:00, +1,1,7023,2026,1,1,,0,,,10,20,15,10/20/26 14:00, +1,1,7024,2026,1,1,,0,,,10,20,16,10/20/26 15:00, +1,1,7025,2026,1,1,,0,,,10,20,17,10/20/26 16:00, +1,1,7026,2026,1,1,,0,,,10,20,18,10/20/26 17:00, +1,1,7027,2026,1,1,,0,,,10,20,19,10/20/26 18:00, +1,1,7028,2026,1,1,,0,,,10,20,20,10/20/26 19:00, +1,1,7029,2026,1,1,,0,,,10,20,21,10/20/26 20:00, +1,1,7030,2026,1,1,,0,,,10,20,22,10/20/26 21:00, +1,1,7031,2026,1,1,,0,,,10,20,23,10/20/26 22:00, +1,1,7032,2026,1,1,,0,,,10,20,24,10/20/26 23:00, +1,1,7033,2026,1,1,,0,,,10,21,1,10/21/26 0:00, +1,1,7034,2026,1,1,,0,,,10,21,2,10/21/26 1:00, +1,1,7035,2026,1,1,,0,,,10,21,3,10/21/26 2:00, +1,1,7036,2026,1,1,,0,,,10,21,4,10/21/26 3:00, +1,1,7037,2026,1,1,,0,,,10,21,5,10/21/26 4:00, +1,1,7038,2026,1,1,,0,,,10,21,6,10/21/26 5:00, +1,1,7039,2026,1,1,,0,,,10,21,7,10/21/26 6:00, +1,1,7040,2026,1,1,,0,,,10,21,8,10/21/26 7:00, +1,1,7041,2026,1,1,,0,,,10,21,9,10/21/26 8:00, +1,1,7042,2026,1,1,,0,,,10,21,10,10/21/26 9:00, +1,1,7043,2026,1,1,,0,,,10,21,11,10/21/26 10:00, +1,1,7044,2026,1,1,,0,,,10,21,12,10/21/26 11:00, +1,1,7045,2026,1,1,,0,,,10,21,13,10/21/26 12:00, +1,1,7046,2026,1,1,,0,,,10,21,14,10/21/26 13:00, +1,1,7047,2026,1,1,,0,,,10,21,15,10/21/26 14:00, +1,1,7048,2026,1,1,,0,,,10,21,16,10/21/26 15:00, +1,1,7049,2026,1,1,,0,,,10,21,17,10/21/26 16:00, +1,1,7050,2026,1,1,,0,,,10,21,18,10/21/26 17:00, +1,1,7051,2026,1,1,,0,,,10,21,19,10/21/26 18:00, +1,1,7052,2026,1,1,,0,,,10,21,20,10/21/26 19:00, +1,1,7053,2026,1,1,,0,,,10,21,21,10/21/26 20:00, +1,1,7054,2026,1,1,,0,,,10,21,22,10/21/26 21:00, +1,1,7055,2026,1,1,,0,,,10,21,23,10/21/26 22:00, +1,1,7056,2026,1,1,,0,,,10,21,24,10/21/26 23:00, +1,1,7057,2026,1,1,,0,,,10,22,1,10/22/26 0:00, +1,1,7058,2026,1,1,,0,,,10,22,2,10/22/26 1:00, +1,1,7059,2026,1,1,,0,,,10,22,3,10/22/26 2:00, +1,1,7060,2026,1,1,,0,,,10,22,4,10/22/26 3:00, +1,1,7061,2026,1,1,,0,,,10,22,5,10/22/26 4:00, +1,1,7062,2026,1,1,,0,,,10,22,6,10/22/26 5:00, +1,1,7063,2026,1,1,,0,,,10,22,7,10/22/26 6:00, +1,1,7064,2026,1,1,,0,,,10,22,8,10/22/26 7:00, +1,1,7065,2026,1,1,,0,,,10,22,9,10/22/26 8:00, +1,1,7066,2026,1,1,,0,,,10,22,10,10/22/26 9:00, +1,1,7067,2026,1,1,,0,,,10,22,11,10/22/26 10:00, +1,1,7068,2026,1,1,,0,,,10,22,12,10/22/26 11:00, +1,1,7069,2026,1,1,,0,,,10,22,13,10/22/26 12:00, +1,1,7070,2026,1,1,,0,,,10,22,14,10/22/26 13:00, +1,1,7071,2026,1,1,,0,,,10,22,15,10/22/26 14:00, +1,1,7072,2026,1,1,,0,,,10,22,16,10/22/26 15:00, +1,1,7073,2026,1,1,,0,,,10,22,17,10/22/26 16:00, +1,1,7074,2026,1,1,,0,,,10,22,18,10/22/26 17:00, +1,1,7075,2026,1,1,,0,,,10,22,19,10/22/26 18:00, +1,1,7076,2026,1,1,,0,,,10,22,20,10/22/26 19:00, +1,1,7077,2026,1,1,,0,,,10,22,21,10/22/26 20:00, +1,1,7078,2026,1,1,,0,,,10,22,22,10/22/26 21:00, +1,1,7079,2026,1,1,,0,,,10,22,23,10/22/26 22:00, +1,1,7080,2026,1,1,,0,,,10,22,24,10/22/26 23:00, +1,1,7081,2026,1,1,,0,,,10,23,1,10/23/26 0:00, +1,1,7082,2026,1,1,,0,,,10,23,2,10/23/26 1:00, +1,1,7083,2026,1,1,,0,,,10,23,3,10/23/26 2:00, +1,1,7084,2026,1,1,,0,,,10,23,4,10/23/26 3:00, +1,1,7085,2026,1,1,,0,,,10,23,5,10/23/26 4:00, +1,1,7086,2026,1,1,,0,,,10,23,6,10/23/26 5:00, +1,1,7087,2026,1,1,,0,,,10,23,7,10/23/26 6:00, +1,1,7088,2026,1,1,,0,,,10,23,8,10/23/26 7:00, +1,1,7089,2026,1,1,,0,,,10,23,9,10/23/26 8:00, +1,1,7090,2026,1,1,,0,,,10,23,10,10/23/26 9:00, +1,1,7091,2026,1,1,,0,,,10,23,11,10/23/26 10:00, +1,1,7092,2026,1,1,,0,,,10,23,12,10/23/26 11:00, +1,1,7093,2026,1,1,,0,,,10,23,13,10/23/26 12:00, +1,1,7094,2026,1,1,,0,,,10,23,14,10/23/26 13:00, +1,1,7095,2026,1,1,,0,,,10,23,15,10/23/26 14:00, +1,1,7096,2026,1,1,,0,,,10,23,16,10/23/26 15:00, +1,1,7097,2026,1,1,,0,,,10,23,17,10/23/26 16:00, +1,1,7098,2026,1,1,,0,,,10,23,18,10/23/26 17:00, +1,1,7099,2026,1,1,,0,,,10,23,19,10/23/26 18:00, +1,1,7100,2026,1,1,,0,,,10,23,20,10/23/26 19:00, +1,1,7101,2026,1,1,,0,,,10,23,21,10/23/26 20:00, +1,1,7102,2026,1,1,,0,,,10,23,22,10/23/26 21:00, +1,1,7103,2026,1,1,,0,,,10,23,23,10/23/26 22:00, +1,1,7104,2026,1,1,,0,,,10,23,24,10/23/26 23:00, +1,1,7105,2026,1,1,,0,,,10,24,1,10/24/26 0:00, +1,1,7106,2026,1,1,,0,,,10,24,2,10/24/26 1:00, +1,1,7107,2026,1,1,,0,,,10,24,3,10/24/26 2:00, +1,1,7108,2026,1,1,,0,,,10,24,4,10/24/26 3:00, +1,1,7109,2026,1,1,,0,,,10,24,5,10/24/26 4:00, +1,1,7110,2026,1,1,,0,,,10,24,6,10/24/26 5:00, +1,1,7111,2026,1,1,,0,,,10,24,7,10/24/26 6:00, +1,1,7112,2026,1,1,,0,,,10,24,8,10/24/26 7:00, +1,1,7113,2026,1,1,,0,,,10,24,9,10/24/26 8:00, +1,1,7114,2026,1,1,,0,,,10,24,10,10/24/26 9:00, +1,1,7115,2026,1,1,,0,,,10,24,11,10/24/26 10:00, +1,1,7116,2026,1,1,,0,,,10,24,12,10/24/26 11:00, +1,1,7117,2026,1,1,,0,,,10,24,13,10/24/26 12:00, +1,1,7118,2026,1,1,,0,,,10,24,14,10/24/26 13:00, +1,1,7119,2026,1,1,,0,,,10,24,15,10/24/26 14:00, +1,1,7120,2026,1,1,,0,,,10,24,16,10/24/26 15:00, +1,1,7121,2026,1,1,,0,,,10,24,17,10/24/26 16:00, +1,1,7122,2026,1,1,,0,,,10,24,18,10/24/26 17:00, +1,1,7123,2026,1,1,,0,,,10,24,19,10/24/26 18:00, +1,1,7124,2026,1,1,,0,,,10,24,20,10/24/26 19:00, +1,1,7125,2026,1,1,,0,,,10,24,21,10/24/26 20:00, +1,1,7126,2026,1,1,,0,,,10,24,22,10/24/26 21:00, +1,1,7127,2026,1,1,,0,,,10,24,23,10/24/26 22:00, +1,1,7128,2026,1,1,,0,,,10,24,24,10/24/26 23:00, +1,1,7129,2026,1,1,,0,,,10,25,1,10/25/26 0:00, +1,1,7130,2026,1,1,,0,,,10,25,2,10/25/26 1:00, +1,1,7131,2026,1,1,,0,,,10,25,3,10/25/26 2:00, +1,1,7132,2026,1,1,,0,,,10,25,4,10/25/26 3:00, +1,1,7133,2026,1,1,,0,,,10,25,5,10/25/26 4:00, +1,1,7134,2026,1,1,,0,,,10,25,6,10/25/26 5:00, +1,1,7135,2026,1,1,,0,,,10,25,7,10/25/26 6:00, +1,1,7136,2026,1,1,,0,,,10,25,8,10/25/26 7:00, +1,1,7137,2026,1,1,,0,,,10,25,9,10/25/26 8:00, +1,1,7138,2026,1,1,,0,,,10,25,10,10/25/26 9:00, +1,1,7139,2026,1,1,,0,,,10,25,11,10/25/26 10:00, +1,1,7140,2026,1,1,,0,,,10,25,12,10/25/26 11:00, +1,1,7141,2026,1,1,,0,,,10,25,13,10/25/26 12:00, +1,1,7142,2026,1,1,,0,,,10,25,14,10/25/26 13:00, +1,1,7143,2026,1,1,,0,,,10,25,15,10/25/26 14:00, +1,1,7144,2026,1,1,,0,,,10,25,16,10/25/26 15:00, +1,1,7145,2026,1,1,,0,,,10,25,17,10/25/26 16:00, +1,1,7146,2026,1,1,,0,,,10,25,18,10/25/26 17:00, +1,1,7147,2026,1,1,,0,,,10,25,19,10/25/26 18:00, +1,1,7148,2026,1,1,,0,,,10,25,20,10/25/26 19:00, +1,1,7149,2026,1,1,,0,,,10,25,21,10/25/26 20:00, +1,1,7150,2026,1,1,,0,,,10,25,22,10/25/26 21:00, +1,1,7151,2026,1,1,,0,,,10,25,23,10/25/26 22:00, +1,1,7152,2026,1,1,,0,,,10,25,24,10/25/26 23:00, +1,1,7153,2026,1,1,,0,,,10,26,1,10/26/26 0:00, +1,1,7154,2026,1,1,,0,,,10,26,2,10/26/26 1:00, +1,1,7155,2026,1,1,,0,,,10,26,3,10/26/26 2:00, +1,1,7156,2026,1,1,,0,,,10,26,4,10/26/26 3:00, +1,1,7157,2026,1,1,,0,,,10,26,5,10/26/26 4:00, +1,1,7158,2026,1,1,,0,,,10,26,6,10/26/26 5:00, +1,1,7159,2026,1,1,,0,,,10,26,7,10/26/26 6:00, +1,1,7160,2026,1,1,,0,,,10,26,8,10/26/26 7:00, +1,1,7161,2026,1,1,,0,,,10,26,9,10/26/26 8:00, +1,1,7162,2026,1,1,,0,,,10,26,10,10/26/26 9:00, +1,1,7163,2026,1,1,,0,,,10,26,11,10/26/26 10:00, +1,1,7164,2026,1,1,,0,,,10,26,12,10/26/26 11:00, +1,1,7165,2026,1,1,,0,,,10,26,13,10/26/26 12:00, +1,1,7166,2026,1,1,,0,,,10,26,14,10/26/26 13:00, +1,1,7167,2026,1,1,,0,,,10,26,15,10/26/26 14:00, +1,1,7168,2026,1,1,,0,,,10,26,16,10/26/26 15:00, +1,1,7169,2026,1,1,,0,,,10,26,17,10/26/26 16:00, +1,1,7170,2026,1,1,,0,,,10,26,18,10/26/26 17:00, +1,1,7171,2026,1,1,,0,,,10,26,19,10/26/26 18:00, +1,1,7172,2026,1,1,,0,,,10,26,20,10/26/26 19:00, +1,1,7173,2026,1,1,,0,,,10,26,21,10/26/26 20:00, +1,1,7174,2026,1,1,,0,,,10,26,22,10/26/26 21:00, +1,1,7175,2026,1,1,,0,,,10,26,23,10/26/26 22:00, +1,1,7176,2026,1,1,,0,,,10,26,24,10/26/26 23:00, +1,1,7177,2026,1,1,,0,,,10,27,1,10/27/26 0:00, +1,1,7178,2026,1,1,,0,,,10,27,2,10/27/26 1:00, +1,1,7179,2026,1,1,,0,,,10,27,3,10/27/26 2:00, +1,1,7180,2026,1,1,,0,,,10,27,4,10/27/26 3:00, +1,1,7181,2026,1,1,,0,,,10,27,5,10/27/26 4:00, +1,1,7182,2026,1,1,,0,,,10,27,6,10/27/26 5:00, +1,1,7183,2026,1,1,,0,,,10,27,7,10/27/26 6:00, +1,1,7184,2026,1,1,,0,,,10,27,8,10/27/26 7:00, +1,1,7185,2026,1,1,,0,,,10,27,9,10/27/26 8:00, +1,1,7186,2026,1,1,,0,,,10,27,10,10/27/26 9:00, +1,1,7187,2026,1,1,,0,,,10,27,11,10/27/26 10:00, +1,1,7188,2026,1,1,,0,,,10,27,12,10/27/26 11:00, +1,1,7189,2026,1,1,,0,,,10,27,13,10/27/26 12:00, +1,1,7190,2026,1,1,,0,,,10,27,14,10/27/26 13:00, +1,1,7191,2026,1,1,,0,,,10,27,15,10/27/26 14:00, +1,1,7192,2026,1,1,,0,,,10,27,16,10/27/26 15:00, +1,1,7193,2026,1,1,,0,,,10,27,17,10/27/26 16:00, +1,1,7194,2026,1,1,,0,,,10,27,18,10/27/26 17:00, +1,1,7195,2026,1,1,,0,,,10,27,19,10/27/26 18:00, +1,1,7196,2026,1,1,,0,,,10,27,20,10/27/26 19:00, +1,1,7197,2026,1,1,,0,,,10,27,21,10/27/26 20:00, +1,1,7198,2026,1,1,,0,,,10,27,22,10/27/26 21:00, +1,1,7199,2026,1,1,,0,,,10,27,23,10/27/26 22:00, +1,1,7200,2026,1,1,,0,,,10,27,24,10/27/26 23:00, +1,1,7201,2026,1,1,,0,,,10,28,1,10/28/26 0:00, +1,1,7202,2026,1,1,,0,,,10,28,2,10/28/26 1:00, +1,1,7203,2026,1,1,,0,,,10,28,3,10/28/26 2:00, +1,1,7204,2026,1,1,,0,,,10,28,4,10/28/26 3:00, +1,1,7205,2026,1,1,,0,,,10,28,5,10/28/26 4:00, +1,1,7206,2026,1,1,,0,,,10,28,6,10/28/26 5:00, +1,1,7207,2026,1,1,,0,,,10,28,7,10/28/26 6:00, +1,1,7208,2026,1,1,,0,,,10,28,8,10/28/26 7:00, +1,1,7209,2026,1,1,,0,,,10,28,9,10/28/26 8:00, +1,1,7210,2026,1,1,,0,,,10,28,10,10/28/26 9:00, +1,1,7211,2026,1,1,,0,,,10,28,11,10/28/26 10:00, +1,1,7212,2026,1,1,,0,,,10,28,12,10/28/26 11:00, +1,1,7213,2026,1,1,,0,,,10,28,13,10/28/26 12:00, +1,1,7214,2026,1,1,,0,,,10,28,14,10/28/26 13:00, +1,1,7215,2026,1,1,,0,,,10,28,15,10/28/26 14:00, +1,1,7216,2026,1,1,,0,,,10,28,16,10/28/26 15:00, +1,1,7217,2026,1,1,,0,,,10,28,17,10/28/26 16:00, +1,1,7218,2026,1,1,,0,,,10,28,18,10/28/26 17:00, +1,1,7219,2026,1,1,,0,,,10,28,19,10/28/26 18:00, +1,1,7220,2026,1,1,,0,,,10,28,20,10/28/26 19:00, +1,1,7221,2026,1,1,,0,,,10,28,21,10/28/26 20:00, +1,1,7222,2026,1,1,,0,,,10,28,22,10/28/26 21:00, +1,1,7223,2026,1,1,,0,,,10,28,23,10/28/26 22:00, +1,1,7224,2026,1,1,,0,,,10,28,24,10/28/26 23:00, +1,1,7225,2026,1,1,,0,,,10,29,1,10/29/26 0:00, +1,1,7226,2026,1,1,,0,,,10,29,2,10/29/26 1:00, +1,1,7227,2026,1,1,,0,,,10,29,3,10/29/26 2:00, +1,1,7228,2026,1,1,,0,,,10,29,4,10/29/26 3:00, +1,1,7229,2026,1,1,,0,,,10,29,5,10/29/26 4:00, +1,1,7230,2026,1,1,,0,,,10,29,6,10/29/26 5:00, +1,1,7231,2026,1,1,,0,,,10,29,7,10/29/26 6:00, +1,1,7232,2026,1,1,,0,,,10,29,8,10/29/26 7:00, +1,1,7233,2026,1,1,,0,,,10,29,9,10/29/26 8:00, +1,1,7234,2026,1,1,,0,,,10,29,10,10/29/26 9:00, +1,1,7235,2026,1,1,,0,,,10,29,11,10/29/26 10:00, +1,1,7236,2026,1,1,,0,,,10,29,12,10/29/26 11:00, +1,1,7237,2026,1,1,,0,,,10,29,13,10/29/26 12:00, +1,1,7238,2026,1,1,,0,,,10,29,14,10/29/26 13:00, +1,1,7239,2026,1,1,,0,,,10,29,15,10/29/26 14:00, +1,1,7240,2026,1,1,,0,,,10,29,16,10/29/26 15:00, +1,1,7241,2026,1,1,,0,,,10,29,17,10/29/26 16:00, +1,1,7242,2026,1,1,,0,,,10,29,18,10/29/26 17:00, +1,1,7243,2026,1,1,,0,,,10,29,19,10/29/26 18:00, +1,1,7244,2026,1,1,,0,,,10,29,20,10/29/26 19:00, +1,1,7245,2026,1,1,,0,,,10,29,21,10/29/26 20:00, +1,1,7246,2026,1,1,,0,,,10,29,22,10/29/26 21:00, +1,1,7247,2026,1,1,,0,,,10,29,23,10/29/26 22:00, +1,1,7248,2026,1,1,,0,,,10,29,24,10/29/26 23:00, +1,1,7249,2026,1,1,,0,,,10,30,1,10/30/26 0:00, +1,1,7250,2026,1,1,,0,,,10,30,2,10/30/26 1:00, +1,1,7251,2026,1,1,,0,,,10,30,3,10/30/26 2:00, +1,1,7252,2026,1,1,,0,,,10,30,4,10/30/26 3:00, +1,1,7253,2026,1,1,,0,,,10,30,5,10/30/26 4:00, +1,1,7254,2026,1,1,,0,,,10,30,6,10/30/26 5:00, +1,1,7255,2026,1,1,,0,,,10,30,7,10/30/26 6:00, +1,1,7256,2026,1,1,,0,,,10,30,8,10/30/26 7:00, +1,1,7257,2026,1,1,,0,,,10,30,9,10/30/26 8:00, +1,1,7258,2026,1,1,,0,,,10,30,10,10/30/26 9:00, +1,1,7259,2026,1,1,,0,,,10,30,11,10/30/26 10:00, +1,1,7260,2026,1,1,,0,,,10,30,12,10/30/26 11:00, +1,1,7261,2026,1,1,,0,,,10,30,13,10/30/26 12:00, +1,1,7262,2026,1,1,,0,,,10,30,14,10/30/26 13:00, +1,1,7263,2026,1,1,,0,,,10,30,15,10/30/26 14:00, +1,1,7264,2026,1,1,,0,,,10,30,16,10/30/26 15:00, +1,1,7265,2026,1,1,,0,,,10,30,17,10/30/26 16:00, +1,1,7266,2026,1,1,,0,,,10,30,18,10/30/26 17:00, +1,1,7267,2026,1,1,,0,,,10,30,19,10/30/26 18:00, +1,1,7268,2026,1,1,,0,,,10,30,20,10/30/26 19:00, +1,1,7269,2026,1,1,,0,,,10,30,21,10/30/26 20:00, +1,1,7270,2026,1,1,,0,,,10,30,22,10/30/26 21:00, +1,1,7271,2026,1,1,,0,,,10,30,23,10/30/26 22:00, +1,1,7272,2026,1,1,,0,,,10,30,24,10/30/26 23:00, +1,1,7273,2026,1,1,,0,,,10,31,1,10/31/26 0:00, +1,1,7274,2026,1,1,,0,,,10,31,2,10/31/26 1:00, +1,1,7275,2026,1,1,,0,,,10,31,3,10/31/26 2:00, +1,1,7276,2026,1,1,,0,,,10,31,4,10/31/26 3:00, +1,1,7277,2026,1,1,,0,,,10,31,5,10/31/26 4:00, +1,1,7278,2026,1,1,,0,,,10,31,6,10/31/26 5:00, +1,1,7279,2026,1,1,,0,,,10,31,7,10/31/26 6:00, +1,1,7280,2026,1,1,,0,,,10,31,8,10/31/26 7:00, +1,1,7281,2026,1,1,,0,,,10,31,9,10/31/26 8:00, +1,1,7282,2026,1,1,,0,,,10,31,10,10/31/26 9:00, +1,1,7283,2026,1,1,,0,,,10,31,11,10/31/26 10:00, +1,1,7284,2026,1,1,,0,,,10,31,12,10/31/26 11:00, +1,1,7285,2026,1,1,,0,,,10,31,13,10/31/26 12:00, +1,1,7286,2026,1,1,,0,,,10,31,14,10/31/26 13:00, +1,1,7287,2026,1,1,,0,,,10,31,15,10/31/26 14:00, +1,1,7288,2026,1,1,,0,,,10,31,16,10/31/26 15:00, +1,1,7289,2026,1,1,,0,,,10,31,17,10/31/26 16:00, +1,1,7290,2026,1,1,,0,,,10,31,18,10/31/26 17:00, +1,1,7291,2026,1,1,,0,,,10,31,19,10/31/26 18:00, +1,1,7292,2026,1,1,,0,,,10,31,20,10/31/26 19:00, +1,1,7293,2026,1,1,,0,,,10,31,21,10/31/26 20:00, +1,1,7294,2026,1,1,,0,,,10,31,22,10/31/26 21:00, +1,1,7295,2026,1,1,,0,,,10,31,23,10/31/26 22:00, +1,1,7296,2026,1,1,,0,,,10,31,24,10/31/26 23:00, +1,1,7297,2026,1,1,,0,,,11,1,1,11/1/26 0:00, +1,1,7298,2026,1,1,,0,,,11,1,2,11/1/26 1:00, +1,1,7299,2026,1,1,,0,,,11,1,3,11/1/26 2:00, +1,1,7300,2026,1,1,,0,,,11,1,4,11/1/26 3:00, +1,1,7301,2026,1,1,,0,,,11,1,5,11/1/26 4:00, +1,1,7302,2026,1,1,,0,,,11,1,6,11/1/26 5:00, +1,1,7303,2026,1,1,,0,,,11,1,7,11/1/26 6:00, +1,1,7304,2026,1,1,,0,,,11,1,8,11/1/26 7:00, +1,1,7305,2026,1,1,,0,,,11,1,9,11/1/26 8:00, +1,1,7306,2026,1,1,,0,,,11,1,10,11/1/26 9:00, +1,1,7307,2026,1,1,,0,,,11,1,11,11/1/26 10:00, +1,1,7308,2026,1,1,,0,,,11,1,12,11/1/26 11:00, +1,1,7309,2026,1,1,,0,,,11,1,13,11/1/26 12:00, +1,1,7310,2026,1,1,,0,,,11,1,14,11/1/26 13:00, +1,1,7311,2026,1,1,,0,,,11,1,15,11/1/26 14:00, +1,1,7312,2026,1,1,,0,,,11,1,16,11/1/26 15:00, +1,1,7313,2026,1,1,,0,,,11,1,17,11/1/26 16:00, +1,1,7314,2026,1,1,,0,,,11,1,18,11/1/26 17:00, +1,1,7315,2026,1,1,,0,,,11,1,19,11/1/26 18:00, +1,1,7316,2026,1,1,,0,,,11,1,20,11/1/26 19:00, +1,1,7317,2026,1,1,,0,,,11,1,21,11/1/26 20:00, +1,1,7318,2026,1,1,,0,,,11,1,22,11/1/26 21:00, +1,1,7319,2026,1,1,,0,,,11,1,23,11/1/26 22:00, +1,1,7320,2026,1,1,,0,,,11,1,24,11/1/26 23:00, +1,1,7321,2026,1,1,,0,,,11,2,1,11/2/26 0:00, +1,1,7322,2026,1,1,,0,,,11,2,2,11/2/26 1:00, +1,1,7323,2026,1,1,,0,,,11,2,3,11/2/26 2:00, +1,1,7324,2026,1,1,,0,,,11,2,4,11/2/26 3:00, +1,1,7325,2026,1,1,,0,,,11,2,5,11/2/26 4:00, +1,1,7326,2026,1,1,,0,,,11,2,6,11/2/26 5:00, +1,1,7327,2026,1,1,,0,,,11,2,7,11/2/26 6:00, +1,1,7328,2026,1,1,,0,,,11,2,8,11/2/26 7:00, +1,1,7329,2026,1,1,,0,,,11,2,9,11/2/26 8:00, +1,1,7330,2026,1,1,,0,,,11,2,10,11/2/26 9:00, +1,1,7331,2026,1,1,,0,,,11,2,11,11/2/26 10:00, +1,1,7332,2026,1,1,,0,,,11,2,12,11/2/26 11:00, +1,1,7333,2026,1,1,,0,,,11,2,13,11/2/26 12:00, +1,1,7334,2026,1,1,,0,,,11,2,14,11/2/26 13:00, +1,1,7335,2026,1,1,,0,,,11,2,15,11/2/26 14:00, +1,1,7336,2026,1,1,,0,,,11,2,16,11/2/26 15:00, +1,1,7337,2026,1,1,,0,,,11,2,17,11/2/26 16:00, +1,1,7338,2026,1,1,,0,,,11,2,18,11/2/26 17:00, +1,1,7339,2026,1,1,,0,,,11,2,19,11/2/26 18:00, +1,1,7340,2026,1,1,,0,,,11,2,20,11/2/26 19:00, +1,1,7341,2026,1,1,,0,,,11,2,21,11/2/26 20:00, +1,1,7342,2026,1,1,,0,,,11,2,22,11/2/26 21:00, +1,1,7343,2026,1,1,,0,,,11,2,23,11/2/26 22:00, +1,1,7344,2026,1,1,,0,,,11,2,24,11/2/26 23:00, +1,1,7345,2026,1,1,,0,,,11,3,1,11/3/26 0:00, +1,1,7346,2026,1,1,,0,,,11,3,2,11/3/26 1:00, +1,1,7347,2026,1,1,,0,,,11,3,3,11/3/26 2:00, +1,1,7348,2026,1,1,,0,,,11,3,4,11/3/26 3:00, +1,1,7349,2026,1,1,,0,,,11,3,5,11/3/26 4:00, +1,1,7350,2026,1,1,,0,,,11,3,6,11/3/26 5:00, +1,1,7351,2026,1,1,,0,,,11,3,7,11/3/26 6:00, +1,1,7352,2026,1,1,,0,,,11,3,8,11/3/26 7:00, +1,1,7353,2026,1,1,,0,,,11,3,9,11/3/26 8:00, +1,1,7354,2026,1,1,,0,,,11,3,10,11/3/26 9:00, +1,1,7355,2026,1,1,,0,,,11,3,11,11/3/26 10:00, +1,1,7356,2026,1,1,,0,,,11,3,12,11/3/26 11:00, +1,1,7357,2026,1,1,,0,,,11,3,13,11/3/26 12:00, +1,1,7358,2026,1,1,,0,,,11,3,14,11/3/26 13:00, +1,1,7359,2026,1,1,,0,,,11,3,15,11/3/26 14:00, +1,1,7360,2026,1,1,,0,,,11,3,16,11/3/26 15:00, +1,1,7361,2026,1,1,,0,,,11,3,17,11/3/26 16:00, +1,1,7362,2026,1,1,,0,,,11,3,18,11/3/26 17:00, +1,1,7363,2026,1,1,,0,,,11,3,19,11/3/26 18:00, +1,1,7364,2026,1,1,,0,,,11,3,20,11/3/26 19:00, +1,1,7365,2026,1,1,,0,,,11,3,21,11/3/26 20:00, +1,1,7366,2026,1,1,,0,,,11,3,22,11/3/26 21:00, +1,1,7367,2026,1,1,,0,,,11,3,23,11/3/26 22:00, +1,1,7368,2026,1,1,,0,,,11,3,24,11/3/26 23:00, +1,1,7369,2026,1,1,,0,,,11,4,1,11/4/26 0:00, +1,1,7370,2026,1,1,,0,,,11,4,2,11/4/26 1:00, +1,1,7371,2026,1,1,,0,,,11,4,3,11/4/26 2:00, +1,1,7372,2026,1,1,,0,,,11,4,4,11/4/26 3:00, +1,1,7373,2026,1,1,,0,,,11,4,5,11/4/26 4:00, +1,1,7374,2026,1,1,,0,,,11,4,6,11/4/26 5:00, +1,1,7375,2026,1,1,,0,,,11,4,7,11/4/26 6:00, +1,1,7376,2026,1,1,,0,,,11,4,8,11/4/26 7:00, +1,1,7377,2026,1,1,,0,,,11,4,9,11/4/26 8:00, +1,1,7378,2026,1,1,,0,,,11,4,10,11/4/26 9:00, +1,1,7379,2026,1,1,,0,,,11,4,11,11/4/26 10:00, +1,1,7380,2026,1,1,,0,,,11,4,12,11/4/26 11:00, +1,1,7381,2026,1,1,,0,,,11,4,13,11/4/26 12:00, +1,1,7382,2026,1,1,,0,,,11,4,14,11/4/26 13:00, +1,1,7383,2026,1,1,,0,,,11,4,15,11/4/26 14:00, +1,1,7384,2026,1,1,,0,,,11,4,16,11/4/26 15:00, +1,1,7385,2026,1,1,,0,,,11,4,17,11/4/26 16:00, +1,1,7386,2026,1,1,,0,,,11,4,18,11/4/26 17:00, +1,1,7387,2026,1,1,,0,,,11,4,19,11/4/26 18:00, +1,1,7388,2026,1,1,,0,,,11,4,20,11/4/26 19:00, +1,1,7389,2026,1,1,,0,,,11,4,21,11/4/26 20:00, +1,1,7390,2026,1,1,,0,,,11,4,22,11/4/26 21:00, +1,1,7391,2026,1,1,,0,,,11,4,23,11/4/26 22:00, +1,1,7392,2026,1,1,,0,,,11,4,24,11/4/26 23:00, +1,1,7393,2026,1,1,,0,,,11,5,1,11/5/26 0:00, +1,1,7394,2026,1,1,,0,,,11,5,2,11/5/26 1:00, +1,1,7395,2026,1,1,,0,,,11,5,3,11/5/26 2:00, +1,1,7396,2026,1,1,,0,,,11,5,4,11/5/26 3:00, +1,1,7397,2026,1,1,,0,,,11,5,5,11/5/26 4:00, +1,1,7398,2026,1,1,,0,,,11,5,6,11/5/26 5:00, +1,1,7399,2026,1,1,,0,,,11,5,7,11/5/26 6:00, +1,1,7400,2026,1,1,,0,,,11,5,8,11/5/26 7:00, +1,1,7401,2026,1,1,,0,,,11,5,9,11/5/26 8:00, +1,1,7402,2026,1,1,,0,,,11,5,10,11/5/26 9:00, +1,1,7403,2026,1,1,,0,,,11,5,11,11/5/26 10:00, +1,1,7404,2026,1,1,,0,,,11,5,12,11/5/26 11:00, +1,1,7405,2026,1,1,,0,,,11,5,13,11/5/26 12:00, +1,1,7406,2026,1,1,,0,,,11,5,14,11/5/26 13:00, +1,1,7407,2026,1,1,,0,,,11,5,15,11/5/26 14:00, +1,1,7408,2026,1,1,,0,,,11,5,16,11/5/26 15:00, +1,1,7409,2026,1,1,,0,,,11,5,17,11/5/26 16:00, +1,1,7410,2026,1,1,,0,,,11,5,18,11/5/26 17:00, +1,1,7411,2026,1,1,,0,,,11,5,19,11/5/26 18:00, +1,1,7412,2026,1,1,,0,,,11,5,20,11/5/26 19:00, +1,1,7413,2026,1,1,,0,,,11,5,21,11/5/26 20:00, +1,1,7414,2026,1,1,,0,,,11,5,22,11/5/26 21:00, +1,1,7415,2026,1,1,,0,,,11,5,23,11/5/26 22:00, +1,1,7416,2026,1,1,,0,,,11,5,24,11/5/26 23:00, +1,1,7417,2026,1,1,,0,,,11,6,1,11/6/26 0:00, +1,1,7418,2026,1,1,,0,,,11,6,2,11/6/26 1:00, +1,1,7419,2026,1,1,,0,,,11,6,3,11/6/26 2:00, +1,1,7420,2026,1,1,,0,,,11,6,4,11/6/26 3:00, +1,1,7421,2026,1,1,,0,,,11,6,5,11/6/26 4:00, +1,1,7422,2026,1,1,,0,,,11,6,6,11/6/26 5:00, +1,1,7423,2026,1,1,,0,,,11,6,7,11/6/26 6:00, +1,1,7424,2026,1,1,,0,,,11,6,8,11/6/26 7:00, +1,1,7425,2026,1,1,,0,,,11,6,9,11/6/26 8:00, +1,1,7426,2026,1,1,,0,,,11,6,10,11/6/26 9:00, +1,1,7427,2026,1,1,,0,,,11,6,11,11/6/26 10:00, +1,1,7428,2026,1,1,,0,,,11,6,12,11/6/26 11:00, +1,1,7429,2026,1,1,,0,,,11,6,13,11/6/26 12:00, +1,1,7430,2026,1,1,,0,,,11,6,14,11/6/26 13:00, +1,1,7431,2026,1,1,,0,,,11,6,15,11/6/26 14:00, +1,1,7432,2026,1,1,,0,,,11,6,16,11/6/26 15:00, +1,1,7433,2026,1,1,,0,,,11,6,17,11/6/26 16:00, +1,1,7434,2026,1,1,,0,,,11,6,18,11/6/26 17:00, +1,1,7435,2026,1,1,,0,,,11,6,19,11/6/26 18:00, +1,1,7436,2026,1,1,,0,,,11,6,20,11/6/26 19:00, +1,1,7437,2026,1,1,,0,,,11,6,21,11/6/26 20:00, +1,1,7438,2026,1,1,,0,,,11,6,22,11/6/26 21:00, +1,1,7439,2026,1,1,,0,,,11,6,23,11/6/26 22:00, +1,1,7440,2026,1,1,,0,,,11,6,24,11/6/26 23:00, +1,1,7441,2026,1,1,,0,,,11,7,1,11/7/26 0:00, +1,1,7442,2026,1,1,,0,,,11,7,2,11/7/26 1:00, +1,1,7443,2026,1,1,,0,,,11,7,3,11/7/26 2:00, +1,1,7444,2026,1,1,,0,,,11,7,4,11/7/26 3:00, +1,1,7445,2026,1,1,,0,,,11,7,5,11/7/26 4:00, +1,1,7446,2026,1,1,,0,,,11,7,6,11/7/26 5:00, +1,1,7447,2026,1,1,,0,,,11,7,7,11/7/26 6:00, +1,1,7448,2026,1,1,,0,,,11,7,8,11/7/26 7:00, +1,1,7449,2026,1,1,,0,,,11,7,9,11/7/26 8:00, +1,1,7450,2026,1,1,,0,,,11,7,10,11/7/26 9:00, +1,1,7451,2026,1,1,,0,,,11,7,11,11/7/26 10:00, +1,1,7452,2026,1,1,,0,,,11,7,12,11/7/26 11:00, +1,1,7453,2026,1,1,,0,,,11,7,13,11/7/26 12:00, +1,1,7454,2026,1,1,,0,,,11,7,14,11/7/26 13:00, +1,1,7455,2026,1,1,,0,,,11,7,15,11/7/26 14:00, +1,1,7456,2026,1,1,,0,,,11,7,16,11/7/26 15:00, +1,1,7457,2026,1,1,,0,,,11,7,17,11/7/26 16:00, +1,1,7458,2026,1,1,,0,,,11,7,18,11/7/26 17:00, +1,1,7459,2026,1,1,,0,,,11,7,19,11/7/26 18:00, +1,1,7460,2026,1,1,,0,,,11,7,20,11/7/26 19:00, +1,1,7461,2026,1,1,,0,,,11,7,21,11/7/26 20:00, +1,1,7462,2026,1,1,,0,,,11,7,22,11/7/26 21:00, +1,1,7463,2026,1,1,,0,,,11,7,23,11/7/26 22:00, +1,1,7464,2026,1,1,,0,,,11,7,24,11/7/26 23:00, +1,1,7465,2026,1,1,,0,,,11,8,1,11/8/26 0:00, +1,1,7466,2026,1,1,,0,,,11,8,2,11/8/26 1:00, +1,1,7467,2026,1,1,,0,,,11,8,3,11/8/26 2:00, +1,1,7468,2026,1,1,,0,,,11,8,4,11/8/26 3:00, +1,1,7469,2026,1,1,,0,,,11,8,5,11/8/26 4:00, +1,1,7470,2026,1,1,,0,,,11,8,6,11/8/26 5:00, +1,1,7471,2026,1,1,,0,,,11,8,7,11/8/26 6:00, +1,1,7472,2026,1,1,,0,,,11,8,8,11/8/26 7:00, +1,1,7473,2026,1,1,,0,,,11,8,9,11/8/26 8:00, +1,1,7474,2026,1,1,,0,,,11,8,10,11/8/26 9:00, +1,1,7475,2026,1,1,,0,,,11,8,11,11/8/26 10:00, +1,1,7476,2026,1,1,,0,,,11,8,12,11/8/26 11:00, +1,1,7477,2026,1,1,,0,,,11,8,13,11/8/26 12:00, +1,1,7478,2026,1,1,,0,,,11,8,14,11/8/26 13:00, +1,1,7479,2026,1,1,,0,,,11,8,15,11/8/26 14:00, +1,1,7480,2026,1,1,,0,,,11,8,16,11/8/26 15:00, +1,1,7481,2026,1,1,,0,,,11,8,17,11/8/26 16:00, +1,1,7482,2026,1,1,,0,,,11,8,18,11/8/26 17:00, +1,1,7483,2026,1,1,,0,,,11,8,19,11/8/26 18:00, +1,1,7484,2026,1,1,,0,,,11,8,20,11/8/26 19:00, +1,1,7485,2026,1,1,,0,,,11,8,21,11/8/26 20:00, +1,1,7486,2026,1,1,,0,,,11,8,22,11/8/26 21:00, +1,1,7487,2026,1,1,,0,,,11,8,23,11/8/26 22:00, +1,1,7488,2026,1,1,,0,,,11,8,24,11/8/26 23:00, +1,1,7489,2026,1,1,,0,,,11,9,1,11/9/26 0:00, +1,1,7490,2026,1,1,,0,,,11,9,2,11/9/26 1:00, +1,1,7491,2026,1,1,,0,,,11,9,3,11/9/26 2:00, +1,1,7492,2026,1,1,,0,,,11,9,4,11/9/26 3:00, +1,1,7493,2026,1,1,,0,,,11,9,5,11/9/26 4:00, +1,1,7494,2026,1,1,,0,,,11,9,6,11/9/26 5:00, +1,1,7495,2026,1,1,,0,,,11,9,7,11/9/26 6:00, +1,1,7496,2026,1,1,,0,,,11,9,8,11/9/26 7:00, +1,1,7497,2026,1,1,,0,,,11,9,9,11/9/26 8:00, +1,1,7498,2026,1,1,,0,,,11,9,10,11/9/26 9:00, +1,1,7499,2026,1,1,,0,,,11,9,11,11/9/26 10:00, +1,1,7500,2026,1,1,,0,,,11,9,12,11/9/26 11:00, +1,1,7501,2026,1,1,,0,,,11,9,13,11/9/26 12:00, +1,1,7502,2026,1,1,,0,,,11,9,14,11/9/26 13:00, +1,1,7503,2026,1,1,,0,,,11,9,15,11/9/26 14:00, +1,1,7504,2026,1,1,,0,,,11,9,16,11/9/26 15:00, +1,1,7505,2026,1,1,,0,,,11,9,17,11/9/26 16:00, +1,1,7506,2026,1,1,,0,,,11,9,18,11/9/26 17:00, +1,1,7507,2026,1,1,,0,,,11,9,19,11/9/26 18:00, +1,1,7508,2026,1,1,,0,,,11,9,20,11/9/26 19:00, +1,1,7509,2026,1,1,,0,,,11,9,21,11/9/26 20:00, +1,1,7510,2026,1,1,,0,,,11,9,22,11/9/26 21:00, +1,1,7511,2026,1,1,,0,,,11,9,23,11/9/26 22:00, +1,1,7512,2026,1,1,,0,,,11,9,24,11/9/26 23:00, +1,1,7513,2026,1,1,,0,,,11,10,1,11/10/26 0:00, +1,1,7514,2026,1,1,,0,,,11,10,2,11/10/26 1:00, +1,1,7515,2026,1,1,,0,,,11,10,3,11/10/26 2:00, +1,1,7516,2026,1,1,,0,,,11,10,4,11/10/26 3:00, +1,1,7517,2026,1,1,,0,,,11,10,5,11/10/26 4:00, +1,1,7518,2026,1,1,,0,,,11,10,6,11/10/26 5:00, +1,1,7519,2026,1,1,,0,,,11,10,7,11/10/26 6:00, +1,1,7520,2026,1,1,,0,,,11,10,8,11/10/26 7:00, +1,1,7521,2026,1,1,,0,,,11,10,9,11/10/26 8:00, +1,1,7522,2026,1,1,,0,,,11,10,10,11/10/26 9:00, +1,1,7523,2026,1,1,,0,,,11,10,11,11/10/26 10:00, +1,1,7524,2026,1,1,,0,,,11,10,12,11/10/26 11:00, +1,1,7525,2026,1,1,,0,,,11,10,13,11/10/26 12:00, +1,1,7526,2026,1,1,,0,,,11,10,14,11/10/26 13:00, +1,1,7527,2026,1,1,,0,,,11,10,15,11/10/26 14:00, +1,1,7528,2026,1,1,,0,,,11,10,16,11/10/26 15:00, +1,1,7529,2026,1,1,,0,,,11,10,17,11/10/26 16:00, +1,1,7530,2026,1,1,,0,,,11,10,18,11/10/26 17:00, +1,1,7531,2026,1,1,,0,,,11,10,19,11/10/26 18:00, +1,1,7532,2026,1,1,,0,,,11,10,20,11/10/26 19:00, +1,1,7533,2026,1,1,,0,,,11,10,21,11/10/26 20:00, +1,1,7534,2026,1,1,,0,,,11,10,22,11/10/26 21:00, +1,1,7535,2026,1,1,,0,,,11,10,23,11/10/26 22:00, +1,1,7536,2026,1,1,,0,,,11,10,24,11/10/26 23:00, +1,1,7537,2026,1,1,,0,,,11,11,1,11/11/26 0:00, +1,1,7538,2026,1,1,,0,,,11,11,2,11/11/26 1:00, +1,1,7539,2026,1,1,,0,,,11,11,3,11/11/26 2:00, +1,1,7540,2026,1,1,,0,,,11,11,4,11/11/26 3:00, +1,1,7541,2026,1,1,,0,,,11,11,5,11/11/26 4:00, +1,1,7542,2026,1,1,,0,,,11,11,6,11/11/26 5:00, +1,1,7543,2026,1,1,,0,,,11,11,7,11/11/26 6:00, +1,1,7544,2026,1,1,,0,,,11,11,8,11/11/26 7:00, +1,1,7545,2026,1,1,,0,,,11,11,9,11/11/26 8:00, +1,1,7546,2026,1,1,,0,,,11,11,10,11/11/26 9:00, +1,1,7547,2026,1,1,,0,,,11,11,11,11/11/26 10:00, +1,1,7548,2026,1,1,,0,,,11,11,12,11/11/26 11:00, +1,1,7549,2026,1,1,,0,,,11,11,13,11/11/26 12:00, +1,1,7550,2026,1,1,,0,,,11,11,14,11/11/26 13:00, +1,1,7551,2026,1,1,,0,,,11,11,15,11/11/26 14:00, +1,1,7552,2026,1,1,,0,,,11,11,16,11/11/26 15:00, +1,1,7553,2026,1,1,,0,,,11,11,17,11/11/26 16:00, +1,1,7554,2026,1,1,,0,,,11,11,18,11/11/26 17:00, +1,1,7555,2026,1,1,,0,,,11,11,19,11/11/26 18:00, +1,1,7556,2026,1,1,,0,,,11,11,20,11/11/26 19:00, +1,1,7557,2026,1,1,,0,,,11,11,21,11/11/26 20:00, +1,1,7558,2026,1,1,,0,,,11,11,22,11/11/26 21:00, +1,1,7559,2026,1,1,,0,,,11,11,23,11/11/26 22:00, +1,1,7560,2026,1,1,,0,,,11,11,24,11/11/26 23:00, +1,1,7561,2026,1,1,,0,,,11,12,1,11/12/26 0:00, +1,1,7562,2026,1,1,,0,,,11,12,2,11/12/26 1:00, +1,1,7563,2026,1,1,,0,,,11,12,3,11/12/26 2:00, +1,1,7564,2026,1,1,,0,,,11,12,4,11/12/26 3:00, +1,1,7565,2026,1,1,,0,,,11,12,5,11/12/26 4:00, +1,1,7566,2026,1,1,,0,,,11,12,6,11/12/26 5:00, +1,1,7567,2026,1,1,,0,,,11,12,7,11/12/26 6:00, +1,1,7568,2026,1,1,,0,,,11,12,8,11/12/26 7:00, +1,1,7569,2026,1,1,,0,,,11,12,9,11/12/26 8:00, +1,1,7570,2026,1,1,,0,,,11,12,10,11/12/26 9:00, +1,1,7571,2026,1,1,,0,,,11,12,11,11/12/26 10:00, +1,1,7572,2026,1,1,,0,,,11,12,12,11/12/26 11:00, +1,1,7573,2026,1,1,,0,,,11,12,13,11/12/26 12:00, +1,1,7574,2026,1,1,,0,,,11,12,14,11/12/26 13:00, +1,1,7575,2026,1,1,,0,,,11,12,15,11/12/26 14:00, +1,1,7576,2026,1,1,,0,,,11,12,16,11/12/26 15:00, +1,1,7577,2026,1,1,,0,,,11,12,17,11/12/26 16:00, +1,1,7578,2026,1,1,,0,,,11,12,18,11/12/26 17:00, +1,1,7579,2026,1,1,,0,,,11,12,19,11/12/26 18:00, +1,1,7580,2026,1,1,,0,,,11,12,20,11/12/26 19:00, +1,1,7581,2026,1,1,,0,,,11,12,21,11/12/26 20:00, +1,1,7582,2026,1,1,,0,,,11,12,22,11/12/26 21:00, +1,1,7583,2026,1,1,,0,,,11,12,23,11/12/26 22:00, +1,1,7584,2026,1,1,,0,,,11,12,24,11/12/26 23:00, +1,1,7585,2026,1,1,,0,,,11,13,1,11/13/26 0:00, +1,1,7586,2026,1,1,,0,,,11,13,2,11/13/26 1:00, +1,1,7587,2026,1,1,,0,,,11,13,3,11/13/26 2:00, +1,1,7588,2026,1,1,,0,,,11,13,4,11/13/26 3:00, +1,1,7589,2026,1,1,,0,,,11,13,5,11/13/26 4:00, +1,1,7590,2026,1,1,,0,,,11,13,6,11/13/26 5:00, +1,1,7591,2026,1,1,,0,,,11,13,7,11/13/26 6:00, +1,1,7592,2026,1,1,,0,,,11,13,8,11/13/26 7:00, +1,1,7593,2026,1,1,,0,,,11,13,9,11/13/26 8:00, +1,1,7594,2026,1,1,,0,,,11,13,10,11/13/26 9:00, +1,1,7595,2026,1,1,,0,,,11,13,11,11/13/26 10:00, +1,1,7596,2026,1,1,,0,,,11,13,12,11/13/26 11:00, +1,1,7597,2026,1,1,,0,,,11,13,13,11/13/26 12:00, +1,1,7598,2026,1,1,,0,,,11,13,14,11/13/26 13:00, +1,1,7599,2026,1,1,,0,,,11,13,15,11/13/26 14:00, +1,1,7600,2026,1,1,,0,,,11,13,16,11/13/26 15:00, +1,1,7601,2026,1,1,,0,,,11,13,17,11/13/26 16:00, +1,1,7602,2026,1,1,,0,,,11,13,18,11/13/26 17:00, +1,1,7603,2026,1,1,,0,,,11,13,19,11/13/26 18:00, +1,1,7604,2026,1,1,,0,,,11,13,20,11/13/26 19:00, +1,1,7605,2026,1,1,,0,,,11,13,21,11/13/26 20:00, +1,1,7606,2026,1,1,,0,,,11,13,22,11/13/26 21:00, +1,1,7607,2026,1,1,,0,,,11,13,23,11/13/26 22:00, +1,1,7608,2026,1,1,,0,,,11,13,24,11/13/26 23:00, +1,1,7609,2026,1,1,,0,,,11,14,1,11/14/26 0:00, +1,1,7610,2026,1,1,,0,,,11,14,2,11/14/26 1:00, +1,1,7611,2026,1,1,,0,,,11,14,3,11/14/26 2:00, +1,1,7612,2026,1,1,,0,,,11,14,4,11/14/26 3:00, +1,1,7613,2026,1,1,,0,,,11,14,5,11/14/26 4:00, +1,1,7614,2026,1,1,,0,,,11,14,6,11/14/26 5:00, +1,1,7615,2026,1,1,,0,,,11,14,7,11/14/26 6:00, +1,1,7616,2026,1,1,,0,,,11,14,8,11/14/26 7:00, +1,1,7617,2026,1,1,,0,,,11,14,9,11/14/26 8:00, +1,1,7618,2026,1,1,,0,,,11,14,10,11/14/26 9:00, +1,1,7619,2026,1,1,,0,,,11,14,11,11/14/26 10:00, +1,1,7620,2026,1,1,,0,,,11,14,12,11/14/26 11:00, +1,1,7621,2026,1,1,,0,,,11,14,13,11/14/26 12:00, +1,1,7622,2026,1,1,,0,,,11,14,14,11/14/26 13:00, +1,1,7623,2026,1,1,,0,,,11,14,15,11/14/26 14:00, +1,1,7624,2026,1,1,,0,,,11,14,16,11/14/26 15:00, +1,1,7625,2026,1,1,,0,,,11,14,17,11/14/26 16:00, +1,1,7626,2026,1,1,,0,,,11,14,18,11/14/26 17:00, +1,1,7627,2026,1,1,,0,,,11,14,19,11/14/26 18:00, +1,1,7628,2026,1,1,,0,,,11,14,20,11/14/26 19:00, +1,1,7629,2026,1,1,,0,,,11,14,21,11/14/26 20:00, +1,1,7630,2026,1,1,,0,,,11,14,22,11/14/26 21:00, +1,1,7631,2026,1,1,,0,,,11,14,23,11/14/26 22:00, +1,1,7632,2026,1,1,,0,,,11,14,24,11/14/26 23:00, +1,1,7633,2026,1,1,,0,,,11,15,1,11/15/26 0:00, +1,1,7634,2026,1,1,,0,,,11,15,2,11/15/26 1:00, +1,1,7635,2026,1,1,,0,,,11,15,3,11/15/26 2:00, +1,1,7636,2026,1,1,,0,,,11,15,4,11/15/26 3:00, +1,1,7637,2026,1,1,,0,,,11,15,5,11/15/26 4:00, +1,1,7638,2026,1,1,,0,,,11,15,6,11/15/26 5:00, +1,1,7639,2026,1,1,,0,,,11,15,7,11/15/26 6:00, +1,1,7640,2026,1,1,,0,,,11,15,8,11/15/26 7:00, +1,1,7641,2026,1,1,,0,,,11,15,9,11/15/26 8:00, +1,1,7642,2026,1,1,,0,,,11,15,10,11/15/26 9:00, +1,1,7643,2026,1,1,,0,,,11,15,11,11/15/26 10:00, +1,1,7644,2026,1,1,,0,,,11,15,12,11/15/26 11:00, +1,1,7645,2026,1,1,,0,,,11,15,13,11/15/26 12:00, +1,1,7646,2026,1,1,,0,,,11,15,14,11/15/26 13:00, +1,1,7647,2026,1,1,,0,,,11,15,15,11/15/26 14:00, +1,1,7648,2026,1,1,,0,,,11,15,16,11/15/26 15:00, +1,1,7649,2026,1,1,,0,,,11,15,17,11/15/26 16:00, +1,1,7650,2026,1,1,,0,,,11,15,18,11/15/26 17:00, +1,1,7651,2026,1,1,,0,,,11,15,19,11/15/26 18:00, +1,1,7652,2026,1,1,,0,,,11,15,20,11/15/26 19:00, +1,1,7653,2026,1,1,,0,,,11,15,21,11/15/26 20:00, +1,1,7654,2026,1,1,,0,,,11,15,22,11/15/26 21:00, +1,1,7655,2026,1,1,,0,,,11,15,23,11/15/26 22:00, +1,1,7656,2026,1,1,,0,,,11,15,24,11/15/26 23:00, +1,1,7657,2026,1,1,,0,,,11,16,1,11/16/26 0:00, +1,1,7658,2026,1,1,,0,,,11,16,2,11/16/26 1:00, +1,1,7659,2026,1,1,,0,,,11,16,3,11/16/26 2:00, +1,1,7660,2026,1,1,,0,,,11,16,4,11/16/26 3:00, +1,1,7661,2026,1,1,,0,,,11,16,5,11/16/26 4:00, +1,1,7662,2026,1,1,,0,,,11,16,6,11/16/26 5:00, +1,1,7663,2026,1,1,,0,,,11,16,7,11/16/26 6:00, +1,1,7664,2026,1,1,,0,,,11,16,8,11/16/26 7:00, +1,1,7665,2026,1,1,,0,,,11,16,9,11/16/26 8:00, +1,1,7666,2026,1,1,,0,,,11,16,10,11/16/26 9:00, +1,1,7667,2026,1,1,,0,,,11,16,11,11/16/26 10:00, +1,1,7668,2026,1,1,,0,,,11,16,12,11/16/26 11:00, +1,1,7669,2026,1,1,,0,,,11,16,13,11/16/26 12:00, +1,1,7670,2026,1,1,,0,,,11,16,14,11/16/26 13:00, +1,1,7671,2026,1,1,,0,,,11,16,15,11/16/26 14:00, +1,1,7672,2026,1,1,,0,,,11,16,16,11/16/26 15:00, +1,1,7673,2026,1,1,,0,,,11,16,17,11/16/26 16:00, +1,1,7674,2026,1,1,,0,,,11,16,18,11/16/26 17:00, +1,1,7675,2026,1,1,,0,,,11,16,19,11/16/26 18:00, +1,1,7676,2026,1,1,,0,,,11,16,20,11/16/26 19:00, +1,1,7677,2026,1,1,,0,,,11,16,21,11/16/26 20:00, +1,1,7678,2026,1,1,,0,,,11,16,22,11/16/26 21:00, +1,1,7679,2026,1,1,,0,,,11,16,23,11/16/26 22:00, +1,1,7680,2026,1,1,,0,,,11,16,24,11/16/26 23:00, +1,1,7681,2026,1,1,,0,,,11,17,1,11/17/26 0:00, +1,1,7682,2026,1,1,,0,,,11,17,2,11/17/26 1:00, +1,1,7683,2026,1,1,,0,,,11,17,3,11/17/26 2:00, +1,1,7684,2026,1,1,,0,,,11,17,4,11/17/26 3:00, +1,1,7685,2026,1,1,,0,,,11,17,5,11/17/26 4:00, +1,1,7686,2026,1,1,,0,,,11,17,6,11/17/26 5:00, +1,1,7687,2026,1,1,,0,,,11,17,7,11/17/26 6:00, +1,1,7688,2026,1,1,,0,,,11,17,8,11/17/26 7:00, +1,1,7689,2026,1,1,,0,,,11,17,9,11/17/26 8:00, +1,1,7690,2026,1,1,,0,,,11,17,10,11/17/26 9:00, +1,1,7691,2026,1,1,,0,,,11,17,11,11/17/26 10:00, +1,1,7692,2026,1,1,,0,,,11,17,12,11/17/26 11:00, +1,1,7693,2026,1,1,,0,,,11,17,13,11/17/26 12:00, +1,1,7694,2026,1,1,,0,,,11,17,14,11/17/26 13:00, +1,1,7695,2026,1,1,,0,,,11,17,15,11/17/26 14:00, +1,1,7696,2026,1,1,,0,,,11,17,16,11/17/26 15:00, +1,1,7697,2026,1,1,,0,,,11,17,17,11/17/26 16:00, +1,1,7698,2026,1,1,,0,,,11,17,18,11/17/26 17:00, +1,1,7699,2026,1,1,,0,,,11,17,19,11/17/26 18:00, +1,1,7700,2026,1,1,,0,,,11,17,20,11/17/26 19:00, +1,1,7701,2026,1,1,,0,,,11,17,21,11/17/26 20:00, +1,1,7702,2026,1,1,,0,,,11,17,22,11/17/26 21:00, +1,1,7703,2026,1,1,,0,,,11,17,23,11/17/26 22:00, +1,1,7704,2026,1,1,,0,,,11,17,24,11/17/26 23:00, +1,1,7705,2026,1,1,,0,,,11,18,1,11/18/26 0:00, +1,1,7706,2026,1,1,,0,,,11,18,2,11/18/26 1:00, +1,1,7707,2026,1,1,,0,,,11,18,3,11/18/26 2:00, +1,1,7708,2026,1,1,,0,,,11,18,4,11/18/26 3:00, +1,1,7709,2026,1,1,,0,,,11,18,5,11/18/26 4:00, +1,1,7710,2026,1,1,,0,,,11,18,6,11/18/26 5:00, +1,1,7711,2026,1,1,,0,,,11,18,7,11/18/26 6:00, +1,1,7712,2026,1,1,,0,,,11,18,8,11/18/26 7:00, +1,1,7713,2026,1,1,,0,,,11,18,9,11/18/26 8:00, +1,1,7714,2026,1,1,,0,,,11,18,10,11/18/26 9:00, +1,1,7715,2026,1,1,,0,,,11,18,11,11/18/26 10:00, +1,1,7716,2026,1,1,,0,,,11,18,12,11/18/26 11:00, +1,1,7717,2026,1,1,,0,,,11,18,13,11/18/26 12:00, +1,1,7718,2026,1,1,,0,,,11,18,14,11/18/26 13:00, +1,1,7719,2026,1,1,,0,,,11,18,15,11/18/26 14:00, +1,1,7720,2026,1,1,,0,,,11,18,16,11/18/26 15:00, +1,1,7721,2026,1,1,,0,,,11,18,17,11/18/26 16:00, +1,1,7722,2026,1,1,,0,,,11,18,18,11/18/26 17:00, +1,1,7723,2026,1,1,,0,,,11,18,19,11/18/26 18:00, +1,1,7724,2026,1,1,,0,,,11,18,20,11/18/26 19:00, +1,1,7725,2026,1,1,,0,,,11,18,21,11/18/26 20:00, +1,1,7726,2026,1,1,,0,,,11,18,22,11/18/26 21:00, +1,1,7727,2026,1,1,,0,,,11,18,23,11/18/26 22:00, +1,1,7728,2026,1,1,,0,,,11,18,24,11/18/26 23:00, +1,1,7729,2026,1,1,,0,,,11,19,1,11/19/26 0:00, +1,1,7730,2026,1,1,,0,,,11,19,2,11/19/26 1:00, +1,1,7731,2026,1,1,,0,,,11,19,3,11/19/26 2:00, +1,1,7732,2026,1,1,,0,,,11,19,4,11/19/26 3:00, +1,1,7733,2026,1,1,,0,,,11,19,5,11/19/26 4:00, +1,1,7734,2026,1,1,,0,,,11,19,6,11/19/26 5:00, +1,1,7735,2026,1,1,,0,,,11,19,7,11/19/26 6:00, +1,1,7736,2026,1,1,,0,,,11,19,8,11/19/26 7:00, +1,1,7737,2026,1,1,,0,,,11,19,9,11/19/26 8:00, +1,1,7738,2026,1,1,,0,,,11,19,10,11/19/26 9:00, +1,1,7739,2026,1,1,,0,,,11,19,11,11/19/26 10:00, +1,1,7740,2026,1,1,,0,,,11,19,12,11/19/26 11:00, +1,1,7741,2026,1,1,,0,,,11,19,13,11/19/26 12:00, +1,1,7742,2026,1,1,,0,,,11,19,14,11/19/26 13:00, +1,1,7743,2026,1,1,,0,,,11,19,15,11/19/26 14:00, +1,1,7744,2026,1,1,,0,,,11,19,16,11/19/26 15:00, +1,1,7745,2026,1,1,,0,,,11,19,17,11/19/26 16:00, +1,1,7746,2026,1,1,,0,,,11,19,18,11/19/26 17:00, +1,1,7747,2026,1,1,,0,,,11,19,19,11/19/26 18:00, +1,1,7748,2026,1,1,,0,,,11,19,20,11/19/26 19:00, +1,1,7749,2026,1,1,,0,,,11,19,21,11/19/26 20:00, +1,1,7750,2026,1,1,,0,,,11,19,22,11/19/26 21:00, +1,1,7751,2026,1,1,,0,,,11,19,23,11/19/26 22:00, +1,1,7752,2026,1,1,,0,,,11,19,24,11/19/26 23:00, +1,1,7753,2026,1,1,,0,,,11,20,1,11/20/26 0:00, +1,1,7754,2026,1,1,,0,,,11,20,2,11/20/26 1:00, +1,1,7755,2026,1,1,,0,,,11,20,3,11/20/26 2:00, +1,1,7756,2026,1,1,,0,,,11,20,4,11/20/26 3:00, +1,1,7757,2026,1,1,,0,,,11,20,5,11/20/26 4:00, +1,1,7758,2026,1,1,,0,,,11,20,6,11/20/26 5:00, +1,1,7759,2026,1,1,,0,,,11,20,7,11/20/26 6:00, +1,1,7760,2026,1,1,,0,,,11,20,8,11/20/26 7:00, +1,1,7761,2026,1,1,,0,,,11,20,9,11/20/26 8:00, +1,1,7762,2026,1,1,,0,,,11,20,10,11/20/26 9:00, +1,1,7763,2026,1,1,,0,,,11,20,11,11/20/26 10:00, +1,1,7764,2026,1,1,,0,,,11,20,12,11/20/26 11:00, +1,1,7765,2026,1,1,,0,,,11,20,13,11/20/26 12:00, +1,1,7766,2026,1,1,,0,,,11,20,14,11/20/26 13:00, +1,1,7767,2026,1,1,,0,,,11,20,15,11/20/26 14:00, +1,1,7768,2026,1,1,,0,,,11,20,16,11/20/26 15:00, +1,1,7769,2026,1,1,,0,,,11,20,17,11/20/26 16:00, +1,1,7770,2026,1,1,,0,,,11,20,18,11/20/26 17:00, +1,1,7771,2026,1,1,,0,,,11,20,19,11/20/26 18:00, +1,1,7772,2026,1,1,,0,,,11,20,20,11/20/26 19:00, +1,1,7773,2026,1,1,,0,,,11,20,21,11/20/26 20:00, +1,1,7774,2026,1,1,,0,,,11,20,22,11/20/26 21:00, +1,1,7775,2026,1,1,,0,,,11,20,23,11/20/26 22:00, +1,1,7776,2026,1,1,,0,,,11,20,24,11/20/26 23:00, +1,1,7777,2026,1,1,,0,,,11,21,1,11/21/26 0:00, +1,1,7778,2026,1,1,,0,,,11,21,2,11/21/26 1:00, +1,1,7779,2026,1,1,,0,,,11,21,3,11/21/26 2:00, +1,1,7780,2026,1,1,,0,,,11,21,4,11/21/26 3:00, +1,1,7781,2026,1,1,,0,,,11,21,5,11/21/26 4:00, +1,1,7782,2026,1,1,,0,,,11,21,6,11/21/26 5:00, +1,1,7783,2026,1,1,,0,,,11,21,7,11/21/26 6:00, +1,1,7784,2026,1,1,,0,,,11,21,8,11/21/26 7:00, +1,1,7785,2026,1,1,,0,,,11,21,9,11/21/26 8:00, +1,1,7786,2026,1,1,,0,,,11,21,10,11/21/26 9:00, +1,1,7787,2026,1,1,,0,,,11,21,11,11/21/26 10:00, +1,1,7788,2026,1,1,,0,,,11,21,12,11/21/26 11:00, +1,1,7789,2026,1,1,,0,,,11,21,13,11/21/26 12:00, +1,1,7790,2026,1,1,,0,,,11,21,14,11/21/26 13:00, +1,1,7791,2026,1,1,,0,,,11,21,15,11/21/26 14:00, +1,1,7792,2026,1,1,,0,,,11,21,16,11/21/26 15:00, +1,1,7793,2026,1,1,,0,,,11,21,17,11/21/26 16:00, +1,1,7794,2026,1,1,,0,,,11,21,18,11/21/26 17:00, +1,1,7795,2026,1,1,,0,,,11,21,19,11/21/26 18:00, +1,1,7796,2026,1,1,,0,,,11,21,20,11/21/26 19:00, +1,1,7797,2026,1,1,,0,,,11,21,21,11/21/26 20:00, +1,1,7798,2026,1,1,,0,,,11,21,22,11/21/26 21:00, +1,1,7799,2026,1,1,,0,,,11,21,23,11/21/26 22:00, +1,1,7800,2026,1,1,,0,,,11,21,24,11/21/26 23:00, +1,1,7801,2026,1,1,,0,,,11,22,1,11/22/26 0:00, +1,1,7802,2026,1,1,,0,,,11,22,2,11/22/26 1:00, +1,1,7803,2026,1,1,,0,,,11,22,3,11/22/26 2:00, +1,1,7804,2026,1,1,,0,,,11,22,4,11/22/26 3:00, +1,1,7805,2026,1,1,,0,,,11,22,5,11/22/26 4:00, +1,1,7806,2026,1,1,,0,,,11,22,6,11/22/26 5:00, +1,1,7807,2026,1,1,,0,,,11,22,7,11/22/26 6:00, +1,1,7808,2026,1,1,,0,,,11,22,8,11/22/26 7:00, +1,1,7809,2026,1,1,,0,,,11,22,9,11/22/26 8:00, +1,1,7810,2026,1,1,,0,,,11,22,10,11/22/26 9:00, +1,1,7811,2026,1,1,,0,,,11,22,11,11/22/26 10:00, +1,1,7812,2026,1,1,,0,,,11,22,12,11/22/26 11:00, +1,1,7813,2026,1,1,,0,,,11,22,13,11/22/26 12:00, +1,1,7814,2026,1,1,,0,,,11,22,14,11/22/26 13:00, +1,1,7815,2026,1,1,,0,,,11,22,15,11/22/26 14:00, +1,1,7816,2026,1,1,,0,,,11,22,16,11/22/26 15:00, +1,1,7817,2026,1,1,,0,,,11,22,17,11/22/26 16:00, +1,1,7818,2026,1,1,,0,,,11,22,18,11/22/26 17:00, +1,1,7819,2026,1,1,,0,,,11,22,19,11/22/26 18:00, +1,1,7820,2026,1,1,,0,,,11,22,20,11/22/26 19:00, +1,1,7821,2026,1,1,,0,,,11,22,21,11/22/26 20:00, +1,1,7822,2026,1,1,,0,,,11,22,22,11/22/26 21:00, +1,1,7823,2026,1,1,,0,,,11,22,23,11/22/26 22:00, +1,1,7824,2026,1,1,,0,,,11,22,24,11/22/26 23:00, +1,1,7825,2026,1,1,,0,,,11,23,1,11/23/26 0:00, +1,1,7826,2026,1,1,,0,,,11,23,2,11/23/26 1:00, +1,1,7827,2026,1,1,,0,,,11,23,3,11/23/26 2:00, +1,1,7828,2026,1,1,,0,,,11,23,4,11/23/26 3:00, +1,1,7829,2026,1,1,,0,,,11,23,5,11/23/26 4:00, +1,1,7830,2026,1,1,,0,,,11,23,6,11/23/26 5:00, +1,1,7831,2026,1,1,,0,,,11,23,7,11/23/26 6:00, +1,1,7832,2026,1,1,,0,,,11,23,8,11/23/26 7:00, +1,1,7833,2026,1,1,,0,,,11,23,9,11/23/26 8:00, +1,1,7834,2026,1,1,,0,,,11,23,10,11/23/26 9:00, +1,1,7835,2026,1,1,,0,,,11,23,11,11/23/26 10:00, +1,1,7836,2026,1,1,,0,,,11,23,12,11/23/26 11:00, +1,1,7837,2026,1,1,,0,,,11,23,13,11/23/26 12:00, +1,1,7838,2026,1,1,,0,,,11,23,14,11/23/26 13:00, +1,1,7839,2026,1,1,,0,,,11,23,15,11/23/26 14:00, +1,1,7840,2026,1,1,,0,,,11,23,16,11/23/26 15:00, +1,1,7841,2026,1,1,,0,,,11,23,17,11/23/26 16:00, +1,1,7842,2026,1,1,,0,,,11,23,18,11/23/26 17:00, +1,1,7843,2026,1,1,,0,,,11,23,19,11/23/26 18:00, +1,1,7844,2026,1,1,,0,,,11,23,20,11/23/26 19:00, +1,1,7845,2026,1,1,,0,,,11,23,21,11/23/26 20:00, +1,1,7846,2026,1,1,,0,,,11,23,22,11/23/26 21:00, +1,1,7847,2026,1,1,,0,,,11,23,23,11/23/26 22:00, +1,1,7848,2026,1,1,,0,,,11,23,24,11/23/26 23:00, +1,1,7849,2026,1,1,,0,,,11,24,1,11/24/26 0:00, +1,1,7850,2026,1,1,,0,,,11,24,2,11/24/26 1:00, +1,1,7851,2026,1,1,,0,,,11,24,3,11/24/26 2:00, +1,1,7852,2026,1,1,,0,,,11,24,4,11/24/26 3:00, +1,1,7853,2026,1,1,,0,,,11,24,5,11/24/26 4:00, +1,1,7854,2026,1,1,,0,,,11,24,6,11/24/26 5:00, +1,1,7855,2026,1,1,,0,,,11,24,7,11/24/26 6:00, +1,1,7856,2026,1,1,,0,,,11,24,8,11/24/26 7:00, +1,1,7857,2026,1,1,,0,,,11,24,9,11/24/26 8:00, +1,1,7858,2026,1,1,,0,,,11,24,10,11/24/26 9:00, +1,1,7859,2026,1,1,,0,,,11,24,11,11/24/26 10:00, +1,1,7860,2026,1,1,,0,,,11,24,12,11/24/26 11:00, +1,1,7861,2026,1,1,,0,,,11,24,13,11/24/26 12:00, +1,1,7862,2026,1,1,,0,,,11,24,14,11/24/26 13:00, +1,1,7863,2026,1,1,,0,,,11,24,15,11/24/26 14:00, +1,1,7864,2026,1,1,,0,,,11,24,16,11/24/26 15:00, +1,1,7865,2026,1,1,,0,,,11,24,17,11/24/26 16:00, +1,1,7866,2026,1,1,,0,,,11,24,18,11/24/26 17:00, +1,1,7867,2026,1,1,,0,,,11,24,19,11/24/26 18:00, +1,1,7868,2026,1,1,,0,,,11,24,20,11/24/26 19:00, +1,1,7869,2026,1,1,,0,,,11,24,21,11/24/26 20:00, +1,1,7870,2026,1,1,,0,,,11,24,22,11/24/26 21:00, +1,1,7871,2026,1,1,,0,,,11,24,23,11/24/26 22:00, +1,1,7872,2026,1,1,,0,,,11,24,24,11/24/26 23:00, +1,1,7873,2026,1,1,,0,,,11,25,1,11/25/26 0:00, +1,1,7874,2026,1,1,,0,,,11,25,2,11/25/26 1:00, +1,1,7875,2026,1,1,,0,,,11,25,3,11/25/26 2:00, +1,1,7876,2026,1,1,,0,,,11,25,4,11/25/26 3:00, +1,1,7877,2026,1,1,,0,,,11,25,5,11/25/26 4:00, +1,1,7878,2026,1,1,,0,,,11,25,6,11/25/26 5:00, +1,1,7879,2026,1,1,,0,,,11,25,7,11/25/26 6:00, +1,1,7880,2026,1,1,,0,,,11,25,8,11/25/26 7:00, +1,1,7881,2026,1,1,,0,,,11,25,9,11/25/26 8:00, +1,1,7882,2026,1,1,,0,,,11,25,10,11/25/26 9:00, +1,1,7883,2026,1,1,,0,,,11,25,11,11/25/26 10:00, +1,1,7884,2026,1,1,,0,,,11,25,12,11/25/26 11:00, +1,1,7885,2026,1,1,,0,,,11,25,13,11/25/26 12:00, +1,1,7886,2026,1,1,,0,,,11,25,14,11/25/26 13:00, +1,1,7887,2026,1,1,,0,,,11,25,15,11/25/26 14:00, +1,1,7888,2026,1,1,,0,,,11,25,16,11/25/26 15:00, +1,1,7889,2026,1,1,,0,,,11,25,17,11/25/26 16:00, +1,1,7890,2026,1,1,,0,,,11,25,18,11/25/26 17:00, +1,1,7891,2026,1,1,,0,,,11,25,19,11/25/26 18:00, +1,1,7892,2026,1,1,,0,,,11,25,20,11/25/26 19:00, +1,1,7893,2026,1,1,,0,,,11,25,21,11/25/26 20:00, +1,1,7894,2026,1,1,,0,,,11,25,22,11/25/26 21:00, +1,1,7895,2026,1,1,,0,,,11,25,23,11/25/26 22:00, +1,1,7896,2026,1,1,,0,,,11,25,24,11/25/26 23:00, +1,1,7897,2026,1,1,,0,,,11,26,1,11/26/26 0:00, +1,1,7898,2026,1,1,,0,,,11,26,2,11/26/26 1:00, +1,1,7899,2026,1,1,,0,,,11,26,3,11/26/26 2:00, +1,1,7900,2026,1,1,,0,,,11,26,4,11/26/26 3:00, +1,1,7901,2026,1,1,,0,,,11,26,5,11/26/26 4:00, +1,1,7902,2026,1,1,,0,,,11,26,6,11/26/26 5:00, +1,1,7903,2026,1,1,,0,,,11,26,7,11/26/26 6:00, +1,1,7904,2026,1,1,,0,,,11,26,8,11/26/26 7:00, +1,1,7905,2026,1,1,,0,,,11,26,9,11/26/26 8:00, +1,1,7906,2026,1,1,,0,,,11,26,10,11/26/26 9:00, +1,1,7907,2026,1,1,,0,,,11,26,11,11/26/26 10:00, +1,1,7908,2026,1,1,,0,,,11,26,12,11/26/26 11:00, +1,1,7909,2026,1,1,,0,,,11,26,13,11/26/26 12:00, +1,1,7910,2026,1,1,,0,,,11,26,14,11/26/26 13:00, +1,1,7911,2026,1,1,,0,,,11,26,15,11/26/26 14:00, +1,1,7912,2026,1,1,,0,,,11,26,16,11/26/26 15:00, +1,1,7913,2026,1,1,,0,,,11,26,17,11/26/26 16:00, +1,1,7914,2026,1,1,,0,,,11,26,18,11/26/26 17:00, +1,1,7915,2026,1,1,,0,,,11,26,19,11/26/26 18:00, +1,1,7916,2026,1,1,,0,,,11,26,20,11/26/26 19:00, +1,1,7917,2026,1,1,,0,,,11,26,21,11/26/26 20:00, +1,1,7918,2026,1,1,,0,,,11,26,22,11/26/26 21:00, +1,1,7919,2026,1,1,,0,,,11,26,23,11/26/26 22:00, +1,1,7920,2026,1,1,,0,,,11,26,24,11/26/26 23:00, +1,1,7921,2026,1,1,,0,,,11,27,1,11/27/26 0:00, +1,1,7922,2026,1,1,,0,,,11,27,2,11/27/26 1:00, +1,1,7923,2026,1,1,,0,,,11,27,3,11/27/26 2:00, +1,1,7924,2026,1,1,,0,,,11,27,4,11/27/26 3:00, +1,1,7925,2026,1,1,,0,,,11,27,5,11/27/26 4:00, +1,1,7926,2026,1,1,,0,,,11,27,6,11/27/26 5:00, +1,1,7927,2026,1,1,,0,,,11,27,7,11/27/26 6:00, +1,1,7928,2026,1,1,,0,,,11,27,8,11/27/26 7:00, +1,1,7929,2026,1,1,,0,,,11,27,9,11/27/26 8:00, +1,1,7930,2026,1,1,,0,,,11,27,10,11/27/26 9:00, +1,1,7931,2026,1,1,,0,,,11,27,11,11/27/26 10:00, +1,1,7932,2026,1,1,,0,,,11,27,12,11/27/26 11:00, +1,1,7933,2026,1,1,,0,,,11,27,13,11/27/26 12:00, +1,1,7934,2026,1,1,,0,,,11,27,14,11/27/26 13:00, +1,1,7935,2026,1,1,,0,,,11,27,15,11/27/26 14:00, +1,1,7936,2026,1,1,,0,,,11,27,16,11/27/26 15:00, +1,1,7937,2026,1,1,,0,,,11,27,17,11/27/26 16:00, +1,1,7938,2026,1,1,,0,,,11,27,18,11/27/26 17:00, +1,1,7939,2026,1,1,,0,,,11,27,19,11/27/26 18:00, +1,1,7940,2026,1,1,,0,,,11,27,20,11/27/26 19:00, +1,1,7941,2026,1,1,,0,,,11,27,21,11/27/26 20:00, +1,1,7942,2026,1,1,,0,,,11,27,22,11/27/26 21:00, +1,1,7943,2026,1,1,,0,,,11,27,23,11/27/26 22:00, +1,1,7944,2026,1,1,,0,,,11,27,24,11/27/26 23:00, +1,1,7945,2026,1,1,,0,,,11,28,1,11/28/26 0:00, +1,1,7946,2026,1,1,,0,,,11,28,2,11/28/26 1:00, +1,1,7947,2026,1,1,,0,,,11,28,3,11/28/26 2:00, +1,1,7948,2026,1,1,,0,,,11,28,4,11/28/26 3:00, +1,1,7949,2026,1,1,,0,,,11,28,5,11/28/26 4:00, +1,1,7950,2026,1,1,,0,,,11,28,6,11/28/26 5:00, +1,1,7951,2026,1,1,,0,,,11,28,7,11/28/26 6:00, +1,1,7952,2026,1,1,,0,,,11,28,8,11/28/26 7:00, +1,1,7953,2026,1,1,,0,,,11,28,9,11/28/26 8:00, +1,1,7954,2026,1,1,,0,,,11,28,10,11/28/26 9:00, +1,1,7955,2026,1,1,,0,,,11,28,11,11/28/26 10:00, +1,1,7956,2026,1,1,,0,,,11,28,12,11/28/26 11:00, +1,1,7957,2026,1,1,,0,,,11,28,13,11/28/26 12:00, +1,1,7958,2026,1,1,,0,,,11,28,14,11/28/26 13:00, +1,1,7959,2026,1,1,,0,,,11,28,15,11/28/26 14:00, +1,1,7960,2026,1,1,,0,,,11,28,16,11/28/26 15:00, +1,1,7961,2026,1,1,,0,,,11,28,17,11/28/26 16:00, +1,1,7962,2026,1,1,,0,,,11,28,18,11/28/26 17:00, +1,1,7963,2026,1,1,,0,,,11,28,19,11/28/26 18:00, +1,1,7964,2026,1,1,,0,,,11,28,20,11/28/26 19:00, +1,1,7965,2026,1,1,,0,,,11,28,21,11/28/26 20:00, +1,1,7966,2026,1,1,,0,,,11,28,22,11/28/26 21:00, +1,1,7967,2026,1,1,,0,,,11,28,23,11/28/26 22:00, +1,1,7968,2026,1,1,,0,,,11,28,24,11/28/26 23:00, +1,1,7969,2026,1,1,,0,,,11,29,1,11/29/26 0:00, +1,1,7970,2026,1,1,,0,,,11,29,2,11/29/26 1:00, +1,1,7971,2026,1,1,,0,,,11,29,3,11/29/26 2:00, +1,1,7972,2026,1,1,,0,,,11,29,4,11/29/26 3:00, +1,1,7973,2026,1,1,,0,,,11,29,5,11/29/26 4:00, +1,1,7974,2026,1,1,,0,,,11,29,6,11/29/26 5:00, +1,1,7975,2026,1,1,,0,,,11,29,7,11/29/26 6:00, +1,1,7976,2026,1,1,,0,,,11,29,8,11/29/26 7:00, +1,1,7977,2026,1,1,,0,,,11,29,9,11/29/26 8:00, +1,1,7978,2026,1,1,,0,,,11,29,10,11/29/26 9:00, +1,1,7979,2026,1,1,,0,,,11,29,11,11/29/26 10:00, +1,1,7980,2026,1,1,,0,,,11,29,12,11/29/26 11:00, +1,1,7981,2026,1,1,,0,,,11,29,13,11/29/26 12:00, +1,1,7982,2026,1,1,,0,,,11,29,14,11/29/26 13:00, +1,1,7983,2026,1,1,,0,,,11,29,15,11/29/26 14:00, +1,1,7984,2026,1,1,,0,,,11,29,16,11/29/26 15:00, +1,1,7985,2026,1,1,,0,,,11,29,17,11/29/26 16:00, +1,1,7986,2026,1,1,,0,,,11,29,18,11/29/26 17:00, +1,1,7987,2026,1,1,,0,,,11,29,19,11/29/26 18:00, +1,1,7988,2026,1,1,,0,,,11,29,20,11/29/26 19:00, +1,1,7989,2026,1,1,,0,,,11,29,21,11/29/26 20:00, +1,1,7990,2026,1,1,,0,,,11,29,22,11/29/26 21:00, +1,1,7991,2026,1,1,,0,,,11,29,23,11/29/26 22:00, +1,1,7992,2026,1,1,,0,,,11,29,24,11/29/26 23:00, +1,1,7993,2026,1,1,,0,,,11,30,1,11/30/26 0:00, +1,1,7994,2026,1,1,,0,,,11,30,2,11/30/26 1:00, +1,1,7995,2026,1,1,,0,,,11,30,3,11/30/26 2:00, +1,1,7996,2026,1,1,,0,,,11,30,4,11/30/26 3:00, +1,1,7997,2026,1,1,,0,,,11,30,5,11/30/26 4:00, +1,1,7998,2026,1,1,,0,,,11,30,6,11/30/26 5:00, +1,1,7999,2026,1,1,,0,,,11,30,7,11/30/26 6:00, +1,1,8000,2026,1,1,,0,,,11,30,8,11/30/26 7:00, +1,1,8001,2026,1,1,,0,,,11,30,9,11/30/26 8:00, +1,1,8002,2026,1,1,,0,,,11,30,10,11/30/26 9:00, +1,1,8003,2026,1,1,,0,,,11,30,11,11/30/26 10:00, +1,1,8004,2026,1,1,,0,,,11,30,12,11/30/26 11:00, +1,1,8005,2026,1,1,,0,,,11,30,13,11/30/26 12:00, +1,1,8006,2026,1,1,,0,,,11,30,14,11/30/26 13:00, +1,1,8007,2026,1,1,,0,,,11,30,15,11/30/26 14:00, +1,1,8008,2026,1,1,,0,,,11,30,16,11/30/26 15:00, +1,1,8009,2026,1,1,,0,,,11,30,17,11/30/26 16:00, +1,1,8010,2026,1,1,,0,,,11,30,18,11/30/26 17:00, +1,1,8011,2026,1,1,,0,,,11,30,19,11/30/26 18:00, +1,1,8012,2026,1,1,,0,,,11,30,20,11/30/26 19:00, +1,1,8013,2026,1,1,,0,,,11,30,21,11/30/26 20:00, +1,1,8014,2026,1,1,,0,,,11,30,22,11/30/26 21:00, +1,1,8015,2026,1,1,,0,,,11,30,23,11/30/26 22:00, +1,1,8016,2026,1,1,,0,,,11,30,24,11/30/26 23:00, +1,1,8017,2026,1,1,,0,,,12,1,1,12/1/26 0:00, +1,1,8018,2026,1,1,,0,,,12,1,2,12/1/26 1:00, +1,1,8019,2026,1,1,,0,,,12,1,3,12/1/26 2:00, +1,1,8020,2026,1,1,,0,,,12,1,4,12/1/26 3:00, +1,1,8021,2026,1,1,,0,,,12,1,5,12/1/26 4:00, +1,1,8022,2026,1,1,,0,,,12,1,6,12/1/26 5:00, +1,1,8023,2026,1,1,,0,,,12,1,7,12/1/26 6:00, +1,1,8024,2026,1,1,,0,,,12,1,8,12/1/26 7:00, +1,1,8025,2026,1,1,,0,,,12,1,9,12/1/26 8:00, +1,1,8026,2026,1,1,,0,,,12,1,10,12/1/26 9:00, +1,1,8027,2026,1,1,,0,,,12,1,11,12/1/26 10:00, +1,1,8028,2026,1,1,,0,,,12,1,12,12/1/26 11:00, +1,1,8029,2026,1,1,,0,,,12,1,13,12/1/26 12:00, +1,1,8030,2026,1,1,,0,,,12,1,14,12/1/26 13:00, +1,1,8031,2026,1,1,,0,,,12,1,15,12/1/26 14:00, +1,1,8032,2026,1,1,,0,,,12,1,16,12/1/26 15:00, +1,1,8033,2026,1,1,,0,,,12,1,17,12/1/26 16:00, +1,1,8034,2026,1,1,,0,,,12,1,18,12/1/26 17:00, +1,1,8035,2026,1,1,,0,,,12,1,19,12/1/26 18:00, +1,1,8036,2026,1,1,,0,,,12,1,20,12/1/26 19:00, +1,1,8037,2026,1,1,,0,,,12,1,21,12/1/26 20:00, +1,1,8038,2026,1,1,,0,,,12,1,22,12/1/26 21:00, +1,1,8039,2026,1,1,,0,,,12,1,23,12/1/26 22:00, +1,1,8040,2026,1,1,,0,,,12,1,24,12/1/26 23:00, +1,1,8041,2026,1,1,,0,,,12,2,1,12/2/26 0:00, +1,1,8042,2026,1,1,,0,,,12,2,2,12/2/26 1:00, +1,1,8043,2026,1,1,,0,,,12,2,3,12/2/26 2:00, +1,1,8044,2026,1,1,,0,,,12,2,4,12/2/26 3:00, +1,1,8045,2026,1,1,,0,,,12,2,5,12/2/26 4:00, +1,1,8046,2026,1,1,,0,,,12,2,6,12/2/26 5:00, +1,1,8047,2026,1,1,,0,,,12,2,7,12/2/26 6:00, +1,1,8048,2026,1,1,,0,,,12,2,8,12/2/26 7:00, +1,1,8049,2026,1,1,,0,,,12,2,9,12/2/26 8:00, +1,1,8050,2026,1,1,,0,,,12,2,10,12/2/26 9:00, +1,1,8051,2026,1,1,,0,,,12,2,11,12/2/26 10:00, +1,1,8052,2026,1,1,,0,,,12,2,12,12/2/26 11:00, +1,1,8053,2026,1,1,,0,,,12,2,13,12/2/26 12:00, +1,1,8054,2026,1,1,,0,,,12,2,14,12/2/26 13:00, +1,1,8055,2026,1,1,,0,,,12,2,15,12/2/26 14:00, +1,1,8056,2026,1,1,,0,,,12,2,16,12/2/26 15:00, +1,1,8057,2026,1,1,,0,,,12,2,17,12/2/26 16:00, +1,1,8058,2026,1,1,,0,,,12,2,18,12/2/26 17:00, +1,1,8059,2026,1,1,,0,,,12,2,19,12/2/26 18:00, +1,1,8060,2026,1,1,,0,,,12,2,20,12/2/26 19:00, +1,1,8061,2026,1,1,,0,,,12,2,21,12/2/26 20:00, +1,1,8062,2026,1,1,,0,,,12,2,22,12/2/26 21:00, +1,1,8063,2026,1,1,,0,,,12,2,23,12/2/26 22:00, +1,1,8064,2026,1,1,,0,,,12,2,24,12/2/26 23:00, +1,1,8065,2026,1,1,,0,,,12,3,1,12/3/26 0:00, +1,1,8066,2026,1,1,,0,,,12,3,2,12/3/26 1:00, +1,1,8067,2026,1,1,,0,,,12,3,3,12/3/26 2:00, +1,1,8068,2026,1,1,,0,,,12,3,4,12/3/26 3:00, +1,1,8069,2026,1,1,,0,,,12,3,5,12/3/26 4:00, +1,1,8070,2026,1,1,,0,,,12,3,6,12/3/26 5:00, +1,1,8071,2026,1,1,,0,,,12,3,7,12/3/26 6:00, +1,1,8072,2026,1,1,,0,,,12,3,8,12/3/26 7:00, +1,1,8073,2026,1,1,,0,,,12,3,9,12/3/26 8:00, +1,1,8074,2026,1,1,,0,,,12,3,10,12/3/26 9:00, +1,1,8075,2026,1,1,,0,,,12,3,11,12/3/26 10:00, +1,1,8076,2026,1,1,,0,,,12,3,12,12/3/26 11:00, +1,1,8077,2026,1,1,,0,,,12,3,13,12/3/26 12:00, +1,1,8078,2026,1,1,,0,,,12,3,14,12/3/26 13:00, +1,1,8079,2026,1,1,,0,,,12,3,15,12/3/26 14:00, +1,1,8080,2026,1,1,,0,,,12,3,16,12/3/26 15:00, +1,1,8081,2026,1,1,,0,,,12,3,17,12/3/26 16:00, +1,1,8082,2026,1,1,,0,,,12,3,18,12/3/26 17:00, +1,1,8083,2026,1,1,,0,,,12,3,19,12/3/26 18:00, +1,1,8084,2026,1,1,,0,,,12,3,20,12/3/26 19:00, +1,1,8085,2026,1,1,,0,,,12,3,21,12/3/26 20:00, +1,1,8086,2026,1,1,,0,,,12,3,22,12/3/26 21:00, +1,1,8087,2026,1,1,,0,,,12,3,23,12/3/26 22:00, +1,1,8088,2026,1,1,,0,,,12,3,24,12/3/26 23:00, +1,1,8089,2026,1,1,,0,,,12,4,1,12/4/26 0:00, +1,1,8090,2026,1,1,,0,,,12,4,2,12/4/26 1:00, +1,1,8091,2026,1,1,,0,,,12,4,3,12/4/26 2:00, +1,1,8092,2026,1,1,,0,,,12,4,4,12/4/26 3:00, +1,1,8093,2026,1,1,,0,,,12,4,5,12/4/26 4:00, +1,1,8094,2026,1,1,,0,,,12,4,6,12/4/26 5:00, +1,1,8095,2026,1,1,,0,,,12,4,7,12/4/26 6:00, +1,1,8096,2026,1,1,,0,,,12,4,8,12/4/26 7:00, +1,1,8097,2026,1,1,,0,,,12,4,9,12/4/26 8:00, +1,1,8098,2026,1,1,,0,,,12,4,10,12/4/26 9:00, +1,1,8099,2026,1,1,,0,,,12,4,11,12/4/26 10:00, +1,1,8100,2026,1,1,,0,,,12,4,12,12/4/26 11:00, +1,1,8101,2026,1,1,,0,,,12,4,13,12/4/26 12:00, +1,1,8102,2026,1,1,,0,,,12,4,14,12/4/26 13:00, +1,1,8103,2026,1,1,,0,,,12,4,15,12/4/26 14:00, +1,1,8104,2026,1,1,,0,,,12,4,16,12/4/26 15:00, +1,1,8105,2026,1,1,,0,,,12,4,17,12/4/26 16:00, +1,1,8106,2026,1,1,,0,,,12,4,18,12/4/26 17:00, +1,1,8107,2026,1,1,,0,,,12,4,19,12/4/26 18:00, +1,1,8108,2026,1,1,,0,,,12,4,20,12/4/26 19:00, +1,1,8109,2026,1,1,,0,,,12,4,21,12/4/26 20:00, +1,1,8110,2026,1,1,,0,,,12,4,22,12/4/26 21:00, +1,1,8111,2026,1,1,,0,,,12,4,23,12/4/26 22:00, +1,1,8112,2026,1,1,,0,,,12,4,24,12/4/26 23:00, +1,1,8113,2026,1,1,,0,,,12,5,1,12/5/26 0:00, +1,1,8114,2026,1,1,,0,,,12,5,2,12/5/26 1:00, +1,1,8115,2026,1,1,,0,,,12,5,3,12/5/26 2:00, +1,1,8116,2026,1,1,,0,,,12,5,4,12/5/26 3:00, +1,1,8117,2026,1,1,,0,,,12,5,5,12/5/26 4:00, +1,1,8118,2026,1,1,,0,,,12,5,6,12/5/26 5:00, +1,1,8119,2026,1,1,,0,,,12,5,7,12/5/26 6:00, +1,1,8120,2026,1,1,,0,,,12,5,8,12/5/26 7:00, +1,1,8121,2026,1,1,,0,,,12,5,9,12/5/26 8:00, +1,1,8122,2026,1,1,,0,,,12,5,10,12/5/26 9:00, +1,1,8123,2026,1,1,,0,,,12,5,11,12/5/26 10:00, +1,1,8124,2026,1,1,,0,,,12,5,12,12/5/26 11:00, +1,1,8125,2026,1,1,,0,,,12,5,13,12/5/26 12:00, +1,1,8126,2026,1,1,,0,,,12,5,14,12/5/26 13:00, +1,1,8127,2026,1,1,,0,,,12,5,15,12/5/26 14:00, +1,1,8128,2026,1,1,,0,,,12,5,16,12/5/26 15:00, +1,1,8129,2026,1,1,,0,,,12,5,17,12/5/26 16:00, +1,1,8130,2026,1,1,,0,,,12,5,18,12/5/26 17:00, +1,1,8131,2026,1,1,,0,,,12,5,19,12/5/26 18:00, +1,1,8132,2026,1,1,,0,,,12,5,20,12/5/26 19:00, +1,1,8133,2026,1,1,,0,,,12,5,21,12/5/26 20:00, +1,1,8134,2026,1,1,,0,,,12,5,22,12/5/26 21:00, +1,1,8135,2026,1,1,,0,,,12,5,23,12/5/26 22:00, +1,1,8136,2026,1,1,,0,,,12,5,24,12/5/26 23:00, +1,1,8137,2026,1,1,,0,,,12,6,1,12/6/26 0:00, +1,1,8138,2026,1,1,,0,,,12,6,2,12/6/26 1:00, +1,1,8139,2026,1,1,,0,,,12,6,3,12/6/26 2:00, +1,1,8140,2026,1,1,,0,,,12,6,4,12/6/26 3:00, +1,1,8141,2026,1,1,,0,,,12,6,5,12/6/26 4:00, +1,1,8142,2026,1,1,,0,,,12,6,6,12/6/26 5:00, +1,1,8143,2026,1,1,,0,,,12,6,7,12/6/26 6:00, +1,1,8144,2026,1,1,,0,,,12,6,8,12/6/26 7:00, +1,1,8145,2026,1,1,,0,,,12,6,9,12/6/26 8:00, +1,1,8146,2026,1,1,,0,,,12,6,10,12/6/26 9:00, +1,1,8147,2026,1,1,,0,,,12,6,11,12/6/26 10:00, +1,1,8148,2026,1,1,,0,,,12,6,12,12/6/26 11:00, +1,1,8149,2026,1,1,,0,,,12,6,13,12/6/26 12:00, +1,1,8150,2026,1,1,,0,,,12,6,14,12/6/26 13:00, +1,1,8151,2026,1,1,,0,,,12,6,15,12/6/26 14:00, +1,1,8152,2026,1,1,,0,,,12,6,16,12/6/26 15:00, +1,1,8153,2026,1,1,,0,,,12,6,17,12/6/26 16:00, +1,1,8154,2026,1,1,,0,,,12,6,18,12/6/26 17:00, +1,1,8155,2026,1,1,,0,,,12,6,19,12/6/26 18:00, +1,1,8156,2026,1,1,,0,,,12,6,20,12/6/26 19:00, +1,1,8157,2026,1,1,,0,,,12,6,21,12/6/26 20:00, +1,1,8158,2026,1,1,,0,,,12,6,22,12/6/26 21:00, +1,1,8159,2026,1,1,,0,,,12,6,23,12/6/26 22:00, +1,1,8160,2026,1,1,,0,,,12,6,24,12/6/26 23:00, +1,1,8161,2026,1,1,,0,,,12,7,1,12/7/26 0:00, +1,1,8162,2026,1,1,,0,,,12,7,2,12/7/26 1:00, +1,1,8163,2026,1,1,,0,,,12,7,3,12/7/26 2:00, +1,1,8164,2026,1,1,,0,,,12,7,4,12/7/26 3:00, +1,1,8165,2026,1,1,,0,,,12,7,5,12/7/26 4:00, +1,1,8166,2026,1,1,,0,,,12,7,6,12/7/26 5:00, +1,1,8167,2026,1,1,,0,,,12,7,7,12/7/26 6:00, +1,1,8168,2026,1,1,,0,,,12,7,8,12/7/26 7:00, +1,1,8169,2026,1,1,,0,,,12,7,9,12/7/26 8:00, +1,1,8170,2026,1,1,,0,,,12,7,10,12/7/26 9:00, +1,1,8171,2026,1,1,,0,,,12,7,11,12/7/26 10:00, +1,1,8172,2026,1,1,,0,,,12,7,12,12/7/26 11:00, +1,1,8173,2026,1,1,,0,,,12,7,13,12/7/26 12:00, +1,1,8174,2026,1,1,,0,,,12,7,14,12/7/26 13:00, +1,1,8175,2026,1,1,,0,,,12,7,15,12/7/26 14:00, +1,1,8176,2026,1,1,,0,,,12,7,16,12/7/26 15:00, +1,1,8177,2026,1,1,,0,,,12,7,17,12/7/26 16:00, +1,1,8178,2026,1,1,,0,,,12,7,18,12/7/26 17:00, +1,1,8179,2026,1,1,,0,,,12,7,19,12/7/26 18:00, +1,1,8180,2026,1,1,,0,,,12,7,20,12/7/26 19:00, +1,1,8181,2026,1,1,,0,,,12,7,21,12/7/26 20:00, +1,1,8182,2026,1,1,,0,,,12,7,22,12/7/26 21:00, +1,1,8183,2026,1,1,,0,,,12,7,23,12/7/26 22:00, +1,1,8184,2026,1,1,,0,,,12,7,24,12/7/26 23:00, +1,1,8185,2026,1,1,,0,,,12,8,1,12/8/26 0:00, +1,1,8186,2026,1,1,,0,,,12,8,2,12/8/26 1:00, +1,1,8187,2026,1,1,,0,,,12,8,3,12/8/26 2:00, +1,1,8188,2026,1,1,,0,,,12,8,4,12/8/26 3:00, +1,1,8189,2026,1,1,,0,,,12,8,5,12/8/26 4:00, +1,1,8190,2026,1,1,,0,,,12,8,6,12/8/26 5:00, +1,1,8191,2026,1,1,,0,,,12,8,7,12/8/26 6:00, +1,1,8192,2026,1,1,,0,,,12,8,8,12/8/26 7:00, +1,1,8193,2026,1,1,,0,,,12,8,9,12/8/26 8:00, +1,1,8194,2026,1,1,,0,,,12,8,10,12/8/26 9:00, +1,1,8195,2026,1,1,,0,,,12,8,11,12/8/26 10:00, +1,1,8196,2026,1,1,,0,,,12,8,12,12/8/26 11:00, +1,1,8197,2026,1,1,,0,,,12,8,13,12/8/26 12:00, +1,1,8198,2026,1,1,,0,,,12,8,14,12/8/26 13:00, +1,1,8199,2026,1,1,,0,,,12,8,15,12/8/26 14:00, +1,1,8200,2026,1,1,,0,,,12,8,16,12/8/26 15:00, +1,1,8201,2026,1,1,,0,,,12,8,17,12/8/26 16:00, +1,1,8202,2026,1,1,,0,,,12,8,18,12/8/26 17:00, +1,1,8203,2026,1,1,,0,,,12,8,19,12/8/26 18:00, +1,1,8204,2026,1,1,,0,,,12,8,20,12/8/26 19:00, +1,1,8205,2026,1,1,,0,,,12,8,21,12/8/26 20:00, +1,1,8206,2026,1,1,,0,,,12,8,22,12/8/26 21:00, +1,1,8207,2026,1,1,,0,,,12,8,23,12/8/26 22:00, +1,1,8208,2026,1,1,,0,,,12,8,24,12/8/26 23:00, +1,1,8209,2026,1,1,,0,,,12,9,1,12/9/26 0:00, +1,1,8210,2026,1,1,,0,,,12,9,2,12/9/26 1:00, +1,1,8211,2026,1,1,,0,,,12,9,3,12/9/26 2:00, +1,1,8212,2026,1,1,,0,,,12,9,4,12/9/26 3:00, +1,1,8213,2026,1,1,,0,,,12,9,5,12/9/26 4:00, +1,1,8214,2026,1,1,,0,,,12,9,6,12/9/26 5:00, +1,1,8215,2026,1,1,,0,,,12,9,7,12/9/26 6:00, +1,1,8216,2026,1,1,,0,,,12,9,8,12/9/26 7:00, +1,1,8217,2026,1,1,,0,,,12,9,9,12/9/26 8:00, +1,1,8218,2026,1,1,,0,,,12,9,10,12/9/26 9:00, +1,1,8219,2026,1,1,,0,,,12,9,11,12/9/26 10:00, +1,1,8220,2026,1,1,,0,,,12,9,12,12/9/26 11:00, +1,1,8221,2026,1,1,,0,,,12,9,13,12/9/26 12:00, +1,1,8222,2026,1,1,,0,,,12,9,14,12/9/26 13:00, +1,1,8223,2026,1,1,,0,,,12,9,15,12/9/26 14:00, +1,1,8224,2026,1,1,,0,,,12,9,16,12/9/26 15:00, +1,1,8225,2026,1,1,,0,,,12,9,17,12/9/26 16:00, +1,1,8226,2026,1,1,,0,,,12,9,18,12/9/26 17:00, +1,1,8227,2026,1,1,,0,,,12,9,19,12/9/26 18:00, +1,1,8228,2026,1,1,,0,,,12,9,20,12/9/26 19:00, +1,1,8229,2026,1,1,,0,,,12,9,21,12/9/26 20:00, +1,1,8230,2026,1,1,,0,,,12,9,22,12/9/26 21:00, +1,1,8231,2026,1,1,,0,,,12,9,23,12/9/26 22:00, +1,1,8232,2026,1,1,,0,,,12,9,24,12/9/26 23:00, +1,1,8233,2026,1,1,,0,,,12,10,1,12/10/26 0:00, +1,1,8234,2026,1,1,,0,,,12,10,2,12/10/26 1:00, +1,1,8235,2026,1,1,,0,,,12,10,3,12/10/26 2:00, +1,1,8236,2026,1,1,,0,,,12,10,4,12/10/26 3:00, +1,1,8237,2026,1,1,,0,,,12,10,5,12/10/26 4:00, +1,1,8238,2026,1,1,,0,,,12,10,6,12/10/26 5:00, +1,1,8239,2026,1,1,,0,,,12,10,7,12/10/26 6:00, +1,1,8240,2026,1,1,,0,,,12,10,8,12/10/26 7:00, +1,1,8241,2026,1,1,,0,,,12,10,9,12/10/26 8:00, +1,1,8242,2026,1,1,,0,,,12,10,10,12/10/26 9:00, +1,1,8243,2026,1,1,,0,,,12,10,11,12/10/26 10:00, +1,1,8244,2026,1,1,,0,,,12,10,12,12/10/26 11:00, +1,1,8245,2026,1,1,,0,,,12,10,13,12/10/26 12:00, +1,1,8246,2026,1,1,,0,,,12,10,14,12/10/26 13:00, +1,1,8247,2026,1,1,,0,,,12,10,15,12/10/26 14:00, +1,1,8248,2026,1,1,,0,,,12,10,16,12/10/26 15:00, +1,1,8249,2026,1,1,,0,,,12,10,17,12/10/26 16:00, +1,1,8250,2026,1,1,,0,,,12,10,18,12/10/26 17:00, +1,1,8251,2026,1,1,,0,,,12,10,19,12/10/26 18:00, +1,1,8252,2026,1,1,,0,,,12,10,20,12/10/26 19:00, +1,1,8253,2026,1,1,,0,,,12,10,21,12/10/26 20:00, +1,1,8254,2026,1,1,,0,,,12,10,22,12/10/26 21:00, +1,1,8255,2026,1,1,,0,,,12,10,23,12/10/26 22:00, +1,1,8256,2026,1,1,,0,,,12,10,24,12/10/26 23:00, +1,1,8257,2026,1,1,,0,,,12,11,1,12/11/26 0:00, +1,1,8258,2026,1,1,,0,,,12,11,2,12/11/26 1:00, +1,1,8259,2026,1,1,,0,,,12,11,3,12/11/26 2:00, +1,1,8260,2026,1,1,,0,,,12,11,4,12/11/26 3:00, +1,1,8261,2026,1,1,,0,,,12,11,5,12/11/26 4:00, +1,1,8262,2026,1,1,,0,,,12,11,6,12/11/26 5:00, +1,1,8263,2026,1,1,,0,,,12,11,7,12/11/26 6:00, +1,1,8264,2026,1,1,,0,,,12,11,8,12/11/26 7:00, +1,1,8265,2026,1,1,,0,,,12,11,9,12/11/26 8:00, +1,1,8266,2026,1,1,,0,,,12,11,10,12/11/26 9:00, +1,1,8267,2026,1,1,,0,,,12,11,11,12/11/26 10:00, +1,1,8268,2026,1,1,,0,,,12,11,12,12/11/26 11:00, +1,1,8269,2026,1,1,,0,,,12,11,13,12/11/26 12:00, +1,1,8270,2026,1,1,,0,,,12,11,14,12/11/26 13:00, +1,1,8271,2026,1,1,,0,,,12,11,15,12/11/26 14:00, +1,1,8272,2026,1,1,,0,,,12,11,16,12/11/26 15:00, +1,1,8273,2026,1,1,,0,,,12,11,17,12/11/26 16:00, +1,1,8274,2026,1,1,,0,,,12,11,18,12/11/26 17:00, +1,1,8275,2026,1,1,,0,,,12,11,19,12/11/26 18:00, +1,1,8276,2026,1,1,,0,,,12,11,20,12/11/26 19:00, +1,1,8277,2026,1,1,,0,,,12,11,21,12/11/26 20:00, +1,1,8278,2026,1,1,,0,,,12,11,22,12/11/26 21:00, +1,1,8279,2026,1,1,,0,,,12,11,23,12/11/26 22:00, +1,1,8280,2026,1,1,,0,,,12,11,24,12/11/26 23:00, +1,1,8281,2026,1,1,,0,,,12,12,1,12/12/26 0:00, +1,1,8282,2026,1,1,,0,,,12,12,2,12/12/26 1:00, +1,1,8283,2026,1,1,,0,,,12,12,3,12/12/26 2:00, +1,1,8284,2026,1,1,,0,,,12,12,4,12/12/26 3:00, +1,1,8285,2026,1,1,,0,,,12,12,5,12/12/26 4:00, +1,1,8286,2026,1,1,,0,,,12,12,6,12/12/26 5:00, +1,1,8287,2026,1,1,,0,,,12,12,7,12/12/26 6:00, +1,1,8288,2026,1,1,,0,,,12,12,8,12/12/26 7:00, +1,1,8289,2026,1,1,,0,,,12,12,9,12/12/26 8:00, +1,1,8290,2026,1,1,,0,,,12,12,10,12/12/26 9:00, +1,1,8291,2026,1,1,,0,,,12,12,11,12/12/26 10:00, +1,1,8292,2026,1,1,,0,,,12,12,12,12/12/26 11:00, +1,1,8293,2026,1,1,,0,,,12,12,13,12/12/26 12:00, +1,1,8294,2026,1,1,,0,,,12,12,14,12/12/26 13:00, +1,1,8295,2026,1,1,,0,,,12,12,15,12/12/26 14:00, +1,1,8296,2026,1,1,,0,,,12,12,16,12/12/26 15:00, +1,1,8297,2026,1,1,,0,,,12,12,17,12/12/26 16:00, +1,1,8298,2026,1,1,,0,,,12,12,18,12/12/26 17:00, +1,1,8299,2026,1,1,,0,,,12,12,19,12/12/26 18:00, +1,1,8300,2026,1,1,,0,,,12,12,20,12/12/26 19:00, +1,1,8301,2026,1,1,,0,,,12,12,21,12/12/26 20:00, +1,1,8302,2026,1,1,,0,,,12,12,22,12/12/26 21:00, +1,1,8303,2026,1,1,,0,,,12,12,23,12/12/26 22:00, +1,1,8304,2026,1,1,,0,,,12,12,24,12/12/26 23:00, +1,1,8305,2026,1,1,,0,,,12,13,1,12/13/26 0:00, +1,1,8306,2026,1,1,,0,,,12,13,2,12/13/26 1:00, +1,1,8307,2026,1,1,,0,,,12,13,3,12/13/26 2:00, +1,1,8308,2026,1,1,,0,,,12,13,4,12/13/26 3:00, +1,1,8309,2026,1,1,,0,,,12,13,5,12/13/26 4:00, +1,1,8310,2026,1,1,,0,,,12,13,6,12/13/26 5:00, +1,1,8311,2026,1,1,,0,,,12,13,7,12/13/26 6:00, +1,1,8312,2026,1,1,,0,,,12,13,8,12/13/26 7:00, +1,1,8313,2026,1,1,,0,,,12,13,9,12/13/26 8:00, +1,1,8314,2026,1,1,,0,,,12,13,10,12/13/26 9:00, +1,1,8315,2026,1,1,,0,,,12,13,11,12/13/26 10:00, +1,1,8316,2026,1,1,,0,,,12,13,12,12/13/26 11:00, +1,1,8317,2026,1,1,,0,,,12,13,13,12/13/26 12:00, +1,1,8318,2026,1,1,,0,,,12,13,14,12/13/26 13:00, +1,1,8319,2026,1,1,,0,,,12,13,15,12/13/26 14:00, +1,1,8320,2026,1,1,,0,,,12,13,16,12/13/26 15:00, +1,1,8321,2026,1,1,,0,,,12,13,17,12/13/26 16:00, +1,1,8322,2026,1,1,,0,,,12,13,18,12/13/26 17:00, +1,1,8323,2026,1,1,,0,,,12,13,19,12/13/26 18:00, +1,1,8324,2026,1,1,,0,,,12,13,20,12/13/26 19:00, +1,1,8325,2026,1,1,,0,,,12,13,21,12/13/26 20:00, +1,1,8326,2026,1,1,,0,,,12,13,22,12/13/26 21:00, +1,1,8327,2026,1,1,,0,,,12,13,23,12/13/26 22:00, +1,1,8328,2026,1,1,,0,,,12,13,24,12/13/26 23:00, +1,1,8329,2026,1,1,,0,,,12,14,1,12/14/26 0:00, +1,1,8330,2026,1,1,,0,,,12,14,2,12/14/26 1:00, +1,1,8331,2026,1,1,,0,,,12,14,3,12/14/26 2:00, +1,1,8332,2026,1,1,,0,,,12,14,4,12/14/26 3:00, +1,1,8333,2026,1,1,,0,,,12,14,5,12/14/26 4:00, +1,1,8334,2026,1,1,,0,,,12,14,6,12/14/26 5:00, +1,1,8335,2026,1,1,,0,,,12,14,7,12/14/26 6:00, +1,1,8336,2026,1,1,,0,,,12,14,8,12/14/26 7:00, +1,1,8337,2026,1,1,,0,,,12,14,9,12/14/26 8:00, +1,1,8338,2026,1,1,,0,,,12,14,10,12/14/26 9:00, +1,1,8339,2026,1,1,,0,,,12,14,11,12/14/26 10:00, +1,1,8340,2026,1,1,,0,,,12,14,12,12/14/26 11:00, +1,1,8341,2026,1,1,,0,,,12,14,13,12/14/26 12:00, +1,1,8342,2026,1,1,,0,,,12,14,14,12/14/26 13:00, +1,1,8343,2026,1,1,,0,,,12,14,15,12/14/26 14:00, +1,1,8344,2026,1,1,,0,,,12,14,16,12/14/26 15:00, +1,1,8345,2026,1,1,,0,,,12,14,17,12/14/26 16:00, +1,1,8346,2026,1,1,,0,,,12,14,18,12/14/26 17:00, +1,1,8347,2026,1,1,,0,,,12,14,19,12/14/26 18:00, +1,1,8348,2026,1,1,,0,,,12,14,20,12/14/26 19:00, +1,1,8349,2026,1,1,,0,,,12,14,21,12/14/26 20:00, +1,1,8350,2026,1,1,,0,,,12,14,22,12/14/26 21:00, +1,1,8351,2026,1,1,,0,,,12,14,23,12/14/26 22:00, +1,1,8352,2026,1,1,,0,,,12,14,24,12/14/26 23:00, +1,1,8353,2026,1,1,,0,,,12,15,1,12/15/26 0:00, +1,1,8354,2026,1,1,,0,,,12,15,2,12/15/26 1:00, +1,1,8355,2026,1,1,,0,,,12,15,3,12/15/26 2:00, +1,1,8356,2026,1,1,,0,,,12,15,4,12/15/26 3:00, +1,1,8357,2026,1,1,,0,,,12,15,5,12/15/26 4:00, +1,1,8358,2026,1,1,,0,,,12,15,6,12/15/26 5:00, +1,1,8359,2026,1,1,,0,,,12,15,7,12/15/26 6:00, +1,1,8360,2026,1,1,,0,,,12,15,8,12/15/26 7:00, +1,1,8361,2026,1,1,,0,,,12,15,9,12/15/26 8:00, +1,1,8362,2026,1,1,,0,,,12,15,10,12/15/26 9:00, +1,1,8363,2026,1,1,,0,,,12,15,11,12/15/26 10:00, +1,1,8364,2026,1,1,,0,,,12,15,12,12/15/26 11:00, +1,1,8365,2026,1,1,,0,,,12,15,13,12/15/26 12:00, +1,1,8366,2026,1,1,,0,,,12,15,14,12/15/26 13:00, +1,1,8367,2026,1,1,,0,,,12,15,15,12/15/26 14:00, +1,1,8368,2026,1,1,,0,,,12,15,16,12/15/26 15:00, +1,1,8369,2026,1,1,,0,,,12,15,17,12/15/26 16:00, +1,1,8370,2026,1,1,,0,,,12,15,18,12/15/26 17:00, +1,1,8371,2026,1,1,,0,,,12,15,19,12/15/26 18:00, +1,1,8372,2026,1,1,,0,,,12,15,20,12/15/26 19:00, +1,1,8373,2026,1,1,,0,,,12,15,21,12/15/26 20:00, +1,1,8374,2026,1,1,,0,,,12,15,22,12/15/26 21:00, +1,1,8375,2026,1,1,,0,,,12,15,23,12/15/26 22:00, +1,1,8376,2026,1,1,,0,,,12,15,24,12/15/26 23:00, +1,1,8377,2026,1,1,,0,,,12,16,1,12/16/26 0:00, +1,1,8378,2026,1,1,,0,,,12,16,2,12/16/26 1:00, +1,1,8379,2026,1,1,,0,,,12,16,3,12/16/26 2:00, +1,1,8380,2026,1,1,,0,,,12,16,4,12/16/26 3:00, +1,1,8381,2026,1,1,,0,,,12,16,5,12/16/26 4:00, +1,1,8382,2026,1,1,,0,,,12,16,6,12/16/26 5:00, +1,1,8383,2026,1,1,,0,,,12,16,7,12/16/26 6:00, +1,1,8384,2026,1,1,,0,,,12,16,8,12/16/26 7:00, +1,1,8385,2026,1,1,,0,,,12,16,9,12/16/26 8:00, +1,1,8386,2026,1,1,,0,,,12,16,10,12/16/26 9:00, +1,1,8387,2026,1,1,,0,,,12,16,11,12/16/26 10:00, +1,1,8388,2026,1,1,,0,,,12,16,12,12/16/26 11:00, +1,1,8389,2026,1,1,,0,,,12,16,13,12/16/26 12:00, +1,1,8390,2026,1,1,,0,,,12,16,14,12/16/26 13:00, +1,1,8391,2026,1,1,,0,,,12,16,15,12/16/26 14:00, +1,1,8392,2026,1,1,,0,,,12,16,16,12/16/26 15:00, +1,1,8393,2026,1,1,,0,,,12,16,17,12/16/26 16:00, +1,1,8394,2026,1,1,,0,,,12,16,18,12/16/26 17:00, +1,1,8395,2026,1,1,,0,,,12,16,19,12/16/26 18:00, +1,1,8396,2026,1,1,,0,,,12,16,20,12/16/26 19:00, +1,1,8397,2026,1,1,,0,,,12,16,21,12/16/26 20:00, +1,1,8398,2026,1,1,,0,,,12,16,22,12/16/26 21:00, +1,1,8399,2026,1,1,,0,,,12,16,23,12/16/26 22:00, +1,1,8400,2026,1,1,,0,,,12,16,24,12/16/26 23:00, +1,1,8401,2026,1,1,,0,,,12,17,1,12/17/26 0:00, +1,1,8402,2026,1,1,,0,,,12,17,2,12/17/26 1:00, +1,1,8403,2026,1,1,,0,,,12,17,3,12/17/26 2:00, +1,1,8404,2026,1,1,,0,,,12,17,4,12/17/26 3:00, +1,1,8405,2026,1,1,,0,,,12,17,5,12/17/26 4:00, +1,1,8406,2026,1,1,,0,,,12,17,6,12/17/26 5:00, +1,1,8407,2026,1,1,,0,,,12,17,7,12/17/26 6:00, +1,1,8408,2026,1,1,,0,,,12,17,8,12/17/26 7:00, +1,1,8409,2026,1,1,,0,,,12,17,9,12/17/26 8:00, +1,1,8410,2026,1,1,,0,,,12,17,10,12/17/26 9:00, +1,1,8411,2026,1,1,,0,,,12,17,11,12/17/26 10:00, +1,1,8412,2026,1,1,,0,,,12,17,12,12/17/26 11:00, +1,1,8413,2026,1,1,,0,,,12,17,13,12/17/26 12:00, +1,1,8414,2026,1,1,,0,,,12,17,14,12/17/26 13:00, +1,1,8415,2026,1,1,,0,,,12,17,15,12/17/26 14:00, +1,1,8416,2026,1,1,,0,,,12,17,16,12/17/26 15:00, +1,1,8417,2026,1,1,,0,,,12,17,17,12/17/26 16:00, +1,1,8418,2026,1,1,,0,,,12,17,18,12/17/26 17:00, +1,1,8419,2026,1,1,,0,,,12,17,19,12/17/26 18:00, +1,1,8420,2026,1,1,,0,,,12,17,20,12/17/26 19:00, +1,1,8421,2026,1,1,,0,,,12,17,21,12/17/26 20:00, +1,1,8422,2026,1,1,,0,,,12,17,22,12/17/26 21:00, +1,1,8423,2026,1,1,,0,,,12,17,23,12/17/26 22:00, +1,1,8424,2026,1,1,,0,,,12,17,24,12/17/26 23:00, +1,1,8425,2026,1,1,,0,,,12,18,1,12/18/26 0:00, +1,1,8426,2026,1,1,,0,,,12,18,2,12/18/26 1:00, +1,1,8427,2026,1,1,,0,,,12,18,3,12/18/26 2:00, +1,1,8428,2026,1,1,,0,,,12,18,4,12/18/26 3:00, +1,1,8429,2026,1,1,,0,,,12,18,5,12/18/26 4:00, +1,1,8430,2026,1,1,,0,,,12,18,6,12/18/26 5:00, +1,1,8431,2026,1,1,,0,,,12,18,7,12/18/26 6:00, +1,1,8432,2026,1,1,,0,,,12,18,8,12/18/26 7:00, +1,1,8433,2026,1,1,,0,,,12,18,9,12/18/26 8:00, +1,1,8434,2026,1,1,,0,,,12,18,10,12/18/26 9:00, +1,1,8435,2026,1,1,,0,,,12,18,11,12/18/26 10:00, +1,1,8436,2026,1,1,,0,,,12,18,12,12/18/26 11:00, +1,1,8437,2026,1,1,,0,,,12,18,13,12/18/26 12:00, +1,1,8438,2026,1,1,,0,,,12,18,14,12/18/26 13:00, +1,1,8439,2026,1,1,,0,,,12,18,15,12/18/26 14:00, +1,1,8440,2026,1,1,,0,,,12,18,16,12/18/26 15:00, +1,1,8441,2026,1,1,,0,,,12,18,17,12/18/26 16:00, +1,1,8442,2026,1,1,,0,,,12,18,18,12/18/26 17:00, +1,1,8443,2026,1,1,,0,,,12,18,19,12/18/26 18:00, +1,1,8444,2026,1,1,,0,,,12,18,20,12/18/26 19:00, +1,1,8445,2026,1,1,,0,,,12,18,21,12/18/26 20:00, +1,1,8446,2026,1,1,,0,,,12,18,22,12/18/26 21:00, +1,1,8447,2026,1,1,,0,,,12,18,23,12/18/26 22:00, +1,1,8448,2026,1,1,,0,,,12,18,24,12/18/26 23:00, +1,1,8449,2026,1,1,,0,,,12,19,1,12/19/26 0:00, +1,1,8450,2026,1,1,,0,,,12,19,2,12/19/26 1:00, +1,1,8451,2026,1,1,,0,,,12,19,3,12/19/26 2:00, +1,1,8452,2026,1,1,,0,,,12,19,4,12/19/26 3:00, +1,1,8453,2026,1,1,,0,,,12,19,5,12/19/26 4:00, +1,1,8454,2026,1,1,,0,,,12,19,6,12/19/26 5:00, +1,1,8455,2026,1,1,,0,,,12,19,7,12/19/26 6:00, +1,1,8456,2026,1,1,,0,,,12,19,8,12/19/26 7:00, +1,1,8457,2026,1,1,,0,,,12,19,9,12/19/26 8:00, +1,1,8458,2026,1,1,,0,,,12,19,10,12/19/26 9:00, +1,1,8459,2026,1,1,,0,,,12,19,11,12/19/26 10:00, +1,1,8460,2026,1,1,,0,,,12,19,12,12/19/26 11:00, +1,1,8461,2026,1,1,,0,,,12,19,13,12/19/26 12:00, +1,1,8462,2026,1,1,,0,,,12,19,14,12/19/26 13:00, +1,1,8463,2026,1,1,,0,,,12,19,15,12/19/26 14:00, +1,1,8464,2026,1,1,,0,,,12,19,16,12/19/26 15:00, +1,1,8465,2026,1,1,,0,,,12,19,17,12/19/26 16:00, +1,1,8466,2026,1,1,,0,,,12,19,18,12/19/26 17:00, +1,1,8467,2026,1,1,,0,,,12,19,19,12/19/26 18:00, +1,1,8468,2026,1,1,,0,,,12,19,20,12/19/26 19:00, +1,1,8469,2026,1,1,,0,,,12,19,21,12/19/26 20:00, +1,1,8470,2026,1,1,,0,,,12,19,22,12/19/26 21:00, +1,1,8471,2026,1,1,,0,,,12,19,23,12/19/26 22:00, +1,1,8472,2026,1,1,,0,,,12,19,24,12/19/26 23:00, +1,1,8473,2026,1,1,,0,,,12,20,1,12/20/26 0:00, +1,1,8474,2026,1,1,,0,,,12,20,2,12/20/26 1:00, +1,1,8475,2026,1,1,,0,,,12,20,3,12/20/26 2:00, +1,1,8476,2026,1,1,,0,,,12,20,4,12/20/26 3:00, +1,1,8477,2026,1,1,,0,,,12,20,5,12/20/26 4:00, +1,1,8478,2026,1,1,,0,,,12,20,6,12/20/26 5:00, +1,1,8479,2026,1,1,,0,,,12,20,7,12/20/26 6:00, +1,1,8480,2026,1,1,,0,,,12,20,8,12/20/26 7:00, +1,1,8481,2026,1,1,,0,,,12,20,9,12/20/26 8:00, +1,1,8482,2026,1,1,,0,,,12,20,10,12/20/26 9:00, +1,1,8483,2026,1,1,,0,,,12,20,11,12/20/26 10:00, +1,1,8484,2026,1,1,,0,,,12,20,12,12/20/26 11:00, +1,1,8485,2026,1,1,,0,,,12,20,13,12/20/26 12:00, +1,1,8486,2026,1,1,,0,,,12,20,14,12/20/26 13:00, +1,1,8487,2026,1,1,,0,,,12,20,15,12/20/26 14:00, +1,1,8488,2026,1,1,,0,,,12,20,16,12/20/26 15:00, +1,1,8489,2026,1,1,,0,,,12,20,17,12/20/26 16:00, +1,1,8490,2026,1,1,,0,,,12,20,18,12/20/26 17:00, +1,1,8491,2026,1,1,,0,,,12,20,19,12/20/26 18:00, +1,1,8492,2026,1,1,,0,,,12,20,20,12/20/26 19:00, +1,1,8493,2026,1,1,,0,,,12,20,21,12/20/26 20:00, +1,1,8494,2026,1,1,,0,,,12,20,22,12/20/26 21:00, +1,1,8495,2026,1,1,,0,,,12,20,23,12/20/26 22:00, +1,1,8496,2026,1,1,,0,,,12,20,24,12/20/26 23:00, +1,1,8497,2026,1,1,,0,,,12,21,1,12/21/26 0:00, +1,1,8498,2026,1,1,,0,,,12,21,2,12/21/26 1:00, +1,1,8499,2026,1,1,,0,,,12,21,3,12/21/26 2:00, +1,1,8500,2026,1,1,,0,,,12,21,4,12/21/26 3:00, +1,1,8501,2026,1,1,,0,,,12,21,5,12/21/26 4:00, +1,1,8502,2026,1,1,,0,,,12,21,6,12/21/26 5:00, +1,1,8503,2026,1,1,,0,,,12,21,7,12/21/26 6:00, +1,1,8504,2026,1,1,,0,,,12,21,8,12/21/26 7:00, +1,1,8505,2026,1,1,,0,,,12,21,9,12/21/26 8:00, +1,1,8506,2026,1,1,,0,,,12,21,10,12/21/26 9:00, +1,1,8507,2026,1,1,,0,,,12,21,11,12/21/26 10:00, +1,1,8508,2026,1,1,,0,,,12,21,12,12/21/26 11:00, +1,1,8509,2026,1,1,,0,,,12,21,13,12/21/26 12:00, +1,1,8510,2026,1,1,,0,,,12,21,14,12/21/26 13:00, +1,1,8511,2026,1,1,,0,,,12,21,15,12/21/26 14:00, +1,1,8512,2026,1,1,,0,,,12,21,16,12/21/26 15:00, +1,1,8513,2026,1,1,,0,,,12,21,17,12/21/26 16:00, +1,1,8514,2026,1,1,,0,,,12,21,18,12/21/26 17:00, +1,1,8515,2026,1,1,,0,,,12,21,19,12/21/26 18:00, +1,1,8516,2026,1,1,,0,,,12,21,20,12/21/26 19:00, +1,1,8517,2026,1,1,,0,,,12,21,21,12/21/26 20:00, +1,1,8518,2026,1,1,,0,,,12,21,22,12/21/26 21:00, +1,1,8519,2026,1,1,,0,,,12,21,23,12/21/26 22:00, +1,1,8520,2026,1,1,,0,,,12,21,24,12/21/26 23:00, +1,1,8521,2026,1,1,,0,,,12,22,1,12/22/26 0:00, +1,1,8522,2026,1,1,,0,,,12,22,2,12/22/26 1:00, +1,1,8523,2026,1,1,,0,,,12,22,3,12/22/26 2:00, +1,1,8524,2026,1,1,,0,,,12,22,4,12/22/26 3:00, +1,1,8525,2026,1,1,,0,,,12,22,5,12/22/26 4:00, +1,1,8526,2026,1,1,,0,,,12,22,6,12/22/26 5:00, +1,1,8527,2026,1,1,,0,,,12,22,7,12/22/26 6:00, +1,1,8528,2026,1,1,,0,,,12,22,8,12/22/26 7:00, +1,1,8529,2026,1,1,,0,,,12,22,9,12/22/26 8:00, +1,1,8530,2026,1,1,,0,,,12,22,10,12/22/26 9:00, +1,1,8531,2026,1,1,,0,,,12,22,11,12/22/26 10:00, +1,1,8532,2026,1,1,,0,,,12,22,12,12/22/26 11:00, +1,1,8533,2026,1,1,,0,,,12,22,13,12/22/26 12:00, +1,1,8534,2026,1,1,,0,,,12,22,14,12/22/26 13:00, +1,1,8535,2026,1,1,,0,,,12,22,15,12/22/26 14:00, +1,1,8536,2026,1,1,,0,,,12,22,16,12/22/26 15:00, +1,1,8537,2026,1,1,,0,,,12,22,17,12/22/26 16:00, +1,1,8538,2026,1,1,,0,,,12,22,18,12/22/26 17:00, +1,1,8539,2026,1,1,,0,,,12,22,19,12/22/26 18:00, +1,1,8540,2026,1,1,,0,,,12,22,20,12/22/26 19:00, +1,1,8541,2026,1,1,,0,,,12,22,21,12/22/26 20:00, +1,1,8542,2026,1,1,,0,,,12,22,22,12/22/26 21:00, +1,1,8543,2026,1,1,,0,,,12,22,23,12/22/26 22:00, +1,1,8544,2026,1,1,,0,,,12,22,24,12/22/26 23:00, +1,1,8545,2026,1,1,,0,,,12,23,1,12/23/26 0:00, +1,1,8546,2026,1,1,,0,,,12,23,2,12/23/26 1:00, +1,1,8547,2026,1,1,,0,,,12,23,3,12/23/26 2:00, +1,1,8548,2026,1,1,,0,,,12,23,4,12/23/26 3:00, +1,1,8549,2026,1,1,,0,,,12,23,5,12/23/26 4:00, +1,1,8550,2026,1,1,,0,,,12,23,6,12/23/26 5:00, +1,1,8551,2026,1,1,,0,,,12,23,7,12/23/26 6:00, +1,1,8552,2026,1,1,,0,,,12,23,8,12/23/26 7:00, +1,1,8553,2026,1,1,,0,,,12,23,9,12/23/26 8:00, +1,1,8554,2026,1,1,,0,,,12,23,10,12/23/26 9:00, +1,1,8555,2026,1,1,,0,,,12,23,11,12/23/26 10:00, +1,1,8556,2026,1,1,,0,,,12,23,12,12/23/26 11:00, +1,1,8557,2026,1,1,,0,,,12,23,13,12/23/26 12:00, +1,1,8558,2026,1,1,,0,,,12,23,14,12/23/26 13:00, +1,1,8559,2026,1,1,,0,,,12,23,15,12/23/26 14:00, +1,1,8560,2026,1,1,,0,,,12,23,16,12/23/26 15:00, +1,1,8561,2026,1,1,,0,,,12,23,17,12/23/26 16:00, +1,1,8562,2026,1,1,,0,,,12,23,18,12/23/26 17:00, +1,1,8563,2026,1,1,,0,,,12,23,19,12/23/26 18:00, +1,1,8564,2026,1,1,,0,,,12,23,20,12/23/26 19:00, +1,1,8565,2026,1,1,,0,,,12,23,21,12/23/26 20:00, +1,1,8566,2026,1,1,,0,,,12,23,22,12/23/26 21:00, +1,1,8567,2026,1,1,,0,,,12,23,23,12/23/26 22:00, +1,1,8568,2026,1,1,,0,,,12,23,24,12/23/26 23:00, +1,1,8569,2026,1,1,,0,,,12,24,1,12/24/26 0:00, +1,1,8570,2026,1,1,,0,,,12,24,2,12/24/26 1:00, +1,1,8571,2026,1,1,,0,,,12,24,3,12/24/26 2:00, +1,1,8572,2026,1,1,,0,,,12,24,4,12/24/26 3:00, +1,1,8573,2026,1,1,,0,,,12,24,5,12/24/26 4:00, +1,1,8574,2026,1,1,,0,,,12,24,6,12/24/26 5:00, +1,1,8575,2026,1,1,,0,,,12,24,7,12/24/26 6:00, +1,1,8576,2026,1,1,,0,,,12,24,8,12/24/26 7:00, +1,1,8577,2026,1,1,,0,,,12,24,9,12/24/26 8:00, +1,1,8578,2026,1,1,,0,,,12,24,10,12/24/26 9:00, +1,1,8579,2026,1,1,,0,,,12,24,11,12/24/26 10:00, +1,1,8580,2026,1,1,,0,,,12,24,12,12/24/26 11:00, +1,1,8581,2026,1,1,,0,,,12,24,13,12/24/26 12:00, +1,1,8582,2026,1,1,,0,,,12,24,14,12/24/26 13:00, +1,1,8583,2026,1,1,,0,,,12,24,15,12/24/26 14:00, +1,1,8584,2026,1,1,,0,,,12,24,16,12/24/26 15:00, +1,1,8585,2026,1,1,,0,,,12,24,17,12/24/26 16:00, +1,1,8586,2026,1,1,,0,,,12,24,18,12/24/26 17:00, +1,1,8587,2026,1,1,,0,,,12,24,19,12/24/26 18:00, +1,1,8588,2026,1,1,,0,,,12,24,20,12/24/26 19:00, +1,1,8589,2026,1,1,,0,,,12,24,21,12/24/26 20:00, +1,1,8590,2026,1,1,,0,,,12,24,22,12/24/26 21:00, +1,1,8591,2026,1,1,,0,,,12,24,23,12/24/26 22:00, +1,1,8592,2026,1,1,,0,,,12,24,24,12/24/26 23:00, +1,1,8593,2026,1,1,,0,,,12,25,1,12/25/26 0:00, +1,1,8594,2026,1,1,,0,,,12,25,2,12/25/26 1:00, +1,1,8595,2026,1,1,,0,,,12,25,3,12/25/26 2:00, +1,1,8596,2026,1,1,,0,,,12,25,4,12/25/26 3:00, +1,1,8597,2026,1,1,,0,,,12,25,5,12/25/26 4:00, +1,1,8598,2026,1,1,,0,,,12,25,6,12/25/26 5:00, +1,1,8599,2026,1,1,,0,,,12,25,7,12/25/26 6:00, +1,1,8600,2026,1,1,,0,,,12,25,8,12/25/26 7:00, +1,1,8601,2026,1,1,,0,,,12,25,9,12/25/26 8:00, +1,1,8602,2026,1,1,,0,,,12,25,10,12/25/26 9:00, +1,1,8603,2026,1,1,,0,,,12,25,11,12/25/26 10:00, +1,1,8604,2026,1,1,,0,,,12,25,12,12/25/26 11:00, +1,1,8605,2026,1,1,,0,,,12,25,13,12/25/26 12:00, +1,1,8606,2026,1,1,,0,,,12,25,14,12/25/26 13:00, +1,1,8607,2026,1,1,,0,,,12,25,15,12/25/26 14:00, +1,1,8608,2026,1,1,,0,,,12,25,16,12/25/26 15:00, +1,1,8609,2026,1,1,,0,,,12,25,17,12/25/26 16:00, +1,1,8610,2026,1,1,,0,,,12,25,18,12/25/26 17:00, +1,1,8611,2026,1,1,,0,,,12,25,19,12/25/26 18:00, +1,1,8612,2026,1,1,,0,,,12,25,20,12/25/26 19:00, +1,1,8613,2026,1,1,,0,,,12,25,21,12/25/26 20:00, +1,1,8614,2026,1,1,,0,,,12,25,22,12/25/26 21:00, +1,1,8615,2026,1,1,,0,,,12,25,23,12/25/26 22:00, +1,1,8616,2026,1,1,,0,,,12,25,24,12/25/26 23:00, +1,1,8617,2026,1,1,,0,,,12,26,1,12/26/26 0:00, +1,1,8618,2026,1,1,,0,,,12,26,2,12/26/26 1:00, +1,1,8619,2026,1,1,,0,,,12,26,3,12/26/26 2:00, +1,1,8620,2026,1,1,,0,,,12,26,4,12/26/26 3:00, +1,1,8621,2026,1,1,,0,,,12,26,5,12/26/26 4:00, +1,1,8622,2026,1,1,,0,,,12,26,6,12/26/26 5:00, +1,1,8623,2026,1,1,,0,,,12,26,7,12/26/26 6:00, +1,1,8624,2026,1,1,,0,,,12,26,8,12/26/26 7:00, +1,1,8625,2026,1,1,,0,,,12,26,9,12/26/26 8:00, +1,1,8626,2026,1,1,,0,,,12,26,10,12/26/26 9:00, +1,1,8627,2026,1,1,,0,,,12,26,11,12/26/26 10:00, +1,1,8628,2026,1,1,,0,,,12,26,12,12/26/26 11:00, +1,1,8629,2026,1,1,,0,,,12,26,13,12/26/26 12:00, +1,1,8630,2026,1,1,,0,,,12,26,14,12/26/26 13:00, +1,1,8631,2026,1,1,,0,,,12,26,15,12/26/26 14:00, +1,1,8632,2026,1,1,,0,,,12,26,16,12/26/26 15:00, +1,1,8633,2026,1,1,,0,,,12,26,17,12/26/26 16:00, +1,1,8634,2026,1,1,,0,,,12,26,18,12/26/26 17:00, +1,1,8635,2026,1,1,,0,,,12,26,19,12/26/26 18:00, +1,1,8636,2026,1,1,,0,,,12,26,20,12/26/26 19:00, +1,1,8637,2026,1,1,,0,,,12,26,21,12/26/26 20:00, +1,1,8638,2026,1,1,,0,,,12,26,22,12/26/26 21:00, +1,1,8639,2026,1,1,,0,,,12,26,23,12/26/26 22:00, +1,1,8640,2026,1,1,,0,,,12,26,24,12/26/26 23:00, +1,1,8641,2026,1,1,,0,,,12,27,1,12/27/26 0:00, +1,1,8642,2026,1,1,,0,,,12,27,2,12/27/26 1:00, +1,1,8643,2026,1,1,,0,,,12,27,3,12/27/26 2:00, +1,1,8644,2026,1,1,,0,,,12,27,4,12/27/26 3:00, +1,1,8645,2026,1,1,,0,,,12,27,5,12/27/26 4:00, +1,1,8646,2026,1,1,,0,,,12,27,6,12/27/26 5:00, +1,1,8647,2026,1,1,,0,,,12,27,7,12/27/26 6:00, +1,1,8648,2026,1,1,,0,,,12,27,8,12/27/26 7:00, +1,1,8649,2026,1,1,,0,,,12,27,9,12/27/26 8:00, +1,1,8650,2026,1,1,,0,,,12,27,10,12/27/26 9:00, +1,1,8651,2026,1,1,,0,,,12,27,11,12/27/26 10:00, +1,1,8652,2026,1,1,,0,,,12,27,12,12/27/26 11:00, +1,1,8653,2026,1,1,,0,,,12,27,13,12/27/26 12:00, +1,1,8654,2026,1,1,,0,,,12,27,14,12/27/26 13:00, +1,1,8655,2026,1,1,,0,,,12,27,15,12/27/26 14:00, +1,1,8656,2026,1,1,,0,,,12,27,16,12/27/26 15:00, +1,1,8657,2026,1,1,,0,,,12,27,17,12/27/26 16:00, +1,1,8658,2026,1,1,,0,,,12,27,18,12/27/26 17:00, +1,1,8659,2026,1,1,,0,,,12,27,19,12/27/26 18:00, +1,1,8660,2026,1,1,,0,,,12,27,20,12/27/26 19:00, +1,1,8661,2026,1,1,,0,,,12,27,21,12/27/26 20:00, +1,1,8662,2026,1,1,,0,,,12,27,22,12/27/26 21:00, +1,1,8663,2026,1,1,,0,,,12,27,23,12/27/26 22:00, +1,1,8664,2026,1,1,,0,,,12,27,24,12/27/26 23:00, +1,1,8665,2026,1,1,,0,,,12,28,1,12/28/26 0:00, +1,1,8666,2026,1,1,,0,,,12,28,2,12/28/26 1:00, +1,1,8667,2026,1,1,,0,,,12,28,3,12/28/26 2:00, +1,1,8668,2026,1,1,,0,,,12,28,4,12/28/26 3:00, +1,1,8669,2026,1,1,,0,,,12,28,5,12/28/26 4:00, +1,1,8670,2026,1,1,,0,,,12,28,6,12/28/26 5:00, +1,1,8671,2026,1,1,,0,,,12,28,7,12/28/26 6:00, +1,1,8672,2026,1,1,,0,,,12,28,8,12/28/26 7:00, +1,1,8673,2026,1,1,,0,,,12,28,9,12/28/26 8:00, +1,1,8674,2026,1,1,,0,,,12,28,10,12/28/26 9:00, +1,1,8675,2026,1,1,,0,,,12,28,11,12/28/26 10:00, +1,1,8676,2026,1,1,,0,,,12,28,12,12/28/26 11:00, +1,1,8677,2026,1,1,,0,,,12,28,13,12/28/26 12:00, +1,1,8678,2026,1,1,,0,,,12,28,14,12/28/26 13:00, +1,1,8679,2026,1,1,,0,,,12,28,15,12/28/26 14:00, +1,1,8680,2026,1,1,,0,,,12,28,16,12/28/26 15:00, +1,1,8681,2026,1,1,,0,,,12,28,17,12/28/26 16:00, +1,1,8682,2026,1,1,,0,,,12,28,18,12/28/26 17:00, +1,1,8683,2026,1,1,,0,,,12,28,19,12/28/26 18:00, +1,1,8684,2026,1,1,,0,,,12,28,20,12/28/26 19:00, +1,1,8685,2026,1,1,,0,,,12,28,21,12/28/26 20:00, +1,1,8686,2026,1,1,,0,,,12,28,22,12/28/26 21:00, +1,1,8687,2026,1,1,,0,,,12,28,23,12/28/26 22:00, +1,1,8688,2026,1,1,,0,,,12,28,24,12/28/26 23:00, +1,1,8689,2026,1,1,,0,,,12,29,1,12/29/26 0:00, +1,1,8690,2026,1,1,,0,,,12,29,2,12/29/26 1:00, +1,1,8691,2026,1,1,,0,,,12,29,3,12/29/26 2:00, +1,1,8692,2026,1,1,,0,,,12,29,4,12/29/26 3:00, +1,1,8693,2026,1,1,,0,,,12,29,5,12/29/26 4:00, +1,1,8694,2026,1,1,,0,,,12,29,6,12/29/26 5:00, +1,1,8695,2026,1,1,,0,,,12,29,7,12/29/26 6:00, +1,1,8696,2026,1,1,,0,,,12,29,8,12/29/26 7:00, +1,1,8697,2026,1,1,,0,,,12,29,9,12/29/26 8:00, +1,1,8698,2026,1,1,,0,,,12,29,10,12/29/26 9:00, +1,1,8699,2026,1,1,,0,,,12,29,11,12/29/26 10:00, +1,1,8700,2026,1,1,,0,,,12,29,12,12/29/26 11:00, +1,1,8701,2026,1,1,,0,,,12,29,13,12/29/26 12:00, +1,1,8702,2026,1,1,,0,,,12,29,14,12/29/26 13:00, +1,1,8703,2026,1,1,,0,,,12,29,15,12/29/26 14:00, +1,1,8704,2026,1,1,,0,,,12,29,16,12/29/26 15:00, +1,1,8705,2026,1,1,,0,,,12,29,17,12/29/26 16:00, +1,1,8706,2026,1,1,,0,,,12,29,18,12/29/26 17:00, +1,1,8707,2026,1,1,,0,,,12,29,19,12/29/26 18:00, +1,1,8708,2026,1,1,,0,,,12,29,20,12/29/26 19:00, +1,1,8709,2026,1,1,,0,,,12,29,21,12/29/26 20:00, +1,1,8710,2026,1,1,,0,,,12,29,22,12/29/26 21:00, +1,1,8711,2026,1,1,,0,,,12,29,23,12/29/26 22:00, +1,1,8712,2026,1,1,,0,,,12,29,24,12/29/26 23:00, +1,1,8713,2026,1,1,,0,,,12,30,1,12/30/26 0:00, +1,1,8714,2026,1,1,,0,,,12,30,2,12/30/26 1:00, +1,1,8715,2026,1,1,,0,,,12,30,3,12/30/26 2:00, +1,1,8716,2026,1,1,,0,,,12,30,4,12/30/26 3:00, +1,1,8717,2026,1,1,,0,,,12,30,5,12/30/26 4:00, +1,1,8718,2026,1,1,,0,,,12,30,6,12/30/26 5:00, +1,1,8719,2026,1,1,,0,,,12,30,7,12/30/26 6:00, +1,1,8720,2026,1,1,,0,,,12,30,8,12/30/26 7:00, +1,1,8721,2026,1,1,,0,,,12,30,9,12/30/26 8:00, +1,1,8722,2026,1,1,,0,,,12,30,10,12/30/26 9:00, +1,1,8723,2026,1,1,,0,,,12,30,11,12/30/26 10:00, +1,1,8724,2026,1,1,,0,,,12,30,12,12/30/26 11:00, +1,1,8725,2026,1,1,,0,,,12,30,13,12/30/26 12:00, +1,1,8726,2026,1,1,,0,,,12,30,14,12/30/26 13:00, +1,1,8727,2026,1,1,,0,,,12,30,15,12/30/26 14:00, +1,1,8728,2026,1,1,,0,,,12,30,16,12/30/26 15:00, +1,1,8729,2026,1,1,,0,,,12,30,17,12/30/26 16:00, +1,1,8730,2026,1,1,,0,,,12,30,18,12/30/26 17:00, +1,1,8731,2026,1,1,,0,,,12,30,19,12/30/26 18:00, +1,1,8732,2026,1,1,,0,,,12,30,20,12/30/26 19:00, +1,1,8733,2026,1,1,,0,,,12,30,21,12/30/26 20:00, +1,1,8734,2026,1,1,,0,,,12,30,22,12/30/26 21:00, +1,1,8735,2026,1,1,,0,,,12,30,23,12/30/26 22:00, +1,1,8736,2026,1,1,,0,,,12,30,24,12/30/26 23:00, +1,1,8737,2026,1,1,,0,,,12,31,1,12/31/26 0:00, +1,1,8738,2026,1,1,,0,,,12,31,2,12/31/26 1:00, +1,1,8739,2026,1,1,,0,,,12,31,3,12/31/26 2:00, +1,1,8740,2026,1,1,,0,,,12,31,4,12/31/26 3:00, +1,1,8741,2026,1,1,,0,,,12,31,5,12/31/26 4:00, +1,1,8742,2026,1,1,,0,,,12,31,6,12/31/26 5:00, +1,1,8743,2026,1,1,,0,,,12,31,7,12/31/26 6:00, +1,1,8744,2026,1,1,,0,,,12,31,8,12/31/26 7:00, +1,1,8745,2026,1,1,,0,,,12,31,9,12/31/26 8:00, +1,1,8746,2026,1,1,,0,,,12,31,10,12/31/26 9:00, +1,1,8747,2026,1,1,,0,,,12,31,11,12/31/26 10:00, +1,1,8748,2026,1,1,,0,,,12,31,12,12/31/26 11:00, +1,1,8749,2026,1,1,,0,,,12,31,13,12/31/26 12:00, +1,1,8750,2026,1,1,,0,,,12,31,14,12/31/26 13:00, +1,1,8751,2026,1,1,,0,,,12,31,15,12/31/26 14:00, +1,1,8752,2026,1,1,,0,,,12,31,16,12/31/26 15:00, +1,1,8753,2026,1,1,,0,,,12,31,17,12/31/26 16:00, +1,1,8754,2026,1,1,,0,,,12,31,18,12/31/26 17:00, +1,1,8755,2026,1,1,,0,,,12,31,19,12/31/26 18:00, +1,1,8756,2026,1,1,,0,,,12,31,20,12/31/26 19:00, +1,1,8757,2026,1,1,,0,,,12,31,21,12/31/26 20:00, +1,1,8758,2026,1,1,,0,,,12,31,22,12/31/26 21:00, +1,1,8759,2026,1,1,,0,,,12,31,23,12/31/26 22:00, +1,1,8760,2026,1,1,,0,,,12,31,24,12/31/26 23:00, diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/superperiods.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/superperiods.csv new file mode 100644 index 0000000000..abf9373d24 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync/superperiods.csv @@ -0,0 +1 @@ +superperiod,period \ No newline at end of file diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_monte_carlo_all.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_monte_carlo_all.csv new file mode 100644 index 0000000000..6f6b8cf1c0 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_monte_carlo_all.csv @@ -0,0 +1,4 @@ +weather,hydro,availability +loop,ordered,random_remove +1,2019,1 +2,2020,2 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_all.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_all.csv new file mode 100644 index 0000000000..79cb924d2e --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_all.csv @@ -0,0 +1,6 @@ +weather,hydro,availability +loop,loop,ordered +2019,2019,1 +2020,2020,2 +,,3 +,,4 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_full.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_full.csv new file mode 100644 index 0000000000..4ed76afb97 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_full.csv @@ -0,0 +1,30 @@ +weather,hydro,availability +loop,loop,ordered +2007,2015,1 +2007,2019,2 +2008,2015,3 +2008,2019,4 +2009,2015,5 +2009,2019,6 +2010,2015,7 +2010,2019,8 +2011,2015,9 +2011,2019,10 +2012,2015,11 +2012,2019,12 +2013,2015,13 +2013,2019,14 +2014,2015,15 +2014,2019,16 +2015,2015,17 +2015,2019,18 +2016,2015,19 +2016,2019,20 +2017,2015,21 +2017,2019,22 +2018,2015,23 +2018,2019,24 +2019,2015,25 +2019,2019,26 +2020,2015,27 +2020,2019,28 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/temporal_scenarios.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/temporal_scenarios.csv new file mode 100644 index 0000000000..bf05706ef5 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/temporal_scenarios.csv @@ -0,0 +1,4 @@ +output_directory,temporal_scenario_id,temporal_scenario_name,n_passes,iterations_csv,base_csvs_directory +./db/csvs_ra_toolkit_e2e/temporal,17,ra_toolkit_monte_carlo,1,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_monte_carlo_all.csv,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_monte_carlo +./db/csvs_ra_toolkit_e2e/temporal,18,ra_toolkit_sync,1,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_all.csv,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_sync +./db/csvs_ra_toolkit_e2e/temporal,26,ra_toolkit_full,1,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/iterations/iterations_sync_full.csv,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/temporal/base_csvs/ra_toolkit_full diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_data_availability.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_data_availability.csv new file mode 100644 index 0000000000..74569b22c9 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_data_availability.csv @@ -0,0 +1,64 @@ +timeseries_name,year +load,2006 +load,2007 +load,2008 +load,2009 +load,2010 +load,2011 +load,2012 +load,2013 +load,2014 +load,2015 +load,2016 +load,2017 +load,2018 +load,2019 +load,2020 +solar,1998 +solar,1999 +solar,2000 +solar,2001 +solar,2002 +solar,2003 +solar,2004 +solar,2005 +solar,2006 +solar,2007 +solar,2008 +solar,2009 +solar,2010 +solar,2011 +solar,2012 +solar,2013 +solar,2014 +solar,2015 +solar,2016 +solar,2017 +solar,2018 +solar,2019 +solar,2020 +wind,1998 +wind,1999 +wind,2000 +wind,2001 +wind,2002 +wind,2003 +wind,2004 +wind,2005 +wind,2006 +wind,2007 +wind,2008 +wind,2009 +wind,2010 +wind,2011 +wind,2012 +wind,2013 +wind,2014 +wind,2015 +wind,2016 +wind,2017 +wind,2018 +wind,2019 +wind,2020 +thermal,2010 +thermal,2011 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_timeseries.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_timeseries.csv new file mode 100644 index 0000000000..965d76b26f --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_timeseries.csv @@ -0,0 +1,5 @@ +timeseries_name,consider_day_types +load,1 +solar,0 +wind,0 +thermal,0 diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_weather_bins.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_weather_bins.csv new file mode 100644 index 0000000000..1c170114c9 --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/weather/user_defined_monte_carlo_weather_bins.csv @@ -0,0 +1,10950 @@ +weather_bins_id,year,month,day_of_month,day_type,weather_bin +1,1991,1,1,0,6 +1,1991,1,2,0,6 +1,1991,1,3,0,7 +1,1991,1,4,0,4 +1,1991,1,5,1,4 +1,1991,1,6,1,4 +1,1991,1,7,0,3 +1,1991,1,8,0,2 +1,1991,1,9,0,2 +1,1991,1,10,0,2 +1,1991,1,11,0,5 +1,1991,1,12,1,5 +1,1991,1,13,1,1 +1,1991,1,14,0,1 +1,1991,1,15,0,1 +1,1991,1,16,0,1 +1,1991,1,17,0,5 +1,1991,1,18,0,5 +1,1991,1,19,1,1 +1,1991,1,20,1,3 +1,1991,1,21,0,6 +1,1991,1,22,0,6 +1,1991,1,23,0,6 +1,1991,1,24,0,6 +1,1991,1,25,0,6 +1,1991,1,26,1,4 +1,1991,1,27,1,3 +1,1991,1,28,0,2 +1,1991,1,29,0,4 +1,1991,1,30,0,7 +1,1991,1,31,0,6 +1,1991,2,1,0,1 +1,1991,2,2,1,1 +1,1991,2,3,1,5 +1,1991,2,4,0,5 +1,1991,2,5,0,5 +1,1991,2,6,0,5 +1,1991,2,7,0,5 +1,1991,2,8,0,5 +1,1991,2,9,1,5 +1,1991,2,10,1,5 +1,1991,2,11,0,5 +1,1991,2,12,0,5 +1,1991,2,13,0,5 +1,1991,2,14,0,5 +1,1991,2,15,0,5 +1,1991,2,16,1,5 +1,1991,2,17,1,1 +1,1991,2,18,0,5 +1,1991,2,19,0,5 +1,1991,2,20,0,5 +1,1991,2,21,0,5 +1,1991,2,22,0,5 +1,1991,2,23,1,5 +1,1991,2,24,1,5 +1,1991,2,25,0,5 +1,1991,2,26,0,5 +1,1991,2,27,0,5 +1,1991,2,28,0,1 +1,1991,3,1,0,5 +1,1991,3,2,1,5 +1,1991,3,3,1,1 +1,1991,3,4,0,1 +1,1991,3,5,0,5 +1,1991,3,6,0,5 +1,1991,3,7,0,6 +1,1991,3,8,0,7 +1,1991,3,9,1,3 +1,1991,3,10,1,5 +1,1991,3,11,0,5 +1,1991,3,12,0,6 +1,1991,3,13,0,6 +1,1991,3,14,0,5 +1,1991,3,15,0,5 +1,1991,3,16,1,5 +1,1991,3,17,1,6 +1,1991,3,18,0,6 +1,1991,3,19,0,5 +1,1991,3,20,0,5 +1,1991,3,21,0,5 +1,1991,3,22,0,5 +1,1991,3,23,1,2 +1,1991,3,24,1,1 +1,1991,3,25,0,5 +1,1991,3,26,0,5 +1,1991,3,27,0,5 +1,1991,3,28,0,5 +1,1991,3,29,0,1 +1,1991,3,30,1,3 +1,1991,3,31,1,3 +1,1991,4,1,0,5 +1,1991,4,2,0,5 +1,1991,4,3,0,6 +1,1991,4,4,0,7 +1,1991,4,5,0,3 +1,1991,4,6,1,2 +1,1991,4,7,1,1 +1,1991,4,8,0,5 +1,1991,4,9,0,7 +1,1991,4,10,0,1 +1,1991,4,11,0,5 +1,1991,4,12,0,5 +1,1991,4,13,1,6 +1,1991,4,14,1,6 +1,1991,4,15,0,1 +1,1991,4,16,0,1 +1,1991,4,17,0,5 +1,1991,4,18,0,5 +1,1991,4,19,0,7 +1,1991,4,20,1,2 +1,1991,4,21,1,1 +1,1991,4,22,0,1 +1,1991,4,23,0,1 +1,1991,4,24,0,1 +1,1991,4,25,0,1 +1,1991,4,26,0,1 +1,1991,4,27,1,1 +1,1991,4,28,1,5 +1,1991,4,29,0,6 +1,1991,4,30,0,2 +1,1991,5,1,0,1 +1,1991,5,2,0,1 +1,1991,5,3,0,1 +1,1991,5,4,1,1 +1,1991,5,5,1,3 +1,1991,5,6,0,2 +1,1991,5,7,0,6 +1,1991,5,8,0,5 +1,1991,5,9,0,5 +1,1991,5,10,0,1 +1,1991,5,11,1,1 +1,1991,5,12,1,1 +1,1991,5,13,0,1 +1,1991,5,14,0,1 +1,1991,5,15,0,1 +1,1991,5,16,0,2 +1,1991,5,17,0,5 +1,1991,5,18,1,1 +1,1991,5,19,1,1 +1,1991,5,20,0,1 +1,1991,5,21,0,5 +1,1991,5,22,0,1 +1,1991,5,23,0,6 +1,1991,5,24,0,7 +1,1991,5,25,1,6 +1,1991,5,26,1,5 +1,1991,5,27,0,5 +1,1991,5,28,0,1 +1,1991,5,29,0,5 +1,1991,5,30,0,5 +1,1991,5,31,0,5 +1,1991,6,1,1,5 +1,1991,6,2,1,5 +1,1991,6,3,0,5 +1,1991,6,4,0,5 +1,1991,6,5,0,5 +1,1991,6,6,0,5 +1,1991,6,7,0,5 +1,1991,6,8,1,5 +1,1991,6,9,1,5 +1,1991,6,10,0,6 +1,1991,6,11,0,6 +1,1991,6,12,0,2 +1,1991,6,13,0,1 +1,1991,6,14,0,1 +1,1991,6,15,1,5 +1,1991,6,16,1,5 +1,1991,6,17,0,5 +1,1991,6,18,0,6 +1,1991,6,19,0,5 +1,1991,6,20,0,5 +1,1991,6,21,0,5 +1,1991,6,22,1,5 +1,1991,6,23,1,5 +1,1991,6,24,0,5 +1,1991,6,25,0,1 +1,1991,6,26,0,1 +1,1991,6,27,0,5 +1,1991,6,28,0,5 +1,1991,6,29,1,5 +1,1991,6,30,1,5 +1,1991,7,1,0,6 +1,1991,7,2,0,4 +1,1991,7,3,0,4 +1,1991,7,4,0,8 +1,1991,7,5,0,6 +1,1991,7,6,1,5 +1,1991,7,7,1,2 +1,1991,7,8,0,2 +1,1991,7,9,0,1 +1,1991,7,10,0,5 +1,1991,7,11,0,1 +1,1991,7,12,0,3 +1,1991,7,13,1,3 +1,1991,7,14,1,1 +1,1991,7,15,0,1 +1,1991,7,16,0,1 +1,1991,7,17,0,1 +1,1991,7,18,0,5 +1,1991,7,19,0,1 +1,1991,7,20,1,1 +1,1991,7,21,1,1 +1,1991,7,22,0,3 +1,1991,7,23,0,4 +1,1991,7,24,0,3 +1,1991,7,25,0,2 +1,1991,7,26,0,6 +1,1991,7,27,1,3 +1,1991,7,28,1,3 +1,1991,7,29,0,3 +1,1991,7,30,0,8 +1,1991,7,31,0,2 +1,1991,8,1,0,1 +1,1991,8,2,0,1 +1,1991,8,3,1,1 +1,1991,8,4,1,1 +1,1991,8,5,0,1 +1,1991,8,6,0,1 +1,1991,8,7,0,1 +1,1991,8,8,0,2 +1,1991,8,9,0,2 +1,1991,8,10,1,6 +1,1991,8,11,1,6 +1,1991,8,12,0,1 +1,1991,8,13,0,2 +1,1991,8,14,0,2 +1,1991,8,15,0,1 +1,1991,8,16,0,1 +1,1991,8,17,1,1 +1,1991,8,18,1,2 +1,1991,8,19,0,1 +1,1991,8,20,0,1 +1,1991,8,21,0,2 +1,1991,8,22,0,2 +1,1991,8,23,0,2 +1,1991,8,24,1,7 +1,1991,8,25,1,1 +1,1991,8,26,0,1 +1,1991,8,27,0,1 +1,1991,8,28,0,1 +1,1991,8,29,0,1 +1,1991,8,30,0,2 +1,1991,8,31,1,1 +1,1991,9,1,1,2 +1,1991,9,2,0,3 +1,1991,9,3,0,8 +1,1991,9,4,0,8 +1,1991,9,5,0,4 +1,1991,9,6,0,2 +1,1991,9,7,1,1 +1,1991,9,8,1,1 +1,1991,9,9,0,1 +1,1991,9,10,0,1 +1,1991,9,11,0,5 +1,1991,9,12,0,5 +1,1991,9,13,0,5 +1,1991,9,14,1,1 +1,1991,9,15,1,5 +1,1991,9,16,0,6 +1,1991,9,17,0,6 +1,1991,9,18,0,8 +1,1991,9,19,0,8 +1,1991,9,20,0,5 +1,1991,9,21,1,1 +1,1991,9,22,1,5 +1,1991,9,23,0,6 +1,1991,9,24,0,8 +1,1991,9,25,0,8 +1,1991,9,26,0,7 +1,1991,9,27,0,2 +1,1991,9,28,1,5 +1,1991,9,29,1,5 +1,1991,9,30,0,6 +1,1991,10,1,0,4 +1,1991,10,2,0,4 +1,1991,10,3,0,4 +1,1991,10,4,0,4 +1,1991,10,5,1,8 +1,1991,10,6,1,8 +1,1991,10,7,0,4 +1,1991,10,8,0,4 +1,1991,10,9,0,8 +1,1991,10,10,0,8 +1,1991,10,11,0,4 +1,1991,10,12,1,4 +1,1991,10,13,1,4 +1,1991,10,14,0,8 +1,1991,10,15,0,4 +1,1991,10,16,0,3 +1,1991,10,17,0,3 +1,1991,10,18,0,7 +1,1991,10,19,1,8 +1,1991,10,20,1,3 +1,1991,10,21,0,3 +1,1991,10,22,0,1 +1,1991,10,23,0,1 +1,1991,10,24,0,1 +1,1991,10,25,0,1 +1,1991,10,26,1,1 +1,1991,10,27,1,1 +1,1991,10,28,0,1 +1,1991,10,29,0,5 +1,1991,10,30,0,5 +1,1991,10,31,0,5 +1,1991,11,1,0,8 +1,1991,11,2,1,4 +1,1991,11,3,1,4 +1,1991,11,4,0,7 +1,1991,11,5,0,5 +1,1991,11,6,0,5 +1,1991,11,7,0,6 +1,1991,11,8,0,5 +1,1991,11,9,1,5 +1,1991,11,10,1,5 +1,1991,11,11,0,5 +1,1991,11,12,0,5 +1,1991,11,13,0,1 +1,1991,11,14,0,1 +1,1991,11,15,0,2 +1,1991,11,16,1,1 +1,1991,11,17,1,1 +1,1991,11,18,0,1 +1,1991,11,19,0,6 +1,1991,11,20,0,5 +1,1991,11,21,0,5 +1,1991,11,22,0,8 +1,1991,11,23,1,8 +1,1991,11,24,1,8 +1,1991,11,25,0,5 +1,1991,11,26,0,5 +1,1991,11,27,0,1 +1,1991,11,28,0,1 +1,1991,11,29,0,1 +1,1991,11,30,1,3 +1,1991,12,1,1,2 +1,1991,12,2,0,1 +1,1991,12,3,0,1 +1,1991,12,4,0,1 +1,1991,12,5,0,1 +1,1991,12,6,0,1 +1,1991,12,7,1,5 +1,1991,12,8,1,5 +1,1991,12,9,0,1 +1,1991,12,10,0,5 +1,1991,12,11,0,5 +1,1991,12,12,0,1 +1,1991,12,13,0,1 +1,1991,12,14,1,2 +1,1991,12,15,1,2 +1,1991,12,16,0,1 +1,1991,12,17,0,2 +1,1991,12,18,0,6 +1,1991,12,19,0,5 +1,1991,12,20,0,1 +1,1991,12,21,1,1 +1,1991,12,22,1,1 +1,1991,12,23,0,1 +1,1991,12,24,0,1 +1,1991,12,25,0,1 +1,1991,12,26,0,1 +1,1991,12,27,0,5 +1,1991,12,28,1,5 +1,1991,12,29,1,5 +1,1991,12,30,0,5 +1,1991,12,31,0,1 +1,1992,1,1,0,5 +1,1992,1,2,0,5 +1,1992,1,3,0,1 +1,1992,1,4,1,1 +1,1992,1,5,1,1 +1,1992,1,6,0,1 +1,1992,1,7,0,2 +1,1992,1,8,0,3 +1,1992,1,9,0,6 +1,1992,1,10,0,5 +1,1992,1,11,1,1 +1,1992,1,12,1,2 +1,1992,1,13,0,6 +1,1992,1,14,0,5 +1,1992,1,15,0,6 +1,1992,1,16,0,5 +1,1992,1,17,0,5 +1,1992,1,18,1,6 +1,1992,1,19,1,6 +1,1992,1,20,0,6 +1,1992,1,21,0,2 +1,1992,1,22,0,5 +1,1992,1,23,0,5 +1,1992,1,24,0,5 +1,1992,1,25,1,5 +1,1992,1,26,1,1 +1,1992,1,27,0,5 +1,1992,1,28,0,5 +1,1992,1,29,0,5 +1,1992,1,30,0,5 +1,1992,1,31,0,1 +1,1992,2,1,1,5 +1,1992,2,2,1,1 +1,1992,2,3,0,6 +1,1992,2,4,0,6 +1,1992,2,5,0,6 +1,1992,2,6,0,6 +1,1992,2,7,0,6 +1,1992,2,8,1,5 +1,1992,2,9,1,5 +1,1992,2,10,0,5 +1,1992,2,11,0,5 +1,1992,2,12,0,5 +1,1992,2,13,0,1 +1,1992,2,14,0,1 +1,1992,2,15,1,1 +1,1992,2,16,1,1 +1,1992,2,17,0,1 +1,1992,2,18,0,5 +1,1992,2,19,0,5 +1,1992,2,20,0,5 +1,1992,2,21,0,5 +1,1992,2,22,1,5 +1,1992,2,23,1,5 +1,1992,2,24,0,5 +1,1992,2,25,0,5 +1,1992,2,26,0,5 +1,1992,2,27,0,5 +1,1992,2,28,0,5 +1,1992,2,29,1,5 +1,1992,3,1,1,1 +1,1992,3,2,0,1 +1,1992,3,3,0,1 +1,1992,3,4,0,1 +1,1992,3,5,0,1 +1,1992,3,6,0,1 +1,1992,3,7,1,1 +1,1992,3,8,1,5 +1,1992,3,9,0,7 +1,1992,3,10,0,4 +1,1992,3,11,0,2 +1,1992,3,12,0,2 +1,1992,3,13,0,2 +1,1992,3,14,1,2 +1,1992,3,15,1,1 +1,1992,3,16,0,1 +1,1992,3,17,0,1 +1,1992,3,18,0,1 +1,1992,3,19,0,3 +1,1992,3,20,0,2 +1,1992,3,21,1,1 +1,1992,3,22,1,2 +1,1992,3,23,0,1 +1,1992,3,24,0,2 +1,1992,3,25,0,2 +1,1992,3,26,0,1 +1,1992,3,27,0,1 +1,1992,3,28,1,5 +1,1992,3,29,1,2 +1,1992,3,30,0,2 +1,1992,3,31,0,2 +1,1992,4,1,0,7 +1,1992,4,2,0,7 +1,1992,4,3,0,2 +1,1992,4,4,1,1 +1,1992,4,5,1,1 +1,1992,4,6,0,5 +1,1992,4,7,0,6 +1,1992,4,8,0,7 +1,1992,4,9,0,2 +1,1992,4,10,0,2 +1,1992,4,11,1,2 +1,1992,4,12,1,2 +1,1992,4,13,0,2 +1,1992,4,14,0,2 +1,1992,4,15,0,2 +1,1992,4,16,0,3 +1,1992,4,17,0,2 +1,1992,4,18,1,1 +1,1992,4,19,1,2 +1,1992,4,20,0,3 +1,1992,4,21,0,2 +1,1992,4,22,0,1 +1,1992,4,23,0,6 +1,1992,4,24,0,8 +1,1992,4,25,1,8 +1,1992,4,26,1,4 +1,1992,4,27,0,4 +1,1992,4,28,0,4 +1,1992,4,29,0,4 +1,1992,4,30,0,2 +1,1992,5,1,0,5 +1,1992,5,2,1,3 +1,1992,5,3,1,4 +1,1992,5,4,0,3 +1,1992,5,5,0,8 +1,1992,5,6,0,3 +1,1992,5,7,0,3 +1,1992,5,8,0,6 +1,1992,5,9,1,5 +1,1992,5,10,1,5 +1,1992,5,11,0,5 +1,1992,5,12,0,2 +1,1992,5,13,0,6 +1,1992,5,14,0,6 +1,1992,5,15,0,6 +1,1992,5,16,1,6 +1,1992,5,17,1,7 +1,1992,5,18,0,8 +1,1992,5,19,0,6 +1,1992,5,20,0,5 +1,1992,5,21,0,1 +1,1992,5,22,0,2 +1,1992,5,23,1,3 +1,1992,5,24,1,3 +1,1992,5,25,0,8 +1,1992,5,26,0,7 +1,1992,5,27,0,6 +1,1992,5,28,0,7 +1,1992,5,29,0,7 +1,1992,5,30,1,7 +1,1992,5,31,1,8 +1,1992,6,1,0,6 +1,1992,6,2,0,6 +1,1992,6,3,0,6 +1,1992,6,4,0,6 +1,1992,6,5,0,2 +1,1992,6,6,1,5 +1,1992,6,7,1,5 +1,1992,6,8,0,5 +1,1992,6,9,0,5 +1,1992,6,10,0,6 +1,1992,6,11,0,5 +1,1992,6,12,0,5 +1,1992,6,13,1,1 +1,1992,6,14,1,1 +1,1992,6,15,0,5 +1,1992,6,16,0,5 +1,1992,6,17,0,5 +1,1992,6,18,0,5 +1,1992,6,19,0,6 +1,1992,6,20,1,6 +1,1992,6,21,1,8 +1,1992,6,22,0,8 +1,1992,6,23,0,8 +1,1992,6,24,0,8 +1,1992,6,25,0,8 +1,1992,6,26,0,6 +1,1992,6,27,1,7 +1,1992,6,28,1,7 +1,1992,6,29,0,2 +1,1992,6,30,0,1 +1,1992,7,1,0,1 +1,1992,7,2,0,1 +1,1992,7,3,0,1 +1,1992,7,4,1,1 +1,1992,7,5,1,1 +1,1992,7,6,0,5 +1,1992,7,7,0,5 +1,1992,7,8,0,6 +1,1992,7,9,0,6 +1,1992,7,10,0,7 +1,1992,7,11,1,5 +1,1992,7,12,1,1 +1,1992,7,13,0,6 +1,1992,7,14,0,6 +1,1992,7,15,0,6 +1,1992,7,16,0,3 +1,1992,7,17,0,4 +1,1992,7,18,1,4 +1,1992,7,19,1,3 +1,1992,7,20,0,2 +1,1992,7,21,0,1 +1,1992,7,22,0,1 +1,1992,7,23,0,5 +1,1992,7,24,0,5 +1,1992,7,25,1,2 +1,1992,7,26,1,3 +1,1992,7,27,0,2 +1,1992,7,28,0,8 +1,1992,7,29,0,2 +1,1992,7,30,0,3 +1,1992,7,31,0,3 +1,1992,8,1,1,2 +1,1992,8,2,1,3 +1,1992,8,3,0,2 +1,1992,8,4,0,5 +1,1992,8,5,0,1 +1,1992,8,6,0,1 +1,1992,8,7,0,5 +1,1992,8,8,1,5 +1,1992,8,9,1,2 +1,1992,8,10,0,4 +1,1992,8,11,0,4 +1,1992,8,12,0,4 +1,1992,8,13,0,4 +1,1992,8,14,0,4 +1,1992,8,15,1,4 +1,1992,8,16,1,8 +1,1992,8,17,0,4 +1,1992,8,18,0,4 +1,1992,8,19,0,8 +1,1992,8,20,0,7 +1,1992,8,21,0,5 +1,1992,8,22,1,5 +1,1992,8,23,1,5 +1,1992,8,24,0,5 +1,1992,8,25,0,2 +1,1992,8,26,0,2 +1,1992,8,27,0,3 +1,1992,8,28,0,1 +1,1992,8,29,1,1 +1,1992,8,30,1,1 +1,1992,8,31,0,1 +1,1992,9,1,0,1 +1,1992,9,2,0,2 +1,1992,9,3,0,1 +1,1992,9,4,0,1 +1,1992,9,5,1,5 +1,1992,9,6,1,5 +1,1992,9,7,0,5 +1,1992,9,8,0,1 +1,1992,9,9,0,1 +1,1992,9,10,0,6 +1,1992,9,11,0,2 +1,1992,9,12,1,1 +1,1992,9,13,1,1 +1,1992,9,14,0,1 +1,1992,9,15,0,1 +1,1992,9,16,0,1 +1,1992,9,17,0,1 +1,1992,9,18,0,1 +1,1992,9,19,1,1 +1,1992,9,20,1,1 +1,1992,9,21,0,2 +1,1992,9,22,0,7 +1,1992,9,23,0,2 +1,1992,9,24,0,1 +1,1992,9,25,0,1 +1,1992,9,26,1,5 +1,1992,9,27,1,5 +1,1992,9,28,0,5 +1,1992,9,29,0,6 +1,1992,9,30,0,6 +1,1992,10,1,0,4 +1,1992,10,2,0,3 +1,1992,10,3,1,2 +1,1992,10,4,1,2 +1,1992,10,5,0,2 +1,1992,10,6,0,7 +1,1992,10,7,0,7 +1,1992,10,8,0,6 +1,1992,10,9,0,2 +1,1992,10,10,1,7 +1,1992,10,11,1,7 +1,1992,10,12,0,8 +1,1992,10,13,0,3 +1,1992,10,14,0,2 +1,1992,10,15,0,1 +1,1992,10,16,0,5 +1,1992,10,17,1,6 +1,1992,10,18,1,6 +1,1992,10,19,0,2 +1,1992,10,20,0,2 +1,1992,10,21,0,2 +1,1992,10,22,0,2 +1,1992,10,23,0,7 +1,1992,10,24,1,7 +1,1992,10,25,1,1 +1,1992,10,26,0,6 +1,1992,10,27,0,6 +1,1992,10,28,0,1 +1,1992,10,29,0,1 +1,1992,10,30,0,1 +1,1992,10,31,1,1 +1,1992,11,1,1,5 +1,1992,11,2,0,5 +1,1992,11,3,0,6 +1,1992,11,4,0,7 +1,1992,11,5,0,6 +1,1992,11,6,0,6 +1,1992,11,7,1,5 +1,1992,11,8,1,1 +1,1992,11,9,0,1 +1,1992,11,10,0,2 +1,1992,11,11,0,7 +1,1992,11,12,0,7 +1,1992,11,13,0,6 +1,1992,11,14,1,5 +1,1992,11,15,1,5 +1,1992,11,16,0,5 +1,1992,11,17,0,5 +1,1992,11,18,0,5 +1,1992,11,19,0,1 +1,1992,11,20,0,1 +1,1992,11,21,1,1 +1,1992,11,22,1,1 +1,1992,11,23,0,1 +1,1992,11,24,0,3 +1,1992,11,25,0,3 +1,1992,11,26,0,8 +1,1992,11,27,0,8 +1,1992,11,28,1,7 +1,1992,11,29,1,3 +1,1992,11,30,0,7 +1,1992,12,1,0,1 +1,1992,12,2,0,6 +1,1992,12,3,0,6 +1,1992,12,4,0,8 +1,1992,12,5,1,8 +1,1992,12,6,1,7 +1,1992,12,7,0,6 +1,1992,12,8,0,6 +1,1992,12,9,0,5 +1,1992,12,10,0,5 +1,1992,12,11,0,5 +1,1992,12,12,1,6 +1,1992,12,13,1,2 +1,1992,12,14,0,1 +1,1992,12,15,0,1 +1,1992,12,16,0,2 +1,1992,12,17,0,2 +1,1992,12,18,0,7 +1,1992,12,19,1,3 +1,1992,12,20,1,1 +1,1992,12,21,0,1 +1,1992,12,22,0,1 +1,1992,12,23,0,1 +1,1992,12,24,0,1 +1,1992,12,25,0,2 +1,1992,12,26,1,1 +1,1992,12,27,1,2 +1,1992,12,28,0,6 +1,1992,12,29,0,6 +1,1992,12,30,0,7 +1,1992,12,31,0,3 +1,1993,1,1,0,3 +1,1993,1,2,1,3 +1,1993,1,3,1,3 +1,1993,1,4,0,7 +1,1993,1,5,0,8 +1,1993,1,6,0,4 +1,1993,1,7,0,4 +1,1993,1,8,0,4 +1,1993,1,9,1,4 +1,1993,1,10,1,4 +1,1993,1,11,0,4 +1,1993,1,12,0,4 +1,1993,1,13,0,4 +1,1993,1,14,0,3 +1,1993,1,15,0,2 +1,1993,1,16,1,2 +1,1993,1,17,1,2 +1,1993,1,18,0,2 +1,1993,1,19,0,2 +1,1993,1,20,0,1 +1,1993,1,21,0,1 +1,1993,1,22,0,1 +1,1993,1,23,1,2 +1,1993,1,24,1,6 +1,1993,1,25,0,5 +1,1993,1,26,0,5 +1,1993,1,27,0,1 +1,1993,1,28,0,1 +1,1993,1,29,0,5 +1,1993,1,30,1,2 +1,1993,1,31,1,2 +1,1993,2,1,0,2 +1,1993,2,2,0,2 +1,1993,2,3,0,7 +1,1993,2,4,0,7 +1,1993,2,5,0,6 +1,1993,2,6,1,5 +1,1993,2,7,1,5 +1,1993,2,8,0,5 +1,1993,2,9,0,1 +1,1993,2,10,0,5 +1,1993,2,11,0,6 +1,1993,2,12,0,6 +1,1993,2,13,1,6 +1,1993,2,14,1,7 +1,1993,2,15,0,4 +1,1993,2,16,0,8 +1,1993,2,17,0,8 +1,1993,2,18,0,8 +1,1993,2,19,0,1 +1,1993,2,20,1,1 +1,1993,2,21,1,3 +1,1993,2,22,0,3 +1,1993,2,23,0,8 +1,1993,2,24,0,4 +1,1993,2,25,0,4 +1,1993,2,26,0,4 +1,1993,2,27,1,4 +1,1993,2,28,1,4 +1,1993,3,1,0,7 +1,1993,3,2,0,7 +1,1993,3,3,0,7 +1,1993,3,4,0,8 +1,1993,3,5,0,4 +1,1993,3,6,1,4 +1,1993,3,7,1,3 +1,1993,3,8,0,2 +1,1993,3,9,0,1 +1,1993,3,10,0,3 +1,1993,3,11,0,7 +1,1993,3,12,0,8 +1,1993,3,13,1,8 +1,1993,3,14,1,1 +1,1993,3,15,0,1 +1,1993,3,16,0,2 +1,1993,3,17,0,3 +1,1993,3,18,0,1 +1,1993,3,19,0,2 +1,1993,3,20,1,2 +1,1993,3,21,1,1 +1,1993,3,22,0,2 +1,1993,3,23,0,1 +1,1993,3,24,0,1 +1,1993,3,25,0,1 +1,1993,3,26,0,1 +1,1993,3,27,1,5 +1,1993,3,28,1,5 +1,1993,3,29,0,1 +1,1993,3,30,0,1 +1,1993,3,31,0,2 +1,1993,4,1,0,2 +1,1993,4,2,0,1 +1,1993,4,3,1,6 +1,1993,4,4,1,2 +1,1993,4,5,0,1 +1,1993,4,6,0,1 +1,1993,4,7,0,5 +1,1993,4,8,0,7 +1,1993,4,9,0,2 +1,1993,4,10,1,1 +1,1993,4,11,1,1 +1,1993,4,12,0,1 +1,1993,4,13,0,5 +1,1993,4,14,0,5 +1,1993,4,15,0,2 +1,1993,4,16,0,2 +1,1993,4,17,1,2 +1,1993,4,18,1,1 +1,1993,4,19,0,5 +1,1993,4,20,0,8 +1,1993,4,21,0,8 +1,1993,4,22,0,2 +1,1993,4,23,0,1 +1,1993,4,24,1,1 +1,1993,4,25,1,2 +1,1993,4,26,0,2 +1,1993,4,27,0,2 +1,1993,4,28,0,3 +1,1993,4,29,0,4 +1,1993,4,30,0,3 +1,1993,5,1,1,2 +1,1993,5,2,1,2 +1,1993,5,3,0,5 +1,1993,5,4,0,5 +1,1993,5,5,0,1 +1,1993,5,6,0,1 +1,1993,5,7,0,5 +1,1993,5,8,1,5 +1,1993,5,9,1,2 +1,1993,5,10,0,3 +1,1993,5,11,0,6 +1,1993,5,12,0,5 +1,1993,5,13,0,2 +1,1993,5,14,0,6 +1,1993,5,15,1,6 +1,1993,5,16,1,7 +1,1993,5,17,0,7 +1,1993,5,18,0,7 +1,1993,5,19,0,7 +1,1993,5,20,0,6 +1,1993,5,21,0,5 +1,1993,5,22,1,6 +1,1993,5,23,1,6 +1,1993,5,24,0,7 +1,1993,5,25,0,7 +1,1993,5,26,0,6 +1,1993,5,27,0,6 +1,1993,5,28,0,6 +1,1993,5,29,1,2 +1,1993,5,30,1,8 +1,1993,5,31,0,6 +1,1993,6,1,0,5 +1,1993,6,2,0,5 +1,1993,6,3,0,5 +1,1993,6,4,0,5 +1,1993,6,5,1,5 +1,1993,6,6,1,5 +1,1993,6,7,0,5 +1,1993,6,8,0,5 +1,1993,6,9,0,5 +1,1993,6,10,0,5 +1,1993,6,11,0,1 +1,1993,6,12,1,1 +1,1993,6,13,1,6 +1,1993,6,14,0,8 +1,1993,6,15,0,3 +1,1993,6,16,0,3 +1,1993,6,17,0,6 +1,1993,6,18,0,8 +1,1993,6,19,1,8 +1,1993,6,20,1,8 +1,1993,6,21,0,3 +1,1993,6,22,0,1 +1,1993,6,23,0,2 +1,1993,6,24,0,6 +1,1993,6,25,0,8 +1,1993,6,26,1,8 +1,1993,6,27,1,4 +1,1993,6,28,0,3 +1,1993,6,29,0,3 +1,1993,6,30,0,3 +1,1993,7,1,0,5 +1,1993,7,2,0,5 +1,1993,7,3,1,5 +1,1993,7,4,1,5 +1,1993,7,5,0,5 +1,1993,7,6,0,5 +1,1993,7,7,0,5 +1,1993,7,8,0,5 +1,1993,7,9,0,5 +1,1993,7,10,1,5 +1,1993,7,11,1,5 +1,1993,7,12,0,5 +1,1993,7,13,0,5 +1,1993,7,14,0,1 +1,1993,7,15,0,1 +1,1993,7,16,0,1 +1,1993,7,17,1,1 +1,1993,7,18,1,1 +1,1993,7,19,0,1 +1,1993,7,20,0,1 +1,1993,7,21,0,1 +1,1993,7,22,0,1 +1,1993,7,23,0,5 +1,1993,7,24,1,5 +1,1993,7,25,1,5 +1,1993,7,26,0,1 +1,1993,7,27,0,1 +1,1993,7,28,0,1 +1,1993,7,29,0,1 +1,1993,7,30,0,5 +1,1993,7,31,1,7 +1,1993,8,1,1,4 +1,1993,8,2,0,4 +1,1993,8,3,0,4 +1,1993,8,4,0,4 +1,1993,8,5,0,3 +1,1993,8,6,0,2 +1,1993,8,7,1,5 +1,1993,8,8,1,5 +1,1993,8,9,0,1 +1,1993,8,10,0,1 +1,1993,8,11,0,1 +1,1993,8,12,0,1 +1,1993,8,13,0,1 +1,1993,8,14,1,1 +1,1993,8,15,1,1 +1,1993,8,16,0,1 +1,1993,8,17,0,5 +1,1993,8,18,0,1 +1,1993,8,19,0,1 +1,1993,8,20,0,1 +1,1993,8,21,1,1 +1,1993,8,22,1,5 +1,1993,8,23,0,5 +1,1993,8,24,0,5 +1,1993,8,25,0,5 +1,1993,8,26,0,5 +1,1993,8,27,0,2 +1,1993,8,28,1,6 +1,1993,8,29,1,5 +1,1993,8,30,0,1 +1,1993,8,31,0,1 +1,1993,9,1,0,2 +1,1993,9,2,0,4 +1,1993,9,3,0,4 +1,1993,9,4,1,3 +1,1993,9,5,1,2 +1,1993,9,6,0,2 +1,1993,9,7,0,7 +1,1993,9,8,0,8 +1,1993,9,9,0,4 +1,1993,9,10,0,4 +1,1993,9,11,1,2 +1,1993,9,12,1,1 +1,1993,9,13,0,1 +1,1993,9,14,0,5 +1,1993,9,15,0,5 +1,1993,9,16,0,1 +1,1993,9,17,0,1 +1,1993,9,18,1,5 +1,1993,9,19,1,5 +1,1993,9,20,0,5 +1,1993,9,21,0,5 +1,1993,9,22,0,5 +1,1993,9,23,0,5 +1,1993,9,24,0,5 +1,1993,9,25,1,5 +1,1993,9,26,1,5 +1,1993,9,27,0,5 +1,1993,9,28,0,5 +1,1993,9,29,0,6 +1,1993,9,30,0,5 +1,1993,10,1,0,4 +1,1993,10,2,1,4 +1,1993,10,3,1,8 +1,1993,10,4,0,4 +1,1993,10,5,0,3 +1,1993,10,6,0,2 +1,1993,10,7,0,1 +1,1993,10,8,0,1 +1,1993,10,9,1,6 +1,1993,10,10,1,7 +1,1993,10,11,0,2 +1,1993,10,12,0,2 +1,1993,10,13,0,7 +1,1993,10,14,0,2 +1,1993,10,15,0,1 +1,1993,10,16,1,1 +1,1993,10,17,1,1 +1,1993,10,18,0,1 +1,1993,10,19,0,5 +1,1993,10,20,0,5 +1,1993,10,21,0,5 +1,1993,10,22,0,6 +1,1993,10,23,1,6 +1,1993,10,24,1,5 +1,1993,10,25,0,5 +1,1993,10,26,0,5 +1,1993,10,27,0,5 +1,1993,10,28,0,5 +1,1993,10,29,0,5 +1,1993,10,30,1,5 +1,1993,10,31,1,5 +1,1993,11,1,0,5 +1,1993,11,2,0,7 +1,1993,11,3,0,5 +1,1993,11,4,0,1 +1,1993,11,5,0,8 +1,1993,11,6,1,8 +1,1993,11,7,1,2 +1,1993,11,8,0,2 +1,1993,11,9,0,7 +1,1993,11,10,0,2 +1,1993,11,11,0,1 +1,1993,11,12,0,1 +1,1993,11,13,1,1 +1,1993,11,14,1,2 +1,1993,11,15,0,2 +1,1993,11,16,0,1 +1,1993,11,17,0,6 +1,1993,11,18,0,1 +1,1993,11,19,0,8 +1,1993,11,20,1,7 +1,1993,11,21,1,1 +1,1993,11,22,0,1 +1,1993,11,23,0,3 +1,1993,11,24,0,4 +1,1993,11,25,0,4 +1,1993,11,26,0,4 +1,1993,11,27,1,3 +1,1993,11,28,1,2 +1,1993,11,29,0,1 +1,1993,11,30,0,1 +1,1993,12,1,0,1 +1,1993,12,2,0,1 +1,1993,12,3,0,1 +1,1993,12,4,1,1 +1,1993,12,5,1,6 +1,1993,12,6,0,6 +1,1993,12,7,0,6 +1,1993,12,8,0,5 +1,1993,12,9,0,5 +1,1993,12,10,0,5 +1,1993,12,11,1,5 +1,1993,12,12,1,5 +1,1993,12,13,0,1 +1,1993,12,14,0,6 +1,1993,12,15,0,6 +1,1993,12,16,0,1 +1,1993,12,17,0,2 +1,1993,12,18,1,2 +1,1993,12,19,1,2 +1,1993,12,20,0,2 +1,1993,12,21,0,2 +1,1993,12,22,0,3 +1,1993,12,23,0,3 +1,1993,12,24,0,2 +1,1993,12,25,1,2 +1,1993,12,26,1,2 +1,1993,12,27,0,6 +1,1993,12,28,0,2 +1,1993,12,29,0,1 +1,1993,12,30,0,1 +1,1993,12,31,0,1 +1,1994,1,1,1,5 +1,1994,1,2,1,1 +1,1994,1,3,0,5 +1,1994,1,4,0,5 +1,1994,1,5,0,1 +1,1994,1,6,0,1 +1,1994,1,7,0,6 +1,1994,1,8,1,5 +1,1994,1,9,1,5 +1,1994,1,10,0,5 +1,1994,1,11,0,5 +1,1994,1,12,0,5 +1,1994,1,13,0,5 +1,1994,1,14,0,1 +1,1994,1,15,1,1 +1,1994,1,16,1,1 +1,1994,1,17,0,5 +1,1994,1,18,0,5 +1,1994,1,19,0,1 +1,1994,1,20,0,2 +1,1994,1,21,0,1 +1,1994,1,22,1,1 +1,1994,1,23,1,1 +1,1994,1,24,0,1 +1,1994,1,25,0,1 +1,1994,1,26,0,1 +1,1994,1,27,0,1 +1,1994,1,28,0,5 +1,1994,1,29,1,6 +1,1994,1,30,1,6 +1,1994,1,31,0,7 +1,1994,2,1,0,4 +1,1994,2,2,0,4 +1,1994,2,3,0,4 +1,1994,2,4,0,4 +1,1994,2,5,1,3 +1,1994,2,6,1,3 +1,1994,2,7,0,3 +1,1994,2,8,0,4 +1,1994,2,9,0,4 +1,1994,2,10,0,1 +1,1994,2,11,0,1 +1,1994,2,12,1,3 +1,1994,2,13,1,2 +1,1994,2,14,0,1 +1,1994,2,15,0,1 +1,1994,2,16,0,5 +1,1994,2,17,0,1 +1,1994,2,18,0,1 +1,1994,2,19,1,1 +1,1994,2,20,1,2 +1,1994,2,21,0,2 +1,1994,2,22,0,2 +1,1994,2,23,0,1 +1,1994,2,24,0,2 +1,1994,2,25,0,8 +1,1994,2,26,1,6 +1,1994,2,27,1,5 +1,1994,2,28,0,5 +1,1994,3,1,0,3 +1,1994,3,2,0,3 +1,1994,3,3,0,2 +1,1994,3,4,0,2 +1,1994,3,5,1,1 +1,1994,3,6,1,6 +1,1994,3,7,0,7 +1,1994,3,8,0,8 +1,1994,3,9,0,8 +1,1994,3,10,0,3 +1,1994,3,11,0,5 +1,1994,3,12,1,7 +1,1994,3,13,1,4 +1,1994,3,14,0,2 +1,1994,3,15,0,2 +1,1994,3,16,0,1 +1,1994,3,17,0,1 +1,1994,3,18,0,1 +1,1994,3,19,1,5 +1,1994,3,20,1,5 +1,1994,3,21,0,1 +1,1994,3,22,0,5 +1,1994,3,23,0,5 +1,1994,3,24,0,5 +1,1994,3,25,0,5 +1,1994,3,26,1,6 +1,1994,3,27,1,7 +1,1994,3,28,0,3 +1,1994,3,29,0,3 +1,1994,3,30,0,3 +1,1994,3,31,0,2 +1,1994,4,1,0,7 +1,1994,4,2,1,7 +1,1994,4,3,1,2 +1,1994,4,4,0,1 +1,1994,4,5,0,5 +1,1994,4,6,0,6 +1,1994,4,7,0,1 +1,1994,4,8,0,1 +1,1994,4,9,1,1 +1,1994,4,10,1,5 +1,1994,4,11,0,6 +1,1994,4,12,0,7 +1,1994,4,13,0,2 +1,1994,4,14,0,1 +1,1994,4,15,0,3 +1,1994,4,16,1,4 +1,1994,4,17,1,4 +1,1994,4,18,0,4 +1,1994,4,19,0,4 +1,1994,4,20,0,3 +1,1994,4,21,0,3 +1,1994,4,22,0,2 +1,1994,4,23,1,1 +1,1994,4,24,1,1 +1,1994,4,25,0,1 +1,1994,4,26,0,5 +1,1994,4,27,0,5 +1,1994,4,28,0,6 +1,1994,4,29,0,7 +1,1994,4,30,1,7 +1,1994,5,1,1,1 +1,1994,5,2,0,1 +1,1994,5,3,0,1 +1,1994,5,4,0,2 +1,1994,5,5,0,6 +1,1994,5,6,0,1 +1,1994,5,7,1,2 +1,1994,5,8,1,2 +1,1994,5,9,0,2 +1,1994,5,10,0,3 +1,1994,5,11,0,3 +1,1994,5,12,0,6 +1,1994,5,13,0,6 +1,1994,5,14,1,6 +1,1994,5,15,1,5 +1,1994,5,16,0,5 +1,1994,5,17,0,1 +1,1994,5,18,0,1 +1,1994,5,19,0,1 +1,1994,5,20,0,1 +1,1994,5,21,1,2 +1,1994,5,22,1,6 +1,1994,5,23,0,7 +1,1994,5,24,0,8 +1,1994,5,25,0,6 +1,1994,5,26,0,6 +1,1994,5,27,0,6 +1,1994,5,28,1,6 +1,1994,5,29,1,6 +1,1994,5,30,0,7 +1,1994,5,31,0,6 +1,1994,6,1,0,5 +1,1994,6,2,0,5 +1,1994,6,3,0,5 +1,1994,6,4,1,5 +1,1994,6,5,1,1 +1,1994,6,6,0,1 +1,1994,6,7,0,1 +1,1994,6,8,0,5 +1,1994,6,9,0,6 +1,1994,6,10,0,8 +1,1994,6,11,1,8 +1,1994,6,12,1,3 +1,1994,6,13,0,2 +1,1994,6,14,0,1 +1,1994,6,15,0,1 +1,1994,6,16,0,1 +1,1994,6,17,0,5 +1,1994,6,18,1,5 +1,1994,6,19,1,6 +1,1994,6,20,0,7 +1,1994,6,21,0,7 +1,1994,6,22,0,7 +1,1994,6,23,0,8 +1,1994,6,24,0,4 +1,1994,6,25,1,4 +1,1994,6,26,1,4 +1,1994,6,27,0,4 +1,1994,6,28,0,8 +1,1994,6,29,0,4 +1,1994,6,30,0,4 +1,1994,7,1,0,5 +1,1994,7,2,1,5 +1,1994,7,3,1,5 +1,1994,7,4,0,5 +1,1994,7,5,0,5 +1,1994,7,6,0,5 +1,1994,7,7,0,2 +1,1994,7,8,0,3 +1,1994,7,9,1,7 +1,1994,7,10,1,6 +1,1994,7,11,0,6 +1,1994,7,12,0,6 +1,1994,7,13,0,6 +1,1994,7,14,0,2 +1,1994,7,15,0,2 +1,1994,7,16,1,2 +1,1994,7,17,1,3 +1,1994,7,18,0,1 +1,1994,7,19,0,1 +1,1994,7,20,0,3 +1,1994,7,21,0,4 +1,1994,7,22,0,3 +1,1994,7,23,1,2 +1,1994,7,24,1,2 +1,1994,7,25,0,2 +1,1994,7,26,0,3 +1,1994,7,27,0,3 +1,1994,7,28,0,3 +1,1994,7,29,0,7 +1,1994,7,30,1,6 +1,1994,7,31,1,1 +1,1994,8,1,0,1 +1,1994,8,2,0,2 +1,1994,8,3,0,2 +1,1994,8,4,0,2 +1,1994,8,5,0,2 +1,1994,8,6,1,7 +1,1994,8,7,1,7 +1,1994,8,8,0,5 +1,1994,8,9,0,5 +1,1994,8,10,0,2 +1,1994,8,11,0,3 +1,1994,8,12,0,7 +1,1994,8,13,1,3 +1,1994,8,14,1,4 +1,1994,8,15,0,4 +1,1994,8,16,0,7 +1,1994,8,17,0,7 +1,1994,8,18,0,6 +1,1994,8,19,0,2 +1,1994,8,20,1,2 +1,1994,8,21,1,5 +1,1994,8,22,0,5 +1,1994,8,23,0,1 +1,1994,8,24,0,1 +1,1994,8,25,0,1 +1,1994,8,26,0,1 +1,1994,8,27,1,6 +1,1994,8,28,1,1 +1,1994,8,29,0,1 +1,1994,8,30,0,5 +1,1994,8,31,0,2 +1,1994,9,1,0,2 +1,1994,9,2,0,1 +1,1994,9,3,1,1 +1,1994,9,4,1,1 +1,1994,9,5,0,7 +1,1994,9,6,0,8 +1,1994,9,7,0,3 +1,1994,9,8,0,2 +1,1994,9,9,0,1 +1,1994,9,10,1,1 +1,1994,9,11,1,1 +1,1994,9,12,0,1 +1,1994,9,13,0,1 +1,1994,9,14,0,5 +1,1994,9,15,0,5 +1,1994,9,16,0,6 +1,1994,9,17,1,7 +1,1994,9,18,1,6 +1,1994,9,19,0,6 +1,1994,9,20,0,6 +1,1994,9,21,0,6 +1,1994,9,22,0,7 +1,1994,9,23,0,6 +1,1994,9,24,1,6 +1,1994,9,25,1,6 +1,1994,9,26,0,6 +1,1994,9,27,0,2 +1,1994,9,28,0,2 +1,1994,9,29,0,1 +1,1994,9,30,0,1 +1,1994,10,1,1,3 +1,1994,10,2,1,3 +1,1994,10,3,0,3 +1,1994,10,4,0,2 +1,1994,10,5,0,1 +1,1994,10,6,0,1 +1,1994,10,7,0,1 +1,1994,10,8,1,7 +1,1994,10,9,1,7 +1,1994,10,10,0,3 +1,1994,10,11,0,2 +1,1994,10,12,0,1 +1,1994,10,13,0,1 +1,1994,10,14,0,1 +1,1994,10,15,1,1 +1,1994,10,16,1,1 +1,1994,10,17,0,5 +1,1994,10,18,0,5 +1,1994,10,19,0,5 +1,1994,10,20,0,5 +1,1994,10,21,0,5 +1,1994,10,22,1,5 +1,1994,10,23,1,5 +1,1994,10,24,0,6 +1,1994,10,25,0,5 +1,1994,10,26,0,5 +1,1994,10,27,0,1 +1,1994,10,28,0,1 +1,1994,10,29,1,1 +1,1994,10,30,1,5 +1,1994,10,31,0,5 +1,1994,11,1,0,1 +1,1994,11,2,0,1 +1,1994,11,3,0,2 +1,1994,11,4,0,1 +1,1994,11,5,1,1 +1,1994,11,6,1,1 +1,1994,11,7,0,1 +1,1994,11,8,0,1 +1,1994,11,9,0,1 +1,1994,11,10,0,1 +1,1994,11,11,0,1 +1,1994,11,12,1,1 +1,1994,11,13,1,1 +1,1994,11,14,0,7 +1,1994,11,15,0,6 +1,1994,11,16,0,1 +1,1994,11,17,0,1 +1,1994,11,18,0,2 +1,1994,11,19,1,2 +1,1994,11,20,1,1 +1,1994,11,21,0,3 +1,1994,11,22,0,4 +1,1994,11,23,0,7 +1,1994,11,24,0,6 +1,1994,11,25,0,1 +1,1994,11,26,1,1 +1,1994,11,27,1,1 +1,1994,11,28,0,2 +1,1994,11,29,0,7 +1,1994,11,30,0,5 +1,1994,12,1,0,1 +1,1994,12,2,0,5 +1,1994,12,3,1,6 +1,1994,12,4,1,7 +1,1994,12,5,0,7 +1,1994,12,6,0,7 +1,1994,12,7,0,6 +1,1994,12,8,0,2 +1,1994,12,9,0,2 +1,1994,12,10,1,2 +1,1994,12,11,1,2 +1,1994,12,12,0,6 +1,1994,12,13,0,6 +1,1994,12,14,0,2 +1,1994,12,15,0,1 +1,1994,12,16,0,1 +1,1994,12,17,1,1 +1,1994,12,18,1,1 +1,1994,12,19,0,1 +1,1994,12,20,0,1 +1,1994,12,21,0,1 +1,1994,12,22,0,1 +1,1994,12,23,0,5 +1,1994,12,24,1,5 +1,1994,12,25,1,5 +1,1994,12,26,0,5 +1,1994,12,27,0,1 +1,1994,12,28,0,5 +1,1994,12,29,0,6 +1,1994,12,30,0,7 +1,1994,12,31,1,3 +1,1995,1,1,1,4 +1,1995,1,2,0,4 +1,1995,1,3,0,4 +1,1995,1,4,0,4 +1,1995,1,5,0,3 +1,1995,1,6,0,3 +1,1995,1,7,1,2 +1,1995,1,8,1,1 +1,1995,1,9,0,1 +1,1995,1,10,0,1 +1,1995,1,11,0,1 +1,1995,1,12,0,1 +1,1995,1,13,0,1 +1,1995,1,14,1,1 +1,1995,1,15,1,1 +1,1995,1,16,0,1 +1,1995,1,17,0,2 +1,1995,1,18,0,5 +1,1995,1,19,0,5 +1,1995,1,20,0,5 +1,1995,1,21,1,2 +1,1995,1,22,1,2 +1,1995,1,23,0,2 +1,1995,1,24,0,1 +1,1995,1,25,0,1 +1,1995,1,26,0,1 +1,1995,1,27,0,1 +1,1995,1,28,1,1 +1,1995,1,29,1,1 +1,1995,1,30,0,5 +1,1995,1,31,0,1 +1,1995,2,1,0,5 +1,1995,2,2,0,5 +1,1995,2,3,0,5 +1,1995,2,4,1,5 +1,1995,2,5,1,5 +1,1995,2,6,0,5 +1,1995,2,7,0,5 +1,1995,2,8,0,5 +1,1995,2,9,0,5 +1,1995,2,10,0,6 +1,1995,2,11,1,7 +1,1995,2,12,1,8 +1,1995,2,13,0,4 +1,1995,2,14,0,4 +1,1995,2,15,0,3 +1,1995,2,16,0,1 +1,1995,2,17,0,1 +1,1995,2,18,1,5 +1,1995,2,19,1,5 +1,1995,2,20,0,5 +1,1995,2,21,0,5 +1,1995,2,22,0,5 +1,1995,2,23,0,5 +1,1995,2,24,0,5 +1,1995,2,25,1,5 +1,1995,2,26,1,5 +1,1995,2,27,0,5 +1,1995,2,28,0,7 +1,1995,3,1,0,8 +1,1995,3,2,0,8 +1,1995,3,3,0,7 +1,1995,3,4,1,5 +1,1995,3,5,1,5 +1,1995,3,6,0,6 +1,1995,3,7,0,8 +1,1995,3,8,0,3 +1,1995,3,9,0,1 +1,1995,3,10,0,1 +1,1995,3,11,1,1 +1,1995,3,12,1,1 +1,1995,3,13,0,2 +1,1995,3,14,0,2 +1,1995,3,15,0,2 +1,1995,3,16,0,2 +1,1995,3,17,0,2 +1,1995,3,18,1,2 +1,1995,3,19,1,1 +1,1995,3,20,0,1 +1,1995,3,21,0,1 +1,1995,3,22,0,5 +1,1995,3,23,0,5 +1,1995,3,24,0,5 +1,1995,3,25,1,5 +1,1995,3,26,1,7 +1,1995,3,27,0,8 +1,1995,3,28,0,7 +1,1995,3,29,0,7 +1,1995,3,30,0,7 +1,1995,3,31,0,3 +1,1995,4,1,1,6 +1,1995,4,2,1,5 +1,1995,4,3,0,7 +1,1995,4,4,0,7 +1,1995,4,5,0,2 +1,1995,4,6,0,2 +1,1995,4,7,0,1 +1,1995,4,8,1,1 +1,1995,4,9,1,1 +1,1995,4,10,0,5 +1,1995,4,11,0,6 +1,1995,4,12,0,7 +1,1995,4,13,0,2 +1,1995,4,14,0,5 +1,1995,4,15,1,5 +1,1995,4,16,1,5 +1,1995,4,17,0,5 +1,1995,4,18,0,5 +1,1995,4,19,0,5 +1,1995,4,20,0,5 +1,1995,4,21,0,5 +1,1995,4,22,1,6 +1,1995,4,23,1,8 +1,1995,4,24,0,8 +1,1995,4,25,0,2 +1,1995,4,26,0,2 +1,1995,4,27,0,2 +1,1995,4,28,0,2 +1,1995,4,29,1,2 +1,1995,4,30,1,2 +1,1995,5,1,0,2 +1,1995,5,2,0,5 +1,1995,5,3,0,1 +1,1995,5,4,0,1 +1,1995,5,5,0,1 +1,1995,5,6,1,1 +1,1995,5,7,1,1 +1,1995,5,8,0,1 +1,1995,5,9,0,1 +1,1995,5,10,0,2 +1,1995,5,11,0,5 +1,1995,5,12,0,5 +1,1995,5,13,1,1 +1,1995,5,14,1,1 +1,1995,5,15,0,1 +1,1995,5,16,0,1 +1,1995,5,17,0,1 +1,1995,5,18,0,2 +1,1995,5,19,0,2 +1,1995,5,20,1,6 +1,1995,5,21,1,6 +1,1995,5,22,0,1 +1,1995,5,23,0,2 +1,1995,5,24,0,2 +1,1995,5,25,0,2 +1,1995,5,26,0,2 +1,1995,5,27,1,2 +1,1995,5,28,1,3 +1,1995,5,29,0,3 +1,1995,5,30,0,8 +1,1995,5,31,0,8 +1,1995,6,1,0,5 +1,1995,6,2,0,5 +1,1995,6,3,1,5 +1,1995,6,4,1,5 +1,1995,6,5,0,1 +1,1995,6,6,0,1 +1,1995,6,7,0,5 +1,1995,6,8,0,5 +1,1995,6,9,0,5 +1,1995,6,10,1,5 +1,1995,6,11,1,6 +1,1995,6,12,0,6 +1,1995,6,13,0,2 +1,1995,6,14,0,1 +1,1995,6,15,0,1 +1,1995,6,16,0,5 +1,1995,6,17,1,5 +1,1995,6,18,1,5 +1,1995,6,19,0,5 +1,1995,6,20,0,5 +1,1995,6,21,0,5 +1,1995,6,22,0,5 +1,1995,6,23,0,7 +1,1995,6,24,1,8 +1,1995,6,25,1,8 +1,1995,6,26,0,8 +1,1995,6,27,0,8 +1,1995,6,28,0,8 +1,1995,6,29,0,8 +1,1995,6,30,0,8 +1,1995,7,1,1,2 +1,1995,7,2,1,1 +1,1995,7,3,0,1 +1,1995,7,4,0,1 +1,1995,7,5,0,2 +1,1995,7,6,0,2 +1,1995,7,7,0,2 +1,1995,7,8,1,3 +1,1995,7,9,1,2 +1,1995,7,10,0,1 +1,1995,7,11,0,1 +1,1995,7,12,0,1 +1,1995,7,13,0,1 +1,1995,7,14,0,6 +1,1995,7,15,1,8 +1,1995,7,16,1,3 +1,1995,7,17,0,3 +1,1995,7,18,0,3 +1,1995,7,19,0,3 +1,1995,7,20,0,2 +1,1995,7,21,0,1 +1,1995,7,22,1,1 +1,1995,7,23,1,1 +1,1995,7,24,0,1 +1,1995,7,25,0,1 +1,1995,7,26,0,1 +1,1995,7,27,0,6 +1,1995,7,28,0,8 +1,1995,7,29,1,6 +1,1995,7,30,1,6 +1,1995,7,31,0,8 +1,1995,8,1,0,8 +1,1995,8,2,0,7 +1,1995,8,3,0,7 +1,1995,8,4,0,7 +1,1995,8,5,1,6 +1,1995,8,6,1,5 +1,1995,8,7,0,5 +1,1995,8,8,0,5 +1,1995,8,9,0,7 +1,1995,8,10,0,5 +1,1995,8,11,0,5 +1,1995,8,12,1,5 +1,1995,8,13,1,5 +1,1995,8,14,0,6 +1,1995,8,15,0,5 +1,1995,8,16,0,5 +1,1995,8,17,0,5 +1,1995,8,18,0,5 +1,1995,8,20,1,7 +1,1995,8,21,0,2 +1,1995,8,22,0,3 +1,1995,8,23,0,7 +1,1995,8,24,0,5 +1,1995,8,25,0,5 +1,1995,8,26,1,1 +1,1995,8,27,1,1 +1,1995,8,28,0,1 +1,1995,8,29,0,1 +1,1995,8,30,0,5 +1,1995,8,31,0,6 +1,1995,9,1,0,4 +1,1995,9,2,1,4 +1,1995,9,3,1,3 +1,1995,9,4,0,3 +1,1995,9,5,0,2 +1,1995,9,6,0,2 +1,1995,9,7,0,2 +1,1995,9,8,0,2 +1,1995,9,9,1,2 +1,1995,9,10,1,2 +1,1995,9,11,0,6 +1,1995,9,12,0,6 +1,1995,9,13,0,7 +1,1995,9,14,0,8 +1,1995,9,15,0,3 +1,1995,9,16,1,2 +1,1995,9,17,1,2 +1,1995,9,18,0,5 +1,1995,9,19,0,6 +1,1995,9,20,0,7 +1,1995,9,21,0,7 +1,1995,9,22,0,6 +1,1995,9,23,1,5 +1,1995,9,24,1,5 +1,1995,9,25,0,5 +1,1995,9,26,0,1 +1,1995,9,27,0,1 +1,1995,9,28,0,1 +1,1995,9,29,0,1 +1,1995,9,30,1,5 +1,1995,10,1,1,2 +1,1995,10,2,0,3 +1,1995,10,3,0,3 +1,1995,10,4,0,2 +1,1995,10,5,0,6 +1,1995,10,6,0,6 +1,1995,10,7,1,1 +1,1995,10,8,1,1 +1,1995,10,9,0,2 +1,1995,10,10,0,7 +1,1995,10,11,0,3 +1,1995,10,12,0,2 +1,1995,10,13,0,6 +1,1995,10,14,1,7 +1,1995,10,15,1,7 +1,1995,10,16,0,2 +1,1995,10,17,0,1 +1,1995,10,18,0,2 +1,1995,10,19,0,6 +1,1995,10,20,0,6 +1,1995,10,21,1,1 +1,1995,10,22,1,1 +1,1995,10,23,0,5 +1,1995,10,24,0,5 +1,1995,10,25,0,5 +1,1995,10,26,0,1 +1,1995,10,27,0,1 +1,1995,10,28,1,5 +1,1995,10,29,1,5 +1,1995,10,30,0,5 +1,1995,10,31,0,1 +1,1995,11,1,0,2 +1,1995,11,2,0,3 +1,1995,11,3,0,3 +1,1995,11,4,1,2 +1,1995,11,5,1,1 +1,1995,11,6,0,1 +1,1995,11,7,0,5 +1,1995,11,8,0,5 +1,1995,11,9,0,1 +1,1995,11,10,0,1 +1,1995,11,11,1,5 +1,1995,11,12,1,5 +1,1995,11,13,0,5 +1,1995,11,14,0,5 +1,1995,11,15,0,5 +1,1995,11,16,0,5 +1,1995,11,17,0,5 +1,1995,11,18,1,5 +1,1995,11,19,1,5 +1,1995,11,20,0,7 +1,1995,11,21,0,6 +1,1995,11,22,0,5 +1,1995,11,23,0,5 +1,1995,11,24,0,5 +1,1995,11,25,1,5 +1,1995,11,26,1,1 +1,1995,11,27,0,2 +1,1995,11,28,0,5 +1,1995,11,29,0,5 +1,1995,11,30,0,5 +1,1995,12,1,0,5 +1,1995,12,2,1,5 +1,1995,12,3,1,5 +1,1995,12,4,0,5 +1,1995,12,5,0,5 +1,1995,12,6,0,6 +1,1995,12,7,0,5 +1,1995,12,8,0,7 +1,1995,12,9,1,8 +1,1995,12,10,1,6 +1,1995,12,11,0,5 +1,1995,12,12,0,5 +1,1995,12,13,0,5 +1,1995,12,14,0,5 +1,1995,12,15,0,1 +1,1995,12,16,1,5 +1,1995,12,17,1,6 +1,1995,12,18,0,6 +1,1995,12,19,0,1 +1,1995,12,20,0,1 +1,1995,12,21,0,1 +1,1995,12,22,0,2 +1,1995,12,23,1,2 +1,1995,12,24,1,2 +1,1995,12,25,0,2 +1,1995,12,26,0,2 +1,1995,12,27,0,2 +1,1995,12,28,0,2 +1,1995,12,29,0,1 +1,1995,12,30,1,5 +1,1995,12,31,1,5 +1,1996,1,1,0,1 +1,1996,1,2,0,5 +1,1996,1,3,0,5 +1,1996,1,4,0,1 +1,1996,1,5,0,6 +1,1996,1,6,1,6 +1,1996,1,7,1,5 +1,1996,1,8,0,1 +1,1996,1,9,0,1 +1,1996,1,10,0,1 +1,1996,1,11,0,1 +1,1996,1,12,0,1 +1,1996,1,13,1,1 +1,1996,1,14,1,1 +1,1996,1,15,0,1 +1,1996,1,16,0,1 +1,1996,1,17,0,1 +1,1996,1,18,0,6 +1,1996,1,19,0,2 +1,1996,1,20,1,1 +1,1996,1,21,1,1 +1,1996,1,22,0,2 +1,1996,1,23,0,6 +1,1996,1,24,0,2 +1,1996,1,25,0,2 +1,1996,1,26,0,6 +1,1996,1,27,1,3 +1,1996,1,28,1,2 +1,1996,1,29,0,4 +1,1996,1,30,0,4 +1,1996,1,31,0,4 +1,1996,2,1,0,8 +1,1996,2,2,0,8 +1,1996,2,3,1,8 +1,1996,2,4,1,8 +1,1996,2,5,0,6 +1,1996,2,6,0,5 +1,1996,2,7,0,5 +1,1996,2,8,0,5 +1,1996,2,9,0,5 +1,1996,2,10,1,5 +1,1996,2,11,1,6 +1,1996,2,12,0,5 +1,1996,2,13,0,5 +1,1996,2,14,0,5 +1,1996,2,15,0,5 +1,1996,2,16,0,5 +1,1996,2,17,1,5 +1,1996,2,18,1,5 +1,1996,2,19,0,1 +1,1996,2,20,0,1 +1,1996,2,21,0,1 +1,1996,2,22,0,1 +1,1996,2,23,0,1 +1,1996,2,24,1,1 +1,1996,2,25,1,2 +1,1996,2,26,0,4 +1,1996,2,27,0,4 +1,1996,2,28,0,4 +1,1996,2,29,0,8 +1,1996,3,1,0,8 +1,1996,3,2,1,7 +1,1996,3,3,1,2 +1,1996,3,4,0,5 +1,1996,3,5,0,5 +1,1996,3,6,0,8 +1,1996,3,7,0,8 +1,1996,3,8,0,4 +1,1996,3,9,1,4 +1,1996,3,10,1,2 +1,1996,3,11,0,1 +1,1996,3,12,0,1 +1,1996,3,13,0,5 +1,1996,3,14,0,7 +1,1996,3,15,0,2 +1,1996,3,16,1,1 +1,1996,3,17,1,1 +1,1996,3,18,0,3 +1,1996,3,19,0,3 +1,1996,3,20,0,3 +1,1996,3,21,0,1 +1,1996,3,22,0,5 +1,1996,3,23,1,5 +1,1996,3,24,1,6 +1,1996,3,25,0,7 +1,1996,3,26,0,7 +1,1996,3,27,0,6 +1,1996,3,28,0,5 +1,1996,3,29,0,5 +1,1996,3,30,1,6 +1,1996,3,31,1,2 +1,1996,4,1,0,2 +1,1996,4,2,0,1 +1,1996,4,3,0,5 +1,1996,4,4,0,6 +1,1996,4,5,0,7 +1,1996,4,6,1,8 +1,1996,4,7,1,4 +1,1996,4,8,0,4 +1,1996,4,9,0,2 +1,1996,4,10,0,1 +1,1996,4,11,0,1 +1,1996,4,12,0,1 +1,1996,4,13,1,1 +1,1996,4,14,1,6 +1,1996,4,15,0,8 +1,1996,4,16,0,1 +1,1996,4,17,0,1 +1,1996,4,18,0,1 +1,1996,4,19,0,5 +1,1996,4,20,1,5 +1,1996,4,21,1,5 +1,1996,4,22,0,7 +1,1996,4,23,0,4 +1,1996,4,24,0,2 +1,1996,4,25,0,2 +1,1996,4,26,0,3 +1,1996,4,27,1,2 +1,1996,4,28,1,2 +1,1996,4,29,0,8 +1,1996,4,30,0,4 +1,1996,5,1,0,2 +1,1996,5,2,0,6 +1,1996,5,3,0,5 +1,1996,5,4,1,1 +1,1996,5,5,1,2 +1,1996,5,6,0,2 +1,1996,5,7,0,5 +1,1996,5,8,0,5 +1,1996,5,9,0,1 +1,1996,5,10,0,2 +1,1996,5,11,1,3 +1,1996,5,12,1,8 +1,1996,5,13,0,7 +1,1996,5,14,0,6 +1,1996,5,15,0,5 +1,1996,5,16,0,5 +1,1996,5,17,0,5 +1,1996,5,18,1,5 +1,1996,5,19,1,5 +1,1996,5,20,0,5 +1,1996,5,21,0,5 +1,1996,5,22,0,5 +1,1996,5,23,0,5 +1,1996,5,24,0,1 +1,1996,5,25,1,2 +1,1996,5,26,1,1 +1,1996,5,27,0,1 +1,1996,5,28,0,1 +1,1996,5,29,0,5 +1,1996,5,30,0,5 +1,1996,5,31,0,5 +1,1996,6,1,1,5 +1,1996,6,2,1,8 +1,1996,6,3,0,8 +1,1996,6,4,0,8 +1,1996,6,5,0,3 +1,1996,6,6,0,8 +1,1996,6,7,0,8 +1,1996,6,8,1,8 +1,1996,6,9,1,3 +1,1996,6,10,0,3 +1,1996,6,11,0,3 +1,1996,6,12,0,6 +1,1996,6,13,0,6 +1,1996,6,14,0,6 +1,1996,6,15,1,6 +1,1996,6,16,1,5 +1,1996,6,17,0,2 +1,1996,6,18,0,2 +1,1996,6,19,0,3 +1,1996,6,20,0,3 +1,1996,6,21,0,2 +1,1996,6,22,1,5 +1,1996,6,23,1,5 +1,1996,6,24,0,2 +1,1996,6,25,0,1 +1,1996,6,26,0,5 +1,1996,6,27,0,5 +1,1996,6,28,0,5 +1,1996,6,29,1,6 +1,1996,6,30,1,8 +1,1996,7,1,0,8 +1,1996,7,2,0,8 +1,1996,7,3,0,6 +1,1996,7,4,0,5 +1,1996,7,5,0,5 +1,1996,7,6,1,6 +1,1996,7,7,1,7 +1,1996,7,8,0,2 +1,1996,7,9,0,6 +1,1996,7,10,0,6 +1,1996,7,11,0,2 +1,1996,7,12,0,3 +1,1996,7,13,1,3 +1,1996,7,14,1,4 +1,1996,7,15,0,2 +1,1996,7,16,0,1 +1,1996,7,17,0,5 +1,1996,7,18,0,5 +1,1996,7,19,0,5 +1,1996,7,20,1,6 +1,1996,7,21,1,7 +1,1996,7,22,0,3 +1,1996,7,23,0,4 +1,1996,7,24,0,4 +1,1996,7,25,0,4 +1,1996,7,26,0,4 +1,1996,7,27,1,4 +1,1996,7,28,1,4 +1,1996,7,29,0,4 +1,1996,7,30,0,8 +1,1996,7,31,0,8 +1,1996,8,1,0,7 +1,1996,8,2,0,5 +1,1996,8,3,1,5 +1,1996,8,4,1,5 +1,1996,8,5,0,5 +1,1996,8,6,0,5 +1,1996,8,7,0,2 +1,1996,8,8,0,4 +1,1996,8,9,0,4 +1,1996,8,10,1,4 +1,1996,8,11,1,8 +1,1996,8,12,0,8 +1,1996,8,13,0,8 +1,1996,8,14,0,4 +1,1996,8,15,0,8 +1,1996,8,16,0,4 +1,1996,8,17,1,6 +1,1996,8,18,1,5 +1,1996,8,19,0,1 +1,1996,8,20,0,1 +1,1996,8,21,0,1 +1,1996,8,22,0,3 +1,1996,8,23,0,4 +1,1996,8,24,1,4 +1,1996,8,25,1,3 +1,1996,8,26,0,1 +1,1996,8,27,0,5 +1,1996,8,28,0,1 +1,1996,8,29,0,4 +1,1996,8,30,0,4 +1,1996,8,31,1,7 +1,1996,9,1,1,2 +1,1996,9,2,0,2 +1,1996,9,3,0,2 +1,1996,9,4,0,1 +1,1996,9,5,0,1 +1,1996,9,6,0,1 +1,1996,9,7,1,2 +1,1996,9,8,1,2 +1,1996,9,9,0,2 +1,1996,9,10,0,2 +1,1996,9,11,0,2 +1,1996,9,12,0,1 +1,1996,9,13,0,1 +1,1996,9,14,1,1 +1,1996,9,15,1,1 +1,1996,9,16,0,1 +1,1996,9,17,0,5 +1,1996,9,18,0,5 +1,1996,9,19,0,5 +1,1996,9,20,0,5 +1,1996,9,21,1,5 +1,1996,9,22,1,1 +1,1996,9,23,0,5 +1,1996,9,24,0,5 +1,1996,9,25,0,5 +1,1996,9,26,0,5 +1,1996,9,27,0,5 +1,1996,9,28,1,5 +1,1996,9,29,1,5 +1,1996,9,30,0,5 +1,1996,10,1,0,3 +1,1996,10,2,0,3 +1,1996,10,3,0,3 +1,1996,10,4,0,4 +1,1996,10,5,1,4 +1,1996,10,6,1,4 +1,1996,10,7,0,4 +1,1996,10,8,0,4 +1,1996,10,9,0,4 +1,1996,10,10,0,4 +1,1996,10,11,0,4 +1,1996,10,12,1,3 +1,1996,10,13,1,3 +1,1996,10,14,0,2 +1,1996,10,15,0,1 +1,1996,10,16,0,1 +1,1996,10,17,0,1 +1,1996,10,18,0,5 +1,1996,10,19,1,1 +1,1996,10,20,1,1 +1,1996,10,21,0,5 +1,1996,10,22,0,5 +1,1996,10,23,0,5 +1,1996,10,24,0,1 +1,1996,10,25,0,1 +1,1996,10,26,1,1 +1,1996,10,27,1,5 +1,1996,10,28,0,5 +1,1996,10,29,0,1 +1,1996,10,30,0,5 +1,1996,10,31,0,5 +1,1996,11,1,0,7 +1,1996,11,2,1,6 +1,1996,11,3,1,1 +1,1996,11,4,0,1 +1,1996,11,5,0,1 +1,1996,11,6,0,1 +1,1996,11,7,0,6 +1,1996,11,8,0,7 +1,1996,11,9,1,6 +1,1996,11,10,1,5 +1,1996,11,11,0,5 +1,1996,11,12,0,6 +1,1996,11,13,0,5 +1,1996,11,14,0,1 +1,1996,11,15,0,1 +1,1996,11,16,1,1 +1,1996,11,17,1,1 +1,1996,11,18,0,1 +1,1996,11,19,0,1 +1,1996,11,20,0,1 +1,1996,11,21,0,2 +1,1996,11,22,0,1 +1,1996,11,23,1,2 +1,1996,11,24,1,3 +1,1996,11,25,0,7 +1,1996,11,26,0,8 +1,1996,11,27,0,8 +1,1996,11,28,0,1 +1,1996,11,29,0,1 +1,1996,11,30,1,2 +1,1996,12,1,1,1 +1,1996,12,2,0,1 +1,1996,12,3,0,2 +1,1996,12,4,0,1 +1,1996,12,5,0,5 +1,1996,12,6,0,5 +1,1996,12,7,1,5 +1,1996,12,8,1,5 +1,1996,12,9,0,5 +1,1996,12,10,0,5 +1,1996,12,11,0,5 +1,1996,12,12,0,5 +1,1996,12,13,0,5 +1,1996,12,14,1,1 +1,1996,12,15,1,2 +1,1996,12,16,0,1 +1,1996,12,17,0,3 +1,1996,12,18,0,4 +1,1996,12,19,0,3 +1,1996,12,20,0,1 +1,1996,12,21,1,6 +1,1996,12,22,1,6 +1,1996,12,23,0,7 +1,1996,12,24,0,2 +1,1996,12,25,0,2 +1,1996,12,26,0,7 +1,1996,12,27,0,6 +1,1996,12,28,1,6 +1,1996,12,29,1,6 +1,1996,12,30,0,5 +1,1996,12,31,0,5 +1,1997,1,1,0,1 +1,1997,1,2,0,1 +1,1997,1,3,0,1 +1,1997,1,4,1,1 +1,1997,1,5,1,2 +1,1997,1,6,0,6 +1,1997,1,7,0,5 +1,1997,1,8,0,5 +1,1997,1,9,0,5 +1,1997,1,10,0,5 +1,1997,1,11,1,6 +1,1997,1,12,1,8 +1,1997,1,13,0,8 +1,1997,1,14,0,4 +1,1997,1,15,0,4 +1,1997,1,16,0,8 +1,1997,1,17,0,6 +1,1997,1,18,1,5 +1,1997,1,19,1,1 +1,1997,1,20,0,1 +1,1997,1,21,0,1 +1,1997,1,22,0,1 +1,1997,1,23,0,1 +1,1997,1,24,0,2 +1,1997,1,25,1,2 +1,1997,1,26,1,2 +1,1997,1,27,0,3 +1,1997,1,28,0,2 +1,1997,1,29,0,1 +1,1997,1,30,0,1 +1,1997,1,31,0,1 +1,1997,2,1,1,5 +1,1997,2,2,1,5 +1,1997,2,3,0,1 +1,1997,2,4,0,7 +1,1997,2,5,0,7 +1,1997,2,6,0,8 +1,1997,2,7,0,8 +1,1997,2,8,1,8 +1,1997,2,9,1,3 +1,1997,2,10,0,7 +1,1997,2,11,0,6 +1,1997,2,12,0,1 +1,1997,2,13,0,1 +1,1997,2,14,0,5 +1,1997,2,15,1,5 +1,1997,2,16,1,5 +1,1997,2,17,0,5 +1,1997,2,18,0,1 +1,1997,2,19,0,5 +1,1997,2,20,0,5 +1,1997,2,21,0,6 +1,1997,2,22,1,7 +1,1997,2,23,1,7 +1,1997,2,24,0,8 +1,1997,2,25,0,7 +1,1997,2,26,0,1 +1,1997,2,27,0,1 +1,1997,2,28,0,1 +1,1997,3,1,1,6 +1,1997,3,2,1,1 +1,1997,3,3,0,5 +1,1997,3,4,0,6 +1,1997,3,5,0,8 +1,1997,3,6,0,3 +1,1997,3,7,0,1 +1,1997,3,8,1,6 +1,1997,3,9,1,3 +1,1997,3,10,0,2 +1,1997,3,11,0,1 +1,1997,3,12,0,5 +1,1997,3,13,0,6 +1,1997,3,14,0,8 +1,1997,3,15,1,6 +1,1997,3,16,1,1 +1,1997,3,17,0,1 +1,1997,3,18,0,3 +1,1997,3,19,0,3 +1,1997,3,20,0,1 +1,1997,3,21,0,1 +1,1997,3,22,1,2 +1,1997,3,23,1,1 +1,1997,3,24,0,1 +1,1997,3,25,0,3 +1,1997,3,26,0,1 +1,1997,3,27,0,1 +1,1997,3,28,0,1 +1,1997,3,29,1,5 +1,1997,3,30,1,2 +1,1997,3,31,0,1 +1,1997,4,1,0,5 +1,1997,4,2,0,5 +1,1997,4,3,0,5 +1,1997,4,4,0,5 +1,1997,4,5,1,5 +1,1997,4,6,1,5 +1,1997,4,7,0,6 +1,1997,4,8,0,6 +1,1997,4,9,0,5 +1,1997,4,10,0,5 +1,1997,4,11,0,5 +1,1997,4,12,1,6 +1,1997,4,13,1,6 +1,1997,4,14,0,6 +1,1997,4,15,0,8 +1,1997,4,16,0,8 +1,1997,4,17,0,4 +1,1997,4,18,0,2 +1,1997,4,19,1,2 +1,1997,4,20,1,3 +1,1997,4,21,0,2 +1,1997,4,22,0,2 +1,1997,4,23,0,2 +1,1997,4,24,0,1 +1,1997,4,25,0,6 +1,1997,4,26,1,8 +1,1997,4,27,1,3 +1,1997,4,28,0,1 +1,1997,4,29,0,1 +1,1997,4,30,0,2 +1,1997,5,1,0,5 +1,1997,5,2,0,1 +1,1997,5,3,1,2 +1,1997,5,4,1,2 +1,1997,5,5,0,2 +1,1997,5,6,0,6 +1,1997,5,7,0,6 +1,1997,5,8,0,3 +1,1997,5,9,0,3 +1,1997,5,10,1,8 +1,1997,5,11,1,8 +1,1997,5,12,0,8 +1,1997,5,13,0,7 +1,1997,5,14,0,8 +1,1997,5,15,0,8 +1,1997,5,16,0,8 +1,1997,5,17,1,8 +1,1997,5,18,1,8 +1,1997,5,19,0,8 +1,1997,5,20,0,6 +1,1997,5,21,0,6 +1,1997,5,22,0,6 +1,1997,5,23,0,6 +1,1997,5,24,1,5 +1,1997,5,25,1,5 +1,1997,5,26,0,2 +1,1997,5,27,0,3 +1,1997,5,28,0,8 +1,1997,5,29,0,8 +1,1997,5,30,0,8 +1,1997,5,31,1,8 +1,1997,6,1,1,3 +1,1997,6,2,0,2 +1,1997,6,3,0,6 +1,1997,6,4,0,5 +1,1997,6,5,0,1 +1,1997,6,6,0,1 +1,1997,6,7,1,5 +1,1997,6,8,1,5 +1,1997,6,9,0,5 +1,1997,6,10,0,6 +1,1997,6,11,0,5 +1,1997,6,12,0,1 +1,1997,6,13,0,1 +1,1997,6,14,1,5 +1,1997,6,15,1,5 +1,1997,6,16,0,5 +1,1997,6,17,0,8 +1,1997,6,18,0,4 +1,1997,6,19,0,4 +1,1997,6,20,0,3 +1,1997,6,21,1,2 +1,1997,6,22,1,1 +1,1997,6,23,0,1 +1,1997,6,24,0,5 +1,1997,6,25,0,7 +1,1997,6,26,0,7 +1,1997,6,27,0,6 +1,1997,6,28,1,2 +1,1997,6,29,1,1 +1,1997,6,30,0,1 +1,1997,7,1,0,1 +1,1997,7,2,0,1 +1,1997,7,3,0,1 +1,1997,7,4,0,3 +1,1997,7,5,1,2 +1,1997,7,6,1,2 +1,1997,7,7,0,5 +1,1997,7,8,0,2 +1,1997,7,9,0,6 +1,1997,7,10,0,5 +1,1997,7,11,0,5 +1,1997,7,12,1,1 +1,1997,7,13,1,1 +1,1997,7,14,0,2 +1,1997,7,15,0,2 +1,1997,7,16,0,6 +1,1997,7,17,0,1 +1,1997,7,18,0,5 +1,1997,7,19,1,2 +1,1997,7,20,1,3 +1,1997,7,21,0,2 +1,1997,7,22,0,2 +1,1997,7,23,0,1 +1,1997,7,24,0,6 +1,1997,7,25,0,5 +1,1997,7,26,1,6 +1,1997,7,27,1,1 +1,1997,7,28,0,2 +1,1997,7,29,0,2 +1,1997,7,30,0,2 +1,1997,7,31,0,2 +1,1997,8,1,0,2 +1,1997,8,2,1,2 +1,1997,8,3,1,3 +1,1997,8,4,0,4 +1,1997,8,5,0,4 +1,1997,8,6,0,4 +1,1997,8,7,0,8 +1,1997,8,8,0,7 +1,1997,8,9,1,5 +1,1997,8,10,1,1 +1,1997,8,11,0,1 +1,1997,8,12,0,2 +1,1997,8,13,0,2 +1,1997,8,14,0,2 +1,1997,8,15,0,5 +1,1997,8,16,1,5 +1,1997,8,17,1,1 +1,1997,8,18,0,1 +1,1997,8,19,0,2 +1,1997,8,20,0,2 +1,1997,8,21,0,2 +1,1997,8,22,0,3 +1,1997,8,23,1,2 +1,1997,8,24,1,1 +1,1997,8,25,0,1 +1,1997,8,26,0,1 +1,1997,8,27,0,1 +1,1997,8,28,0,1 +1,1997,8,29,0,5 +1,1997,8,30,1,5 +1,1997,8,31,1,1 +1,1997,9,1,0,3 +1,1997,9,2,0,8 +1,1997,9,3,0,8 +1,1997,9,4,0,4 +1,1997,9,5,0,4 +1,1997,9,6,1,2 +1,1997,9,7,1,3 +1,1997,9,8,0,4 +1,1997,9,9,0,4 +1,1997,9,10,0,4 +1,1997,9,11,0,1 +1,1997,9,12,0,1 +1,1997,9,13,1,1 +1,1997,9,14,1,1 +1,1997,9,15,0,1 +1,1997,9,16,0,1 +1,1997,9,17,0,1 +1,1997,9,18,0,1 +1,1997,9,19,0,1 +1,1997,9,20,1,5 +1,1997,9,21,1,5 +1,1997,9,22,0,6 +1,1997,9,23,0,6 +1,1997,9,24,0,7 +1,1997,9,25,0,2 +1,1997,9,26,0,1 +1,1997,9,27,1,1 +1,1997,9,28,1,5 +1,1997,9,29,0,6 +1,1997,9,30,0,2 +1,1997,10,1,0,4 +1,1997,10,3,0,3 +1,1997,10,4,1,4 +1,1997,10,5,1,3 +1,1997,10,6,0,2 +1,1997,10,7,0,1 +1,1997,10,8,0,1 +1,1997,10,9,0,1 +1,1997,10,10,0,1 +1,1997,10,11,1,1 +1,1997,10,12,1,1 +1,1997,10,13,0,5 +1,1997,10,14,0,5 +1,1997,10,15,0,7 +1,1997,10,16,0,7 +1,1997,10,17,0,7 +1,1997,10,18,1,6 +1,1997,10,19,1,6 +1,1997,10,20,0,5 +1,1997,10,21,0,5 +1,1997,10,22,0,5 +1,1997,10,23,0,1 +1,1997,10,24,0,1 +1,1997,10,25,1,5 +1,1997,10,26,1,5 +1,1997,10,27,0,5 +1,1997,10,28,0,5 +1,1997,10,29,0,5 +1,1997,10,30,0,5 +1,1997,10,31,0,1 +1,1997,11,1,1,5 +1,1997,11,2,1,6 +1,1997,11,3,0,5 +1,1997,11,4,0,5 +1,1997,11,5,0,5 +1,1997,11,6,0,5 +1,1997,11,7,0,5 +1,1997,11,8,1,5 +1,1997,11,9,1,6 +1,1997,11,10,0,2 +1,1997,11,11,0,1 +1,1997,11,12,0,1 +1,1997,11,13,0,1 +1,1997,11,14,0,2 +1,1997,11,15,1,3 +1,1997,11,16,1,2 +1,1997,11,17,0,6 +1,1997,11,18,0,6 +1,1997,11,19,0,1 +1,1997,11,20,0,1 +1,1997,11,21,0,5 +1,1997,11,22,1,1 +1,1997,11,23,1,1 +1,1997,11,24,0,5 +1,1997,11,25,0,1 +1,1997,11,26,0,1 +1,1997,11,27,0,1 +1,1997,11,28,0,1 +1,1997,11,29,1,5 +1,1997,11,30,1,1 +1,1997,12,1,0,5 +1,1997,12,2,0,5 +1,1997,12,3,0,6 +1,1997,12,4,0,6 +1,1997,12,5,0,6 +1,1997,12,6,1,6 +1,1997,12,7,1,5 +1,1997,12,8,0,5 +1,1997,12,9,0,1 +1,1997,12,10,0,1 +1,1997,12,11,0,2 +1,1997,12,12,0,2 +1,1997,12,13,1,2 +1,1997,12,14,1,1 +1,1997,12,15,0,1 +1,1997,12,16,0,1 +1,1997,12,17,0,1 +1,1997,12,18,0,6 +1,1997,12,19,0,6 +1,1997,12,20,1,1 +1,1997,12,21,1,6 +1,1997,12,22,0,7 +1,1997,12,23,0,2 +1,1997,12,24,0,2 +1,1997,12,25,0,3 +1,1997,12,26,0,3 +1,1997,12,27,1,2 +1,1997,12,28,1,1 +1,1997,12,29,0,1 +1,1997,12,30,0,1 +1,1997,12,31,0,1 +1,1998,1,1,0,1 +1,1998,1,2,0,1 +1,1998,1,3,1,1 +1,1998,1,4,1,1 +1,1998,1,5,0,1 +1,1998,1,6,0,5 +1,1998,1,7,0,5 +1,1998,1,8,0,2 +1,1998,1,9,0,3 +1,1998,1,10,1,3 +1,1998,1,11,1,3 +1,1998,1,12,0,4 +1,1998,1,13,0,2 +1,1998,1,14,0,1 +1,1998,1,15,0,1 +1,1998,1,16,0,1 +1,1998,1,17,1,1 +1,1998,1,18,1,1 +1,1998,1,19,0,1 +1,1998,1,20,0,1 +1,1998,1,21,0,2 +1,1998,1,22,0,5 +1,1998,1,23,0,5 +1,1998,1,24,1,1 +1,1998,1,25,1,1 +1,1998,1,26,0,1 +1,1998,1,27,0,1 +1,1998,1,28,0,1 +1,1998,1,29,0,1 +1,1998,1,30,0,1 +1,1998,1,31,1,1 +1,1998,2,1,1,1 +1,1998,2,2,0,5 +1,1998,2,3,0,5 +1,1998,2,4,0,1 +1,1998,2,5,0,1 +1,1998,2,6,0,5 +1,1998,2,7,1,1 +1,1998,2,8,1,1 +1,1998,2,9,0,1 +1,1998,2,10,0,1 +1,1998,2,11,0,5 +1,1998,2,12,0,5 +1,1998,2,13,0,1 +1,1998,2,14,1,1 +1,1998,2,15,1,1 +1,1998,2,16,0,1 +1,1998,2,17,0,1 +1,1998,2,18,0,1 +1,1998,2,19,0,5 +1,1998,2,20,0,1 +1,1998,2,21,1,1 +1,1998,2,22,1,1 +1,1998,2,23,0,1 +1,1998,2,24,0,1 +1,1998,2,25,0,1 +1,1998,2,26,0,1 +1,1998,2,27,0,2 +1,1998,2,28,1,7 +1,1998,3,1,1,8 +1,1998,3,2,0,3 +1,1998,3,3,0,6 +1,1998,3,4,0,5 +1,1998,3,5,0,6 +1,1998,3,6,0,5 +1,1998,3,7,1,6 +1,1998,3,8,1,8 +1,1998,3,9,0,8 +1,1998,3,10,0,4 +1,1998,3,11,0,4 +1,1998,3,12,0,3 +1,1998,3,13,0,2 +1,1998,3,14,1,1 +1,1998,3,15,1,1 +1,1998,3,16,0,1 +1,1998,3,17,0,1 +1,1998,3,18,0,6 +1,1998,3,19,0,3 +1,1998,3,20,0,3 +1,1998,3,21,1,2 +1,1998,3,22,1,1 +1,1998,3,23,0,1 +1,1998,3,24,0,1 +1,1998,3,25,0,1 +1,1998,3,26,0,1 +1,1998,3,27,0,5 +1,1998,3,28,1,5 +1,1998,3,29,1,5 +1,1998,3,30,0,5 +1,1998,3,31,0,5 +1,1998,4,1,0,5 +1,1998,4,2,0,5 +1,1998,4,3,0,5 +1,1998,4,4,1,5 +1,1998,4,5,1,5 +1,1998,4,6,0,5 +1,1998,4,7,0,5 +1,1998,4,8,0,5 +1,1998,4,9,0,6 +1,1998,4,10,0,6 +1,1998,4,11,1,1 +1,1998,4,12,1,1 +1,1998,4,13,0,5 +1,1998,4,14,0,5 +1,1998,4,15,0,5 +1,1998,4,16,0,5 +1,1998,4,17,0,6 +1,1998,4,18,1,7 +1,1998,4,19,1,7 +1,1998,4,20,0,8 +1,1998,4,21,0,8 +1,1998,4,22,0,4 +1,1998,4,23,0,2 +1,1998,4,24,0,1 +1,1998,4,25,1,1 +1,1998,4,26,1,5 +1,1998,4,27,0,8 +1,1998,4,28,0,8 +1,1998,4,29,0,4 +1,1998,4,30,0,4 +1,1998,5,1,0,2 +1,1998,5,2,1,2 +1,1998,5,3,1,2 +1,1998,5,4,0,1 +1,1998,5,5,0,1 +1,1998,5,6,0,1 +1,1998,5,7,0,1 +1,1998,5,8,0,1 +1,1998,5,9,1,1 +1,1998,5,10,1,1 +1,1998,5,11,0,1 +1,1998,5,12,0,1 +1,1998,5,13,0,1 +1,1998,5,14,0,1 +1,1998,5,15,0,1 +1,1998,5,16,1,1 +1,1998,5,17,1,1 +1,1998,5,18,0,1 +1,1998,5,19,0,2 +1,1998,5,20,0,1 +1,1998,5,21,0,1 +1,1998,5,22,0,1 +1,1998,5,23,1,1 +1,1998,5,24,1,2 +1,1998,5,25,0,5 +1,1998,5,26,0,5 +1,1998,5,27,0,1 +1,1998,5,28,0,1 +1,1998,5,29,0,1 +1,1998,5,30,1,1 +1,1998,5,31,1,2 +1,1998,6,1,0,5 +1,1998,6,2,0,5 +1,1998,6,3,0,5 +1,1998,6,4,0,5 +1,1998,6,5,0,5 +1,1998,6,6,1,5 +1,1998,6,7,1,5 +1,1998,6,8,0,5 +1,1998,6,9,0,5 +1,1998,6,10,0,5 +1,1998,6,11,0,5 +1,1998,6,12,0,5 +1,1998,6,13,1,5 +1,1998,6,14,1,5 +1,1998,6,15,0,5 +1,1998,6,16,0,1 +1,1998,6,17,0,1 +1,1998,6,18,0,5 +1,1998,6,19,0,5 +1,1998,6,20,1,5 +1,1998,6,21,1,5 +1,1998,6,22,0,5 +1,1998,6,23,0,5 +1,1998,6,24,0,1 +1,1998,6,25,0,1 +1,1998,6,26,0,1 +1,1998,6,27,1,2 +1,1998,6,28,1,7 +1,1998,6,29,0,8 +1,1998,6,30,0,7 +1,1998,7,1,0,1 +1,1998,7,2,0,1 +1,1998,7,3,0,1 +1,1998,7,4,1,1 +1,1998,7,5,1,5 +1,1998,7,6,0,1 +1,1998,7,7,0,3 +1,1998,7,8,0,2 +1,1998,7,9,0,2 +1,1998,7,10,0,1 +1,1998,7,11,1,1 +1,1998,7,12,1,5 +1,1998,7,13,0,6 +1,1998,7,14,0,6 +1,1998,7,15,0,3 +1,1998,7,16,0,4 +1,1998,7,17,0,8 +1,1998,7,18,1,8 +1,1998,7,19,1,7 +1,1998,7,20,0,6 +1,1998,7,21,0,2 +1,1998,7,22,0,3 +1,1998,7,23,0,2 +1,1998,7,24,0,2 +1,1998,7,25,1,3 +1,1998,7,26,1,4 +1,1998,7,27,0,4 +1,1998,7,28,0,4 +1,1998,7,29,0,3 +1,1998,7,30,0,1 +1,1998,7,31,0,1 +1,1998,8,1,1,1 +1,1998,8,2,1,3 +1,1998,8,3,0,4 +1,1998,8,4,0,4 +1,1998,8,5,0,4 +1,1998,8,6,0,4 +1,1998,8,7,0,6 +1,1998,8,8,1,5 +1,1998,8,9,1,2 +1,1998,8,10,0,3 +1,1998,8,11,0,4 +1,1998,8,12,0,4 +1,1998,8,13,0,4 +1,1998,8,14,0,4 +1,1998,8,15,1,6 +1,1998,8,16,1,5 +1,1998,8,17,0,5 +1,1998,8,18,0,1 +1,1998,8,19,0,1 +1,1998,8,20,0,1 +1,1998,8,21,0,1 +1,1998,8,22,1,2 +1,1998,8,23,1,5 +1,1998,8,24,0,6 +1,1998,8,25,0,5 +1,1998,8,26,0,5 +1,1998,8,27,0,5 +1,1998,8,28,0,4 +1,1998,8,29,1,4 +1,1998,8,30,1,8 +1,1998,8,31,0,8 +1,1998,9,1,0,4 +1,1998,9,2,0,4 +1,1998,9,3,0,4 +1,1998,9,4,0,4 +1,1998,9,5,1,3 +1,1998,9,6,1,4 +1,1998,9,7,0,4 +1,1998,9,8,0,3 +1,1998,9,9,0,1 +1,1998,9,10,0,1 +1,1998,9,11,0,2 +1,1998,9,12,1,2 +1,1998,9,13,1,2 +1,1998,9,14,0,3 +1,1998,9,15,0,3 +1,1998,9,16,0,3 +1,1998,9,17,0,2 +1,1998,9,18,0,1 +1,1998,9,19,1,1 +1,1998,9,20,1,1 +1,1998,9,21,0,1 +1,1998,9,22,0,5 +1,1998,9,23,0,5 +1,1998,9,24,0,1 +1,1998,9,25,0,1 +1,1998,9,26,1,1 +1,1998,9,27,1,5 +1,1998,9,28,0,5 +1,1998,9,29,0,5 +1,1998,9,30,0,5 +1,1998,10,1,0,2 +1,1998,10,2,0,1 +1,1998,10,3,1,1 +1,1998,10,4,1,1 +1,1998,10,5,0,1 +1,1998,10,6,0,6 +1,1998,10,7,0,6 +1,1998,10,8,0,2 +1,1998,10,9,0,1 +1,1998,10,10,1,1 +1,1998,10,11,1,1 +1,1998,10,12,0,6 +1,1998,10,13,0,2 +1,1998,10,14,0,1 +1,1998,10,15,0,1 +1,1998,10,16,0,1 +1,1998,10,17,1,5 +1,1998,10,18,1,5 +1,1998,10,19,0,5 +1,1998,10,20,0,5 +1,1998,10,21,0,5 +1,1998,10,22,0,5 +1,1998,10,23,0,5 +1,1998,10,24,1,5 +1,1998,10,25,1,1 +1,1998,10,26,0,1 +1,1998,10,27,0,5 +1,1998,10,28,0,1 +1,1998,10,29,0,1 +1,1998,10,30,0,1 +1,1998,10,31,1,5 +1,1998,11,1,1,5 +1,1998,11,2,0,5 +1,1998,11,3,0,5 +1,1998,11,4,0,6 +1,1998,11,5,0,5 +1,1998,11,6,0,1 +1,1998,11,7,1,1 +1,1998,11,8,1,1 +1,1998,11,9,0,1 +1,1998,11,10,0,1 +1,1998,11,11,0,1 +1,1998,11,12,0,6 +1,1998,11,13,0,5 +1,1998,11,14,1,5 +1,1998,11,15,1,5 +1,1998,11,16,0,5 +1,1998,11,17,0,1 +1,1998,11,18,0,1 +1,1998,11,19,0,6 +1,1998,11,20,0,5 +1,1998,11,21,1,1 +1,1998,11,22,1,1 +1,1998,11,23,0,1 +1,1998,11,24,0,1 +1,1998,11,25,0,1 +1,1998,11,26,0,5 +1,1998,11,27,0,5 +1,1998,11,28,1,1 +1,1998,11,29,1,1 +1,1998,11,30,0,1 +1,1998,12,1,0,5 +1,1998,12,2,0,5 +1,1998,12,3,0,5 +1,1998,12,4,0,5 +1,1998,12,5,1,6 +1,1998,12,6,1,2 +1,1998,12,7,0,2 +1,1998,12,8,0,1 +1,1998,12,9,0,2 +1,1998,12,10,0,2 +1,1998,12,11,0,1 +1,1998,12,12,1,1 +1,1998,12,13,1,1 +1,1998,12,14,0,1 +1,1998,12,15,0,1 +1,1998,12,16,0,1 +1,1998,12,17,0,1 +1,1998,12,18,0,6 +1,1998,12,19,1,8 +1,1998,12,20,1,8 +1,1998,12,21,0,4 +1,1998,12,22,0,4 +1,1998,12,23,0,4 +1,1998,12,24,0,4 +1,1998,12,25,0,2 +1,1998,12,26,1,1 +1,1998,12,27,1,1 +1,1998,12,28,0,1 +1,1998,12,29,0,1 +1,1998,12,30,0,1 +1,1998,12,31,0,5 +1,1999,1,1,0,1 +1,1999,1,2,1,6 +1,1999,1,3,1,6 +1,1999,1,4,0,6 +1,1999,1,5,0,5 +1,1999,1,6,0,5 +1,1999,1,7,0,5 +1,1999,1,8,0,5 +1,1999,1,9,1,5 +1,1999,1,11,0,1 +1,1999,1,12,0,1 +1,1999,1,13,0,1 +1,1999,1,14,0,5 +1,1999,1,15,0,1 +1,1999,1,16,1,1 +1,1999,1,17,1,1 +1,1999,1,18,0,1 +1,1999,1,19,0,1 +1,1999,1,20,0,1 +1,1999,1,21,0,1 +1,1999,1,22,0,1 +1,1999,1,23,1,1 +1,1999,1,24,1,2 +1,1999,1,25,0,2 +1,1999,1,26,0,2 +1,1999,1,27,0,2 +1,1999,1,28,0,5 +1,1999,1,29,0,5 +1,1999,1,30,1,5 +1,1999,1,31,1,1 +1,1999,2,1,0,1 +1,1999,2,2,0,1 +1,1999,2,3,0,1 +1,1999,2,4,0,1 +1,1999,2,5,0,1 +1,1999,2,6,1,1 +1,1999,2,7,1,1 +1,1999,2,8,0,1 +1,1999,2,9,0,1 +1,1999,2,10,0,1 +1,1999,2,11,0,4 +1,1999,2,12,0,4 +1,1999,2,13,1,1 +1,1999,2,14,1,1 +1,1999,2,15,0,1 +1,1999,2,16,0,5 +1,1999,2,17,0,1 +1,1999,2,18,0,5 +1,1999,2,19,0,1 +1,1999,2,20,1,6 +1,1999,2,21,1,6 +1,1999,2,22,0,1 +1,1999,2,23,0,1 +1,1999,2,24,0,1 +1,1999,2,25,0,1 +1,1999,2,26,0,1 +1,1999,2,27,1,5 +1,1999,2,28,1,5 +1,1999,3,1,0,1 +1,1999,3,2,0,7 +1,1999,3,3,0,1 +1,1999,3,4,0,5 +1,1999,3,5,0,6 +1,1999,3,6,1,7 +1,1999,3,7,1,5 +1,1999,3,8,0,5 +1,1999,3,9,0,5 +1,1999,3,10,0,5 +1,1999,3,11,0,6 +1,1999,3,12,0,6 +1,1999,3,13,1,2 +1,1999,3,14,1,1 +1,1999,3,15,0,5 +1,1999,3,16,0,5 +1,1999,3,17,0,6 +1,1999,3,18,0,3 +1,1999,3,19,0,3 +1,1999,3,20,1,2 +1,1999,3,21,1,1 +1,1999,3,22,0,1 +1,1999,3,23,0,1 +1,1999,3,24,0,1 +1,1999,3,25,0,1 +1,1999,3,26,0,1 +1,1999,3,27,1,5 +1,1999,3,28,1,5 +1,1999,3,29,0,1 +1,1999,3,30,0,5 +1,1999,3,31,0,5 +1,1999,4,1,0,5 +1,1999,4,2,0,5 +1,1999,4,3,1,5 +1,1999,4,4,1,5 +1,1999,4,5,0,5 +1,1999,4,6,0,5 +1,1999,4,7,0,5 +1,1999,4,8,0,5 +1,1999,4,9,0,5 +1,1999,4,10,1,5 +1,1999,4,11,1,5 +1,1999,4,12,0,5 +1,1999,4,13,0,5 +1,1999,4,14,0,6 +1,1999,4,15,0,8 +1,1999,4,16,0,8 +1,1999,4,17,1,8 +1,1999,4,18,1,8 +1,1999,4,19,0,4 +1,1999,4,20,0,2 +1,1999,4,21,0,1 +1,1999,4,22,0,1 +1,1999,4,23,0,5 +1,1999,4,24,1,6 +1,1999,4,25,1,2 +1,1999,4,26,0,1 +1,1999,4,27,0,1 +1,1999,4,28,0,1 +1,1999,4,29,0,5 +1,1999,4,30,0,5 +1,1999,5,1,1,1 +1,1999,5,2,1,1 +1,1999,5,3,0,5 +1,1999,5,4,0,1 +1,1999,5,5,0,1 +1,1999,5,6,0,2 +1,1999,5,7,0,1 +1,1999,5,8,1,5 +1,1999,5,9,1,5 +1,1999,5,10,0,1 +1,1999,5,11,0,1 +1,1999,5,12,0,6 +1,1999,5,13,0,5 +1,1999,5,14,0,5 +1,1999,5,15,1,1 +1,1999,5,16,1,1 +1,1999,5,17,0,2 +1,1999,5,18,0,6 +1,1999,5,19,0,5 +1,1999,5,20,0,5 +1,1999,5,21,0,1 +1,1999,5,22,1,7 +1,1999,5,23,1,3 +1,1999,5,24,0,3 +1,1999,5,25,0,7 +1,1999,5,26,0,7 +1,1999,5,27,0,8 +1,1999,5,28,0,7 +1,1999,5,29,1,5 +1,1999,5,30,1,6 +1,1999,5,31,0,2 +1,1999,6,1,0,5 +1,1999,6,2,0,5 +1,1999,6,3,0,5 +1,1999,6,4,0,5 +1,1999,6,5,1,5 +1,1999,6,6,1,5 +1,1999,6,7,0,5 +1,1999,6,8,0,1 +1,1999,6,9,0,5 +1,1999,6,10,0,5 +1,1999,6,11,0,5 +1,1999,6,12,1,6 +1,1999,6,13,1,7 +1,1999,6,14,0,8 +1,1999,6,15,0,8 +1,1999,6,16,0,6 +1,1999,6,17,0,7 +1,1999,6,18,0,6 +1,1999,6,19,1,6 +1,1999,6,20,1,7 +1,1999,6,21,0,3 +1,1999,6,22,0,3 +1,1999,6,23,0,7 +1,1999,6,24,0,3 +1,1999,6,25,0,2 +1,1999,6,26,1,2 +1,1999,6,27,1,3 +1,1999,6,28,0,4 +1,1999,6,29,0,4 +1,1999,6,30,0,4 +1,1999,7,1,0,5 +1,1999,7,2,0,5 +1,1999,7,3,1,5 +1,1999,7,4,1,5 +1,1999,7,5,0,5 +1,1999,7,6,0,2 +1,1999,7,7,0,5 +1,1999,7,8,0,5 +1,1999,7,9,0,7 +1,1999,7,10,1,4 +1,1999,7,11,1,8 +1,1999,7,12,0,8 +1,1999,7,13,0,8 +1,1999,7,14,0,5 +1,1999,7,15,0,5 +1,1999,7,16,0,1 +1,1999,7,17,1,1 +1,1999,7,18,1,1 +1,1999,7,19,0,1 +1,1999,7,20,0,1 +1,1999,7,21,0,1 +1,1999,7,22,0,1 +1,1999,7,23,0,1 +1,1999,7,24,1,1 +1,1999,7,25,1,5 +1,1999,7,26,0,1 +1,1999,7,27,0,1 +1,1999,7,28,0,1 +1,1999,7,29,0,1 +1,1999,7,30,0,1 +1,1999,7,31,1,1 +1,1999,8,1,1,1 +1,1999,8,2,0,2 +1,1999,8,3,0,2 +1,1999,8,4,0,2 +1,1999,8,5,0,1 +1,1999,8,6,0,1 +1,1999,8,7,1,1 +1,1999,8,8,1,1 +1,1999,8,9,0,1 +1,1999,8,10,0,1 +1,1999,8,11,0,1 +1,1999,8,12,0,1 +1,1999,8,13,0,1 +1,1999,8,14,1,5 +1,1999,8,15,1,5 +1,1999,8,16,0,1 +1,1999,8,17,0,3 +1,1999,8,18,0,2 +1,1999,8,19,0,1 +1,1999,8,20,0,2 +1,1999,8,21,1,2 +1,1999,8,22,1,7 +1,1999,8,23,0,4 +1,1999,8,24,0,7 +1,1999,8,25,0,7 +1,1999,8,26,0,7 +1,1999,8,27,0,7 +1,1999,8,28,1,2 +1,1999,8,29,1,6 +1,1999,8,30,0,5 +1,1999,8,31,0,5 +1,1999,9,1,0,1 +1,1999,9,2,0,1 +1,1999,9,3,0,1 +1,1999,9,4,1,1 +1,1999,9,5,1,6 +1,1999,9,6,0,1 +1,1999,9,7,0,1 +1,1999,9,8,0,6 +1,1999,9,9,0,2 +1,1999,9,10,0,1 +1,1999,9,11,1,1 +1,1999,9,12,1,6 +1,1999,9,13,0,8 +1,1999,9,14,0,7 +1,1999,9,15,0,6 +1,1999,9,16,0,1 +1,1999,9,17,0,1 +1,1999,9,18,1,1 +1,1999,9,19,1,1 +1,1999,9,20,0,6 +1,1999,9,21,0,7 +1,1999,9,22,0,7 +1,1999,9,23,0,5 +1,1999,9,24,0,1 +1,1999,9,25,1,1 +1,1999,9,26,1,1 +1,1999,9,27,0,5 +1,1999,9,28,0,5 +1,1999,9,29,0,5 +1,1999,9,30,0,5 +1,1999,10,1,0,3 +1,1999,10,2,1,3 +1,1999,10,3,1,2 +1,1999,10,4,0,7 +1,1999,10,5,0,3 +1,1999,10,6,0,2 +1,1999,10,7,0,1 +1,1999,10,8,0,3 +1,1999,10,9,1,8 +1,1999,10,10,1,8 +1,1999,10,11,0,3 +1,1999,10,12,0,3 +1,1999,10,13,0,8 +1,1999,10,14,0,3 +1,1999,10,15,0,2 +1,1999,10,16,1,5 +1,1999,10,17,1,5 +1,1999,10,18,0,5 +1,1999,10,19,0,5 +1,1999,10,20,0,6 +1,1999,10,21,0,6 +1,1999,10,22,0,6 +1,1999,10,23,1,6 +1,1999,10,24,1,5 +1,1999,10,25,0,5 +1,1999,10,26,0,5 +1,1999,10,27,0,1 +1,1999,10,28,0,1 +1,1999,10,29,0,1 +1,1999,10,30,1,5 +1,1999,10,31,1,5 +1,1999,11,1,0,7 +1,1999,11,2,0,8 +1,1999,11,3,0,5 +1,1999,11,4,0,5 +1,1999,11,5,0,1 +1,1999,11,6,1,5 +1,1999,11,7,1,5 +1,1999,11,8,0,1 +1,1999,11,9,0,5 +1,1999,11,10,0,5 +1,1999,11,11,0,5 +1,1999,11,12,0,5 +1,1999,11,13,1,5 +1,1999,11,14,1,5 +1,1999,11,15,0,5 +1,1999,11,16,0,5 +1,1999,11,17,0,1 +1,1999,11,18,0,1 +1,1999,11,19,0,5 +1,1999,11,20,1,1 +1,1999,11,21,1,1 +1,1999,11,22,0,2 +1,1999,11,23,0,8 +1,1999,11,24,0,7 +1,1999,11,25,0,5 +1,1999,11,26,0,1 +1,1999,11,27,1,1 +1,1999,11,28,1,7 +1,1999,11,29,0,7 +1,1999,11,30,0,5 +1,1999,12,1,0,5 +1,1999,12,2,0,5 +1,1999,12,3,0,1 +1,1999,12,4,1,1 +1,1999,12,5,1,1 +1,1999,12,6,0,1 +1,1999,12,7,0,1 +1,1999,12,8,0,1 +1,1999,12,9,0,1 +1,1999,12,10,0,1 +1,1999,12,11,1,1 +1,1999,12,12,1,1 +1,1999,12,13,0,1 +1,1999,12,14,0,1 +1,1999,12,15,0,1 +1,1999,12,16,0,1 +1,1999,12,17,0,1 +1,1999,12,18,1,1 +1,1999,12,19,1,1 +1,1999,12,20,0,1 +1,1999,12,21,0,1 +1,1999,12,22,0,1 +1,1999,12,23,0,1 +1,1999,12,24,0,1 +1,1999,12,25,1,1 +1,1999,12,26,1,1 +1,1999,12,27,0,1 +1,1999,12,28,0,1 +1,1999,12,29,0,1 +1,1999,12,30,0,1 +1,1999,12,31,0,1 +1,2000,1,1,1,1 +1,2000,1,2,1,1 +1,2000,1,3,0,6 +1,2000,1,4,0,5 +1,2000,1,5,0,5 +1,2000,1,6,0,6 +1,2000,1,7,0,5 +1,2000,1,8,1,5 +1,2000,1,9,1,1 +1,2000,1,10,0,1 +1,2000,1,11,0,1 +1,2000,1,12,0,1 +1,2000,1,13,0,2 +1,2000,1,14,0,1 +1,2000,1,15,1,1 +1,2000,1,16,1,1 +1,2000,1,17,0,1 +1,2000,1,18,0,1 +1,2000,1,19,0,1 +1,2000,1,20,0,1 +1,2000,1,21,0,1 +1,2000,1,22,1,1 +1,2000,1,23,1,1 +1,2000,1,24,0,1 +1,2000,1,25,0,1 +1,2000,1,26,0,1 +1,2000,1,27,0,1 +1,2000,1,28,0,2 +1,2000,1,29,1,6 +1,2000,1,30,1,3 +1,2000,1,31,0,2 +1,2000,2,1,0,6 +1,2000,2,2,0,5 +1,2000,2,3,0,5 +1,2000,2,4,0,7 +1,2000,2,5,1,6 +1,2000,2,6,1,5 +1,2000,2,7,0,5 +1,2000,2,8,0,5 +1,2000,2,9,0,5 +1,2000,2,10,0,5 +1,2000,2,11,0,5 +1,2000,2,12,1,1 +1,2000,2,13,1,1 +1,2000,2,14,0,1 +1,2000,2,15,0,1 +1,2000,2,16,0,5 +1,2000,2,17,0,1 +1,2000,2,18,0,7 +1,2000,2,19,1,7 +1,2000,2,20,1,5 +1,2000,2,21,0,1 +1,2000,2,22,0,1 +1,2000,2,23,0,1 +1,2000,2,24,0,1 +1,2000,2,25,0,1 +1,2000,2,26,1,1 +1,2000,2,27,1,5 +1,2000,2,28,0,1 +1,2000,2,29,0,1 +1,2000,3,1,0,7 +1,2000,3,2,0,7 +1,2000,3,3,0,2 +1,2000,3,4,1,1 +1,2000,3,5,1,5 +1,2000,3,6,0,5 +1,2000,3,7,0,5 +1,2000,3,8,0,6 +1,2000,3,9,0,7 +1,2000,3,10,0,8 +1,2000,3,11,1,4 +1,2000,3,12,1,7 +1,2000,3,13,0,3 +1,2000,3,14,0,1 +1,2000,3,15,0,5 +1,2000,3,16,0,2 +1,2000,3,17,0,1 +1,2000,3,18,1,2 +1,2000,3,19,1,1 +1,2000,3,20,0,5 +1,2000,3,21,0,6 +1,2000,3,22,0,2 +1,2000,3,23,0,1 +1,2000,3,24,0,1 +1,2000,3,25,1,2 +1,2000,3,26,1,2 +1,2000,3,27,0,1 +1,2000,3,28,0,5 +1,2000,3,29,0,5 +1,2000,3,30,0,6 +1,2000,3,31,0,7 +1,2000,4,1,1,7 +1,2000,4,2,1,7 +1,2000,4,3,0,8 +1,2000,4,4,0,4 +1,2000,4,5,0,2 +1,2000,4,6,0,1 +1,2000,4,7,0,7 +1,2000,4,8,1,7 +1,2000,4,9,1,2 +1,2000,4,10,0,2 +1,2000,4,11,0,7 +1,2000,4,12,0,4 +1,2000,4,13,0,3 +1,2000,4,14,0,1 +1,2000,4,15,1,1 +1,2000,4,16,1,2 +1,2000,4,17,0,2 +1,2000,4,18,0,1 +1,2000,4,19,0,5 +1,2000,4,20,0,7 +1,2000,4,21,0,3 +1,2000,4,22,1,1 +1,2000,4,23,1,1 +1,2000,4,24,0,2 +1,2000,4,25,0,2 +1,2000,4,26,0,4 +1,2000,4,27,0,4 +1,2000,4,28,0,1 +1,2000,4,29,1,1 +1,2000,4,30,1,7 +1,2000,5,1,0,3 +1,2000,5,2,0,6 +1,2000,5,3,0,5 +1,2000,5,4,0,5 +1,2000,5,5,0,5 +1,2000,5,6,1,5 +1,2000,5,7,1,1 +1,2000,5,8,0,1 +1,2000,5,9,0,5 +1,2000,5,10,0,5 +1,2000,5,11,0,1 +1,2000,5,12,0,1 +1,2000,5,13,1,2 +1,2000,5,14,1,2 +1,2000,5,15,0,6 +1,2000,5,16,0,1 +1,2000,5,17,0,1 +1,2000,5,18,0,2 +1,2000,5,19,0,3 +1,2000,5,20,1,8 +1,2000,5,21,1,8 +1,2000,5,22,0,8 +1,2000,5,23,0,7 +1,2000,5,24,0,6 +1,2000,5,25,0,5 +1,2000,5,26,0,5 +1,2000,5,27,1,6 +1,2000,5,28,1,7 +1,2000,5,29,0,6 +1,2000,5,30,0,5 +1,2000,5,31,0,5 +1,2000,6,1,0,5 +1,2000,6,2,0,6 +1,2000,6,3,1,6 +1,2000,6,4,1,6 +1,2000,6,5,0,6 +1,2000,6,6,0,6 +1,2000,6,7,0,3 +1,2000,6,8,0,1 +1,2000,6,9,0,1 +1,2000,6,10,1,1 +1,2000,6,11,1,5 +1,2000,6,12,0,5 +1,2000,6,13,0,3 +1,2000,6,14,0,8 +1,2000,6,15,0,4 +1,2000,6,16,0,4 +1,2000,6,17,1,8 +1,2000,6,18,1,6 +1,2000,6,19,0,2 +1,2000,6,20,0,6 +1,2000,6,21,0,8 +1,2000,6,22,0,4 +1,2000,6,23,0,3 +1,2000,6,24,1,6 +1,2000,6,25,1,8 +1,2000,6,26,0,8 +1,2000,6,27,0,8 +1,2000,6,28,0,8 +1,2000,6,29,0,8 +1,2000,6,30,0,7 +1,2000,7,1,1,5 +1,2000,7,2,1,5 +1,2000,7,3,0,1 +1,2000,7,4,0,1 +1,2000,7,5,0,1 +1,2000,7,6,0,1 +1,2000,7,7,0,1 +1,2000,7,8,1,1 +1,2000,7,9,1,5 +1,2000,7,10,0,1 +1,2000,7,11,0,1 +1,2000,7,12,0,1 +1,2000,7,13,0,1 +1,2000,7,14,0,1 +1,2000,7,15,1,5 +1,2000,7,16,1,1 +1,2000,7,17,0,1 +1,2000,7,18,0,1 +1,2000,7,19,0,2 +1,2000,7,20,0,2 +1,2000,7,21,0,2 +1,2000,7,22,1,2 +1,2000,7,23,1,7 +1,2000,7,24,0,7 +1,2000,7,25,0,6 +1,2000,7,26,0,5 +1,2000,7,27,0,1 +1,2000,7,28,0,2 +1,2000,7,29,1,3 +1,2000,7,30,1,4 +1,2000,7,31,0,4 +1,2000,8,1,0,8 +1,2000,8,2,0,7 +1,2000,8,3,0,7 +1,2000,8,4,0,2 +1,2000,8,5,1,2 +1,2000,8,6,1,6 +1,2000,8,7,0,5 +1,2000,8,8,0,1 +1,2000,8,9,0,1 +1,2000,8,10,0,1 +1,2000,8,11,0,5 +1,2000,8,12,1,7 +1,2000,8,13,1,5 +1,2000,8,14,0,5 +1,2000,8,15,0,6 +1,2000,8,16,0,7 +1,2000,8,17,0,3 +1,2000,8,18,0,1 +1,2000,8,19,1,1 +1,2000,8,20,1,1 +1,2000,8,21,0,1 +1,2000,8,22,0,2 +1,2000,8,23,0,2 +1,2000,8,24,0,1 +1,2000,8,25,0,2 +1,2000,8,26,1,5 +1,2000,8,27,1,5 +1,2000,8,28,0,5 +1,2000,8,29,0,1 +1,2000,8,30,0,1 +1,2000,8,31,0,1 +1,2000,9,1,0,1 +1,2000,9,2,1,1 +1,2000,9,3,1,1 +1,2000,9,4,0,1 +1,2000,9,5,0,1 +1,2000,9,6,0,1 +1,2000,9,7,0,5 +1,2000,9,8,0,1 +1,2000,9,9,1,1 +1,2000,9,10,1,1 +1,2000,9,11,0,1 +1,2000,9,12,0,2 +1,2000,9,13,0,3 +1,2000,9,14,0,4 +1,2000,9,15,0,3 +1,2000,9,16,1,2 +1,2000,9,17,1,2 +1,2000,9,18,0,2 +1,2000,9,19,0,2 +1,2000,9,20,0,2 +1,2000,9,21,0,1 +1,2000,9,22,0,1 +1,2000,9,23,1,5 +1,2000,9,24,1,5 +1,2000,9,25,0,5 +1,2000,9,26,0,5 +1,2000,9,27,0,5 +1,2000,9,28,0,5 +1,2000,9,29,0,5 +1,2000,9,30,1,1 +1,2000,10,1,1,4 +1,2000,10,2,0,4 +1,2000,10,3,0,3 +1,2000,10,4,0,2 +1,2000,10,5,0,2 +1,2000,10,6,0,7 +1,2000,10,7,1,7 +1,2000,10,8,1,6 +1,2000,10,9,0,7 +1,2000,10,10,0,1 +1,2000,10,11,0,1 +1,2000,10,12,0,1 +1,2000,10,13,0,5 +1,2000,10,14,1,5 +1,2000,10,15,1,5 +1,2000,10,16,0,5 +1,2000,10,17,0,6 +1,2000,10,18,0,7 +1,2000,10,19,0,6 +1,2000,10,20,0,1 +1,2000,10,21,1,1 +1,2000,10,22,1,1 +1,2000,10,23,0,5 +1,2000,10,24,0,5 +1,2000,10,25,0,5 +1,2000,10,26,0,1 +1,2000,10,27,0,1 +1,2000,10,28,1,1 +1,2000,10,29,1,1 +1,2000,10,30,0,5 +1,2000,10,31,0,5 +1,2000,11,1,0,5 +1,2000,11,2,0,5 +1,2000,11,3,0,6 +1,2000,11,4,1,5 +1,2000,11,5,1,1 +1,2000,11,6,0,1 +1,2000,11,9,0,1 +1,2000,11,10,0,2 +1,2000,11,11,1,3 +1,2000,11,12,1,4 +1,2000,11,13,0,3 +1,2000,11,14,0,3 +1,2000,11,15,0,2 +1,2000,11,16,0,3 +1,2000,11,17,0,3 +1,2000,11,18,1,3 +1,2000,11,19,1,3 +1,2000,11,20,0,8 +1,2000,11,21,0,8 +1,2000,11,22,0,3 +1,2000,11,23,0,3 +1,2000,11,24,0,7 +1,2000,11,25,1,2 +1,2000,11,26,1,1 +1,2000,11,27,0,5 +1,2000,11,28,0,2 +1,2000,11,29,0,2 +1,2000,11,30,0,1 +1,2000,12,1,0,1 +1,2000,12,2,1,1 +1,2000,12,3,1,1 +1,2000,12,4,0,1 +1,2000,12,5,0,1 +1,2000,12,6,0,1 +1,2000,12,7,0,5 +1,2000,12,8,0,6 +1,2000,12,9,1,5 +1,2000,12,10,1,6 +1,2000,12,11,0,7 +1,2000,12,12,0,8 +1,2000,12,13,0,7 +1,2000,12,14,0,6 +1,2000,12,15,0,5 +1,2000,12,16,1,2 +1,2000,12,17,1,1 +1,2000,12,18,0,2 +1,2000,12,19,0,1 +1,2000,12,20,0,1 +1,2000,12,21,0,2 +1,2000,12,22,0,6 +1,2000,12,23,1,1 +1,2000,12,24,1,1 +1,2000,12,25,0,2 +1,2000,12,26,0,2 +1,2000,12,27,0,1 +1,2000,12,28,0,1 +1,2000,12,29,0,2 +1,2000,12,30,1,1 +1,2000,12,31,1,1 +1,2001,1,1,0,5 +1,2001,1,2,0,5 +1,2001,1,3,0,5 +1,2001,1,4,0,5 +1,2001,1,5,0,5 +1,2001,1,6,1,1 +1,2001,1,7,1,2 +1,2001,1,8,0,2 +1,2001,1,9,0,2 +1,2001,1,10,0,1 +1,2001,1,11,0,1 +1,2001,1,12,0,1 +1,2001,1,13,1,1 +1,2001,1,14,1,5 +1,2001,1,15,0,6 +1,2001,1,16,0,7 +1,2001,1,17,0,7 +1,2001,1,18,0,6 +1,2001,1,19,0,6 +1,2001,1,20,1,5 +1,2001,1,21,1,6 +1,2001,1,22,0,5 +1,2001,1,23,0,2 +1,2001,1,24,0,2 +1,2001,1,25,0,2 +1,2001,1,26,0,2 +1,2001,1,27,1,3 +1,2001,1,28,1,3 +1,2001,1,29,0,2 +1,2001,1,30,0,5 +1,2001,1,31,0,6 +1,2001,2,1,0,3 +1,2001,2,2,0,1 +1,2001,2,3,1,6 +1,2001,2,4,1,5 +1,2001,2,5,0,5 +1,2001,2,6,0,6 +1,2001,2,7,0,3 +1,2001,2,8,0,4 +1,2001,2,9,0,4 +1,2001,2,10,1,3 +1,2001,2,11,1,3 +1,2001,2,12,0,3 +1,2001,2,13,0,3 +1,2001,2,14,0,4 +1,2001,2,15,0,2 +1,2001,2,16,0,8 +1,2001,2,17,1,8 +1,2001,2,18,1,6 +1,2001,2,19,0,1 +1,2001,2,20,0,5 +1,2001,2,21,0,5 +1,2001,2,22,0,5 +1,2001,2,23,0,1 +1,2001,2,24,1,1 +1,2001,2,25,1,1 +1,2001,2,26,0,7 +1,2001,2,27,0,7 +1,2001,2,28,0,3 +1,2001,3,1,0,7 +1,2001,3,2,0,5 +1,2001,3,3,1,6 +1,2001,3,4,1,7 +1,2001,3,5,0,3 +1,2001,3,6,0,2 +1,2001,3,7,0,3 +1,2001,3,8,0,2 +1,2001,3,9,0,6 +1,2001,3,10,1,5 +1,2001,3,11,1,5 +1,2001,3,12,0,1 +1,2001,3,13,0,1 +1,2001,3,14,0,1 +1,2001,3,15,0,7 +1,2001,3,16,0,6 +1,2001,3,17,1,6 +1,2001,3,18,1,3 +1,2001,3,19,0,2 +1,2001,3,20,0,2 +1,2001,3,21,0,2 +1,2001,3,22,0,1 +1,2001,3,23,0,2 +1,2001,3,24,1,3 +1,2001,3,25,1,2 +1,2001,3,26,0,1 +1,2001,3,27,0,1 +1,2001,3,28,0,1 +1,2001,3,29,0,1 +1,2001,3,30,0,1 +1,2001,3,31,1,2 +1,2001,4,1,1,1 +1,2001,4,2,0,1 +1,2001,4,3,0,1 +1,2001,4,4,0,5 +1,2001,4,5,0,5 +1,2001,4,6,0,5 +1,2001,4,7,1,5 +1,2001,4,8,1,5 +1,2001,4,9,0,5 +1,2001,4,10,0,5 +1,2001,4,11,0,5 +1,2001,4,12,0,5 +1,2001,4,13,0,5 +1,2001,4,14,1,5 +1,2001,4,15,1,6 +1,2001,4,16,0,7 +1,2001,4,17,0,7 +1,2001,4,18,0,2 +1,2001,4,19,0,1 +1,2001,4,20,0,1 +1,2001,4,21,1,5 +1,2001,4,22,1,5 +1,2001,4,23,0,7 +1,2001,4,24,0,8 +1,2001,4,25,0,4 +1,2001,4,26,0,4 +1,2001,4,27,0,3 +1,2001,4,28,1,2 +1,2001,4,29,1,1 +1,2001,4,30,0,2 +1,2001,5,1,0,5 +1,2001,5,2,0,5 +1,2001,5,3,0,2 +1,2001,5,4,0,2 +1,2001,5,5,1,2 +1,2001,5,6,1,2 +1,2001,5,7,0,3 +1,2001,5,8,0,8 +1,2001,5,9,0,7 +1,2001,5,10,0,6 +1,2001,5,11,0,7 +1,2001,5,12,1,7 +1,2001,5,13,1,6 +1,2001,5,14,0,6 +1,2001,5,15,0,6 +1,2001,5,16,0,5 +1,2001,5,17,0,6 +1,2001,5,18,0,6 +1,2001,5,19,1,7 +1,2001,5,20,1,6 +1,2001,5,21,0,8 +1,2001,5,22,0,8 +1,2001,5,23,0,8 +1,2001,5,24,0,8 +1,2001,5,25,0,8 +1,2001,5,26,1,7 +1,2001,5,27,1,6 +1,2001,5,28,0,5 +1,2001,5,29,0,5 +1,2001,5,30,0,7 +1,2001,5,31,0,8 +1,2001,6,1,0,7 +1,2001,6,2,1,1 +1,2001,6,3,1,1 +1,2001,6,4,0,1 +1,2001,6,5,0,5 +1,2001,6,6,0,5 +1,2001,6,7,0,6 +1,2001,6,8,0,8 +1,2001,6,9,1,3 +1,2001,6,10,1,2 +1,2001,6,11,0,1 +1,2001,6,12,0,1 +1,2001,6,13,0,1 +1,2001,6,14,0,5 +1,2001,6,15,0,5 +1,2001,6,16,1,6 +1,2001,6,17,1,3 +1,2001,6,18,0,3 +1,2001,6,19,0,8 +1,2001,6,20,0,8 +1,2001,6,21,0,8 +1,2001,6,22,0,8 +1,2001,6,23,1,4 +1,2001,6,24,1,3 +1,2001,6,25,0,2 +1,2001,6,26,0,5 +1,2001,6,27,0,6 +1,2001,6,28,0,6 +1,2001,6,29,0,7 +1,2001,6,30,1,8 +1,2001,7,1,1,6 +1,2001,7,2,0,7 +1,2001,7,3,0,8 +1,2001,7,4,0,8 +1,2001,7,5,0,6 +1,2001,7,6,0,5 +1,2001,7,7,1,5 +1,2001,7,8,1,6 +1,2001,7,9,0,2 +1,2001,7,10,0,1 +1,2001,7,11,0,1 +1,2001,7,12,0,1 +1,2001,7,13,0,2 +1,2001,7,14,1,5 +1,2001,7,15,1,1 +1,2001,7,16,0,1 +1,2001,7,17,0,1 +1,2001,7,18,0,1 +1,2001,7,19,0,1 +1,2001,7,20,0,1 +1,2001,7,21,1,1 +1,2001,7,22,1,5 +1,2001,7,23,0,1 +1,2001,7,24,0,1 +1,2001,7,25,0,5 +1,2001,7,26,0,5 +1,2001,7,27,0,6 +1,2001,7,28,1,6 +1,2001,7,29,1,5 +1,2001,7,30,0,1 +1,2001,7,31,0,5 +1,2001,8,1,0,1 +1,2001,8,2,0,2 +1,2001,8,3,0,1 +1,2001,8,4,1,1 +1,2001,8,5,1,1 +1,2001,8,6,0,3 +1,2001,8,7,0,3 +1,2001,8,8,0,7 +1,2001,8,9,0,3 +1,2001,8,11,1,2 +1,2001,8,12,1,2 +1,2001,8,13,0,2 +1,2001,8,14,0,1 +1,2001,8,15,0,2 +1,2001,8,16,0,2 +1,2001,8,17,0,3 +1,2001,8,18,1,7 +1,2001,8,19,1,6 +1,2001,8,20,0,5 +1,2001,8,21,0,5 +1,2001,8,22,0,1 +1,2001,8,23,0,1 +1,2001,8,24,0,5 +1,2001,8,25,1,6 +1,2001,8,26,1,7 +1,2001,8,27,0,7 +1,2001,8,28,0,7 +1,2001,8,29,0,6 +1,2001,8,30,0,1 +1,2001,8,31,0,1 +1,2001,9,1,1,2 +1,2001,9,2,1,2 +1,2001,9,3,0,2 +1,2001,9,4,0,3 +1,2001,9,5,0,2 +1,2001,9,6,0,1 +1,2001,9,7,0,1 +1,2001,9,8,1,5 +1,2001,9,9,1,5 +1,2001,9,10,0,5 +1,2001,9,11,0,2 +1,2001,9,12,0,2 +1,2001,9,13,0,2 +1,2001,9,14,0,2 +1,2001,9,15,1,2 +1,2001,9,16,1,2 +1,2001,9,17,0,1 +1,2001,9,18,0,5 +1,2001,9,19,0,1 +1,2001,9,20,0,5 +1,2001,9,21,0,5 +1,2001,9,22,1,6 +1,2001,9,23,1,6 +1,2001,9,24,0,6 +1,2001,9,25,0,2 +1,2001,9,26,0,1 +1,2001,9,27,0,1 +1,2001,9,28,0,1 +1,2001,9,29,1,5 +1,2001,9,30,1,6 +1,2001,10,1,0,4 +1,2001,10,2,0,4 +1,2001,10,3,0,4 +1,2001,10,4,0,3 +1,2001,10,5,0,2 +1,2001,10,6,1,2 +1,2001,10,7,1,1 +1,2001,10,8,0,1 +1,2001,10,9,0,1 +1,2001,10,10,0,5 +1,2001,10,11,0,1 +1,2001,10,12,0,1 +1,2001,10,13,1,1 +1,2001,10,14,1,2 +1,2001,10,15,0,7 +1,2001,10,16,0,7 +1,2001,10,17,0,6 +1,2001,10,18,0,6 +1,2001,10,19,0,1 +1,2001,10,20,1,1 +1,2001,10,21,1,1 +1,2001,10,22,0,1 +1,2001,10,23,0,1 +1,2001,10,24,0,1 +1,2001,10,25,0,5 +1,2001,10,26,0,5 +1,2001,10,27,1,6 +1,2001,10,28,1,1 +1,2001,10,29,0,5 +1,2001,10,30,0,5 +1,2001,10,31,0,1 +1,2001,11,1,0,1 +1,2001,11,2,0,5 +1,2001,11,3,1,5 +1,2001,11,4,1,5 +1,2001,11,5,0,5 +1,2001,11,6,0,1 +1,2001,11,7,0,6 +1,2001,11,8,0,8 +1,2001,11,9,0,7 +1,2001,11,10,1,6 +1,2001,11,11,1,5 +1,2001,11,12,0,5 +1,2001,11,13,0,1 +1,2001,11,14,0,5 +1,2001,11,15,0,5 +1,2001,11,16,0,5 +1,2001,11,17,1,5 +1,2001,11,18,1,7 +1,2001,11,19,0,6 +1,2001,11,20,0,5 +1,2001,11,21,0,1 +1,2001,11,22,0,1 +1,2001,11,23,0,1 +1,2001,11,24,1,1 +1,2001,11,25,1,1 +1,2001,11,26,0,2 +1,2001,11,27,0,3 +1,2001,11,28,0,2 +1,2001,11,29,0,1 +1,2001,11,30,0,1 +1,2001,12,1,1,5 +1,2001,12,2,1,5 +1,2001,12,3,0,5 +1,2001,12,4,0,6 +1,2001,12,5,0,1 +1,2001,12,6,0,1 +1,2001,12,7,0,1 +1,2001,12,8,1,1 +1,2001,12,9,1,1 +1,2001,12,10,0,6 +1,2001,12,11,0,6 +1,2001,12,12,0,1 +1,2001,12,13,0,1 +1,2001,12,14,0,5 +1,2001,12,15,1,6 +1,2001,12,16,1,1 +1,2001,12,17,0,1 +1,2001,12,18,0,1 +1,2001,12,19,0,1 +1,2001,12,20,0,6 +1,2001,12,21,0,6 +1,2001,12,22,1,6 +1,2001,12,23,1,1 +1,2001,12,24,0,2 +1,2001,12,25,0,2 +1,2001,12,26,0,2 +1,2001,12,27,0,6 +1,2001,12,28,0,6 +1,2001,12,29,1,6 +1,2001,12,30,1,6 +1,2001,12,31,0,6 +1,2002,1,1,0,1 +1,2002,1,2,0,1 +1,2002,1,3,0,1 +1,2002,1,4,0,1 +1,2002,1,5,1,5 +1,2002,1,6,1,5 +1,2002,1,7,0,5 +1,2002,1,8,0,1 +1,2002,1,9,0,1 +1,2002,1,10,0,1 +1,2002,1,11,0,5 +1,2002,1,12,1,5 +1,2002,1,13,1,1 +1,2002,1,14,0,2 +1,2002,1,15,0,3 +1,2002,1,16,0,3 +1,2002,1,17,0,6 +1,2002,1,18,0,6 +1,2002,1,19,1,6 +1,2002,1,20,1,5 +1,2002,1,21,0,1 +1,2002,1,22,0,2 +1,2002,1,23,0,6 +1,2002,1,24,0,5 +1,2002,1,25,0,5 +1,2002,1,26,1,1 +1,2002,1,27,1,2 +1,2002,1,28,0,3 +1,2002,1,29,0,4 +1,2002,1,30,0,7 +1,2002,1,31,0,6 +1,2002,2,1,0,4 +1,2002,2,2,1,3 +1,2002,2,3,1,3 +1,2002,2,4,0,3 +1,2002,2,5,0,7 +1,2002,2,6,0,2 +1,2002,2,7,0,1 +1,2002,2,8,0,1 +1,2002,2,9,1,7 +1,2002,2,11,0,6 +1,2002,2,12,0,7 +1,2002,2,13,0,7 +1,2002,2,14,0,5 +1,2002,2,15,0,6 +1,2002,2,16,1,6 +1,2002,2,17,1,1 +1,2002,2,18,0,1 +1,2002,2,19,0,1 +1,2002,2,20,0,5 +1,2002,2,21,0,5 +1,2002,2,22,0,5 +1,2002,2,23,1,5 +1,2002,2,24,1,5 +1,2002,2,25,0,8 +1,2002,2,26,0,8 +1,2002,2,27,0,7 +1,2002,2,28,0,6 +1,2002,3,1,0,6 +1,2002,3,2,1,8 +1,2002,3,3,1,8 +1,2002,3,4,0,4 +1,2002,3,5,0,2 +1,2002,3,6,0,6 +1,2002,3,7,0,5 +1,2002,3,8,0,5 +1,2002,3,9,1,8 +1,2002,3,10,1,3 +1,2002,3,11,0,1 +1,2002,3,12,0,1 +1,2002,3,13,0,5 +1,2002,3,14,0,5 +1,2002,3,15,0,6 +1,2002,3,16,1,6 +1,2002,3,17,1,6 +1,2002,3,18,0,6 +1,2002,3,19,0,7 +1,2002,3,20,0,7 +1,2002,3,21,0,8 +1,2002,3,22,0,8 +1,2002,3,23,1,5 +1,2002,3,24,1,5 +1,2002,3,25,0,7 +1,2002,3,26,0,2 +1,2002,3,27,0,1 +1,2002,3,28,0,1 +1,2002,3,29,0,1 +1,2002,3,30,1,1 +1,2002,3,31,1,1 +1,2002,4,1,0,2 +1,2002,4,2,0,7 +1,2002,4,3,0,7 +1,2002,4,4,0,7 +1,2002,4,5,0,2 +1,2002,4,6,1,1 +1,2002,4,7,1,1 +1,2002,4,8,0,2 +1,2002,4,9,0,2 +1,2002,4,10,0,2 +1,2002,4,11,0,2 +1,2002,4,12,0,3 +1,2002,4,13,1,4 +1,2002,4,14,1,3 +1,2002,4,15,0,1 +1,2002,4,16,0,1 +1,2002,4,17,0,1 +1,2002,4,18,0,5 +1,2002,4,19,0,5 +1,2002,4,20,1,5 +1,2002,4,21,1,6 +1,2002,4,22,0,7 +1,2002,4,23,0,2 +1,2002,4,24,0,2 +1,2002,4,25,0,7 +1,2002,4,26,0,1 +1,2002,4,27,1,1 +1,2002,4,28,1,5 +1,2002,4,29,0,6 +1,2002,4,30,0,1 +1,2002,5,1,0,1 +1,2002,5,2,0,1 +1,2002,5,3,0,1 +1,2002,5,4,1,1 +1,2002,5,5,1,1 +1,2002,5,6,0,1 +1,2002,5,7,0,1 +1,2002,5,8,0,1 +1,2002,5,9,0,1 +1,2002,5,10,0,1 +1,2002,5,11,1,1 +1,2002,5,12,1,3 +1,2002,5,13,0,3 +1,2002,5,14,0,6 +1,2002,5,15,0,5 +1,2002,5,16,0,5 +1,2002,5,17,0,6 +1,2002,5,18,1,6 +1,2002,5,19,1,5 +1,2002,5,20,0,5 +1,2002,5,21,0,1 +1,2002,5,22,0,1 +1,2002,5,23,0,1 +1,2002,5,24,0,2 +1,2002,5,25,1,2 +1,2002,5,26,1,6 +1,2002,5,27,0,6 +1,2002,5,28,0,6 +1,2002,5,29,0,7 +1,2002,5,30,0,7 +1,2002,5,31,0,7 +1,2002,6,1,1,1 +1,2002,6,2,1,1 +1,2002,6,3,0,5 +1,2002,6,4,0,5 +1,2002,6,5,0,6 +1,2002,6,6,0,3 +1,2002,6,7,0,2 +1,2002,6,8,1,1 +1,2002,6,9,1,1 +1,2002,6,10,0,1 +1,2002,6,11,0,5 +1,2002,6,12,0,5 +1,2002,6,13,0,6 +1,2002,6,14,0,6 +1,2002,6,15,1,6 +1,2002,6,16,1,6 +1,2002,6,17,0,3 +1,2002,6,18,0,2 +1,2002,6,19,0,2 +1,2002,6,20,0,7 +1,2002,6,21,0,6 +1,2002,6,22,1,5 +1,2002,6,23,1,6 +1,2002,6,24,0,7 +1,2002,6,25,0,8 +1,2002,6,26,0,8 +1,2002,6,27,0,7 +1,2002,6,28,0,3 +1,2002,6,29,1,3 +1,2002,6,30,1,4 +1,2002,7,1,0,5 +1,2002,7,2,0,5 +1,2002,7,3,0,5 +1,2002,7,4,0,5 +1,2002,7,5,0,5 +1,2002,7,6,1,1 +1,2002,7,7,1,2 +1,2002,7,8,0,1 +1,2002,7,9,0,7 +1,2002,7,10,0,4 +1,2002,7,11,0,8 +1,2002,7,12,0,8 +1,2002,7,13,1,8 +1,2002,7,14,1,6 +1,2002,7,15,0,5 +1,2002,7,16,0,1 +1,2002,7,17,0,2 +1,2002,7,18,0,1 +1,2002,7,19,0,6 +1,2002,7,20,1,6 +1,2002,7,21,1,2 +1,2002,7,22,0,2 +1,2002,7,23,0,3 +1,2002,7,24,0,2 +1,2002,7,25,0,2 +1,2002,7,26,0,1 +1,2002,7,27,1,5 +1,2002,7,28,1,5 +1,2002,7,29,0,1 +1,2002,7,30,0,6 +1,2002,7,31,0,5 +1,2002,8,1,0,1 +1,2002,8,2,0,5 +1,2002,8,3,1,1 +1,2002,8,4,1,1 +1,2002,8,5,0,1 +1,2002,8,6,0,1 +1,2002,8,7,0,1 +1,2002,8,8,0,1 +1,2002,8,9,0,3 +1,2002,8,10,1,3 +1,2002,8,11,1,6 +1,2002,8,12,0,7 +1,2002,8,13,0,8 +1,2002,8,14,0,7 +1,2002,8,15,0,5 +1,2002,8,16,0,5 +1,2002,8,17,1,6 +1,2002,8,18,1,5 +1,2002,8,19,0,5 +1,2002,8,20,0,5 +1,2002,8,21,0,5 +1,2002,8,22,0,1 +1,2002,8,23,0,1 +1,2002,8,24,1,1 +1,2002,8,25,1,1 +1,2002,8,26,0,1 +1,2002,8,27,0,6 +1,2002,8,28,0,3 +1,2002,8,29,0,1 +1,2002,8,30,0,5 +1,2002,8,31,1,1 +1,2002,9,1,1,4 +1,2002,9,2,0,4 +1,2002,9,3,0,3 +1,2002,9,4,0,2 +1,2002,9,5,0,1 +1,2002,9,6,0,1 +1,2002,9,7,1,1 +1,2002,9,8,1,1 +1,2002,9,9,0,5 +1,2002,9,10,0,6 +1,2002,9,11,0,6 +1,2002,9,12,0,6 +1,2002,9,13,0,2 +1,2002,9,14,1,6 +1,2002,9,15,1,6 +1,2002,9,16,0,1 +1,2002,9,17,0,1 +1,2002,9,18,0,1 +1,2002,9,19,0,5 +1,2002,9,20,0,5 +1,2002,9,21,1,5 +1,2002,9,22,1,6 +1,2002,9,23,0,6 +1,2002,9,24,0,6 +1,2002,9,25,0,2 +1,2002,9,26,0,1 +1,2002,9,27,0,1 +1,2002,9,28,1,1 +1,2002,9,29,1,1 +1,2002,9,30,0,5 +1,2002,10,1,0,1 +1,2002,10,2,0,1 +1,2002,10,3,0,1 +1,2002,10,4,0,5 +1,2002,10,5,1,6 +1,2002,10,6,1,7 +1,2002,10,7,0,8 +1,2002,10,8,0,3 +1,2002,10,9,0,3 +1,2002,10,10,0,2 +1,2002,10,11,0,1 +1,2002,10,12,1,6 +1,2002,10,13,1,6 +1,2002,10,14,0,6 +1,2002,10,15,0,6 +1,2002,10,16,0,1 +1,2002,10,17,0,1 +1,2002,10,18,0,1 +1,2002,10,19,1,5 +1,2002,10,20,1,6 +1,2002,10,21,0,1 +1,2002,10,22,0,1 +1,2002,10,23,0,5 +1,2002,10,24,0,5 +1,2002,10,25,0,5 +1,2002,10,26,1,5 +1,2002,10,27,1,5 +1,2002,10,28,0,5 +1,2002,10,29,0,5 +1,2002,10,30,0,5 +1,2002,10,31,0,5 +1,2002,11,1,0,4 +1,2002,11,2,1,3 +1,2002,11,3,1,3 +1,2002,11,4,0,2 +1,2002,11,5,0,2 +1,2002,11,6,0,6 +1,2002,11,7,0,1 +1,2002,11,8,0,1 +1,2002,11,9,1,1 +1,2002,11,10,1,1 +1,2002,11,11,0,5 +1,2002,11,12,0,6 +1,2002,11,13,0,5 +1,2002,11,14,0,5 +1,2002,11,15,0,7 +1,2002,11,16,1,6 +1,2002,11,17,1,5 +1,2002,11,18,0,6 +1,2002,11,19,0,5 +1,2002,11,20,0,5 +1,2002,11,21,0,5 +1,2002,11,22,0,5 +1,2002,11,23,1,5 +1,2002,11,24,1,8 +1,2002,11,25,0,3 +1,2002,11,26,0,4 +1,2002,11,27,0,8 +1,2002,11,28,0,7 +1,2002,11,29,0,7 +1,2002,11,30,1,8 +1,2002,12,1,1,5 +1,2002,12,2,0,5 +1,2002,12,3,0,6 +1,2002,12,4,0,6 +1,2002,12,5,0,1 +1,2002,12,6,0,5 +1,2002,12,7,1,6 +1,2002,12,8,1,1 +1,2002,12,9,0,1 +1,2002,12,10,0,5 +1,2002,12,11,0,5 +1,2002,12,12,0,1 +1,2002,12,13,0,1 +1,2002,12,14,1,5 +1,2002,12,15,1,5 +1,2002,12,16,0,5 +1,2002,12,17,0,5 +1,2002,12,18,0,6 +1,2002,12,19,0,1 +1,2002,12,20,0,6 +1,2002,12,21,1,6 +1,2002,12,22,1,7 +1,2002,12,23,0,2 +1,2002,12,24,0,2 +1,2002,12,25,0,2 +1,2002,12,26,0,1 +1,2002,12,27,0,1 +1,2002,12,28,1,5 +1,2002,12,29,1,5 +1,2002,12,30,0,1 +1,2002,12,31,0,1 +1,2003,1,1,0,1 +1,2003,1,2,0,5 +1,2003,1,3,0,5 +1,2003,1,4,1,1 +1,2003,1,5,1,1 +1,2003,1,6,0,1 +1,2003,1,7,0,1 +1,2003,1,8,0,1 +1,2003,1,9,0,1 +1,2003,1,10,0,2 +1,2003,1,11,1,2 +1,2003,1,12,1,1 +1,2003,1,13,0,1 +1,2003,1,14,0,1 +1,2003,1,15,0,1 +1,2003,1,16,0,5 +1,2003,1,17,0,5 +1,2003,1,18,1,2 +1,2003,1,19,1,1 +1,2003,1,20,0,1 +1,2003,1,21,0,1 +1,2003,1,22,0,1 +1,2003,1,23,0,1 +1,2003,1,24,0,1 +1,2003,1,25,1,1 +1,2003,1,26,1,1 +1,2003,1,27,0,1 +1,2003,1,28,0,1 +1,2003,1,29,0,1 +1,2003,1,30,0,1 +1,2003,1,31,0,1 +1,2003,2,1,1,5 +1,2003,2,2,1,1 +1,2003,2,3,0,1 +1,2003,2,4,0,2 +1,2003,2,5,0,3 +1,2003,2,6,0,4 +1,2003,2,7,0,8 +1,2003,2,8,1,4 +1,2003,2,9,1,3 +1,2003,2,10,0,2 +1,2003,2,11,0,2 +1,2003,2,12,0,6 +1,2003,2,13,0,5 +1,2003,2,14,0,5 +1,2003,2,15,1,5 +1,2003,2,16,1,5 +1,2003,2,17,0,1 +1,2003,2,18,0,5 +1,2003,2,19,0,5 +1,2003,2,20,0,1 +1,2003,2,21,0,5 +1,2003,2,22,1,5 +1,2003,2,23,1,7 +1,2003,2,24,0,8 +1,2003,2,25,0,8 +1,2003,2,26,0,3 +1,2003,2,27,0,2 +1,2003,2,28,0,2 +1,2003,3,1,1,7 +1,2003,3,2,1,7 +1,2003,3,3,0,6 +1,2003,3,4,0,5 +1,2003,3,5,0,5 +1,2003,3,6,0,5 +1,2003,3,7,0,5 +1,2003,3,8,1,6 +1,2003,3,9,1,3 +1,2003,3,10,0,1 +1,2003,3,11,0,1 +1,2003,3,12,0,1 +1,2003,3,13,0,1 +1,2003,3,14,0,1 +1,2003,3,15,1,1 +1,2003,3,16,1,1 +1,2003,3,17,0,5 +1,2003,3,18,0,5 +1,2003,3,19,0,6 +1,2003,3,20,0,2 +1,2003,3,21,0,1 +1,2003,3,22,1,1 +1,2003,3,23,1,1 +1,2003,3,24,0,5 +1,2003,3,25,0,2 +1,2003,3,26,0,1 +1,2003,3,27,0,5 +1,2003,3,28,0,7 +1,2003,3,29,1,4 +1,2003,3,30,1,4 +1,2003,3,31,0,1 +1,2003,4,1,0,1 +1,2003,4,2,0,1 +1,2003,4,3,0,5 +1,2003,4,4,0,5 +1,2003,4,5,1,5 +1,2003,4,6,1,5 +1,2003,4,7,0,6 +1,2003,4,8,0,8 +1,2003,4,9,0,7 +1,2003,4,10,0,2 +1,2003,4,11,0,2 +1,2003,4,12,1,2 +1,2003,4,13,1,1 +1,2003,4,14,0,1 +1,2003,4,15,0,5 +1,2003,4,16,0,5 +1,2003,4,17,0,1 +1,2003,4,18,0,1 +1,2003,4,19,1,5 +1,2003,4,20,1,7 +1,2003,4,21,0,1 +1,2003,4,22,0,1 +1,2003,4,23,0,1 +1,2003,4,24,0,1 +1,2003,4,25,0,1 +1,2003,4,26,1,1 +1,2003,4,27,1,1 +1,2003,4,28,0,1 +1,2003,4,29,0,1 +1,2003,4,30,0,1 +1,2003,5,1,0,1 +1,2003,5,2,0,1 +1,2003,5,3,1,1 +1,2003,5,4,1,1 +1,2003,5,5,0,1 +1,2003,5,6,0,1 +1,2003,5,7,0,1 +1,2003,5,8,0,1 +1,2003,5,9,0,1 +1,2003,5,10,1,1 +1,2003,5,11,1,2 +1,2003,5,12,0,2 +1,2003,5,13,0,6 +1,2003,5,14,0,6 +1,2003,5,15,0,5 +1,2003,5,16,0,5 +1,2003,5,17,1,5 +1,2003,5,18,1,5 +1,2003,5,19,0,2 +1,2003,5,20,0,3 +1,2003,5,21,0,8 +1,2003,5,22,0,8 +1,2003,5,23,0,8 +1,2003,5,24,1,7 +1,2003,5,25,1,6 +1,2003,5,26,0,6 +1,2003,5,27,0,8 +1,2003,5,28,0,8 +1,2003,5,29,0,8 +1,2003,5,30,0,6 +1,2003,5,31,1,6 +1,2003,6,1,1,6 +1,2003,6,2,0,6 +1,2003,6,3,0,6 +1,2003,6,4,0,6 +1,2003,6,5,0,6 +1,2003,6,6,0,6 +1,2003,6,7,1,6 +1,2003,6,8,1,6 +1,2003,6,9,0,2 +1,2003,6,10,0,5 +1,2003,6,11,0,1 +1,2003,6,12,0,1 +1,2003,6,13,0,5 +1,2003,6,14,1,5 +1,2003,6,15,1,6 +1,2003,6,16,0,8 +1,2003,6,17,0,8 +1,2003,6,18,0,7 +1,2003,6,19,0,2 +1,2003,6,20,0,1 +1,2003,6,21,1,1 +1,2003,6,22,1,1 +1,2003,6,23,0,1 +1,2003,6,24,0,1 +1,2003,6,25,0,6 +1,2003,6,26,0,8 +1,2003,6,27,0,8 +1,2003,6,28,1,8 +1,2003,6,29,1,8 +1,2003,6,30,0,8 +1,2003,7,1,0,5 +1,2003,7,2,0,5 +1,2003,7,3,0,5 +1,2003,7,4,0,5 +1,2003,7,5,1,5 +1,2003,7,6,1,5 +1,2003,7,7,0,1 +1,2003,7,8,0,5 +1,2003,7,9,0,6 +1,2003,7,10,0,3 +1,2003,7,11,0,8 +1,2003,7,12,1,8 +1,2003,7,13,1,6 +1,2003,7,14,0,6 +1,2003,7,15,0,8 +1,2003,7,16,0,7 +1,2003,7,17,0,8 +1,2003,7,18,0,8 +1,2003,7,19,1,8 +1,2003,7,20,1,8 +1,2003,7,21,0,8 +1,2003,7,22,0,8 +1,2003,7,23,0,8 +1,2003,7,24,0,7 +1,2003,7,25,0,6 +1,2003,7,26,1,7 +1,2003,7,27,1,8 +1,2003,7,28,0,4 +1,2003,7,29,0,4 +1,2003,7,30,0,4 +1,2003,7,31,0,3 +1,2003,8,1,0,2 +1,2003,8,2,1,1 +1,2003,8,3,1,1 +1,2003,8,4,0,1 +1,2003,8,5,0,1 +1,2003,8,6,0,1 +1,2003,8,7,0,1 +1,2003,8,8,0,1 +1,2003,8,9,1,2 +1,2003,8,10,1,2 +1,2003,8,11,0,2 +1,2003,8,12,0,6 +1,2003,8,13,0,2 +1,2003,8,14,0,3 +1,2003,8,15,0,2 +1,2003,8,16,1,2 +1,2003,8,17,1,7 +1,2003,8,18,0,7 +1,2003,8,19,0,1 +1,2003,8,20,0,6 +1,2003,8,21,0,2 +1,2003,8,22,0,1 +1,2003,8,23,1,5 +1,2003,8,24,1,7 +1,2003,8,25,0,3 +1,2003,8,26,0,7 +1,2003,8,27,0,5 +1,2003,8,28,0,5 +1,2003,8,29,0,2 +1,2003,8,30,1,3 +1,2003,8,31,1,3 +1,2003,9,1,0,4 +1,2003,9,2,0,4 +1,2003,9,3,0,4 +1,2003,9,4,0,4 +1,2003,9,5,0,4 +1,2003,9,6,1,3 +1,2003,9,7,1,2 +1,2003,9,8,0,1 +1,2003,9,9,0,1 +1,2003,9,10,0,1 +1,2003,9,11,0,5 +1,2003,9,12,0,5 +1,2003,9,13,1,5 +1,2003,9,14,1,6 +1,2003,9,15,0,5 +1,2003,9,16,0,1 +1,2003,9,17,0,1 +1,2003,9,18,0,5 +1,2003,9,19,0,5 +1,2003,9,20,1,5 +1,2003,9,21,1,5 +1,2003,9,22,0,6 +1,2003,9,23,0,2 +1,2003,9,24,0,5 +1,2003,9,25,0,5 +1,2003,9,26,0,2 +1,2003,9,27,1,6 +1,2003,9,28,1,7 +1,2003,9,29,0,5 +1,2003,9,30,0,6 +1,2003,10,3,0,3 +1,2003,10,4,1,3 +1,2003,10,5,1,3 +1,2003,10,6,0,4 +1,2003,10,7,0,4 +1,2003,10,8,0,3 +1,2003,10,9,0,3 +1,2003,10,10,0,2 +1,2003,10,11,1,1 +1,2003,10,12,1,2 +1,2003,10,13,0,2 +1,2003,10,14,0,6 +1,2003,10,15,0,1 +1,2003,10,16,0,2 +1,2003,10,17,0,8 +1,2003,10,18,1,8 +1,2003,10,19,1,4 +1,2003,10,20,0,8 +1,2003,10,21,0,8 +1,2003,10,22,0,8 +1,2003,10,23,0,3 +1,2003,10,24,0,7 +1,2003,10,25,1,6 +1,2003,10,26,1,6 +1,2003,10,27,0,6 +1,2003,10,28,0,2 +1,2003,10,29,0,1 +1,2003,10,30,0,1 +1,2003,10,31,0,5 +1,2003,11,1,1,3 +1,2003,11,2,1,2 +1,2003,11,3,0,2 +1,2003,11,4,0,2 +1,2003,11,5,0,3 +1,2003,11,6,0,3 +1,2003,11,7,0,3 +1,2003,11,8,1,2 +1,2003,11,9,1,1 +1,2003,11,10,0,1 +1,2003,11,11,0,5 +1,2003,11,12,0,6 +1,2003,11,13,0,7 +1,2003,11,14,0,1 +1,2003,11,15,1,1 +1,2003,11,16,1,1 +1,2003,11,17,0,1 +1,2003,11,18,0,5 +1,2003,11,19,0,5 +1,2003,11,20,0,1 +1,2003,11,21,0,2 +1,2003,11,22,1,3 +1,2003,11,23,1,4 +1,2003,11,24,0,1 +1,2003,11,25,0,1 +1,2003,11,26,0,1 +1,2003,11,27,0,8 +1,2003,11,28,0,7 +1,2003,11,29,1,5 +1,2003,11,30,1,5 +1,2003,12,1,0,5 +1,2003,12,2,0,5 +1,2003,12,3,0,5 +1,2003,12,4,0,6 +1,2003,12,5,0,5 +1,2003,12,6,1,5 +1,2003,12,7,1,5 +1,2003,12,8,0,5 +1,2003,12,9,0,1 +1,2003,12,10,0,6 +1,2003,12,11,0,6 +1,2003,12,12,0,1 +1,2003,12,13,1,1 +1,2003,12,14,1,5 +1,2003,12,15,0,1 +1,2003,12,16,0,1 +1,2003,12,17,0,1 +1,2003,12,18,0,1 +1,2003,12,19,0,1 +1,2003,12,20,1,5 +1,2003,12,21,1,5 +1,2003,12,22,0,5 +1,2003,12,23,0,5 +1,2003,12,24,0,5 +1,2003,12,25,0,5 +1,2003,12,26,0,6 +1,2003,12,27,1,2 +1,2003,12,28,1,2 +1,2003,12,29,0,2 +1,2003,12,30,0,7 +1,2003,12,31,0,6 +1,2004,1,1,0,2 +1,2004,1,2,0,2 +1,2004,1,3,1,3 +1,2004,1,4,1,4 +1,2004,1,5,0,8 +1,2004,1,6,0,8 +1,2004,1,7,0,4 +1,2004,1,8,0,2 +1,2004,1,9,0,2 +1,2004,1,10,1,1 +1,2004,1,11,1,1 +1,2004,1,12,0,1 +1,2004,1,13,0,1 +1,2004,1,14,0,1 +1,2004,1,15,0,1 +1,2004,1,16,0,1 +1,2004,1,17,1,1 +1,2004,1,18,1,1 +1,2004,1,19,0,1 +1,2004,1,20,0,1 +1,2004,1,21,0,2 +1,2004,1,22,0,6 +1,2004,1,23,0,5 +1,2004,1,24,1,1 +1,2004,1,25,1,1 +1,2004,1,26,0,6 +1,2004,1,27,0,5 +1,2004,1,28,0,1 +1,2004,1,29,0,1 +1,2004,1,30,0,1 +1,2004,1,31,1,1 +1,2004,2,1,1,3 +1,2004,2,2,0,3 +1,2004,2,3,0,2 +1,2004,2,4,0,2 +1,2004,2,5,0,3 +1,2004,2,6,0,7 +1,2004,2,7,1,2 +1,2004,2,8,1,2 +1,2004,2,9,0,3 +1,2004,2,10,0,7 +1,2004,2,11,0,8 +1,2004,2,12,0,8 +1,2004,2,13,0,4 +1,2004,2,14,1,2 +1,2004,2,15,1,6 +1,2004,2,16,0,5 +1,2004,2,17,0,5 +1,2004,2,18,0,5 +1,2004,2,19,0,1 +1,2004,2,20,0,5 +1,2004,2,21,1,1 +1,2004,2,22,1,1 +1,2004,2,23,0,5 +1,2004,2,24,0,5 +1,2004,2,25,0,1 +1,2004,2,26,0,1 +1,2004,2,27,0,1 +1,2004,2,28,1,1 +1,2004,2,29,1,1 +1,2004,3,1,0,7 +1,2004,3,2,0,7 +1,2004,3,3,0,7 +1,2004,3,4,0,5 +1,2004,3,5,0,6 +1,2004,3,6,1,2 +1,2004,3,7,1,4 +1,2004,3,8,0,4 +1,2004,3,9,0,3 +1,2004,3,10,0,1 +1,2004,3,11,0,3 +1,2004,3,12,0,2 +1,2004,3,13,1,1 +1,2004,3,14,1,3 +1,2004,3,15,0,2 +1,2004,3,16,0,1 +1,2004,3,17,0,1 +1,2004,3,18,0,1 +1,2004,3,19,0,1 +1,2004,3,20,1,3 +1,2004,3,21,1,4 +1,2004,3,22,0,2 +1,2004,3,23,0,1 +1,2004,3,24,0,1 +1,2004,3,25,0,1 +1,2004,3,26,0,1 +1,2004,3,27,1,1 +1,2004,3,28,1,2 +1,2004,3,29,0,3 +1,2004,3,30,0,1 +1,2004,3,31,0,1 +1,2004,4,1,0,1 +1,2004,4,2,0,5 +1,2004,4,3,1,6 +1,2004,4,4,1,6 +1,2004,4,5,0,6 +1,2004,4,6,0,1 +1,2004,4,7,0,2 +1,2004,4,8,0,2 +1,2004,4,9,0,7 +1,2004,4,10,1,7 +1,2004,4,11,1,7 +1,2004,4,12,0,7 +1,2004,4,13,0,2 +1,2004,4,14,0,1 +1,2004,4,15,0,1 +1,2004,4,16,0,1 +1,2004,4,17,1,1 +1,2004,4,18,1,5 +1,2004,4,19,0,6 +1,2004,4,20,0,1 +1,2004,4,21,0,1 +1,2004,4,22,0,1 +1,2004,4,23,0,6 +1,2004,4,24,1,7 +1,2004,4,25,1,4 +1,2004,4,26,0,8 +1,2004,4,27,0,4 +1,2004,4,28,0,2 +1,2004,4,29,0,1 +1,2004,4,30,0,7 +1,2004,5,1,1,3 +1,2004,5,2,1,4 +1,2004,5,3,0,8 +1,2004,5,4,0,7 +1,2004,5,5,0,6 +1,2004,5,6,0,6 +1,2004,5,7,0,6 +1,2004,5,8,1,6 +1,2004,5,9,1,6 +1,2004,5,10,0,5 +1,2004,5,11,0,5 +1,2004,5,12,0,1 +1,2004,5,13,0,2 +1,2004,5,14,0,3 +1,2004,5,15,1,6 +1,2004,5,16,1,5 +1,2004,5,17,0,5 +1,2004,5,18,0,6 +1,2004,5,19,0,5 +1,2004,5,20,0,6 +1,2004,5,21,0,5 +1,2004,5,22,1,5 +1,2004,5,23,1,5 +1,2004,5,24,0,5 +1,2004,5,25,0,2 +1,2004,5,26,0,5 +1,2004,5,27,0,5 +1,2004,5,28,0,5 +1,2004,5,29,1,5 +1,2004,5,30,1,6 +1,2004,5,31,0,6 +1,2004,6,1,0,6 +1,2004,6,2,0,6 +1,2004,6,3,0,7 +1,2004,6,4,0,7 +1,2004,6,5,1,6 +1,2004,6,6,1,2 +1,2004,6,7,0,1 +1,2004,6,8,0,1 +1,2004,6,9,0,5 +1,2004,6,10,0,5 +1,2004,6,11,0,1 +1,2004,6,12,1,5 +1,2004,6,13,1,5 +1,2004,6,14,0,2 +1,2004,6,15,0,3 +1,2004,6,16,0,6 +1,2004,6,17,0,6 +1,2004,6,18,0,6 +1,2004,6,19,1,6 +1,2004,6,20,1,6 +1,2004,6,21,0,6 +1,2004,6,22,0,6 +1,2004,6,23,0,6 +1,2004,6,24,0,6 +1,2004,6,25,0,7 +1,2004,6,26,1,8 +1,2004,6,27,1,8 +1,2004,6,28,0,8 +1,2004,6,29,0,6 +1,2004,6,30,0,6 +1,2004,7,1,0,1 +1,2004,7,2,0,1 +1,2004,7,3,1,1 +1,2004,7,4,1,5 +1,2004,7,5,0,6 +1,2004,7,6,0,2 +1,2004,7,7,0,5 +1,2004,7,8,0,5 +1,2004,7,9,0,1 +1,2004,7,10,1,1 +1,2004,7,11,1,5 +1,2004,7,12,0,6 +1,2004,7,13,0,2 +1,2004,7,14,0,2 +1,2004,7,15,0,2 +1,2004,7,16,0,2 +1,2004,7,17,1,3 +1,2004,7,18,1,3 +1,2004,7,19,0,2 +1,2004,7,20,0,7 +1,2004,7,21,0,7 +1,2004,7,22,0,3 +1,2004,7,23,0,4 +1,2004,7,24,1,4 +1,2004,7,25,1,4 +1,2004,7,26,0,8 +1,2004,7,27,0,2 +1,2004,7,28,0,2 +1,2004,7,29,0,2 +1,2004,7,30,0,1 +1,2004,7,31,1,1 +1,2004,8,1,1,1 +1,2004,8,2,0,1 +1,2004,8,3,0,1 +1,2004,8,4,0,1 +1,2004,8,5,0,1 +1,2004,8,6,0,1 +1,2004,8,7,1,5 +1,2004,8,8,1,3 +1,2004,8,9,0,4 +1,2004,8,10,0,4 +1,2004,8,11,0,4 +1,2004,8,12,0,4 +1,2004,8,13,0,3 +1,2004,8,14,1,2 +1,2004,8,15,1,2 +1,2004,8,16,0,2 +1,2004,8,17,0,2 +1,2004,8,18,0,2 +1,2004,8,19,0,3 +1,2004,8,20,0,2 +1,2004,8,21,1,1 +1,2004,8,22,1,1 +1,2004,8,23,0,5 +1,2004,8,24,0,5 +1,2004,8,25,0,5 +1,2004,8,26,0,5 +1,2004,8,27,0,1 +1,2004,8,28,1,3 +1,2004,8,29,1,3 +1,2004,8,30,0,2 +1,2004,8,31,0,3 +1,2004,9,1,0,4 +1,2004,9,2,0,2 +1,2004,9,3,0,1 +1,2004,9,4,1,1 +1,2004,9,5,1,5 +1,2004,9,6,0,6 +1,2004,9,7,0,7 +1,2004,9,8,0,4 +1,2004,9,9,0,3 +1,2004,9,10,0,2 +1,2004,9,11,1,3 +1,2004,9,12,1,2 +1,2004,9,13,0,1 +1,2004,9,14,0,1 +1,2004,9,15,0,1 +1,2004,9,16,0,1 +1,2004,9,17,0,1 +1,2004,9,18,1,1 +1,2004,9,19,1,1 +1,2004,9,20,0,1 +1,2004,9,21,0,5 +1,2004,9,22,0,5 +1,2004,9,23,0,5 +1,2004,9,24,0,5 +1,2004,9,25,1,5 +1,2004,9,26,1,5 +1,2004,9,27,0,5 +1,2004,9,28,0,5 +1,2004,9,29,0,5 +1,2004,9,30,0,5 +1,2004,10,1,0,2 +1,2004,10,2,1,7 +1,2004,10,3,1,8 +1,2004,10,4,0,7 +1,2004,10,5,0,3 +1,2004,10,6,0,4 +1,2004,10,7,0,3 +1,2004,10,8,0,8 +1,2004,10,9,1,3 +1,2004,10,10,1,2 +1,2004,10,11,0,6 +1,2004,10,12,0,7 +1,2004,10,13,0,7 +1,2004,10,14,0,7 +1,2004,10,15,0,2 +1,2004,10,16,1,1 +1,2004,10,17,1,1 +1,2004,10,18,0,1 +1,2004,10,19,0,1 +1,2004,10,20,0,1 +1,2004,10,21,0,1 +1,2004,10,22,0,1 +1,2004,10,23,1,1 +1,2004,10,24,1,1 +1,2004,10,25,0,1 +1,2004,10,26,0,1 +1,2004,10,27,0,1 +1,2004,10,28,0,1 +1,2004,10,29,0,5 +1,2004,10,30,1,5 +1,2004,10,31,1,5 +1,2004,11,1,0,8 +1,2004,11,2,0,6 +1,2004,11,3,0,5 +1,2004,11,4,0,7 +1,2004,11,5,0,6 +1,2004,11,6,1,5 +1,2004,11,7,1,5 +1,2004,11,8,0,5 +1,2004,11,9,0,5 +1,2004,11,10,0,5 +1,2004,11,11,0,7 +1,2004,11,12,0,7 +1,2004,11,13,1,6 +1,2004,11,14,1,7 +1,2004,11,15,0,5 +1,2004,11,16,0,5 +1,2004,11,17,0,6 +1,2004,11,18,0,6 +1,2004,11,19,0,6 +1,2004,11,20,1,3 +1,2004,11,21,1,3 +1,2004,11,22,0,1 +1,2004,11,23,0,1 +1,2004,11,24,0,5 +1,2004,11,25,0,5 +1,2004,11,26,0,1 +1,2004,11,27,1,2 +1,2004,11,28,1,2 +1,2004,11,29,0,4 +1,2004,11,30,0,8 +1,2004,12,1,0,2 +1,2004,12,2,0,2 +1,2004,12,3,0,1 +1,2004,12,4,1,1 +1,2004,12,5,1,6 +1,2004,12,6,0,6 +1,2004,12,7,0,5 +1,2004,12,8,0,5 +1,2004,12,9,0,5 +1,2004,12,10,0,1 +1,2004,12,11,1,5 +1,2004,12,12,1,5 +1,2004,12,13,0,6 +1,2004,12,14,0,1 +1,2004,12,15,0,1 +1,2004,12,16,0,1 +1,2004,12,17,0,1 +1,2004,12,18,1,1 +1,2004,12,19,1,1 +1,2004,12,20,0,1 +1,2004,12,21,0,6 +1,2004,12,22,0,1 +1,2004,12,23,0,3 +1,2004,12,24,0,2 +1,2004,12,25,1,1 +1,2004,12,26,1,1 +1,2004,12,27,0,6 +1,2004,12,28,0,6 +1,2004,12,29,0,5 +1,2004,12,30,0,5 +1,2004,12,31,0,6 +1,2005,1,1,1,1 +1,2005,1,2,1,2 +1,2005,1,3,0,2 +1,2005,1,4,0,3 +1,2005,1,5,0,4 +1,2005,1,6,0,3 +1,2005,1,7,0,2 +1,2005,1,8,1,1 +1,2005,1,9,1,1 +1,2005,1,10,0,1 +1,2005,1,11,0,2 +1,2005,1,12,0,1 +1,2005,1,13,0,6 +1,2005,1,14,0,4 +1,2005,1,15,1,4 +1,2005,1,16,1,7 +1,2005,1,17,0,2 +1,2005,1,18,0,5 +1,2005,1,19,0,5 +1,2005,1,20,0,1 +1,2005,1,21,0,1 +1,2005,1,22,1,1 +1,2005,1,23,1,1 +1,2005,1,24,0,1 +1,2005,1,25,0,1 +1,2005,1,26,0,1 +1,2005,1,27,0,1 +1,2005,1,28,0,1 +1,2005,1,29,1,1 +1,2005,1,30,1,1 +1,2005,1,31,0,5 +1,2005,2,1,0,6 +1,2005,2,2,0,6 +1,2005,2,3,0,6 +1,2005,2,4,0,5 +1,2005,2,5,1,1 +1,2005,2,6,1,1 +1,2005,2,7,0,6 +1,2005,2,8,0,7 +1,2005,2,9,0,7 +1,2005,2,10,0,7 +1,2005,2,11,0,6 +1,2005,2,12,1,1 +1,2005,2,13,1,1 +1,2005,2,14,0,1 +1,2005,2,15,0,6 +1,2005,2,16,0,7 +1,2005,2,17,0,7 +1,2005,2,18,0,6 +1,2005,2,19,1,1 +1,2005,2,20,1,1 +1,2005,2,21,0,5 +1,2005,2,22,0,6 +1,2005,2,23,0,6 +1,2005,2,24,0,6 +1,2005,2,25,0,6 +1,2005,2,26,1,5 +1,2005,2,27,1,5 +1,2005,2,28,0,5 +1,2005,3,1,0,3 +1,2005,3,2,0,2 +1,2005,3,3,0,3 +1,2005,3,4,0,3 +1,2005,3,5,1,3 +1,2005,3,6,1,2 +1,2005,3,7,0,2 +1,2005,3,8,0,3 +1,2005,3,9,0,3 +1,2005,3,10,0,2 +1,2005,3,11,0,3 +1,2005,3,12,1,1 +1,2005,3,13,1,6 +1,2005,3,14,0,7 +1,2005,3,15,0,7 +1,2005,3,16,0,2 +1,2005,3,17,0,1 +1,2005,3,18,0,5 +1,2005,3,19,1,5 +1,2005,3,20,1,1 +1,2005,3,21,0,5 +1,2005,3,22,0,5 +1,2005,3,23,0,5 +1,2005,3,24,0,6 +1,2005,3,25,0,7 +1,2005,3,26,1,7 +1,2005,3,27,1,2 +1,2005,3,28,0,1 +1,2005,3,29,0,5 +1,2005,3,30,0,5 +1,2005,3,31,0,7 +1,2005,4,1,0,7 +1,2005,4,2,1,7 +1,2005,4,3,1,1 +1,2005,4,4,0,1 +1,2005,4,5,0,5 +1,2005,4,6,0,7 +1,2005,4,7,0,2 +1,2005,4,8,0,1 +1,2005,4,9,1,1 +1,2005,4,10,1,5 +1,2005,4,11,0,6 +1,2005,4,12,0,5 +1,2005,4,13,0,5 +1,2005,4,14,0,5 +1,2005,4,15,0,6 +1,2005,4,16,1,7 +1,2005,4,17,1,2 +1,2005,4,18,0,1 +1,2005,4,19,0,1 +1,2005,4,20,0,5 +1,2005,4,21,0,7 +1,2005,4,22,0,8 +1,2005,4,23,1,7 +1,2005,4,24,1,1 +1,2005,4,25,0,1 +1,2005,4,26,0,7 +1,2005,4,27,0,2 +1,2005,4,28,0,1 +1,2005,4,29,0,6 +1,2005,4,30,1,7 +1,2005,5,1,1,2 +1,2005,5,2,0,2 +1,2005,5,3,0,2 +1,2005,5,4,0,2 +1,2005,5,5,0,2 +1,2005,5,6,0,1 +1,2005,5,7,1,1 +1,2005,5,8,1,1 +1,2005,5,9,0,1 +1,2005,5,10,0,1 +1,2005,5,11,0,1 +1,2005,5,12,0,2 +1,2005,5,13,0,2 +1,2005,5,14,1,3 +1,2005,5,15,1,7 +1,2005,5,16,0,5 +1,2005,5,17,0,5 +1,2005,5,18,0,5 +1,2005,5,19,0,6 +1,2005,5,20,0,6 +1,2005,5,21,1,6 +1,2005,5,22,1,6 +1,2005,5,23,0,6 +1,2005,5,24,0,6 +1,2005,5,25,0,8 +1,2005,5,26,0,8 +1,2005,5,27,0,8 +1,2005,5,28,1,7 +1,2005,5,29,1,5 +1,2005,5,30,0,6 +1,2005,5,31,0,7 +1,2005,6,1,0,1 +1,2005,6,2,0,1 +1,2005,6,3,0,1 +1,2005,6,4,1,5 +1,2005,6,5,1,1 +1,2005,6,6,0,1 +1,2005,6,7,0,1 +1,2005,6,8,0,5 +1,2005,6,9,0,5 +1,2005,6,10,0,5 +1,2005,6,11,1,1 +1,2005,6,12,1,1 +1,2005,6,13,0,5 +1,2005,6,14,0,6 +1,2005,6,15,0,3 +1,2005,6,16,0,2 +1,2005,6,17,0,1 +1,2005,6,18,1,1 +1,2005,6,19,1,5 +1,2005,6,20,0,6 +1,2005,6,21,0,8 +1,2005,6,22,0,3 +1,2005,6,23,0,3 +1,2005,6,24,0,6 +1,2005,6,25,1,5 +1,2005,6,26,1,5 +1,2005,6,27,0,5 +1,2005,6,28,0,2 +1,2005,6,29,0,6 +1,2005,6,30,0,8 +1,2005,7,1,0,6 +1,2005,7,2,1,5 +1,2005,7,3,1,5 +1,2005,7,4,0,1 +1,2005,7,5,0,2 +1,2005,7,6,0,1 +1,2005,7,7,0,5 +1,2005,7,8,0,1 +1,2005,7,9,1,5 +1,2005,7,10,1,1 +1,2005,7,11,0,1 +1,2005,7,12,0,7 +1,2005,7,13,0,7 +1,2005,7,14,0,7 +1,2005,7,15,0,8 +1,2005,7,16,1,7 +1,2005,7,17,1,7 +1,2005,7,18,0,8 +1,2005,7,19,0,6 +1,2005,7,20,0,6 +1,2005,7,21,0,8 +1,2005,7,22,0,3 +1,2005,7,23,1,7 +1,2005,7,24,1,7 +1,2005,7,25,0,6 +1,2005,7,26,0,3 +1,2005,7,27,0,4 +1,2005,7,28,0,3 +1,2005,7,29,0,2 +1,2005,7,30,1,3 +1,2005,7,31,1,3 +1,2005,8,1,0,3 +1,2005,8,2,0,6 +1,2005,8,3,0,2 +1,2005,8,4,0,4 +1,2005,8,5,0,4 +1,2005,8,6,1,4 +1,2005,8,7,1,7 +1,2005,8,8,0,7 +1,2005,8,9,0,6 +1,2005,8,10,0,1 +1,2005,8,11,0,6 +1,2005,8,12,0,6 +1,2005,8,13,1,2 +1,2005,8,14,1,2 +1,2005,8,15,0,2 +1,2005,8,16,0,2 +1,2005,8,17,0,5 +1,2005,8,18,0,5 +1,2005,8,19,0,1 +1,2005,8,20,1,2 +1,2005,8,21,1,2 +1,2005,8,22,0,2 +1,2005,8,23,0,5 +1,2005,8,24,0,5 +1,2005,8,25,0,6 +1,2005,8,26,0,3 +1,2005,8,27,1,7 +1,2005,8,28,1,8 +1,2005,8,29,0,6 +1,2005,8,30,0,5 +1,2005,8,31,0,6 +1,2005,9,1,0,3 +1,2005,9,2,0,2 +1,2005,9,3,1,2 +1,2005,9,4,1,1 +1,2005,9,5,0,1 +1,2005,9,6,0,6 +1,2005,9,7,0,6 +1,2005,9,8,0,2 +1,2005,9,9,0,1 +1,2005,9,10,1,1 +1,2005,9,11,1,1 +1,2005,9,12,0,5 +1,2005,9,13,0,5 +1,2005,9,14,0,5 +1,2005,9,15,0,5 +1,2005,9,16,0,5 +1,2005,9,17,1,1 +1,2005,9,18,1,5 +1,2005,9,19,0,5 +1,2005,9,20,0,5 +1,2005,9,21,0,5 +1,2005,9,22,0,5 +1,2005,9,23,0,1 +1,2005,9,24,1,1 +1,2005,9,25,1,5 +1,2005,9,26,0,5 +1,2005,9,27,0,5 +1,2005,9,28,0,5 +1,2005,9,29,0,5 +1,2005,9,30,0,5 +1,2005,10,1,1,4 +1,2005,10,2,1,3 +1,2005,10,3,0,2 +1,2005,10,4,0,1 +1,2005,10,5,0,5 +1,2005,10,6,0,6 +1,2005,10,7,0,3 +1,2005,10,8,1,2 +1,2005,10,9,1,1 +1,2005,10,10,0,5 +1,2005,10,11,0,6 +1,2005,10,12,0,6 +1,2005,10,13,0,7 +1,2005,10,14,0,7 +1,2005,10,15,1,2 +1,2005,10,16,1,1 +1,2005,10,17,0,2 +1,2005,10,18,0,1 +1,2005,10,19,0,1 +1,2005,10,20,0,5 +1,2005,10,21,0,6 +1,2005,10,22,1,6 +1,2005,10,23,1,6 +1,2005,10,24,0,6 +1,2005,10,25,0,6 +1,2005,10,26,0,1 +1,2005,10,27,0,1 +1,2005,10,28,0,1 +1,2005,10,29,1,5 +1,2005,10,30,1,5 +1,2005,10,31,0,5 +1,2005,11,1,0,5 +1,2005,11,2,0,1 +1,2005,11,3,0,1 +1,2005,11,4,0,1 +1,2005,11,5,1,1 +1,2005,11,6,1,1 +1,2005,11,7,0,1 +1,2005,11,8,0,1 +1,2005,11,9,0,2 +1,2005,11,10,0,5 +1,2005,11,11,0,1 +1,2005,11,12,1,1 +1,2005,11,13,1,6 +1,2005,11,14,0,1 +1,2005,11,15,0,8 +1,2005,11,16,0,8 +1,2005,11,17,0,8 +1,2005,11,18,0,7 +1,2005,11,19,1,7 +1,2005,11,20,1,8 +1,2005,11,21,0,8 +1,2005,11,22,0,7 +1,2005,11,23,0,2 +1,2005,11,24,0,2 +1,2005,11,25,0,1 +1,2005,11,26,1,1 +1,2005,11,27,1,2 +1,2005,11,28,0,3 +1,2005,11,29,0,2 +1,2005,11,30,0,2 +1,2005,12,1,0,6 +1,2005,12,2,0,5 +1,2005,12,3,1,6 +1,2005,12,4,1,2 +1,2005,12,5,0,2 +1,2005,12,6,0,3 +1,2005,12,7,0,4 +1,2005,12,8,0,3 +1,2005,12,9,0,2 +1,2005,12,10,1,2 +1,2005,12,11,1,2 +1,2005,12,12,0,6 +1,2005,12,13,0,6 +1,2005,12,14,0,2 +1,2005,12,15,0,3 +1,2005,12,16,0,8 +1,2005,12,17,1,8 +1,2005,12,18,1,8 +1,2005,12,19,0,2 +1,2005,12,20,0,1 +1,2005,12,21,0,5 +1,2005,12,22,0,5 +1,2005,12,23,0,5 +1,2005,12,24,1,5 +1,2005,12,25,1,5 +1,2005,12,26,0,5 +1,2005,12,27,0,5 +1,2005,12,28,0,5 +1,2005,12,29,0,5 +1,2005,12,30,0,5 +1,2005,12,31,1,5 +1,2006,1,1,1,1 +1,2006,1,2,0,1 +1,2006,1,3,0,1 +1,2006,1,4,0,1 +1,2006,1,5,0,5 +1,2006,1,6,0,1 +1,2006,1,7,1,1 +1,2006,1,8,1,1 +1,2006,1,9,0,5 +1,2006,1,10,0,5 +1,2006,1,11,0,1 +1,2006,1,12,0,1 +1,2006,1,13,0,5 +1,2006,1,14,1,1 +1,2006,1,15,1,1 +1,2006,1,16,0,5 +1,2006,1,17,0,5 +1,2006,1,18,0,1 +1,2006,1,19,0,1 +1,2006,1,20,0,5 +1,2006,1,21,1,5 +1,2006,1,22,1,5 +1,2006,1,23,0,5 +1,2006,1,24,0,5 +1,2006,1,25,0,5 +1,2006,1,26,0,1 +1,2006,1,27,0,1 +1,2006,1,28,1,1 +1,2006,1,29,1,1 +1,2006,1,30,0,1 +1,2006,1,31,0,1 +1,2006,2,1,0,1 +1,2006,2,2,0,5 +1,2006,2,3,0,5 +1,2006,2,4,1,5 +1,2006,2,5,1,1 +1,2006,2,6,0,7 +1,2006,2,7,0,7 +1,2006,2,8,0,5 +1,2006,2,9,0,5 +1,2006,2,10,0,7 +1,2006,2,11,1,8 +1,2006,2,12,1,7 +1,2006,2,13,0,5 +1,2006,2,14,0,5 +1,2006,2,15,0,3 +1,2006,2,16,0,4 +1,2006,2,17,0,4 +1,2006,2,18,1,4 +1,2006,2,19,1,4 +1,2006,2,20,0,4 +1,2006,2,21,0,3 +1,2006,2,22,0,1 +1,2006,2,23,0,1 +1,2006,2,24,0,1 +1,2006,2,25,1,7 +1,2006,2,26,1,6 +1,2006,2,27,0,1 +1,2006,2,28,0,1 +1,2006,3,1,0,5 +1,2006,3,2,0,2 +1,2006,3,3,0,6 +1,2006,3,4,1,6 +1,2006,3,5,1,7 +1,2006,3,6,0,2 +1,2006,3,7,0,1 +1,2006,3,8,0,5 +1,2006,3,9,0,5 +1,2006,3,10,0,5 +1,2006,3,11,1,5 +1,2006,3,12,1,5 +1,2006,3,13,0,8 +1,2006,3,14,0,7 +1,2006,3,15,0,5 +1,2006,3,16,0,7 +1,2006,3,17,0,6 +1,2006,3,18,1,5 +1,2006,3,19,1,5 +1,2006,3,20,0,5 +1,2006,3,21,0,6 +1,2006,3,22,0,8 +1,2006,3,23,0,4 +1,2006,3,24,0,3 +1,2006,3,25,1,1 +1,2006,3,26,1,1 +1,2006,3,27,0,6 +1,2006,3,28,0,1 +1,2006,3,29,0,1 +1,2006,3,30,0,1 +1,2006,3,31,0,1 +1,2006,4,1,1,5 +1,2006,4,2,1,5 +1,2006,4,3,0,7 +1,2006,4,4,0,2 +1,2006,4,5,0,1 +1,2006,4,6,0,5 +1,2006,4,7,0,5 +1,2006,4,8,1,6 +1,2006,4,9,1,6 +1,2006,4,10,0,1 +1,2006,4,11,0,1 +1,2006,4,12,0,7 +1,2006,4,13,0,2 +1,2006,4,14,0,2 +1,2006,4,15,1,1 +1,2006,4,16,1,1 +1,2006,4,17,0,1 +1,2006,4,18,0,5 +1,2006,4,19,0,6 +1,2006,4,20,0,7 +1,2006,4,21,0,2 +1,2006,4,22,1,1 +1,2006,4,23,1,5 +1,2006,4,24,0,6 +1,2006,4,25,0,7 +1,2006,4,26,0,2 +1,2006,4,27,0,2 +1,2006,4,28,0,3 +1,2006,4,29,1,3 +1,2006,4,30,1,3 +1,2006,5,1,0,6 +1,2006,5,2,0,5 +1,2006,5,3,0,1 +1,2006,5,4,0,1 +1,2006,5,5,0,2 +1,2006,5,6,1,1 +1,2006,5,7,1,5 +1,2006,5,8,0,5 +1,2006,5,9,0,5 +1,2006,5,10,0,2 +1,2006,5,11,0,3 +1,2006,5,12,0,6 +1,2006,5,13,1,6 +1,2006,5,14,1,7 +1,2006,5,15,0,8 +1,2006,5,16,0,8 +1,2006,5,17,0,8 +1,2006,5,18,0,8 +1,2006,5,19,0,7 +1,2006,5,20,1,6 +1,2006,5,21,1,6 +1,2006,5,22,0,5 +1,2006,5,23,0,1 +1,2006,5,24,0,6 +1,2006,5,25,0,6 +1,2006,5,26,0,5 +1,2006,5,27,1,5 +1,2006,5,28,1,1 +1,2006,5,29,0,1 +1,2006,5,30,0,2 +1,2006,5,31,0,3 +1,2006,6,1,0,6 +1,2006,6,2,0,7 +1,2006,6,3,1,3 +1,2006,6,4,1,4 +1,2006,6,5,0,3 +1,2006,6,6,0,3 +1,2006,6,7,0,6 +1,2006,6,8,0,2 +1,2006,6,9,0,2 +1,2006,6,10,1,1 +1,2006,6,11,1,5 +1,2006,6,12,0,5 +1,2006,6,13,0,5 +1,2006,6,14,0,1 +1,2006,6,15,0,1 +1,2006,6,16,0,2 +1,2006,6,17,1,7 +1,2006,6,18,1,4 +1,2006,6,19,0,3 +1,2006,6,20,0,3 +1,2006,6,21,0,3 +1,2006,6,22,0,8 +1,2006,6,23,0,8 +1,2006,6,24,1,8 +1,2006,6,25,1,8 +1,2006,6,26,0,8 +1,2006,6,27,0,8 +1,2006,6,28,0,8 +1,2006,6,29,0,8 +1,2006,6,30,0,8 +1,2006,7,1,1,2 +1,2006,7,2,1,2 +1,2006,7,3,0,2 +1,2006,7,4,0,2 +1,2006,7,5,0,1 +1,2006,7,6,0,1 +1,2006,7,7,0,5 +1,2006,7,8,1,8 +1,2006,7,9,1,8 +1,2006,7,10,0,6 +1,2006,7,11,0,5 +1,2006,7,12,0,1 +1,2006,7,13,0,6 +1,2006,7,14,0,7 +1,2006,7,15,1,7 +1,2006,7,16,1,7 +1,2006,7,17,0,8 +1,2006,7,18,0,7 +1,2006,7,19,0,8 +1,2006,7,20,0,8 +1,2006,7,21,0,8 +1,2006,7,22,1,8 +1,2006,7,23,1,8 +1,2006,7,24,0,8 +1,2006,7,25,0,8 +1,2006,7,26,0,8 +1,2006,7,27,0,8 +1,2006,7,28,0,6 +1,2006,7,29,1,5 +1,2006,7,30,1,5 +1,2006,7,31,0,5 +1,2006,8,1,0,5 +1,2006,8,2,0,5 +1,2006,8,3,0,6 +1,2006,8,4,0,5 +1,2006,8,5,1,1 +1,2006,8,6,1,1 +1,2006,8,7,0,1 +1,2006,8,8,0,1 +1,2006,8,9,0,7 +1,2006,8,10,0,7 +1,2006,8,11,0,5 +1,2006,8,12,1,5 +1,2006,8,13,1,5 +1,2006,8,14,0,2 +1,2006,8,15,0,1 +1,2006,8,16,0,1 +1,2006,8,17,0,1 +1,2006,8,18,0,1 +1,2006,8,19,1,2 +1,2006,8,20,1,2 +1,2006,8,21,0,2 +1,2006,8,22,0,2 +1,2006,8,23,0,6 +1,2006,8,24,0,5 +1,2006,8,25,0,5 +1,2006,8,26,1,1 +1,2006,8,27,1,2 +1,2006,8,28,0,3 +1,2006,8,29,0,6 +1,2006,8,30,0,5 +1,2006,8,31,0,5 +1,2006,9,1,0,8 +1,2006,9,2,1,8 +1,2006,9,3,1,8 +1,2006,9,4,0,4 +1,2006,9,5,0,8 +1,2006,9,6,0,8 +1,2006,9,7,0,2 +1,2006,9,8,0,1 +1,2006,9,9,1,1 +1,2006,9,10,1,5 +1,2006,9,11,0,6 +1,2006,9,12,0,8 +1,2006,9,13,0,2 +1,2006,9,14,0,1 +1,2006,9,15,0,1 +1,2006,9,16,1,1 +1,2006,9,17,1,5 +1,2006,9,18,0,5 +1,2006,9,19,0,5 +1,2006,9,20,0,1 +1,2006,9,21,0,1 +1,2006,9,22,0,1 +1,2006,9,23,1,5 +1,2006,9,24,1,5 +1,2006,9,25,0,5 +1,2006,9,26,0,5 +1,2006,9,27,0,5 +1,2006,9,28,0,5 +1,2006,9,29,0,5 +1,2006,9,30,1,5 +1,2006,10,1,1,3 +1,2006,10,2,0,3 +1,2006,10,3,0,3 +1,2006,10,4,0,2 +1,2006,10,5,0,2 +1,2006,10,6,0,1 +1,2006,10,7,1,1 +1,2006,10,8,1,6 +1,2006,10,9,0,6 +1,2006,10,10,0,5 +1,2006,10,11,0,5 +1,2006,10,12,0,1 +1,2006,10,13,0,1 +1,2006,10,14,1,1 +1,2006,10,15,1,1 +1,2006,10,16,0,1 +1,2006,10,17,0,1 +1,2006,10,18,0,5 +1,2006,10,19,0,5 +1,2006,10,20,0,5 +1,2006,10,21,1,5 +1,2006,10,22,1,5 +1,2006,10,23,0,5 +1,2006,10,24,0,5 +1,2006,10,25,0,1 +1,2006,10,26,0,5 +1,2006,10,27,0,5 +1,2006,10,28,1,5 +1,2006,10,29,1,1 +1,2006,10,30,0,1 +1,2006,10,31,0,5 +1,2006,11,1,0,3 +1,2006,11,2,0,2 +1,2006,11,3,0,5 +1,2006,11,4,1,5 +1,2006,11,5,1,5 +1,2006,11,6,0,5 +1,2006,11,7,0,5 +1,2006,11,8,0,1 +1,2006,11,9,0,1 +1,2006,11,10,0,1 +1,2006,11,11,1,1 +1,2006,11,12,1,1 +1,2006,11,13,0,1 +1,2006,11,14,0,1 +1,2006,11,15,0,1 +1,2006,11,16,0,1 +1,2006,11,17,0,2 +1,2006,11,18,1,7 +1,2006,11,19,1,7 +1,2006,11,20,0,5 +1,2006,11,21,0,5 +1,2006,11,22,0,1 +1,2006,11,23,0,1 +1,2006,11,24,0,1 +1,2006,11,25,1,2 +1,2006,11,26,1,2 +1,2006,11,27,0,1 +1,2006,11,28,0,2 +1,2006,11,29,0,4 +1,2006,11,30,0,4 +1,2006,12,1,0,2 +1,2006,12,2,1,3 +1,2006,12,3,1,3 +1,2006,12,4,0,2 +1,2006,12,5,0,1 +1,2006,12,6,0,1 +1,2006,12,7,0,1 +1,2006,12,8,0,1 +1,2006,12,9,1,5 +1,2006,12,10,1,5 +1,2006,12,11,0,1 +1,2006,12,12,0,1 +1,2006,12,13,0,1 +1,2006,12,14,0,5 +1,2006,12,15,0,5 +1,2006,12,16,1,6 +1,2006,12,17,1,7 +1,2006,12,18,0,3 +1,2006,12,19,0,3 +1,2006,12,20,0,3 +1,2006,12,21,0,2 +1,2006,12,22,0,1 +1,2006,12,23,1,1 +1,2006,12,24,1,1 +1,2006,12,25,0,1 +1,2006,12,26,0,1 +1,2006,12,27,0,5 +1,2006,12,28,0,6 +1,2006,12,29,0,3 +1,2006,12,30,1,3 +1,2006,12,31,1,3 +1,2007,1,1,0,6 +1,2007,1,2,0,5 +1,2007,1,3,0,5 +1,2007,1,4,0,1 +1,2007,1,5,0,2 +1,2007,1,6,1,6 +1,2007,1,7,1,5 +1,2007,1,8,0,5 +1,2007,1,9,0,5 +1,2007,1,10,0,1 +1,2007,1,11,0,3 +1,2007,1,12,0,4 +1,2007,1,13,1,8 +1,2007,1,14,1,8 +1,2007,1,15,0,8 +1,2007,1,16,0,8 +1,2007,1,17,0,8 +1,2007,1,18,0,7 +1,2007,1,19,0,6 +1,2007,1,20,1,6 +1,2007,1,21,1,6 +1,2007,1,22,0,6 +1,2007,1,23,0,6 +1,2007,1,24,0,6 +1,2007,1,25,0,6 +1,2007,1,26,0,2 +1,2007,1,27,1,3 +1,2007,1,28,1,3 +1,2007,1,29,0,3 +1,2007,1,30,0,3 +1,2007,1,31,0,3 +1,2007,2,1,0,4 +1,2007,2,2,0,4 +1,2007,2,3,1,4 +1,2007,2,4,1,7 +1,2007,2,5,0,5 +1,2007,2,6,0,5 +1,2007,2,7,0,5 +1,2007,2,8,0,5 +1,2007,2,9,0,5 +1,2007,2,10,1,5 +1,2007,2,11,1,5 +1,2007,2,12,0,5 +1,2007,2,13,0,7 +1,2007,2,14,0,8 +1,2007,2,15,0,6 +1,2007,2,16,0,5 +1,2007,2,17,1,5 +1,2007,2,18,1,5 +1,2007,2,19,0,1 +1,2007,2,20,0,1 +1,2007,2,21,0,1 +1,2007,2,22,0,1 +1,2007,2,23,0,1 +1,2007,2,24,1,2 +1,2007,2,25,1,1 +1,2007,2,26,0,1 +1,2007,2,27,0,1 +1,2007,2,28,0,2 +1,2007,3,1,0,6 +1,2007,3,2,0,7 +1,2007,3,3,1,8 +1,2007,3,4,1,4 +1,2007,3,5,0,4 +1,2007,3,6,0,3 +1,2007,3,7,0,2 +1,2007,3,8,0,1 +1,2007,3,9,0,2 +1,2007,3,10,1,2 +1,2007,3,11,1,2 +1,2007,3,12,0,2 +1,2007,3,13,0,1 +1,2007,3,14,0,1 +1,2007,3,15,0,7 +1,2007,3,16,0,3 +1,2007,3,17,1,1 +1,2007,3,18,1,1 +1,2007,3,19,0,1 +1,2007,3,20,0,1 +1,2007,3,21,0,5 +1,2007,3,22,0,1 +1,2007,3,23,0,1 +1,2007,3,24,1,1 +1,2007,3,25,1,1 +1,2007,3,26,0,1 +1,2007,3,27,0,5 +1,2007,3,28,0,5 +1,2007,3,29,0,7 +1,2007,3,30,0,4 +1,2007,3,31,1,2 +1,2007,4,1,1,2 +1,2007,4,2,0,1 +1,2007,4,3,0,6 +1,2007,4,4,0,8 +1,2007,4,5,0,8 +1,2007,4,6,0,8 +1,2007,4,7,1,3 +1,2007,4,8,1,2 +1,2007,4,9,0,1 +1,2007,4,10,0,1 +1,2007,4,11,0,1 +1,2007,4,12,0,1 +1,2007,4,13,0,5 +1,2007,4,14,1,6 +1,2007,4,15,1,5 +1,2007,4,16,0,5 +1,2007,4,17,0,6 +1,2007,4,18,0,1 +1,2007,4,19,0,5 +1,2007,4,20,0,5 +1,2007,4,21,1,5 +1,2007,4,22,1,1 +1,2007,4,23,0,5 +1,2007,4,24,0,6 +1,2007,4,25,0,7 +1,2007,4,26,0,2 +1,2007,4,27,0,4 +1,2007,4,28,1,4 +1,2007,4,29,1,4 +1,2007,4,30,0,3 +1,2007,5,1,0,5 +1,2007,5,2,0,5 +1,2007,5,3,0,1 +1,2007,5,4,0,1 +1,2007,5,5,1,1 +1,2007,5,6,1,2 +1,2007,5,7,0,3 +1,2007,5,8,0,4 +1,2007,5,9,0,7 +1,2007,5,10,0,6 +1,2007,5,11,0,7 +1,2007,5,12,1,6 +1,2007,5,13,1,5 +1,2007,5,14,0,2 +1,2007,5,15,0,3 +1,2007,5,16,0,7 +1,2007,5,17,0,6 +1,2007,5,18,0,6 +1,2007,5,19,1,6 +1,2007,5,20,1,6 +1,2007,5,21,0,5 +1,2007,5,22,0,5 +1,2007,5,23,0,2 +1,2007,5,24,0,3 +1,2007,5,25,0,7 +1,2007,5,26,1,7 +1,2007,5,27,1,6 +1,2007,5,28,0,5 +1,2007,5,29,0,6 +1,2007,5,30,0,3 +1,2007,5,31,0,7 +1,2007,6,1,0,5 +1,2007,6,2,1,5 +1,2007,6,3,1,6 +1,2007,6,4,0,6 +1,2007,6,5,0,1 +1,2007,6,6,0,1 +1,2007,6,7,0,1 +1,2007,6,8,0,5 +1,2007,6,9,1,5 +1,2007,6,10,1,5 +1,2007,6,11,0,1 +1,2007,6,12,0,5 +1,2007,6,13,0,6 +1,2007,6,14,0,7 +1,2007,6,15,0,8 +1,2007,6,16,1,3 +1,2007,6,17,1,2 +1,2007,6,18,0,2 +1,2007,6,19,0,6 +1,2007,6,20,0,6 +1,2007,6,21,0,6 +1,2007,6,22,0,7 +1,2007,6,23,1,3 +1,2007,6,24,1,2 +1,2007,6,25,0,2 +1,2007,6,26,0,6 +1,2007,6,27,0,7 +1,2007,6,28,0,7 +1,2007,6,29,0,7 +1,2007,6,30,1,4 +1,2007,7,1,1,1 +1,2007,7,2,0,1 +1,2007,7,3,0,2 +1,2007,7,4,0,3 +1,2007,7,5,0,8 +1,2007,7,6,0,8 +1,2007,7,7,1,6 +1,2007,7,8,1,5 +1,2007,7,9,0,6 +1,2007,7,10,0,2 +1,2007,7,11,0,2 +1,2007,7,12,0,2 +1,2007,7,13,0,2 +1,2007,7,14,1,2 +1,2007,7,15,1,2 +1,2007,7,16,0,1 +1,2007,7,17,0,1 +1,2007,7,18,0,1 +1,2007,7,19,0,1 +1,2007,7,20,0,1 +1,2007,7,21,1,1 +1,2007,7,22,1,2 +1,2007,7,23,0,2 +1,2007,7,24,0,6 +1,2007,7,25,0,5 +1,2007,7,26,0,6 +1,2007,7,27,0,6 +1,2007,7,28,1,6 +1,2007,7,29,1,6 +1,2007,7,30,0,6 +1,2007,7,31,0,6 +1,2007,8,1,0,6 +1,2007,8,2,0,3 +1,2007,8,3,0,6 +1,2007,8,4,1,6 +1,2007,8,5,1,5 +1,2007,8,6,0,1 +1,2007,8,7,0,1 +1,2007,8,8,0,5 +1,2007,8,9,0,5 +1,2007,8,10,0,5 +1,2007,8,11,1,1 +1,2007,8,12,1,1 +1,2007,8,13,0,1 +1,2007,8,14,0,2 +1,2007,8,15,0,7 +1,2007,8,16,0,6 +1,2007,8,17,0,5 +1,2007,8,18,1,5 +1,2007,8,19,1,5 +1,2007,8,20,0,5 +1,2007,8,21,0,6 +1,2007,8,22,0,5 +1,2007,8,23,0,6 +1,2007,8,24,0,6 +1,2007,8,25,1,5 +1,2007,8,26,1,5 +1,2007,8,27,0,5 +1,2007,8,28,0,7 +1,2007,8,29,0,8 +1,2007,8,30,0,4 +1,2007,8,31,0,8 +1,2007,9,1,1,4 +1,2007,9,2,1,4 +1,2007,9,3,0,4 +1,2007,9,4,0,3 +1,2007,9,5,0,2 +1,2007,9,6,0,1 +1,2007,9,7,0,1 +1,2007,9,8,1,2 +1,2007,9,9,1,2 +1,2007,9,10,0,6 +1,2007,9,11,0,7 +1,2007,9,12,0,2 +1,2007,9,13,0,1 +1,2007,9,14,0,1 +1,2007,9,15,1,1 +1,2007,9,16,1,1 +1,2007,9,17,0,1 +1,2007,9,18,0,5 +1,2007,9,19,0,1 +1,2007,9,20,0,5 +1,2007,9,21,0,5 +1,2007,9,22,1,5 +1,2007,9,23,1,5 +1,2007,9,24,0,5 +1,2007,9,25,0,5 +1,2007,9,26,0,5 +1,2007,9,27,0,5 +1,2007,9,28,0,1 +1,2007,9,29,1,1 +1,2007,9,30,1,5 +1,2007,10,1,0,2 +1,2007,10,2,0,2 +1,2007,10,3,0,3 +1,2007,10,4,0,2 +1,2007,10,5,0,1 +1,2007,10,6,1,1 +1,2007,10,7,1,5 +1,2007,10,8,0,5 +1,2007,10,9,0,6 +1,2007,10,10,0,1 +1,2007,10,11,0,1 +1,2007,10,12,0,1 +1,2007,10,13,1,1 +1,2007,10,14,1,1 +1,2007,10,15,0,1 +1,2007,10,16,0,1 +1,2007,10,17,0,1 +1,2007,10,18,0,1 +1,2007,10,19,0,1 +1,2007,10,20,1,1 +1,2007,10,21,1,1 +1,2007,10,22,0,5 +1,2007,10,23,0,6 +1,2007,10,24,0,7 +1,2007,10,25,0,6 +1,2007,10,26,0,5 +1,2007,10,27,1,5 +1,2007,10,28,1,6 +1,2007,10,29,0,6 +1,2007,10,30,0,1 +1,2007,10,31,0,5 +1,2007,11,1,0,5 +1,2007,11,2,0,8 +1,2007,11,3,1,7 +1,2007,11,4,1,5 +1,2007,11,5,0,6 +1,2007,11,6,0,7 +1,2007,11,7,0,5 +1,2007,11,8,0,5 +1,2007,11,9,0,5 +1,2007,11,10,1,1 +1,2007,11,11,1,1 +1,2007,11,12,0,1 +1,2007,11,13,0,5 +1,2007,11,14,0,2 +1,2007,11,15,0,6 +1,2007,11,16,0,5 +1,2007,11,17,1,5 +1,2007,11,18,1,5 +1,2007,11,19,0,1 +1,2007,11,20,0,2 +1,2007,11,21,0,3 +1,2007,11,22,0,4 +1,2007,11,23,0,4 +1,2007,11,24,1,3 +1,2007,11,25,1,2 +1,2007,11,26,0,3 +1,2007,11,27,0,2 +1,2007,11,28,0,3 +1,2007,11,29,0,3 +1,2007,11,30,0,3 +1,2007,12,1,1,7 +1,2007,12,2,1,1 +1,2007,12,3,0,1 +1,2007,12,4,0,1 +1,2007,12,5,0,5 +1,2007,12,6,0,5 +1,2007,12,7,0,5 +1,2007,12,8,1,7 +1,2007,12,9,1,3 +1,2007,12,10,0,2 +1,2007,12,11,0,7 +1,2007,12,12,0,2 +1,2007,12,13,0,2 +1,2007,12,14,0,2 +1,2007,12,15,1,2 +1,2007,12,16,1,1 +1,2007,12,17,0,1 +1,2007,12,18,0,5 +1,2007,12,19,0,5 +1,2007,12,20,0,5 +1,2007,12,21,0,1 +1,2007,12,22,1,3 +1,2007,12,23,1,1 +1,2007,12,24,0,1 +1,2007,12,25,0,2 +1,2007,12,26,0,2 +1,2007,12,27,0,3 +1,2007,12,28,0,3 +1,2007,12,29,1,2 +1,2007,12,30,1,1 +1,2007,12,31,0,2 +1,2008,1,1,0,8 +1,2008,1,2,0,7 +1,2008,1,3,0,5 +1,2008,1,4,0,1 +1,2008,1,5,1,1 +1,2008,1,6,1,1 +1,2008,1,7,0,2 +1,2008,1,8,0,2 +1,2008,1,9,0,1 +1,2008,1,10,0,1 +1,2008,1,11,0,1 +1,2008,1,12,1,5 +1,2008,1,13,1,5 +1,2008,1,14,0,5 +1,2008,1,15,0,2 +1,2008,1,16,0,7 +1,2008,1,17,0,7 +1,2008,1,18,0,7 +1,2008,1,19,1,6 +1,2008,1,20,1,6 +1,2008,1,21,0,4 +1,2008,1,22,0,4 +1,2008,1,23,0,4 +1,2008,1,24,0,4 +1,2008,1,25,0,4 +1,2008,1,26,1,3 +1,2008,1,27,1,1 +1,2008,1,28,0,1 +1,2008,1,29,0,3 +1,2008,1,30,0,2 +1,2008,1,31,0,6 +1,2008,2,1,0,2 +1,2008,2,2,1,3 +1,2008,2,3,1,2 +1,2008,2,4,0,3 +1,2008,2,5,0,4 +1,2008,2,6,0,3 +1,2008,2,7,0,2 +1,2008,2,8,0,1 +1,2008,2,9,1,6 +1,2008,2,10,1,5 +1,2008,2,11,0,5 +1,2008,2,12,0,5 +1,2008,2,13,0,1 +1,2008,2,14,0,2 +1,2008,2,15,0,3 +1,2008,2,16,1,1 +1,2008,2,17,1,2 +1,2008,2,18,0,7 +1,2008,2,19,0,1 +1,2008,2,20,0,5 +1,2008,2,21,0,1 +1,2008,2,22,0,1 +1,2008,2,23,1,1 +1,2008,2,24,1,1 +1,2008,2,25,0,5 +1,2008,2,26,0,6 +1,2008,2,27,0,5 +1,2008,2,28,0,5 +1,2008,2,29,0,5 +1,2008,3,1,1,1 +1,2008,3,2,1,5 +1,2008,3,3,0,8 +1,2008,3,4,0,2 +1,2008,3,5,0,7 +1,2008,3,6,0,8 +1,2008,3,7,0,8 +1,2008,3,8,1,2 +1,2008,3,9,1,7 +1,2008,3,10,0,4 +1,2008,3,11,0,2 +1,2008,3,12,0,1 +1,2008,3,13,0,1 +1,2008,3,14,0,5 +1,2008,3,15,1,5 +1,2008,3,16,1,5 +1,2008,3,17,0,6 +1,2008,3,18,0,2 +1,2008,3,19,0,2 +1,2008,3,20,0,5 +1,2008,3,21,0,6 +1,2008,3,22,1,8 +1,2008,3,23,1,4 +1,2008,3,24,0,2 +1,2008,3,25,0,6 +1,2008,3,26,0,5 +1,2008,3,27,0,5 +1,2008,3,28,0,6 +1,2008,3,29,1,5 +1,2008,3,30,1,5 +1,2008,3,31,0,5 +1,2008,4,1,0,5 +1,2008,4,2,0,5 +1,2008,4,3,0,5 +1,2008,4,4,0,6 +1,2008,4,5,1,1 +1,2008,4,6,1,1 +1,2008,4,7,0,5 +1,2008,4,8,0,5 +1,2008,4,9,0,5 +1,2008,4,10,0,5 +1,2008,4,11,0,7 +1,2008,4,12,1,8 +1,2008,4,13,1,8 +1,2008,4,14,0,2 +1,2008,4,15,0,1 +1,2008,4,16,0,5 +1,2008,4,17,0,6 +1,2008,4,18,0,7 +1,2008,4,19,1,1 +1,2008,4,20,1,1 +1,2008,4,21,0,5 +1,2008,4,22,0,5 +1,2008,4,23,0,1 +1,2008,4,24,0,1 +1,2008,4,25,0,6 +1,2008,4,26,1,7 +1,2008,4,27,1,8 +1,2008,4,28,0,4 +1,2008,4,29,0,2 +1,2008,4,30,0,1 +1,2008,5,1,0,1 +1,2008,5,2,0,1 +1,2008,5,3,1,2 +1,2008,5,4,1,1 +1,2008,5,5,0,1 +1,2008,5,6,0,1 +1,2008,5,7,0,5 +1,2008,5,8,0,1 +1,2008,5,9,0,5 +1,2008,5,10,1,1 +1,2008,5,11,1,1 +1,2008,5,12,0,5 +1,2008,5,13,0,1 +1,2008,5,14,0,3 +1,2008,5,15,0,4 +1,2008,5,16,0,4 +1,2008,5,17,1,4 +1,2008,5,18,1,8 +1,2008,5,19,0,8 +1,2008,5,20,0,7 +1,2008,5,21,0,5 +1,2008,5,22,0,5 +1,2008,5,23,0,5 +1,2008,5,24,1,1 +1,2008,5,25,1,1 +1,2008,5,26,0,1 +1,2008,5,27,0,1 +1,2008,5,28,0,2 +1,2008,5,29,0,1 +1,2008,5,30,0,1 +1,2008,5,31,1,2 +1,2008,6,1,1,5 +1,2008,6,2,0,1 +1,2008,6,3,0,1 +1,2008,6,4,0,1 +1,2008,6,5,0,1 +1,2008,6,6,0,1 +1,2008,6,7,1,1 +1,2008,6,8,1,1 +1,2008,6,9,0,5 +1,2008,6,10,0,1 +1,2008,6,11,0,1 +1,2008,6,12,0,5 +1,2008,6,13,0,5 +1,2008,6,14,1,5 +1,2008,6,15,1,3 +1,2008,6,16,0,3 +1,2008,6,17,0,3 +1,2008,6,18,0,3 +1,2008,6,19,0,4 +1,2008,6,20,0,8 +1,2008,6,21,1,8 +1,2008,6,22,1,4 +1,2008,6,23,0,4 +1,2008,6,24,0,6 +1,2008,6,25,0,6 +1,2008,6,26,0,3 +1,2008,6,27,0,6 +1,2008,6,28,1,8 +1,2008,6,29,1,8 +1,2008,6,30,0,8 +1,2008,7,1,0,1 +1,2008,7,2,0,1 +1,2008,7,3,0,2 +1,2008,7,4,0,1 +1,2008,7,5,1,5 +1,2008,7,6,1,5 +1,2008,7,7,0,6 +1,2008,7,8,0,8 +1,2008,7,9,0,8 +1,2008,7,10,0,7 +1,2008,7,11,0,5 +1,2008,7,12,1,7 +1,2008,7,13,1,3 +1,2008,7,14,0,2 +1,2008,7,15,0,2 +1,2008,7,16,0,2 +1,2008,7,17,0,6 +1,2008,7,18,0,5 +1,2008,7,19,1,5 +1,2008,7,20,1,1 +1,2008,7,21,0,1 +1,2008,7,22,0,5 +1,2008,7,23,0,5 +1,2008,7,24,0,5 +1,2008,7,25,0,6 +1,2008,7,26,1,6 +1,2008,7,27,1,5 +1,2008,7,28,0,5 +1,2008,7,29,0,1 +1,2008,7,30,0,5 +1,2008,7,31,0,5 +1,2008,8,1,0,5 +1,2008,8,2,1,5 +1,2008,8,3,1,5 +1,2008,8,4,0,5 +1,2008,8,5,0,3 +1,2008,8,6,0,3 +1,2008,8,7,0,3 +1,2008,8,8,0,1 +1,2008,8,9,1,5 +1,2008,8,10,1,5 +1,2008,8,11,0,6 +1,2008,8,12,0,6 +1,2008,8,13,0,7 +1,2008,8,14,0,8 +1,2008,8,15,0,4 +1,2008,8,16,1,4 +1,2008,8,17,1,2 +1,2008,8,18,0,1 +1,2008,8,19,0,1 +1,2008,8,20,0,5 +1,2008,8,21,0,5 +1,2008,8,22,0,5 +1,2008,8,23,1,2 +1,2008,8,24,1,3 +1,2008,8,25,0,6 +1,2008,8,26,0,5 +1,2008,8,27,0,5 +1,2008,8,28,0,7 +1,2008,8,29,0,8 +1,2008,8,30,1,6 +1,2008,8,31,1,5 +1,2008,9,1,0,1 +1,2008,9,2,0,5 +1,2008,9,3,0,6 +1,2008,9,4,0,6 +1,2008,9,5,0,2 +1,2008,9,6,1,3 +1,2008,9,7,1,4 +1,2008,9,8,0,3 +1,2008,9,9,0,2 +1,2008,9,10,0,1 +1,2008,9,11,0,5 +1,2008,9,12,0,5 +1,2008,9,13,1,1 +1,2008,9,14,1,6 +1,2008,9,15,0,7 +1,2008,9,16,0,7 +1,2008,9,17,0,6 +1,2008,9,18,0,5 +1,2008,9,19,0,5 +1,2008,9,20,1,1 +1,2008,9,21,1,1 +1,2008,9,22,0,1 +1,2008,9,23,0,5 +1,2008,9,24,0,5 +1,2008,9,25,0,5 +1,2008,9,26,0,5 +1,2008,9,27,1,6 +1,2008,9,28,1,6 +1,2008,9,29,0,6 +1,2008,9,30,0,6 +1,2008,10,1,0,8 +1,2008,10,2,0,4 +1,2008,10,3,0,3 +1,2008,10,4,1,2 +1,2008,10,5,1,1 +1,2008,10,6,0,2 +1,2008,10,7,0,7 +1,2008,10,8,0,7 +1,2008,10,9,0,2 +1,2008,10,10,0,1 +1,2008,10,11,1,1 +1,2008,10,12,1,5 +1,2008,10,13,0,5 +1,2008,10,14,0,5 +1,2008,10,15,0,5 +1,2008,10,16,0,6 +1,2008,10,17,0,7 +1,2008,10,18,1,7 +1,2008,10,19,1,6 +1,2008,10,20,0,6 +1,2008,10,21,0,5 +1,2008,10,22,0,5 +1,2008,10,23,0,5 +1,2008,10,24,0,5 +1,2008,10,25,1,5 +1,2008,10,26,1,5 +1,2008,10,27,0,6 +1,2008,10,28,0,6 +1,2008,10,29,0,6 +1,2008,10,30,0,6 +1,2008,10,31,0,7 +1,2008,11,1,1,5 +1,2008,11,2,1,5 +1,2008,11,3,0,1 +1,2008,11,4,0,1 +1,2008,11,5,0,1 +1,2008,11,6,0,6 +1,2008,11,7,0,5 +1,2008,11,8,1,5 +1,2008,11,9,1,1 +1,2008,11,10,0,1 +1,2008,11,11,0,5 +1,2008,11,12,0,5 +1,2008,11,13,0,5 +1,2008,11,14,0,7 +1,2008,11,15,1,8 +1,2008,11,16,1,6 +1,2008,11,17,0,6 +1,2008,11,18,0,5 +1,2008,11,19,0,5 +1,2008,11,20,0,7 +1,2008,11,21,0,7 +1,2008,11,22,1,6 +1,2008,11,23,1,2 +1,2008,11,24,0,8 +1,2008,11,25,0,2 +1,2008,11,26,0,2 +1,2008,11,27,0,2 +1,2008,11,28,0,6 +1,2008,11,29,1,5 +1,2008,11,30,1,6 +1,2008,12,1,0,5 +1,2008,12,2,0,5 +1,2008,12,3,0,5 +1,2008,12,4,0,6 +1,2008,12,5,0,2 +1,2008,12,6,1,1 +1,2008,12,7,1,1 +1,2008,12,8,0,5 +1,2008,12,9,0,1 +1,2008,12,10,0,1 +1,2008,12,11,0,1 +1,2008,12,12,0,6 +1,2008,12,13,1,5 +1,2008,12,14,1,8 +1,2008,12,15,0,8 +1,2008,12,16,0,8 +1,2008,12,17,0,8 +1,2008,12,18,0,7 +1,2008,12,19,0,3 +1,2008,12,20,1,4 +1,2008,12,21,1,4 +1,2008,12,22,0,8 +1,2008,12,23,0,8 +1,2008,12,24,0,7 +1,2008,12,25,0,6 +1,2008,12,26,0,7 +1,2008,12,27,1,2 +1,2008,12,28,1,1 +1,2008,12,29,0,1 +1,2008,12,30,0,1 +1,2008,12,31,0,1 +1,2009,1,1,0,1 +1,2009,1,2,0,1 +1,2009,1,3,1,2 +1,2009,1,4,1,7 +1,2009,1,5,0,6 +1,2009,1,6,0,5 +1,2009,1,7,0,5 +1,2009,1,8,0,1 +1,2009,1,9,0,1 +1,2009,1,10,1,6 +1,2009,1,11,1,5 +1,2009,1,12,0,5 +1,2009,1,13,0,5 +1,2009,1,14,0,1 +1,2009,1,15,0,6 +1,2009,1,16,0,2 +1,2009,1,17,1,2 +1,2009,1,18,1,2 +1,2009,1,19,0,2 +1,2009,1,20,0,2 +1,2009,1,21,0,2 +1,2009,1,22,0,1 +1,2009,1,23,0,2 +1,2009,1,24,1,2 +1,2009,1,25,1,3 +1,2009,1,26,0,4 +1,2009,1,27,0,8 +1,2009,1,28,0,6 +1,2009,1,29,0,6 +1,2009,1,30,0,6 +1,2009,1,31,1,1 +1,2009,2,1,1,7 +1,2009,2,2,0,7 +1,2009,2,3,0,6 +1,2009,2,4,0,6 +1,2009,2,5,0,5 +1,2009,2,6,0,1 +1,2009,2,7,1,1 +1,2009,2,8,1,2 +1,2009,2,9,0,1 +1,2009,2,10,0,2 +1,2009,2,11,0,3 +1,2009,2,12,0,3 +1,2009,2,13,0,3 +1,2009,2,14,1,3 +1,2009,2,15,1,3 +1,2009,2,16,0,1 +1,2009,2,17,0,1 +1,2009,2,18,0,1 +1,2009,2,19,0,7 +1,2009,2,20,0,6 +1,2009,2,21,1,7 +1,2009,2,22,1,5 +1,2009,2,23,0,5 +1,2009,2,24,0,5 +1,2009,2,25,0,5 +1,2009,2,26,0,1 +1,2009,2,27,0,6 +1,2009,2,28,1,7 +1,2009,3,1,1,4 +1,2009,3,2,0,2 +1,2009,3,3,0,1 +1,2009,3,4,0,5 +1,2009,3,5,0,5 +1,2009,3,6,0,6 +1,2009,3,7,1,5 +1,2009,3,8,1,6 +1,2009,3,9,0,5 +1,2009,3,10,0,7 +1,2009,3,11,0,8 +1,2009,3,12,0,8 +1,2009,3,13,0,7 +1,2009,3,14,1,6 +1,2009,3,15,1,1 +1,2009,3,16,0,1 +1,2009,3,17,0,2 +1,2009,3,18,0,3 +1,2009,3,19,0,2 +1,2009,3,20,0,1 +1,2009,3,21,1,1 +1,2009,3,22,1,5 +1,2009,3,23,0,5 +1,2009,3,24,0,6 +1,2009,3,25,0,6 +1,2009,3,26,0,5 +1,2009,3,27,0,7 +1,2009,3,28,1,2 +1,2009,3,29,1,5 +1,2009,3,30,0,5 +1,2009,3,31,0,6 +1,2009,4,1,0,1 +1,2009,4,2,0,1 +1,2009,4,3,0,1 +1,2009,4,4,1,5 +1,2009,4,5,1,6 +1,2009,4,6,0,8 +1,2009,4,7,0,7 +1,2009,4,8,0,1 +1,2009,4,9,0,1 +1,2009,4,10,0,5 +1,2009,4,11,1,5 +1,2009,4,12,1,5 +1,2009,4,13,0,6 +1,2009,4,14,0,1 +1,2009,4,15,0,5 +1,2009,4,16,0,5 +1,2009,4,17,0,6 +1,2009,4,18,1,7 +1,2009,4,19,1,8 +1,2009,4,20,0,8 +1,2009,4,21,0,4 +1,2009,4,22,0,4 +1,2009,4,23,0,2 +1,2009,4,24,0,1 +1,2009,4,25,1,1 +1,2009,4,26,1,5 +1,2009,4,27,0,6 +1,2009,4,28,0,5 +1,2009,4,29,0,5 +1,2009,4,30,0,6 +1,2009,5,1,0,2 +1,2009,5,2,1,1 +1,2009,5,3,1,1 +1,2009,5,4,0,5 +1,2009,5,5,0,5 +1,2009,5,6,0,5 +1,2009,5,7,0,5 +1,2009,5,8,0,5 +1,2009,5,9,1,6 +1,2009,5,10,1,7 +1,2009,5,11,0,6 +1,2009,5,12,0,5 +1,2009,5,13,0,5 +1,2009,5,14,0,6 +1,2009,5,15,0,6 +1,2009,5,16,1,3 +1,2009,5,17,1,8 +1,2009,5,18,0,8 +1,2009,5,19,0,6 +1,2009,5,20,0,6 +1,2009,5,21,0,6 +1,2009,5,22,0,6 +1,2009,5,23,1,6 +1,2009,5,24,1,6 +1,2009,5,25,0,6 +1,2009,5,26,0,7 +1,2009,5,27,0,8 +1,2009,5,28,0,8 +1,2009,5,29,0,8 +1,2009,5,30,1,8 +1,2009,5,31,1,7 +1,2009,6,1,0,5 +1,2009,6,2,0,5 +1,2009,6,3,0,6 +1,2009,6,4,0,5 +1,2009,6,5,0,5 +1,2009,6,6,1,5 +1,2009,6,7,1,5 +1,2009,6,8,0,5 +1,2009,6,9,0,5 +1,2009,6,10,0,5 +1,2009,6,11,0,5 +1,2009,6,12,0,5 +1,2009,6,13,1,5 +1,2009,6,14,1,5 +1,2009,6,15,0,5 +1,2009,6,16,0,5 +1,2009,6,17,0,5 +1,2009,6,18,0,5 +1,2009,6,19,0,6 +1,2009,6,20,1,1 +1,2009,6,21,1,1 +1,2009,6,22,0,1 +1,2009,6,23,0,6 +1,2009,6,24,0,7 +1,2009,6,25,0,6 +1,2009,6,26,0,5 +1,2009,6,27,1,8 +1,2009,6,28,1,8 +1,2009,6,29,0,4 +1,2009,6,30,0,4 +1,2009,7,1,0,5 +1,2009,7,2,0,1 +1,2009,7,3,0,2 +1,2009,7,4,1,2 +1,2009,7,5,1,1 +1,2009,7,6,0,1 +1,2009,7,7,0,5 +1,2009,7,8,0,5 +1,2009,7,9,0,5 +1,2009,7,10,0,1 +1,2009,7,11,1,2 +1,2009,7,12,1,2 +1,2009,7,13,0,5 +1,2009,7,14,0,5 +1,2009,7,15,0,7 +1,2009,7,16,0,3 +1,2009,7,17,0,4 +1,2009,7,18,1,8 +1,2009,7,19,1,8 +1,2009,7,20,0,7 +1,2009,7,21,0,3 +1,2009,7,22,0,2 +1,2009,7,23,0,6 +1,2009,7,24,0,6 +1,2009,7,25,1,2 +1,2009,7,26,1,3 +1,2009,7,27,0,4 +1,2009,7,28,0,4 +1,2009,7,29,0,3 +1,2009,7,30,0,3 +1,2009,7,31,0,3 +1,2009,8,1,1,2 +1,2009,8,2,1,1 +1,2009,8,3,0,1 +1,2009,8,4,0,1 +1,2009,8,5,0,1 +1,2009,8,6,0,1 +1,2009,8,7,0,1 +1,2009,8,8,1,5 +1,2009,8,9,1,1 +1,2009,8,10,0,2 +1,2009,8,11,0,2 +1,2009,8,12,0,2 +1,2009,8,13,0,5 +1,2009,8,14,0,5 +1,2009,8,15,1,5 +1,2009,8,16,1,5 +1,2009,8,17,0,2 +1,2009,8,18,0,2 +1,2009,8,19,0,6 +1,2009,8,20,0,2 +1,2009,8,21,0,2 +1,2009,8,22,1,6 +1,2009,8,23,1,5 +1,2009,8,24,0,5 +1,2009,8,25,0,1 +1,2009,8,26,0,2 +1,2009,8,27,0,3 +1,2009,8,28,0,4 +1,2009,8,29,1,8 +1,2009,8,30,1,7 +1,2009,8,31,0,6 +1,2009,9,1,0,2 +1,2009,9,2,0,4 +1,2009,9,3,0,4 +1,2009,9,4,0,4 +1,2009,9,5,1,2 +1,2009,9,6,1,1 +1,2009,9,7,0,1 +1,2009,9,8,0,1 +1,2009,9,9,0,2 +1,2009,9,10,0,8 +1,2009,9,11,0,8 +1,2009,9,12,1,4 +1,2009,9,13,1,2 +1,2009,9,14,0,1 +1,2009,9,15,0,5 +1,2009,9,16,0,7 +1,2009,9,17,0,6 +1,2009,9,18,0,7 +1,2009,9,19,1,3 +1,2009,9,20,1,1 +1,2009,9,21,0,5 +1,2009,9,22,0,7 +1,2009,9,23,0,7 +1,2009,9,24,0,6 +1,2009,9,25,0,6 +1,2009,9,26,1,6 +1,2009,9,27,1,5 +1,2009,9,28,0,5 +1,2009,9,29,0,1 +1,2009,9,30,0,1 +1,2009,10,1,0,5 +1,2009,10,2,0,5 +1,2009,10,3,1,1 +1,2009,10,4,1,1 +1,2009,10,5,0,1 +1,2009,10,6,0,5 +1,2009,10,7,0,1 +1,2009,10,8,0,1 +1,2009,10,9,0,5 +1,2009,10,10,1,5 +1,2009,10,11,1,5 +1,2009,10,12,0,1 +1,2009,10,13,0,1 +1,2009,10,14,0,1 +1,2009,10,15,0,3 +1,2009,10,16,0,8 +1,2009,10,17,1,8 +1,2009,10,18,1,3 +1,2009,10,19,0,1 +1,2009,10,20,0,1 +1,2009,10,21,0,5 +1,2009,10,22,0,5 +1,2009,10,23,0,6 +1,2009,10,24,1,1 +1,2009,10,25,1,1 +1,2009,10,26,0,5 +1,2009,10,27,0,1 +1,2009,10,28,0,1 +1,2009,10,29,0,5 +1,2009,10,30,0,5 +1,2009,10,31,1,5 +1,2009,11,1,1,5 +1,2009,11,2,0,7 +1,2009,11,3,0,6 +1,2009,11,4,0,6 +1,2009,11,5,0,5 +1,2009,11,6,0,1 +1,2009,11,7,1,1 +1,2009,11,8,1,1 +1,2009,11,9,0,6 +1,2009,11,10,0,6 +1,2009,11,11,0,5 +1,2009,11,12,0,1 +1,2009,11,13,0,1 +1,2009,11,14,1,2 +1,2009,11,15,1,2 +1,2009,11,16,0,6 +1,2009,11,17,0,5 +1,2009,11,18,0,1 +1,2009,11,19,0,1 +1,2009,11,20,0,1 +1,2009,11,21,1,1 +1,2009,11,22,1,1 +1,2009,11,23,0,2 +1,2009,11,24,0,7 +1,2009,11,25,0,7 +1,2009,11,26,0,6 +1,2009,11,27,0,1 +1,2009,11,28,1,1 +1,2009,11,29,1,2 +1,2009,11,30,0,6 +1,2009,12,1,0,5 +1,2009,12,2,0,7 +1,2009,12,3,0,7 +1,2009,12,4,0,3 +1,2009,12,5,1,2 +1,2009,12,6,1,8 +1,2009,12,7,0,8 +1,2009,12,8,0,8 +1,2009,12,9,0,4 +1,2009,12,10,0,4 +1,2009,12,11,0,8 +1,2009,12,12,1,7 +1,2009,12,13,1,6 +1,2009,12,14,0,7 +1,2009,12,15,0,1 +1,2009,12,16,0,1 +1,2009,12,17,0,1 +1,2009,12,18,0,1 +1,2009,12,19,1,1 +1,2009,12,20,1,1 +1,2009,12,21,0,5 +1,2009,12,22,0,6 +1,2009,12,23,0,2 +1,2009,12,24,0,3 +1,2009,12,25,0,3 +1,2009,12,26,1,3 +1,2009,12,27,1,3 +1,2009,12,28,0,3 +1,2009,12,29,0,2 +1,2009,12,30,0,6 +1,2009,12,31,0,2 +1,2010,1,1,0,5 +1,2010,1,2,1,5 +1,2010,1,3,1,5 +1,2010,1,4,0,5 +1,2010,1,5,0,5 +1,2010,1,6,0,5 +1,2010,1,7,0,7 +1,2010,1,8,0,6 +1,2010,1,9,1,6 +1,2010,1,10,1,5 +1,2010,1,11,0,5 +1,2010,1,12,0,1 +1,2010,1,13,0,1 +1,2010,1,14,0,1 +1,2010,1,15,0,5 +1,2010,1,16,1,1 +1,2010,1,17,1,1 +1,2010,1,18,0,1 +1,2010,1,19,0,1 +1,2010,1,20,0,1 +1,2010,1,21,0,1 +1,2010,1,22,0,1 +1,2010,1,23,1,1 +1,2010,1,24,1,2 +1,2010,1,25,0,5 +1,2010,1,26,0,1 +1,2010,1,27,0,1 +1,2010,1,28,0,1 +1,2010,1,29,0,5 +1,2010,1,30,1,1 +1,2010,1,31,1,1 +1,2010,2,1,0,6 +1,2010,2,2,0,6 +1,2010,2,3,0,5 +1,2010,2,4,0,5 +1,2010,2,5,0,5 +1,2010,2,6,1,5 +1,2010,2,7,1,5 +1,2010,2,8,0,7 +1,2010,2,9,0,7 +1,2010,2,10,0,2 +1,2010,2,11,0,1 +1,2010,2,12,0,5 +1,2010,2,13,1,5 +1,2010,2,14,1,6 +1,2010,2,15,0,6 +1,2010,2,16,0,5 +1,2010,2,17,0,5 +1,2010,2,18,0,5 +1,2010,2,19,0,5 +1,2010,2,20,1,6 +1,2010,2,21,1,7 +1,2010,2,22,0,8 +1,2010,2,23,0,8 +1,2010,2,24,0,5 +1,2010,2,25,0,5 +1,2010,2,26,0,5 +1,2010,2,27,1,5 +1,2010,2,28,1,5 +1,2010,3,1,0,3 +1,2010,3,2,0,3 +1,2010,3,3,0,1 +1,2010,3,4,0,5 +1,2010,3,5,0,6 +1,2010,3,6,1,7 +1,2010,3,7,1,6 +1,2010,3,8,0,5 +1,2010,3,9,0,5 +1,2010,3,10,0,5 +1,2010,3,11,0,6 +1,2010,3,12,0,2 +1,2010,3,13,1,5 +1,2010,3,14,1,7 +1,2010,3,15,0,4 +1,2010,3,16,0,4 +1,2010,3,17,0,3 +1,2010,3,18,0,6 +1,2010,3,19,0,6 +1,2010,3,20,1,8 +1,2010,3,21,1,3 +1,2010,3,22,0,1 +1,2010,3,23,0,5 +1,2010,3,24,0,3 +1,2010,3,25,0,1 +1,2010,3,26,0,1 +1,2010,3,27,1,6 +1,2010,3,28,1,3 +1,2010,3,29,0,1 +1,2010,3,30,0,1 +1,2010,3,31,0,5 +1,2010,4,1,0,5 +1,2010,4,2,0,5 +1,2010,4,3,1,5 +1,2010,4,4,1,5 +1,2010,4,5,0,1 +1,2010,4,6,0,5 +1,2010,4,7,0,5 +1,2010,4,8,0,6 +1,2010,4,9,0,5 +1,2010,4,10,1,5 +1,2010,4,11,1,5 +1,2010,4,12,0,1 +1,2010,4,13,0,5 +1,2010,4,14,0,5 +1,2010,4,15,0,6 +1,2010,4,16,0,7 +1,2010,4,17,1,7 +1,2010,4,18,1,3 +1,2010,4,19,0,3 +1,2010,4,20,0,2 +1,2010,4,21,0,1 +1,2010,4,22,0,1 +1,2010,4,23,0,5 +1,2010,4,24,1,5 +1,2010,4,25,1,7 +1,2010,4,26,0,3 +1,2010,4,27,0,2 +1,2010,4,28,0,1 +1,2010,4,29,0,1 +1,2010,4,30,0,1 +1,2010,5,1,1,1 +1,2010,5,2,1,1 +1,2010,5,3,0,2 +1,2010,5,4,0,1 +1,2010,5,5,0,1 +1,2010,5,6,0,1 +1,2010,5,7,0,2 +1,2010,5,8,1,2 +1,2010,5,9,1,1 +1,2010,5,10,0,1 +1,2010,5,11,0,1 +1,2010,5,12,0,1 +1,2010,5,13,0,2 +1,2010,5,14,0,2 +1,2010,5,15,1,2 +1,2010,5,16,1,2 +1,2010,5,17,0,6 +1,2010,5,18,0,1 +1,2010,5,19,0,1 +1,2010,5,20,0,5 +1,2010,5,21,0,5 +1,2010,5,22,1,5 +1,2010,5,23,1,1 +1,2010,5,24,0,1 +1,2010,5,25,0,1 +1,2010,5,26,0,1 +1,2010,5,27,0,5 +1,2010,5,28,0,1 +1,2010,5,29,1,1 +1,2010,5,30,1,2 +1,2010,5,31,0,6 +1,2010,6,1,0,5 +1,2010,6,2,0,5 +1,2010,6,3,0,1 +1,2010,6,4,0,1 +1,2010,6,5,1,2 +1,2010,6,6,1,7 +1,2010,6,7,0,2 +1,2010,6,8,0,2 +1,2010,6,9,0,1 +1,2010,6,10,0,1 +1,2010,6,11,0,1 +1,2010,6,12,1,5 +1,2010,6,13,1,5 +1,2010,6,14,0,5 +1,2010,6,15,0,2 +1,2010,6,16,0,1 +1,2010,6,17,0,1 +1,2010,6,18,0,1 +1,2010,6,19,1,5 +1,2010,6,20,1,5 +1,2010,6,21,0,1 +1,2010,6,22,0,5 +1,2010,6,23,0,6 +1,2010,6,24,0,6 +1,2010,6,25,0,3 +1,2010,6,26,1,2 +1,2010,6,27,1,7 +1,2010,6,28,0,8 +1,2010,6,29,0,4 +1,2010,6,30,0,3 +1,2010,7,1,0,1 +1,2010,7,2,0,5 +1,2010,7,3,1,5 +1,2010,7,4,1,5 +1,2010,7,5,0,5 +1,2010,7,6,0,1 +1,2010,7,7,0,1 +1,2010,7,8,0,2 +1,2010,7,9,0,3 +1,2010,7,10,1,2 +1,2010,7,11,1,2 +1,2010,7,12,0,5 +1,2010,7,13,0,5 +1,2010,7,14,0,5 +1,2010,7,15,0,7 +1,2010,7,16,0,7 +1,2010,7,17,1,6 +1,2010,7,18,1,6 +1,2010,7,19,0,5 +1,2010,7,20,0,5 +1,2010,7,21,0,1 +1,2010,7,22,0,1 +1,2010,7,23,0,5 +1,2010,7,24,1,2 +1,2010,7,25,1,2 +1,2010,7,26,0,1 +1,2010,7,27,0,1 +1,2010,7,28,0,1 +1,2010,7,29,0,1 +1,2010,7,30,0,1 +1,2010,7,31,1,1 +1,2010,8,1,1,5 +1,2010,8,2,0,1 +1,2010,8,3,0,1 +1,2010,8,4,0,1 +1,2010,8,5,0,1 +1,2010,8,6,0,1 +1,2010,8,7,1,5 +1,2010,8,8,1,5 +1,2010,8,9,0,1 +1,2010,8,10,0,5 +1,2010,8,11,0,1 +1,2010,8,12,0,5 +1,2010,8,13,0,5 +1,2010,8,14,1,1 +1,2010,8,15,1,2 +1,2010,8,16,0,2 +1,2010,8,17,0,3 +1,2010,8,18,0,1 +1,2010,8,19,0,5 +1,2010,8,20,0,5 +1,2010,8,21,1,5 +1,2010,8,22,1,5 +1,2010,8,23,0,5 +1,2010,8,24,0,4 +1,2010,8,25,0,4 +1,2010,8,26,0,7 +1,2010,8,27,0,5 +1,2010,8,28,1,5 +1,2010,8,29,1,5 +1,2010,8,30,0,5 +1,2010,8,31,0,1 +1,2010,9,1,0,1 +1,2010,9,2,0,6 +1,2010,9,3,0,8 +1,2010,9,4,1,2 +1,2010,9,5,1,1 +1,2010,9,6,0,1 +1,2010,9,7,0,1 +1,2010,9,8,0,1 +1,2010,9,9,0,1 +1,2010,9,10,0,5 +1,2010,9,11,1,5 +1,2010,9,12,1,5 +1,2010,9,13,0,5 +1,2010,9,14,0,1 +1,2010,9,15,0,1 +1,2010,9,16,0,1 +1,2010,9,17,0,1 +1,2010,9,18,1,1 +1,2010,9,19,1,1 +1,2010,9,20,0,1 +1,2010,9,21,0,1 +1,2010,9,22,0,1 +1,2010,9,23,0,5 +1,2010,9,24,0,5 +1,2010,9,25,1,6 +1,2010,9,26,1,6 +1,2010,9,27,0,7 +1,2010,9,28,0,3 +1,2010,9,29,0,2 +1,2010,9,30,0,2 +1,2010,10,1,0,4 +1,2010,10,2,1,4 +1,2010,10,3,1,4 +1,2010,10,4,0,3 +1,2010,10,5,0,1 +1,2010,10,6,0,6 +1,2010,10,7,0,6 +1,2010,10,8,0,6 +1,2010,10,9,1,7 +1,2010,10,10,1,8 +1,2010,10,11,0,8 +1,2010,10,12,0,8 +1,2010,10,13,0,8 +1,2010,10,14,0,8 +1,2010,10,15,0,8 +1,2010,10,16,1,7 +1,2010,10,17,1,2 +1,2010,10,18,0,5 +1,2010,10,19,0,6 +1,2010,10,20,0,5 +1,2010,10,21,0,1 +1,2010,10,22,0,1 +1,2010,10,23,1,1 +1,2010,10,24,1,1 +1,2010,10,25,0,1 +1,2010,10,26,0,1 +1,2010,10,27,0,5 +1,2010,10,28,0,5 +1,2010,10,29,0,5 +1,2010,10,30,1,1 +1,2010,10,31,1,5 +1,2010,11,1,0,5 +1,2010,11,2,0,5 +1,2010,11,3,0,6 +1,2010,11,4,0,6 +1,2010,11,5,0,5 +1,2010,11,6,1,5 +1,2010,11,7,1,5 +1,2010,11,8,0,1 +1,2010,11,9,0,1 +1,2010,11,10,0,1 +1,2010,11,11,0,8 +1,2010,11,12,0,8 +1,2010,11,13,1,8 +1,2010,11,14,1,6 +1,2010,11,15,0,5 +1,2010,11,16,0,1 +1,2010,11,17,0,2 +1,2010,11,18,0,1 +1,2010,11,19,0,1 +1,2010,11,20,1,1 +1,2010,11,21,1,1 +1,2010,11,22,0,2 +1,2010,11,23,0,2 +1,2010,11,24,0,4 +1,2010,11,25,0,4 +1,2010,11,26,0,3 +1,2010,11,27,1,1 +1,2010,11,28,1,1 +1,2010,11,29,0,3 +1,2010,11,30,0,8 +1,2010,12,1,0,1 +1,2010,12,2,0,1 +1,2010,12,3,0,5 +1,2010,12,4,1,6 +1,2010,12,5,1,6 +1,2010,12,6,0,6 +1,2010,12,7,0,5 +1,2010,12,8,0,1 +1,2010,12,9,0,5 +1,2010,12,10,0,5 +1,2010,12,11,1,5 +1,2010,12,12,1,1 +1,2010,12,13,0,5 +1,2010,12,14,0,5 +1,2010,12,15,0,5 +1,2010,12,16,0,6 +1,2010,12,17,0,7 +1,2010,12,18,1,6 +1,2010,12,19,1,5 +1,2010,12,20,0,5 +1,2010,12,21,0,6 +1,2010,12,22,0,5 +1,2010,12,23,0,6 +1,2010,12,24,0,6 +1,2010,12,25,1,5 +1,2010,12,26,1,5 +1,2010,12,27,0,1 +1,2010,12,28,0,1 +1,2010,12,29,0,5 +1,2010,12,30,0,7 +1,2010,12,31,0,4 +1,2011,1,1,1,8 +1,2011,1,2,1,8 +1,2011,1,3,0,4 +1,2011,1,4,0,4 +1,2011,1,5,0,6 +1,2011,1,6,0,5 +1,2011,1,7,0,5 +1,2011,1,8,1,2 +1,2011,1,9,1,2 +1,2011,1,10,0,7 +1,2011,1,11,0,8 +1,2011,1,12,0,6 +1,2011,1,13,0,5 +1,2011,1,14,0,5 +1,2011,1,15,1,5 +1,2011,1,16,1,5 +1,2011,1,17,0,1 +1,2011,1,18,0,1 +1,2011,1,19,0,1 +1,2011,1,20,0,2 +1,2011,1,21,0,5 +1,2011,1,22,1,1 +1,2011,1,23,1,1 +1,2011,1,24,0,5 +1,2011,1,25,0,5 +1,2011,1,26,0,5 +1,2011,1,27,0,5 +1,2011,1,28,0,1 +1,2011,1,29,1,1 +1,2011,1,30,1,1 +1,2011,1,31,0,3 +1,2011,2,1,0,8 +1,2011,2,2,0,8 +1,2011,2,3,0,4 +1,2011,2,4,0,2 +1,2011,2,5,1,1 +1,2011,2,6,1,5 +1,2011,2,7,0,6 +1,2011,2,8,0,8 +1,2011,2,9,0,8 +1,2011,2,10,0,4 +1,2011,2,11,0,3 +1,2011,2,12,1,1 +1,2011,2,13,1,1 +1,2011,2,14,0,1 +1,2011,2,15,0,1 +1,2011,2,16,0,1 +1,2011,2,17,0,1 +1,2011,2,18,0,2 +1,2011,2,19,1,2 +1,2011,2,20,1,3 +1,2011,2,21,0,3 +1,2011,2,22,0,2 +1,2011,2,23,0,2 +1,2011,2,24,0,4 +1,2011,2,25,0,4 +1,2011,2,26,1,4 +1,2011,2,27,1,3 +1,2011,2,28,0,1 +1,2011,3,1,0,8 +1,2011,3,2,0,7 +1,2011,3,3,0,1 +1,2011,3,4,0,7 +1,2011,3,5,1,4 +1,2011,3,6,1,7 +1,2011,3,7,0,5 +1,2011,3,8,0,6 +1,2011,3,9,0,4 +1,2011,3,10,0,2 +1,2011,3,11,0,1 +1,2011,3,12,1,6 +1,2011,3,13,1,2 +1,2011,3,14,0,2 +1,2011,3,15,0,1 +1,2011,3,16,0,1 +1,2011,3,17,0,5 +1,2011,3,18,0,6 +1,2011,3,19,1,5 +1,2011,3,20,1,5 +1,2011,3,21,0,5 +1,2011,3,22,0,5 +1,2011,3,23,0,6 +1,2011,3,24,0,5 +1,2011,3,25,0,5 +1,2011,3,26,1,5 +1,2011,3,27,1,5 +1,2011,3,28,0,5 +1,2011,3,29,0,2 +1,2011,3,30,0,1 +1,2011,3,31,0,1 +1,2011,4,1,0,4 +1,2011,4,2,1,2 +1,2011,4,3,1,1 +1,2011,4,4,0,6 +1,2011,4,5,0,2 +1,2011,4,6,0,1 +1,2011,4,7,0,1 +1,2011,4,8,0,5 +1,2011,4,9,1,5 +1,2011,4,10,1,5 +1,2011,4,11,0,6 +1,2011,4,12,0,5 +1,2011,4,13,0,5 +1,2011,4,14,0,5 +1,2011,4,15,0,6 +1,2011,4,16,1,2 +1,2011,4,17,1,2 +1,2011,4,18,0,1 +1,2011,4,19,0,1 +1,2011,4,20,0,2 +1,2011,4,21,0,1 +1,2011,4,22,0,1 +1,2011,4,23,1,1 +1,2011,4,24,1,1 +1,2011,4,25,0,1 +1,2011,4,26,0,1 +1,2011,4,27,0,5 +1,2011,4,28,0,2 +1,2011,4,29,0,1 +1,2011,4,30,1,5 +1,2011,5,1,1,2 +1,2011,5,2,0,3 +1,2011,5,3,0,2 +1,2011,5,4,0,2 +1,2011,5,5,0,3 +1,2011,5,6,0,6 +1,2011,5,7,1,5 +1,2011,5,8,1,5 +1,2011,5,9,0,1 +1,2011,5,10,0,1 +1,2011,5,11,0,1 +1,2011,5,12,0,1 +1,2011,5,13,0,2 +1,2011,5,14,1,1 +1,2011,5,15,1,1 +1,2011,5,16,0,1 +1,2011,5,17,0,1 +1,2011,5,18,0,1 +1,2011,5,19,0,1 +1,2011,5,20,0,1 +1,2011,5,21,1,5 +1,2011,5,22,1,5 +1,2011,5,23,0,5 +1,2011,5,24,0,1 +1,2011,5,25,0,1 +1,2011,5,26,0,5 +1,2011,5,27,0,5 +1,2011,5,28,1,5 +1,2011,5,29,1,5 +1,2011,5,30,0,1 +1,2011,5,31,0,1 +1,2011,6,1,0,5 +1,2011,6,2,0,5 +1,2011,6,3,0,5 +1,2011,6,4,1,5 +1,2011,6,5,1,5 +1,2011,6,6,0,5 +1,2011,6,7,0,5 +1,2011,6,8,0,5 +1,2011,6,9,0,5 +1,2011,6,10,0,5 +1,2011,6,11,1,5 +1,2011,6,12,1,5 +1,2011,6,13,0,5 +1,2011,6,14,0,5 +1,2011,6,15,0,3 +1,2011,6,16,0,1 +1,2011,6,17,0,1 +1,2011,6,18,1,1 +1,2011,6,19,1,1 +1,2011,6,20,0,5 +1,2011,6,21,0,8 +1,2011,6,22,0,8 +1,2011,6,23,0,3 +1,2011,6,24,0,2 +1,2011,6,25,1,2 +1,2011,6,26,1,2 +1,2011,6,27,0,7 +1,2011,6,28,0,4 +1,2011,6,29,0,2 +1,2011,6,30,0,1 +1,2011,7,1,0,5 +1,2011,7,2,1,6 +1,2011,7,3,1,6 +1,2011,7,4,0,6 +1,2011,7,5,0,7 +1,2011,7,6,0,7 +1,2011,7,7,0,6 +1,2011,7,8,0,5 +1,2011,7,9,1,5 +1,2011,7,10,1,5 +1,2011,7,11,0,1 +1,2011,7,12,0,1 +1,2011,7,13,0,1 +1,2011,7,14,0,1 +1,2011,7,15,0,1 +1,2011,7,16,1,1 +1,2011,7,17,1,1 +1,2011,7,18,0,1 +1,2011,7,19,0,5 +1,2011,7,20,0,5 +1,2011,7,21,0,5 +1,2011,7,22,0,5 +1,2011,7,23,1,5 +1,2011,7,24,1,1 +1,2011,7,25,0,1 +1,2011,7,26,0,5 +1,2011,7,27,0,5 +1,2011,7,28,0,6 +1,2011,7,29,0,7 +1,2011,7,30,1,2 +1,2011,7,31,1,1 +1,2011,8,1,0,1 +1,2011,8,2,0,2 +1,2011,8,3,0,6 +1,2011,8,4,0,1 +1,2011,8,5,0,1 +1,2011,8,6,1,1 +1,2011,8,7,1,5 +1,2011,8,8,0,5 +1,2011,8,9,0,5 +1,2011,8,10,0,5 +1,2011,8,11,0,5 +1,2011,8,12,0,5 +1,2011,8,13,1,6 +1,2011,8,14,1,5 +1,2011,8,15,0,5 +1,2011,8,16,0,5 +1,2011,8,17,0,2 +1,2011,8,18,0,5 +1,2011,8,19,0,5 +1,2011,8,20,1,1 +1,2011,8,21,1,1 +1,2011,8,22,0,1 +1,2011,8,23,0,6 +1,2011,8,24,0,7 +1,2011,8,25,0,3 +1,2011,8,26,0,8 +1,2011,8,27,1,8 +1,2011,8,28,1,7 +1,2011,8,29,0,6 +1,2011,8,30,0,5 +1,2011,8,31,0,5 +1,2011,9,1,0,1 +1,2011,9,2,0,2 +1,2011,9,3,1,2 +1,2011,9,4,1,8 +1,2011,9,5,0,3 +1,2011,9,6,0,3 +1,2011,9,7,0,8 +1,2011,9,8,0,8 +1,2011,9,9,0,8 +1,2011,9,10,1,4 +1,2011,9,11,1,7 +1,2011,9,12,0,6 +1,2011,9,13,0,5 +1,2011,9,14,0,5 +1,2011,9,15,0,5 +1,2011,9,16,0,1 +1,2011,9,17,1,1 +1,2011,9,18,1,5 +1,2011,9,19,0,6 +1,2011,9,20,0,5 +1,2011,9,21,0,7 +1,2011,9,22,0,7 +1,2011,9,23,0,8 +1,2011,9,24,1,3 +1,2011,9,25,1,1 +1,2011,9,26,0,1 +1,2011,9,27,0,5 +1,2011,9,28,0,5 +1,2011,9,29,0,6 +1,2011,9,30,0,6 +1,2011,10,1,1,4 +1,2011,10,2,1,4 +1,2011,10,3,0,3 +1,2011,10,4,0,2 +1,2011,10,5,0,1 +1,2011,10,6,0,1 +1,2011,10,7,0,1 +1,2011,10,8,1,5 +1,2011,10,9,1,5 +1,2011,10,10,0,1 +1,2011,10,11,0,2 +1,2011,10,12,0,2 +1,2011,10,13,0,8 +1,2011,10,14,0,3 +1,2011,10,15,1,3 +1,2011,10,16,1,3 +1,2011,10,17,0,2 +1,2011,10,18,0,7 +1,2011,10,19,0,7 +1,2011,10,20,0,2 +1,2011,10,21,0,7 +1,2011,10,22,1,7 +1,2011,10,23,1,7 +1,2011,10,24,0,2 +1,2011,10,25,0,1 +1,2011,10,26,0,5 +1,2011,10,27,0,5 +1,2011,10,28,0,5 +1,2011,10,29,1,5 +1,2011,10,30,1,5 +1,2011,10,31,0,5 +1,2011,11,1,0,2 +1,2011,11,2,0,3 +1,2011,11,3,0,1 +1,2011,11,4,0,1 +1,2011,11,5,1,1 +1,2011,11,6,1,1 +1,2011,11,7,0,2 +1,2011,11,8,0,7 +1,2011,11,9,0,8 +1,2011,11,10,0,7 +1,2011,11,11,0,1 +1,2011,11,12,1,1 +1,2011,11,13,1,1 +1,2011,11,14,0,1 +1,2011,11,15,0,1 +1,2011,11,16,0,2 +1,2011,11,17,0,1 +1,2011,11,18,0,1 +1,2011,11,19,1,1 +1,2011,11,20,1,2 +1,2011,11,21,0,1 +1,2011,11,22,0,5 +1,2011,11,23,0,5 +1,2011,11,24,0,1 +1,2011,11,25,0,1 +1,2011,11,26,1,8 +1,2011,11,27,1,7 +1,2011,11,28,0,6 +1,2011,11,29,0,8 +1,2011,11,30,0,1 +1,2011,12,1,0,6 +1,2011,12,2,0,1 +1,2011,12,3,1,2 +1,2011,12,4,1,2 +1,2011,12,5,0,4 +1,2011,12,6,0,3 +1,2011,12,7,0,2 +1,2011,12,8,0,2 +1,2011,12,9,0,2 +1,2011,12,10,1,2 +1,2011,12,11,1,2 +1,2011,12,12,0,7 +1,2011,12,13,0,7 +1,2011,12,14,0,2 +1,2011,12,15,0,2 +1,2011,12,16,0,1 +1,2011,12,17,1,1 +1,2011,12,18,1,1 +1,2011,12,19,0,1 +1,2011,12,20,0,1 +1,2011,12,21,0,1 +1,2011,12,22,0,3 +1,2011,12,23,0,3 +1,2011,12,24,1,2 +1,2011,12,25,1,2 +1,2011,12,26,0,1 +1,2011,12,27,0,1 +1,2011,12,28,0,1 +1,2011,12,29,0,1 +1,2011,12,30,0,5 +1,2011,12,31,1,6 +1,2012,1,1,1,6 +1,2012,1,2,0,6 +1,2012,1,3,0,5 +1,2012,1,4,0,5 +1,2012,1,5,0,5 +1,2012,1,6,0,2 +1,2012,1,7,1,2 +1,2012,1,8,1,5 +1,2012,1,9,0,5 +1,2012,1,10,0,1 +1,2012,1,11,0,3 +1,2012,1,12,0,7 +1,2012,1,13,0,7 +1,2012,1,14,1,6 +1,2012,1,15,1,2 +1,2012,1,16,0,3 +1,2012,1,17,0,7 +1,2012,1,18,0,3 +1,2012,1,19,0,2 +1,2012,1,20,0,2 +1,2012,1,21,1,1 +1,2012,1,22,1,1 +1,2012,1,23,0,1 +1,2012,1,24,0,2 +1,2012,1,25,0,5 +1,2012,1,26,0,1 +1,2012,1,27,0,2 +1,2012,1,28,1,6 +1,2012,1,29,1,5 +1,2012,1,30,0,1 +1,2012,1,31,0,1 +1,2012,2,1,0,5 +1,2012,2,2,0,6 +1,2012,2,3,0,7 +1,2012,2,4,1,7 +1,2012,2,5,1,8 +1,2012,2,6,0,7 +1,2012,2,7,0,7 +1,2012,2,8,0,7 +1,2012,2,9,0,5 +1,2012,2,10,0,6 +1,2012,2,11,1,6 +1,2012,2,12,1,7 +1,2012,2,13,0,1 +1,2012,2,14,0,1 +1,2012,2,15,0,2 +1,2012,2,16,0,2 +1,2012,2,17,0,6 +1,2012,2,18,1,1 +1,2012,2,19,1,1 +1,2012,2,20,0,1 +1,2012,2,21,0,1 +1,2012,2,22,0,1 +1,2012,2,23,0,1 +1,2012,2,24,0,6 +1,2012,2,25,1,1 +1,2012,2,26,1,1 +1,2012,2,27,0,3 +1,2012,2,28,0,3 +1,2012,2,29,0,1 +1,2012,3,1,0,5 +1,2012,3,2,0,7 +1,2012,3,3,1,4 +1,2012,3,4,1,3 +1,2012,3,5,0,2 +1,2012,3,6,0,5 +1,2012,3,7,0,5 +1,2012,3,8,0,8 +1,2012,3,9,0,4 +1,2012,3,10,1,2 +1,2012,3,11,1,1 +1,2012,3,12,0,1 +1,2012,3,13,0,1 +1,2012,3,14,0,5 +1,2012,3,15,0,1 +1,2012,3,16,0,1 +1,2012,3,17,1,5 +1,2012,3,18,1,5 +1,2012,3,19,0,5 +1,2012,3,20,0,6 +1,2012,3,21,0,6 +1,2012,3,22,0,5 +1,2012,3,23,0,5 +1,2012,3,24,1,1 +1,2012,3,25,1,5 +1,2012,3,26,0,1 +1,2012,3,27,0,1 +1,2012,3,28,0,1 +1,2012,3,29,0,1 +1,2012,3,30,0,1 +1,2012,3,31,1,1 +1,2012,4,1,1,1 +1,2012,4,2,0,5 +1,2012,4,3,0,6 +1,2012,4,4,0,5 +1,2012,4,5,0,5 +1,2012,4,6,0,5 +1,2012,4,7,1,6 +1,2012,4,8,1,7 +1,2012,4,9,0,7 +1,2012,4,10,0,2 +1,2012,4,11,0,1 +1,2012,4,12,0,1 +1,2012,4,13,0,1 +1,2012,4,14,1,5 +1,2012,4,15,1,5 +1,2012,4,16,0,7 +1,2012,4,17,0,7 +1,2012,4,18,0,2 +1,2012,4,19,0,2 +1,2012,4,20,0,4 +1,2012,4,21,1,4 +1,2012,4,22,1,4 +1,2012,4,23,0,4 +1,2012,4,24,0,3 +1,2012,4,25,0,3 +1,2012,4,26,0,1 +1,2012,4,27,0,1 +1,2012,4,28,1,2 +1,2012,4,29,1,3 +1,2012,4,30,0,3 +1,2012,5,1,0,5 +1,2012,5,2,0,5 +1,2012,5,3,0,1 +1,2012,5,4,0,1 +1,2012,5,5,1,1 +1,2012,5,6,1,2 +1,2012,5,7,0,3 +1,2012,5,8,0,3 +1,2012,5,9,0,7 +1,2012,5,10,0,5 +1,2012,5,11,0,2 +1,2012,5,12,1,3 +1,2012,5,13,1,3 +1,2012,5,14,0,3 +1,2012,5,15,0,8 +1,2012,5,16,0,7 +1,2012,5,17,0,5 +1,2012,5,18,0,5 +1,2012,5,19,1,2 +1,2012,5,20,1,8 +1,2012,5,21,0,7 +1,2012,5,22,0,5 +1,2012,5,23,0,5 +1,2012,5,24,0,5 +1,2012,5,25,0,5 +1,2012,5,26,1,1 +1,2012,5,27,1,1 +1,2012,5,28,0,2 +1,2012,5,29,0,2 +1,2012,5,30,0,6 +1,2012,5,31,0,8 +1,2012,6,1,0,7 +1,2012,6,2,1,3 +1,2012,6,3,1,1 +1,2012,6,4,0,1 +1,2012,6,5,0,1 +1,2012,6,6,0,1 +1,2012,6,7,0,5 +1,2012,6,8,0,1 +1,2012,6,9,1,1 +1,2012,6,10,1,1 +1,2012,6,11,0,5 +1,2012,6,12,0,6 +1,2012,6,13,0,2 +1,2012,6,14,0,2 +1,2012,6,15,0,2 +1,2012,6,16,1,7 +1,2012,6,17,1,8 +1,2012,6,18,0,2 +1,2012,6,19,0,1 +1,2012,6,20,0,2 +1,2012,6,21,0,7 +1,2012,6,22,0,2 +1,2012,6,23,1,1 +1,2012,6,24,1,1 +1,2012,6,25,0,2 +1,2012,6,26,0,1 +1,2012,6,27,0,2 +1,2012,6,28,0,7 +1,2012,6,29,0,3 +1,2012,6,30,1,3 +1,2012,7,1,1,1 +1,2012,7,2,0,5 +1,2012,7,3,0,5 +1,2012,7,4,0,5 +1,2012,7,5,0,5 +1,2012,7,6,0,1 +1,2012,7,7,1,2 +1,2012,7,8,1,2 +1,2012,7,9,0,3 +1,2012,7,10,0,7 +1,2012,7,11,0,8 +1,2012,7,12,0,7 +1,2012,7,13,0,6 +1,2012,7,14,1,1 +1,2012,7,15,1,1 +1,2012,7,16,0,1 +1,2012,7,17,0,1 +1,2012,7,18,0,1 +1,2012,7,19,0,1 +1,2012,7,20,0,2 +1,2012,7,21,1,6 +1,2012,7,22,1,7 +1,2012,7,23,0,5 +1,2012,7,24,0,5 +1,2012,7,25,0,1 +1,2012,7,26,0,1 +1,2012,7,27,0,1 +1,2012,7,28,1,1 +1,2012,7,29,1,1 +1,2012,7,30,0,6 +1,2012,7,31,0,6 +1,2012,8,1,0,6 +1,2012,8,2,0,6 +1,2012,8,3,0,6 +1,2012,8,4,1,2 +1,2012,8,5,1,3 +1,2012,8,6,0,3 +1,2012,8,7,0,3 +1,2012,8,8,0,7 +1,2012,8,9,0,8 +1,2012,8,10,0,8 +1,2012,8,11,1,8 +1,2012,8,12,1,8 +1,2012,8,13,0,8 +1,2012,8,14,0,8 +1,2012,8,15,0,7 +1,2012,8,16,0,3 +1,2012,8,17,0,4 +1,2012,8,18,1,7 +1,2012,8,19,1,7 +1,2012,8,20,0,7 +1,2012,8,21,0,6 +1,2012,8,22,0,5 +1,2012,8,23,0,5 +1,2012,8,24,0,5 +1,2012,8,25,1,5 +1,2012,8,26,1,1 +1,2012,8,27,0,1 +1,2012,8,28,0,2 +1,2012,8,29,0,6 +1,2012,8,30,0,7 +1,2012,8,31,0,5 +1,2012,9,1,1,1 +1,2012,9,2,1,1 +1,2012,9,3,0,2 +1,2012,9,4,0,3 +1,2012,9,5,0,2 +1,2012,9,6,0,2 +1,2012,9,7,0,3 +1,2012,9,8,1,8 +1,2012,9,9,1,3 +1,2012,9,10,0,1 +1,2012,9,11,0,1 +1,2012,9,12,0,5 +1,2012,9,13,0,8 +1,2012,9,14,0,8 +1,2012,9,15,1,7 +1,2012,9,16,1,6 +1,2012,9,17,0,6 +1,2012,9,18,0,6 +1,2012,9,19,0,6 +1,2012,9,20,0,5 +1,2012,9,21,0,5 +1,2012,9,22,1,6 +1,2012,9,23,1,6 +1,2012,9,24,0,1 +1,2012,9,25,0,1 +1,2012,9,26,0,5 +1,2012,9,27,0,5 +1,2012,9,28,0,6 +1,2012,9,29,1,6 +1,2012,9,30,1,5 +1,2012,10,1,0,4 +1,2012,10,2,0,4 +1,2012,10,3,0,4 +1,2012,10,4,0,4 +1,2012,10,5,0,7 +1,2012,10,6,1,7 +1,2012,10,7,1,7 +1,2012,10,8,0,2 +1,2012,10,9,0,2 +1,2012,10,10,0,2 +1,2012,10,11,0,1 +1,2012,10,12,0,1 +1,2012,10,13,1,5 +1,2012,10,14,1,6 +1,2012,10,15,0,3 +1,2012,10,16,0,3 +1,2012,10,17,0,2 +1,2012,10,18,0,7 +1,2012,10,19,0,3 +1,2012,10,20,1,2 +1,2012,10,21,1,1 +1,2012,10,22,0,1 +1,2012,10,23,0,1 +1,2012,10,24,0,1 +1,2012,10,25,0,5 +1,2012,10,26,0,5 +1,2012,10,27,1,5 +1,2012,10,28,1,5 +1,2012,10,29,0,6 +1,2012,10,30,0,6 +1,2012,10,31,0,6 +1,2012,11,1,0,5 +1,2012,11,2,0,5 +1,2012,11,3,1,5 +1,2012,11,4,1,5 +1,2012,11,5,0,5 +1,2012,11,6,0,5 +1,2012,11,7,0,5 +1,2012,11,8,0,1 +1,2012,11,9,0,1 +1,2012,11,10,1,1 +1,2012,11,11,1,3 +1,2012,11,12,0,7 +1,2012,11,13,0,7 +1,2012,11,14,0,6 +1,2012,11,15,0,7 +1,2012,11,16,0,5 +1,2012,11,17,1,1 +1,2012,11,18,1,1 +1,2012,11,19,0,5 +1,2012,11,20,0,5 +1,2012,11,21,0,1 +1,2012,11,22,0,2 +1,2012,11,23,0,8 +1,2012,11,24,1,5 +1,2012,11,25,1,2 +1,2012,11,26,0,2 +1,2012,11,27,0,2 +1,2012,11,28,0,1 +1,2012,11,29,0,1 +1,2012,11,30,0,1 +1,2012,12,1,1,5 +1,2012,12,2,1,5 +1,2012,12,3,0,5 +1,2012,12,4,0,5 +1,2012,12,5,0,5 +1,2012,12,6,0,5 +1,2012,12,7,0,5 +1,2012,12,8,1,5 +1,2012,12,9,1,6 +1,2012,12,10,0,1 +1,2012,12,11,0,1 +1,2012,12,12,0,5 +1,2012,12,13,0,6 +1,2012,12,14,0,6 +1,2012,12,15,1,6 +1,2012,12,16,1,6 +1,2012,12,17,0,5 +1,2012,12,18,0,6 +1,2012,12,19,0,3 +1,2012,12,20,0,2 +1,2012,12,21,0,1 +1,2012,12,22,1,6 +1,2012,12,23,1,6 +1,2012,12,24,0,6 +1,2012,12,25,0,2 +1,2012,12,26,0,7 +1,2012,12,27,0,6 +1,2012,12,28,0,2 +1,2012,12,29,1,3 +1,2012,12,30,1,2 +1,2012,12,31,0,3 +1,2013,1,1,0,7 +1,2013,1,2,0,7 +1,2013,1,3,0,8 +1,2013,1,4,0,7 +1,2013,1,5,1,6 +1,2013,1,6,1,6 +1,2013,1,7,0,5 +1,2013,1,8,0,5 +1,2013,1,9,0,5 +1,2013,1,10,0,2 +1,2013,1,11,0,3 +1,2013,1,12,1,8 +1,2013,1,13,1,8 +1,2013,1,14,0,8 +1,2013,1,15,0,8 +1,2013,1,16,0,6 +1,2013,1,17,0,6 +1,2013,1,18,0,6 +1,2013,1,19,1,3 +1,2013,1,20,1,3 +1,2013,1,21,0,3 +1,2013,1,22,0,3 +1,2013,1,23,0,3 +1,2013,1,24,0,1 +1,2013,1,25,0,1 +1,2013,1,26,1,1 +1,2013,1,27,1,1 +1,2013,1,28,0,1 +1,2013,1,29,0,1 +1,2013,1,30,0,5 +1,2013,1,31,0,5 +1,2013,2,1,0,5 +1,2013,2,2,1,6 +1,2013,2,3,1,5 +1,2013,2,4,0,1 +1,2013,2,5,0,1 +1,2013,2,6,0,1 +1,2013,2,7,0,1 +1,2013,2,8,0,2 +1,2013,2,9,1,2 +1,2013,2,10,1,2 +1,2013,2,11,0,3 +1,2013,2,12,0,2 +1,2013,2,13,0,1 +1,2013,2,14,0,6 +1,2013,2,15,0,6 +1,2013,2,16,1,5 +1,2013,2,17,1,1 +1,2013,2,18,0,1 +1,2013,2,19,0,2 +1,2013,2,20,0,2 +1,2013,2,21,0,2 +1,2013,2,22,0,2 +1,2013,2,23,1,1 +1,2013,2,24,1,2 +1,2013,2,25,0,2 +1,2013,2,26,0,2 +1,2013,2,27,0,7 +1,2013,2,28,0,6 +1,2013,3,1,0,4 +1,2013,3,2,1,4 +1,2013,3,3,1,1 +1,2013,3,4,0,6 +1,2013,3,5,0,8 +1,2013,3,6,0,6 +1,2013,3,7,0,6 +1,2013,3,8,0,5 +1,2013,3,9,1,6 +1,2013,3,10,1,8 +1,2013,3,11,0,3 +1,2013,3,12,0,4 +1,2013,3,13,0,3 +1,2013,3,14,0,3 +1,2013,3,15,0,1 +1,2013,3,16,1,1 +1,2013,3,17,1,5 +1,2013,3,18,0,5 +1,2013,3,19,0,7 +1,2013,3,20,0,2 +1,2013,3,21,0,5 +1,2013,3,22,0,5 +1,2013,3,23,1,6 +1,2013,3,24,1,8 +1,2013,3,25,0,8 +1,2013,3,26,0,7 +1,2013,3,27,0,1 +1,2013,3,28,0,1 +1,2013,3,29,0,2 +1,2013,3,30,1,2 +1,2013,3,31,1,1 +1,2013,4,1,0,6 +1,2013,4,2,0,6 +1,2013,4,3,0,7 +1,2013,4,4,0,3 +1,2013,4,5,0,2 +1,2013,4,6,1,2 +1,2013,4,7,1,1 +1,2013,4,8,0,1 +1,2013,4,9,0,5 +1,2013,4,10,0,6 +1,2013,4,11,0,2 +1,2013,4,12,0,2 +1,2013,4,13,1,1 +1,2013,4,14,1,1 +1,2013,4,15,0,1 +1,2013,4,16,0,5 +1,2013,4,17,0,5 +1,2013,4,18,0,6 +1,2013,4,19,0,7 +1,2013,4,20,1,2 +1,2013,4,21,1,3 +1,2013,4,22,0,3 +1,2013,4,23,0,7 +1,2013,4,24,0,8 +1,2013,4,25,0,2 +1,2013,4,26,0,3 +1,2013,4,27,1,4 +1,2013,4,28,1,4 +1,2013,4,29,0,3 +1,2013,4,30,0,2 +1,2013,5,1,0,2 +1,2013,5,2,0,4 +1,2013,5,3,0,4 +1,2013,5,4,1,3 +1,2013,5,5,1,2 +1,2013,5,6,0,2 +1,2013,5,7,0,2 +1,2013,5,8,0,2 +1,2013,5,9,0,2 +1,2013,5,10,0,3 +1,2013,5,11,1,4 +1,2013,5,12,1,8 +1,2013,5,13,0,8 +1,2013,5,14,0,6 +1,2013,5,15,0,6 +1,2013,5,16,0,5 +1,2013,5,17,0,5 +1,2013,5,18,1,5 +1,2013,5,19,1,6 +1,2013,5,20,0,2 +1,2013,5,21,0,6 +1,2013,5,22,0,5 +1,2013,5,23,0,5 +1,2013,5,24,0,1 +1,2013,5,25,1,5 +1,2013,5,26,1,5 +1,2013,5,27,0,5 +1,2013,5,28,0,5 +1,2013,5,29,0,5 +1,2013,5,30,0,5 +1,2013,5,31,0,6 +1,2013,6,1,1,6 +1,2013,6,2,1,6 +1,2013,6,3,0,2 +1,2013,6,4,0,5 +1,2013,6,5,0,6 +1,2013,6,6,0,6 +1,2013,6,7,0,7 +1,2013,6,8,1,4 +1,2013,6,9,1,3 +1,2013,6,10,0,1 +1,2013,6,11,0,1 +1,2013,6,12,0,3 +1,2013,6,13,0,2 +1,2013,6,14,0,2 +1,2013,6,15,1,6 +1,2013,6,16,1,6 +1,2013,6,17,0,6 +1,2013,6,18,0,3 +1,2013,6,19,0,1 +1,2013,6,20,0,1 +1,2013,6,21,0,2 +1,2013,6,22,1,2 +1,2013,6,23,1,2 +1,2013,6,24,0,1 +1,2013,6,25,0,1 +1,2013,6,26,0,3 +1,2013,6,27,0,8 +1,2013,6,28,0,8 +1,2013,6,29,1,8 +1,2013,6,30,1,8 +1,2013,7,1,0,4 +1,2013,7,2,0,8 +1,2013,7,3,0,8 +1,2013,7,4,0,7 +1,2013,7,5,0,5 +1,2013,7,6,1,5 +1,2013,7,7,1,6 +1,2013,7,8,0,6 +1,2013,7,9,0,7 +1,2013,7,10,0,8 +1,2013,7,11,0,5 +1,2013,7,12,0,5 +1,2013,7,13,1,5 +1,2013,7,14,1,6 +1,2013,7,15,0,2 +1,2013,7,16,0,1 +1,2013,7,17,0,2 +1,2013,7,18,0,2 +1,2013,7,19,0,7 +1,2013,7,20,1,6 +1,2013,7,21,1,6 +1,2013,7,22,0,5 +1,2013,7,23,0,6 +1,2013,7,24,0,2 +1,2013,7,25,0,3 +1,2013,7,26,0,3 +1,2013,7,27,1,6 +1,2013,7,28,1,5 +1,2013,7,29,0,1 +1,2013,7,30,0,1 +1,2013,7,31,0,2 +1,2013,8,1,0,1 +1,2013,8,2,0,5 +1,2013,8,3,1,1 +1,2013,8,4,1,1 +1,2013,8,5,0,1 +1,2013,8,6,0,1 +1,2013,8,7,0,1 +1,2013,8,8,0,1 +1,2013,8,9,0,1 +1,2013,8,10,1,1 +1,2013,8,11,1,1 +1,2013,8,12,0,1 +1,2013,8,13,0,2 +1,2013,8,14,0,2 +1,2013,8,15,0,2 +1,2013,8,16,0,3 +1,2013,8,17,1,2 +1,2013,8,18,1,7 +1,2013,8,19,0,7 +1,2013,8,20,0,7 +1,2013,8,21,0,6 +1,2013,8,22,0,2 +1,2013,8,23,0,1 +1,2013,8,24,1,5 +1,2013,8,25,1,1 +1,2013,8,26,0,1 +1,2013,8,27,0,6 +1,2013,8,28,0,7 +1,2013,8,29,0,2 +1,2013,8,30,0,3 +1,2013,8,31,1,7 +1,2013,9,1,1,4 +1,2013,9,2,0,4 +1,2013,9,3,0,4 +1,2013,9,4,0,4 +1,2013,9,5,0,3 +1,2013,9,6,0,3 +1,2013,9,7,1,3 +1,2013,9,8,1,3 +1,2013,9,9,0,2 +1,2013,9,10,0,2 +1,2013,9,11,0,7 +1,2013,9,12,0,7 +1,2013,9,13,0,3 +1,2013,9,14,1,2 +1,2013,9,15,1,2 +1,2013,9,16,0,2 +1,2013,9,17,0,1 +1,2013,9,18,0,1 +1,2013,9,19,0,5 +1,2013,9,20,0,5 +1,2013,9,21,1,1 +1,2013,9,22,1,1 +1,2013,9,23,0,5 +1,2013,9,24,0,5 +1,2013,9,25,0,1 +1,2013,9,26,0,1 +1,2013,9,27,0,5 +1,2013,9,28,1,5 +1,2013,9,29,1,5 +1,2013,9,30,0,1 +1,2013,10,1,0,2 +1,2013,10,2,0,2 +1,2013,10,3,0,1 +1,2013,10,4,0,1 +1,2013,10,5,1,5 +1,2013,10,6,1,6 +1,2013,10,7,0,6 +1,2013,10,8,0,1 +1,2013,10,9,0,1 +1,2013,10,10,0,1 +1,2013,10,11,0,1 +1,2013,10,12,1,5 +1,2013,10,13,1,5 +1,2013,10,14,0,5 +1,2013,10,15,0,5 +1,2013,10,16,0,5 +1,2013,10,17,0,5 +1,2013,10,18,0,5 +1,2013,10,19,1,5 +1,2013,10,20,1,5 +1,2013,10,21,0,5 +1,2013,10,22,0,5 +1,2013,10,23,0,5 +1,2013,10,24,0,5 +1,2013,10,25,0,5 +1,2013,10,26,1,5 +1,2013,10,27,1,5 +1,2013,10,28,0,1 +1,2013,10,29,0,1 +1,2013,10,30,0,5 +1,2013,10,31,0,5 +1,2013,11,1,0,5 +1,2013,11,2,1,5 +1,2013,11,3,1,1 +1,2013,11,4,0,1 +1,2013,11,5,0,2 +1,2013,11,6,0,6 +1,2013,11,7,0,6 +1,2013,11,8,0,5 +1,2013,11,9,1,6 +1,2013,11,10,1,6 +1,2013,11,11,0,6 +1,2013,11,12,0,7 +1,2013,11,13,0,5 +1,2013,11,14,0,5 +1,2013,11,15,0,1 +1,2013,11,16,1,1 +1,2013,11,17,1,1 +1,2013,11,18,0,5 +1,2013,11,19,0,1 +1,2013,11,20,0,1 +1,2013,11,21,0,4 +1,2013,11,22,0,4 +1,2013,11,23,1,4 +1,2013,11,24,1,3 +1,2013,11,25,0,3 +1,2013,11,26,0,8 +1,2013,11,27,0,2 +1,2013,11,28,0,2 +1,2013,11,29,0,2 +1,2013,11,30,1,7 +1,2013,12,1,1,1 +1,2013,12,2,0,5 +1,2013,12,3,0,6 +1,2013,12,4,0,8 +1,2013,12,5,0,4 +1,2013,12,6,0,4 +1,2013,12,7,1,8 +1,2013,12,8,1,4 +1,2013,12,9,0,4 +1,2013,12,10,0,3 +1,2013,12,11,0,3 +1,2013,12,12,0,2 +1,2013,12,13,0,1 +1,2013,12,14,1,1 +1,2013,12,15,1,1 +1,2013,12,16,0,1 +1,2013,12,17,0,1 +1,2013,12,18,0,5 +1,2013,12,19,0,6 +1,2013,12,20,0,7 +1,2013,12,21,1,6 +1,2013,12,22,1,1 +1,2013,12,23,0,1 +1,2013,12,24,0,1 +1,2013,12,25,0,1 +1,2013,12,26,0,1 +1,2013,12,27,0,1 +1,2013,12,28,1,1 +1,2013,12,29,1,2 +1,2013,12,30,0,1 +1,2013,12,31,0,1 +1,2014,1,1,0,2 +1,2014,1,2,0,5 +1,2014,1,3,0,1 +1,2014,1,4,1,2 +1,2014,1,5,1,7 +1,2014,1,6,0,7 +1,2014,1,7,0,6 +1,2014,1,8,0,1 +1,2014,1,9,0,1 +1,2014,1,10,0,1 +1,2014,1,11,1,1 +1,2014,1,12,1,1 +1,2014,1,13,0,5 +1,2014,1,14,0,5 +1,2014,1,15,0,5 +1,2014,1,16,0,5 +1,2014,1,17,0,5 +1,2014,1,18,1,2 +1,2014,1,19,1,2 +1,2014,1,20,0,2 +1,2014,1,21,0,2 +1,2014,1,22,0,2 +1,2014,1,23,0,6 +1,2014,1,24,0,5 +1,2014,1,25,1,2 +1,2014,1,26,1,2 +1,2014,1,27,0,3 +1,2014,1,28,0,6 +1,2014,1,29,0,1 +1,2014,1,30,0,1 +1,2014,1,31,0,1 +1,2014,2,1,1,3 +1,2014,2,2,1,4 +1,2014,2,3,0,3 +1,2014,2,4,0,4 +1,2014,2,5,0,8 +1,2014,2,6,0,8 +1,2014,2,7,0,4 +1,2014,2,8,1,4 +1,2014,2,9,1,8 +1,2014,2,10,0,7 +1,2014,2,11,0,5 +1,2014,2,12,0,5 +1,2014,2,13,0,5 +1,2014,2,14,0,5 +1,2014,2,15,1,5 +1,2014,2,16,1,5 +1,2014,2,17,0,1 +1,2014,2,18,0,1 +1,2014,2,19,0,1 +1,2014,2,20,0,5 +1,2014,2,21,0,5 +1,2014,2,22,1,6 +1,2014,2,23,1,6 +1,2014,2,24,0,6 +1,2014,2,25,0,6 +1,2014,2,26,0,6 +1,2014,2,27,0,5 +1,2014,2,28,0,5 +1,2014,3,1,1,6 +1,2014,3,2,1,8 +1,2014,3,3,0,3 +1,2014,3,4,0,2 +1,2014,3,5,0,2 +1,2014,3,6,0,1 +1,2014,3,7,0,1 +1,2014,3,8,1,3 +1,2014,3,9,1,3 +1,2014,3,10,0,1 +1,2014,3,11,0,5 +1,2014,3,12,0,7 +1,2014,3,13,0,2 +1,2014,3,14,0,1 +1,2014,3,15,1,2 +1,2014,3,16,1,3 +1,2014,3,17,0,1 +1,2014,3,18,0,5 +1,2014,3,19,0,3 +1,2014,3,20,0,1 +1,2014,3,21,0,6 +1,2014,3,22,1,7 +1,2014,3,23,1,8 +1,2014,3,24,0,3 +1,2014,3,25,0,2 +1,2014,3,26,0,5 +1,2014,3,27,0,5 +1,2014,3,28,0,1 +1,2014,3,29,1,1 +1,2014,3,30,1,1 +1,2014,3,31,0,5 +1,2014,4,1,0,5 +1,2014,4,2,0,5 +1,2014,4,3,0,5 +1,2014,4,4,0,6 +1,2014,4,5,1,5 +1,2014,4,6,1,6 +1,2014,4,7,0,8 +1,2014,4,8,0,8 +1,2014,4,9,0,4 +1,2014,4,10,0,2 +1,2014,4,11,0,3 +1,2014,4,12,1,2 +1,2014,4,13,1,1 +1,2014,4,14,0,7 +1,2014,4,15,0,3 +1,2014,4,16,0,2 +1,2014,4,17,0,3 +1,2014,4,18,0,2 +1,2014,4,19,1,2 +1,2014,4,20,1,3 +1,2014,4,21,0,4 +1,2014,4,22,0,1 +1,2014,4,23,0,1 +1,2014,4,24,0,2 +1,2014,4,25,0,2 +1,2014,4,26,1,1 +1,2014,4,27,1,1 +1,2014,4,28,0,1 +1,2014,4,29,0,7 +1,2014,4,30,0,8 +1,2014,5,1,0,4 +1,2014,5,2,0,3 +1,2014,5,3,1,6 +1,2014,5,4,1,5 +1,2014,5,5,0,5 +1,2014,5,6,0,5 +1,2014,5,7,0,1 +1,2014,5,8,0,1 +1,2014,5,9,0,1 +1,2014,5,10,1,5 +1,2014,5,11,1,1 +1,2014,5,12,0,3 +1,2014,5,13,0,4 +1,2014,5,14,0,4 +1,2014,5,15,0,4 +1,2014,5,16,0,8 +1,2014,5,17,1,7 +1,2014,5,18,1,6 +1,2014,5,19,0,5 +1,2014,5,20,0,1 +1,2014,5,21,0,2 +1,2014,5,22,0,2 +1,2014,5,23,0,3 +1,2014,5,24,1,7 +1,2014,5,25,1,7 +1,2014,5,26,0,7 +1,2014,5,27,0,7 +1,2014,5,28,0,6 +1,2014,5,29,0,6 +1,2014,5,30,0,7 +1,2014,5,31,1,7 +1,2014,6,1,1,5 +1,2014,6,2,0,5 +1,2014,6,3,0,1 +1,2014,6,4,0,1 +1,2014,6,5,0,5 +1,2014,6,6,0,6 +1,2014,6,7,1,6 +1,2014,6,8,1,7 +1,2014,6,9,0,8 +1,2014,6,10,0,4 +1,2014,6,11,0,2 +1,2014,6,12,0,5 +1,2014,6,13,0,1 +1,2014,6,14,1,1 +1,2014,6,15,1,1 +1,2014,6,16,0,1 +1,2014,6,17,0,1 +1,2014,6,18,0,1 +1,2014,6,19,0,5 +1,2014,6,20,0,6 +1,2014,6,21,1,3 +1,2014,6,22,1,3 +1,2014,6,23,0,7 +1,2014,6,24,0,7 +1,2014,6,25,0,4 +1,2014,6,26,0,3 +1,2014,6,27,0,2 +1,2014,6,28,1,3 +1,2014,6,29,1,4 +1,2014,6,30,0,4 +1,2014,7,1,0,3 +1,2014,7,2,0,3 +1,2014,7,3,0,6 +1,2014,7,4,0,6 +1,2014,7,5,1,6 +1,2014,7,6,1,7 +1,2014,7,7,0,7 +1,2014,7,8,0,3 +1,2014,7,9,0,2 +1,2014,7,10,0,5 +1,2014,7,11,0,1 +1,2014,7,12,1,2 +1,2014,7,13,1,4 +1,2014,7,14,0,8 +1,2014,7,15,0,4 +1,2014,7,16,0,3 +1,2014,7,17,0,1 +1,2014,7,18,0,1 +1,2014,7,19,1,1 +1,2014,7,20,1,5 +1,2014,7,21,0,5 +1,2014,7,22,0,2 +1,2014,7,23,0,2 +1,2014,7,24,0,5 +1,2014,7,25,0,6 +1,2014,7,26,1,7 +1,2014,7,27,1,8 +1,2014,7,28,0,4 +1,2014,7,29,0,4 +1,2014,7,30,0,4 +1,2014,7,31,0,4 +1,2014,8,1,0,4 +1,2014,8,2,1,4 +1,2014,8,3,1,3 +1,2014,8,4,0,2 +1,2014,8,5,0,1 +1,2014,8,6,0,1 +1,2014,8,7,0,1 +1,2014,8,8,0,6 +1,2014,8,9,1,2 +1,2014,8,10,1,3 +1,2014,8,11,0,4 +1,2014,8,12,0,4 +1,2014,8,13,0,1 +1,2014,8,14,0,1 +1,2014,8,15,0,1 +1,2014,8,16,1,2 +1,2014,8,17,1,2 +1,2014,8,18,0,2 +1,2014,8,19,0,5 +1,2014,8,20,0,5 +1,2014,8,21,0,5 +1,2014,8,22,0,1 +1,2014,8,23,1,1 +1,2014,8,24,1,5 +1,2014,8,25,0,1 +1,2014,8,26,0,1 +1,2014,8,27,0,3 +1,2014,8,28,0,2 +1,2014,8,29,0,2 +1,2014,8,30,1,5 +1,2014,8,31,1,5 +1,2014,9,1,0,2 +1,2014,9,2,0,3 +1,2014,9,3,0,1 +1,2014,9,4,0,2 +1,2014,9,5,0,3 +1,2014,9,6,1,8 +1,2014,9,7,1,4 +1,2014,9,8,0,2 +1,2014,9,9,0,1 +1,2014,9,10,0,5 +1,2014,9,11,0,6 +1,2014,9,12,0,7 +1,2014,9,13,1,8 +1,2014,9,14,1,4 +1,2014,9,15,0,4 +1,2014,9,16,0,4 +1,2014,9,17,0,3 +1,2014,9,18,0,2 +1,2014,9,19,0,1 +1,2014,9,20,1,2 +1,2014,9,21,1,7 +1,2014,9,22,0,6 +1,2014,9,23,0,6 +1,2014,9,24,0,2 +1,2014,9,25,0,2 +1,2014,9,26,0,1 +1,2014,9,27,1,1 +1,2014,9,28,1,5 +1,2014,9,29,0,5 +1,2014,9,30,0,5 +1,2014,10,1,0,3 +1,2014,10,2,0,7 +1,2014,10,3,0,8 +1,2014,10,4,1,8 +1,2014,10,5,1,4 +1,2014,10,6,0,4 +1,2014,10,7,0,4 +1,2014,10,8,0,4 +1,2014,10,9,0,3 +1,2014,10,10,0,3 +1,2014,10,11,1,4 +1,2014,10,12,1,3 +1,2014,10,13,0,7 +1,2014,10,14,0,7 +1,2014,10,15,0,3 +1,2014,10,16,0,2 +1,2014,10,17,0,2 +1,2014,10,18,1,3 +1,2014,10,19,1,3 +1,2014,10,20,0,3 +1,2014,10,21,0,2 +1,2014,10,22,0,2 +1,2014,10,23,0,2 +1,2014,10,24,0,7 +1,2014,10,25,1,3 +1,2014,10,26,1,1 +1,2014,10,27,0,1 +1,2014,10,28,0,5 +1,2014,10,29,0,6 +1,2014,10,30,0,6 +1,2014,10,31,0,6 +1,2014,11,1,1,1 +1,2014,11,2,1,1 +1,2014,11,3,0,5 +1,2014,11,4,0,5 +1,2014,11,5,0,5 +1,2014,11,6,0,5 +1,2014,11,7,0,5 +1,2014,11,8,1,6 +1,2014,11,9,1,5 +1,2014,11,10,0,1 +1,2014,11,11,0,3 +1,2014,11,12,0,4 +1,2014,11,13,0,4 +1,2014,11,14,0,3 +1,2014,11,15,1,4 +1,2014,11,16,1,4 +1,2014,11,17,0,4 +1,2014,11,18,0,3 +1,2014,11,19,0,3 +1,2014,11,20,0,2 +1,2014,11,21,0,1 +1,2014,11,22,1,1 +1,2014,11,23,1,1 +1,2014,11,24,0,6 +1,2014,11,25,0,5 +1,2014,11,26,0,6 +1,2014,11,27,0,5 +1,2014,11,28,0,5 +1,2014,11,29,1,1 +1,2014,11,30,1,3 +1,2014,12,1,0,7 +1,2014,12,2,0,6 +1,2014,12,3,0,6 +1,2014,12,4,0,5 +1,2014,12,5,0,5 +1,2014,12,6,1,5 +1,2014,12,7,1,5 +1,2014,12,8,0,5 +1,2014,12,9,0,5 +1,2014,12,10,0,5 +1,2014,12,11,0,5 +1,2014,12,12,0,5 +1,2014,12,13,1,5 +1,2014,12,14,1,5 +1,2014,12,15,0,6 +1,2014,12,16,0,6 +1,2014,12,17,0,5 +1,2014,12,18,0,5 +1,2014,12,19,0,1 +1,2014,12,20,1,5 +1,2014,12,21,1,5 +1,2014,12,22,0,5 +1,2014,12,23,0,5 +1,2014,12,24,0,1 +1,2014,12,25,0,5 +1,2014,12,26,0,2 +1,2014,12,27,1,2 +1,2014,12,28,1,1 +1,2014,12,29,0,2 +1,2014,12,30,0,4 +1,2014,12,31,0,4 +1,2015,1,1,0,8 +1,2015,1,2,0,8 +1,2015,1,3,1,6 +1,2015,1,4,1,7 +1,2015,1,5,0,5 +1,2015,1,6,0,5 +1,2015,1,7,0,5 +1,2015,1,8,0,1 +1,2015,1,9,0,2 +1,2015,1,10,1,1 +1,2015,1,11,1,1 +1,2015,1,12,0,1 +1,2015,1,13,0,1 +1,2015,1,14,0,2 +1,2015,1,15,0,2 +1,2015,1,16,0,1 +1,2015,1,17,1,1 +1,2015,1,18,1,1 +1,2015,1,19,0,1 +1,2015,1,20,0,1 +1,2015,1,21,0,2 +1,2015,1,22,0,5 +1,2015,1,23,0,5 +1,2015,1,24,1,5 +1,2015,1,25,1,5 +1,2015,1,26,0,1 +1,2015,1,27,0,1 +1,2015,1,28,0,1 +1,2015,1,29,0,1 +1,2015,1,30,0,1 +1,2015,1,31,1,1 +1,2015,2,1,1,6 +1,2015,2,2,0,5 +1,2015,2,3,0,5 +1,2015,2,4,0,5 +1,2015,2,5,0,5 +1,2015,2,6,0,5 +1,2015,2,7,1,5 +1,2015,2,8,1,5 +1,2015,2,9,0,5 +1,2015,2,10,0,5 +1,2015,2,11,0,5 +1,2015,2,12,0,5 +1,2015,2,13,0,5 +1,2015,2,14,1,5 +1,2015,2,15,1,5 +1,2015,2,16,0,5 +1,2015,2,17,0,5 +1,2015,2,18,0,5 +1,2015,2,19,0,5 +1,2015,2,20,0,5 +1,2015,2,21,1,5 +1,2015,2,22,1,7 +1,2015,2,23,0,8 +1,2015,2,24,0,7 +1,2015,2,25,0,5 +1,2015,2,26,0,6 +1,2015,2,27,0,6 +1,2015,2,28,1,6 +1,2015,3,1,1,8 +1,2015,3,2,0,7 +1,2015,3,3,0,7 +1,2015,3,4,0,8 +1,2015,3,5,0,8 +1,2015,3,6,0,4 +1,2015,3,7,1,4 +1,2015,3,8,1,3 +1,2015,3,9,0,2 +1,2015,3,10,0,2 +1,2015,3,11,0,2 +1,2015,3,12,0,2 +1,2015,3,13,0,3 +1,2015,3,14,1,3 +1,2015,3,15,1,2 +1,2015,3,16,0,1 +1,2015,3,17,0,2 +1,2015,3,18,0,1 +1,2015,3,19,0,2 +1,2015,3,20,0,2 +1,2015,3,21,1,1 +1,2015,3,22,1,1 +1,2015,3,23,0,1 +1,2015,3,24,0,1 +1,2015,3,25,0,1 +1,2015,3,26,0,3 +1,2015,3,27,0,2 +1,2015,3,28,1,1 +1,2015,3,29,1,1 +1,2015,3,30,0,2 +1,2015,3,31,0,1 +1,2015,4,1,0,1 +1,2015,4,2,0,5 +1,2015,4,3,0,6 +1,2015,4,4,1,6 +1,2015,4,5,1,1 +1,2015,4,6,0,1 +1,2015,4,7,0,1 +1,2015,4,8,0,5 +1,2015,4,9,0,5 +1,2015,4,10,0,7 +1,2015,4,11,1,2 +1,2015,4,12,1,2 +1,2015,4,13,0,2 +1,2015,4,14,0,1 +1,2015,4,15,0,5 +1,2015,4,16,0,6 +1,2015,4,17,0,7 +1,2015,4,18,1,7 +1,2015,4,19,1,4 +1,2015,4,20,0,4 +1,2015,4,21,0,2 +1,2015,4,22,0,2 +1,2015,4,23,0,1 +1,2015,4,24,0,1 +1,2015,4,25,1,1 +1,2015,4,26,1,1 +1,2015,4,27,0,7 +1,2015,4,28,0,8 +1,2015,4,29,0,4 +1,2015,4,30,0,4 +1,2015,5,1,0,7 +1,2015,5,2,1,6 +1,2015,5,3,1,6 +1,2015,5,4,0,5 +1,2015,5,5,0,1 +1,2015,5,6,0,5 +1,2015,5,7,0,1 +1,2015,5,8,0,1 +1,2015,5,9,1,1 +1,2015,5,10,1,2 +1,2015,5,11,0,2 +1,2015,5,12,0,1 +1,2015,5,13,0,1 +1,2015,5,14,0,1 +1,2015,5,15,0,1 +1,2015,5,16,1,1 +1,2015,5,17,1,1 +1,2015,5,18,0,2 +1,2015,5,19,0,2 +1,2015,5,20,0,2 +1,2015,5,21,0,2 +1,2015,5,22,0,1 +1,2015,5,23,1,1 +1,2015,5,24,1,1 +1,2015,5,25,0,6 +1,2015,5,26,0,6 +1,2015,5,27,0,6 +1,2015,5,28,0,7 +1,2015,5,29,0,8 +1,2015,5,30,1,8 +1,2015,5,31,1,8 +1,2015,6,1,0,5 +1,2015,6,2,0,5 +1,2015,6,3,0,5 +1,2015,6,4,0,5 +1,2015,6,5,0,5 +1,2015,6,6,1,5 +1,2015,6,7,1,6 +1,2015,6,8,0,8 +1,2015,6,9,0,8 +1,2015,6,10,0,5 +1,2015,6,11,0,6 +1,2015,6,12,0,6 +1,2015,6,13,1,4 +1,2015,6,14,1,7 +1,2015,6,15,0,8 +1,2015,6,16,0,8 +1,2015,6,17,0,8 +1,2015,6,18,0,8 +1,2015,6,19,0,4 +1,2015,6,20,1,4 +1,2015,6,21,1,4 +1,2015,6,22,0,3 +1,2015,6,23,0,8 +1,2015,6,24,0,8 +1,2015,6,25,0,8 +1,2015,6,26,0,8 +1,2015,6,27,1,8 +1,2015,6,28,1,8 +1,2015,6,29,0,8 +1,2015,6,30,0,8 +1,2015,7,1,0,8 +1,2015,7,2,0,4 +1,2015,7,3,0,3 +1,2015,7,4,1,2 +1,2015,7,5,1,2 +1,2015,7,6,0,2 +1,2015,7,7,0,2 +1,2015,7,8,0,1 +1,2015,7,9,0,1 +1,2015,7,10,0,1 +1,2015,7,11,1,1 +1,2015,7,12,1,1 +1,2015,7,13,0,1 +1,2015,7,14,0,1 +1,2015,7,15,0,1 +1,2015,7,16,0,5 +1,2015,7,17,0,5 +1,2015,7,18,1,1 +1,2015,7,19,1,2 +1,2015,7,20,0,3 +1,2015,7,21,0,7 +1,2015,7,22,0,5 +1,2015,7,23,0,1 +1,2015,7,24,0,1 +1,2015,7,25,1,1 +1,2015,7,26,1,5 +1,2015,7,27,0,5 +1,2015,7,28,0,6 +1,2015,7,29,0,8 +1,2015,7,30,0,4 +1,2015,7,31,0,4 +1,2015,8,1,1,3 +1,2015,8,2,1,2 +1,2015,8,3,0,1 +1,2015,8,4,0,1 +1,2015,8,5,0,1 +1,2015,8,6,0,6 +1,2015,8,7,0,5 +1,2015,8,8,1,1 +1,2015,8,9,1,1 +1,2015,8,10,0,2 +1,2015,8,11,0,2 +1,2015,8,12,0,2 +1,2015,8,13,0,3 +1,2015,8,14,0,2 +1,2015,8,15,1,7 +1,2015,8,16,1,8 +1,2015,8,17,0,8 +1,2015,8,18,0,7 +1,2015,8,19,0,2 +1,2015,8,20,0,5 +1,2015,8,21,0,5 +1,2015,8,22,1,5 +1,2015,8,23,1,2 +1,2015,8,24,0,2 +1,2015,8,25,0,2 +1,2015,8,26,0,3 +1,2015,8,27,0,3 +1,2015,8,28,0,8 +1,2015,8,29,1,3 +1,2015,8,30,1,5 +1,2015,8,31,0,5 +1,2015,9,1,0,2 +1,2015,9,2,0,1 +1,2015,9,3,0,1 +1,2015,9,4,0,1 +1,2015,9,5,1,1 +1,2015,9,6,1,1 +1,2015,9,7,0,2 +1,2015,9,8,0,2 +1,2015,9,9,0,4 +1,2015,9,10,0,4 +1,2015,9,11,0,4 +1,2015,9,12,1,4 +1,2015,9,13,1,3 +1,2015,9,14,0,1 +1,2015,9,15,0,1 +1,2015,9,16,0,1 +1,2015,9,17,0,1 +1,2015,9,18,0,5 +1,2015,9,19,1,5 +1,2015,9,20,1,2 +1,2015,9,21,0,2 +1,2015,9,22,0,1 +1,2015,9,23,0,1 +1,2015,9,24,0,6 +1,2015,9,25,0,8 +1,2015,9,26,1,2 +1,2015,9,27,1,1 +1,2015,9,28,0,1 +1,2015,9,29,0,1 +1,2015,9,30,0,5 +1,2015,10,1,0,4 +1,2015,10,2,0,4 +1,2015,10,3,1,3 +1,2015,10,4,1,2 +1,2015,10,5,0,2 +1,2015,10,6,0,7 +1,2015,10,7,0,8 +1,2015,10,8,0,8 +1,2015,10,9,0,8 +1,2015,10,10,1,4 +1,2015,10,11,1,4 +1,2015,10,12,0,4 +1,2015,10,13,0,8 +1,2015,10,14,0,4 +1,2015,10,15,0,4 +1,2015,10,16,0,8 +1,2015,10,17,1,8 +1,2015,10,18,1,3 +1,2015,10,19,0,2 +1,2015,10,20,0,2 +1,2015,10,21,0,6 +1,2015,10,22,0,6 +1,2015,10,23,0,6 +1,2015,10,24,1,6 +1,2015,10,25,1,7 +1,2015,10,26,0,6 +1,2015,10,27,0,6 +1,2015,10,28,0,6 +1,2015,10,29,0,1 +1,2015,10,30,0,1 +1,2015,10,31,1,1 +1,2015,11,1,1,5 +1,2015,11,2,0,1 +1,2015,11,3,0,1 +1,2015,11,4,0,1 +1,2015,11,5,0,5 +1,2015,11,6,0,6 +1,2015,11,7,1,6 +1,2015,11,8,1,5 +1,2015,11,9,0,1 +1,2015,11,10,0,1 +1,2015,11,11,0,1 +1,2015,11,12,0,7 +1,2015,11,13,0,5 +1,2015,11,14,1,5 +1,2015,11,15,1,1 +1,2015,11,16,0,1 +1,2015,11,17,0,1 +1,2015,11,18,0,1 +1,2015,11,19,0,2 +1,2015,11,20,0,2 +1,2015,11,21,1,3 +1,2015,11,22,1,2 +1,2015,11,23,0,2 +1,2015,11,24,0,1 +1,2015,11,25,0,2 +1,2015,11,26,0,4 +1,2015,11,27,0,4 +1,2015,11,28,1,4 +1,2015,11,29,1,4 +1,2015,11,30,0,3 +1,2015,12,1,0,2 +1,2015,12,2,0,1 +1,2015,12,3,0,1 +1,2015,12,4,0,1 +1,2015,12,5,1,1 +1,2015,12,6,1,1 +1,2015,12,7,0,1 +1,2015,12,8,0,1 +1,2015,12,9,0,5 +1,2015,12,10,0,5 +1,2015,12,11,0,5 +1,2015,12,12,1,5 +1,2015,12,13,1,5 +1,2015,12,14,0,6 +1,2015,12,15,0,2 +1,2015,12,16,0,2 +1,2015,12,17,0,2 +1,2015,12,18,0,1 +1,2015,12,19,1,5 +1,2015,12,20,1,5 +1,2015,12,21,0,5 +1,2015,12,22,0,5 +1,2015,12,23,0,5 +1,2015,12,24,0,6 +1,2015,12,25,0,7 +1,2015,12,26,1,3 +1,2015,12,27,1,4 +1,2015,12,28,0,3 +1,2015,12,29,0,3 +1,2015,12,30,0,3 +1,2015,12,31,0,3 +1,2016,1,1,0,8 +1,2016,1,2,1,8 +1,2016,1,3,1,4 +1,2016,1,4,0,3 +1,2016,1,5,0,2 +1,2016,1,6,0,1 +1,2016,1,7,0,1 +1,2016,1,8,0,2 +1,2016,1,9,1,2 +1,2016,1,10,1,5 +1,2016,1,11,0,6 +1,2016,1,12,0,5 +1,2016,1,13,0,5 +1,2016,1,14,0,1 +1,2016,1,15,0,1 +1,2016,1,16,1,1 +1,2016,1,17,1,1 +1,2016,1,18,0,1 +1,2016,1,19,0,1 +1,2016,1,20,0,1 +1,2016,1,21,0,1 +1,2016,1,22,0,5 +1,2016,1,23,1,1 +1,2016,1,24,1,1 +1,2016,1,25,0,1 +1,2016,1,26,0,5 +1,2016,1,27,0,5 +1,2016,1,28,0,5 +1,2016,1,29,0,1 +1,2016,1,30,1,1 +1,2016,1,31,1,1 +1,2016,2,1,0,3 +1,2016,2,2,0,3 +1,2016,2,3,0,4 +1,2016,2,4,0,7 +1,2016,2,5,0,6 +1,2016,2,6,1,6 +1,2016,2,7,1,6 +1,2016,2,8,0,6 +1,2016,2,9,0,5 +1,2016,2,10,0,5 +1,2016,2,11,0,5 +1,2016,2,12,0,5 +1,2016,2,13,1,5 +1,2016,2,14,1,5 +1,2016,2,15,0,5 +1,2016,2,16,0,5 +1,2016,2,17,0,5 +1,2016,2,18,0,1 +1,2016,2,19,0,1 +1,2016,2,20,1,1 +1,2016,2,21,1,5 +1,2016,2,22,0,5 +1,2016,2,23,0,6 +1,2016,2,24,0,6 +1,2016,2,25,0,5 +1,2016,2,26,0,5 +1,2016,2,27,1,5 +1,2016,2,28,1,5 +1,2016,2,29,0,5 +1,2016,3,1,0,3 +1,2016,3,2,0,1 +1,2016,3,3,0,2 +1,2016,3,4,0,2 +1,2016,3,5,1,1 +1,2016,3,6,1,1 +1,2016,3,7,0,5 +1,2016,3,8,0,5 +1,2016,3,9,0,2 +1,2016,3,10,0,1 +1,2016,3,11,0,1 +1,2016,3,12,1,1 +1,2016,3,13,1,1 +1,2016,3,14,0,1 +1,2016,3,15,0,1 +1,2016,3,16,0,2 +1,2016,3,17,0,2 +1,2016,3,18,0,7 +1,2016,3,19,1,4 +1,2016,3,20,1,3 +1,2016,3,21,0,1 +1,2016,3,22,0,1 +1,2016,3,23,0,5 +1,2016,3,24,0,2 +1,2016,3,25,0,1 +1,2016,3,26,1,6 +1,2016,3,27,1,2 +1,2016,3,28,0,5 +1,2016,3,29,0,5 +1,2016,3,30,0,5 +1,2016,3,31,0,2 +1,2016,4,1,0,7 +1,2016,4,2,1,8 +1,2016,4,3,1,7 +1,2016,4,4,0,3 +1,2016,4,5,0,2 +1,2016,4,6,0,8 +1,2016,4,7,0,4 +1,2016,4,8,0,4 +1,2016,4,9,1,2 +1,2016,4,10,1,1 +1,2016,4,11,0,7 +1,2016,4,12,0,7 +1,2016,4,13,0,2 +1,2016,4,14,0,1 +1,2016,4,15,0,1 +1,2016,4,16,1,5 +1,2016,4,17,1,8 +1,2016,4,18,0,8 +1,2016,4,19,0,8 +1,2016,4,20,0,4 +1,2016,4,21,0,4 +1,2016,4,22,0,2 +1,2016,4,23,1,1 +1,2016,4,24,1,1 +1,2016,4,25,0,1 +1,2016,4,26,0,5 +1,2016,4,27,0,1 +1,2016,4,28,0,1 +1,2016,4,29,0,2 +1,2016,4,30,1,1 +1,2016,5,1,1,2 +1,2016,5,2,0,3 +1,2016,5,3,0,3 +1,2016,5,4,0,3 +1,2016,5,5,0,6 +1,2016,5,6,0,1 +1,2016,5,7,1,1 +1,2016,5,8,1,1 +1,2016,5,9,0,5 +1,2016,5,10,0,2 +1,2016,5,11,0,3 +1,2016,5,12,0,3 +1,2016,5,13,0,3 +1,2016,5,14,1,2 +1,2016,5,15,1,6 +1,2016,5,16,0,6 +1,2016,5,17,0,3 +1,2016,5,18,0,3 +1,2016,5,19,0,6 +1,2016,5,20,0,5 +1,2016,5,21,1,1 +1,2016,5,22,1,1 +1,2016,5,23,0,5 +1,2016,5,24,0,5 +1,2016,5,25,0,1 +1,2016,5,26,0,1 +1,2016,5,27,0,6 +1,2016,5,28,1,6 +1,2016,5,29,1,7 +1,2016,5,30,0,7 +1,2016,5,31,0,8 +1,2016,6,1,0,6 +1,2016,6,2,0,6 +1,2016,6,3,0,8 +1,2016,6,4,1,8 +1,2016,6,5,1,8 +1,2016,6,6,0,8 +1,2016,6,7,0,7 +1,2016,6,8,0,3 +1,2016,6,9,0,2 +1,2016,6,10,0,2 +1,2016,6,11,1,1 +1,2016,6,12,1,5 +1,2016,6,13,0,5 +1,2016,6,14,0,1 +1,2016,6,15,0,1 +1,2016,6,16,0,1 +1,2016,6,17,0,5 +1,2016,6,18,1,6 +1,2016,6,19,1,7 +1,2016,6,20,0,8 +1,2016,6,21,0,4 +1,2016,6,22,0,4 +1,2016,6,23,0,4 +1,2016,6,24,0,3 +1,2016,6,25,1,4 +1,2016,6,26,1,8 +1,2016,6,27,0,8 +1,2016,6,28,0,8 +1,2016,6,29,0,8 +1,2016,6,30,0,8 +1,2016,7,1,0,6 +1,2016,7,2,1,2 +1,2016,7,3,1,5 +1,2016,7,4,0,5 +1,2016,7,5,0,5 +1,2016,7,6,0,5 +1,2016,7,7,0,1 +1,2016,7,8,0,1 +1,2016,7,9,1,1 +1,2016,7,10,1,5 +1,2016,7,11,0,5 +1,2016,7,12,0,5 +1,2016,7,13,0,5 +1,2016,7,14,0,7 +1,2016,7,15,0,6 +1,2016,7,16,1,5 +1,2016,7,17,1,1 +1,2016,7,18,0,1 +1,2016,7,19,0,1 +1,2016,7,20,0,1 +1,2016,7,21,0,2 +1,2016,7,22,0,6 +1,2016,7,23,1,6 +1,2016,7,24,1,7 +1,2016,7,25,0,8 +1,2016,7,26,0,8 +1,2016,7,27,0,8 +1,2016,7,28,0,8 +1,2016,7,29,0,8 +1,2016,7,30,1,7 +1,2016,7,31,1,5 +1,2016,8,1,0,5 +1,2016,8,2,0,1 +1,2016,8,3,0,6 +1,2016,8,4,0,2 +1,2016,8,5,0,1 +1,2016,8,6,1,5 +1,2016,8,7,1,5 +1,2016,8,8,0,5 +1,2016,8,9,0,5 +1,2016,8,10,0,5 +1,2016,8,11,0,1 +1,2016,8,12,0,3 +1,2016,8,13,1,4 +1,2016,8,14,1,4 +1,2016,8,15,0,2 +1,2016,8,16,0,2 +1,2016,8,17,0,2 +1,2016,8,18,0,2 +1,2016,8,19,0,3 +1,2016,8,20,1,3 +1,2016,8,21,1,1 +1,2016,8,22,0,5 +1,2016,8,23,0,1 +1,2016,8,24,0,2 +1,2016,8,25,0,2 +1,2016,8,26,0,2 +1,2016,8,27,1,1 +1,2016,8,28,1,1 +1,2016,8,29,0,2 +1,2016,8,30,0,2 +1,2016,8,31,0,2 +1,2016,9,1,0,3 +1,2016,9,2,0,2 +1,2016,9,3,1,1 +1,2016,9,4,1,1 +1,2016,9,5,0,1 +1,2016,9,6,0,1 +1,2016,9,7,0,1 +1,2016,9,8,0,1 +1,2016,9,9,0,5 +1,2016,9,10,1,7 +1,2016,9,11,1,2 +1,2016,9,12,0,1 +1,2016,9,13,0,1 +1,2016,9,14,0,5 +1,2016,9,15,0,5 +1,2016,9,16,0,5 +1,2016,9,17,1,5 +1,2016,9,18,1,5 +1,2016,9,19,0,5 +1,2016,9,20,0,5 +1,2016,9,21,0,5 +1,2016,9,22,0,1 +1,2016,9,23,0,5 +1,2016,9,24,1,5 +1,2016,9,25,1,5 +1,2016,9,26,0,6 +1,2016,9,27,0,6 +1,2016,9,28,0,5 +1,2016,9,29,0,5 +1,2016,9,30,0,5 +1,2016,10,1,1,3 +1,2016,10,2,1,2 +1,2016,10,3,0,1 +1,2016,10,4,0,1 +1,2016,10,5,0,1 +1,2016,10,6,0,1 +1,2016,10,7,0,6 +1,2016,10,8,1,7 +1,2016,10,9,1,8 +1,2016,10,10,0,3 +1,2016,10,11,0,2 +1,2016,10,12,0,6 +1,2016,10,13,0,6 +1,2016,10,14,0,2 +1,2016,10,15,1,2 +1,2016,10,16,1,1 +1,2016,10,17,0,1 +1,2016,10,18,0,1 +1,2016,10,19,0,5 +1,2016,10,20,0,6 +1,2016,10,21,0,6 +1,2016,10,22,1,2 +1,2016,10,23,1,2 +1,2016,10,24,0,7 +1,2016,10,25,0,1 +1,2016,10,26,0,6 +1,2016,10,27,0,7 +1,2016,10,28,0,2 +1,2016,10,29,1,2 +1,2016,10,30,1,2 +1,2016,10,31,0,1 +1,2016,11,1,0,5 +1,2016,11,2,0,5 +1,2016,11,3,0,5 +1,2016,11,4,0,6 +1,2016,11,5,1,5 +1,2016,11,6,1,5 +1,2016,11,7,0,5 +1,2016,11,8,0,5 +1,2016,11,9,0,5 +1,2016,11,10,0,5 +1,2016,11,11,0,5 +1,2016,11,12,1,5 +1,2016,11,13,1,5 +1,2016,11,14,0,5 +1,2016,11,15,0,5 +1,2016,11,16,0,1 +1,2016,11,17,0,1 +1,2016,11,18,0,8 +1,2016,11,19,1,6 +1,2016,11,20,1,5 +1,2016,11,21,0,1 +1,2016,11,22,0,1 +1,2016,11,23,0,5 +1,2016,11,24,0,5 +1,2016,11,25,0,5 +1,2016,11,26,1,1 +1,2016,11,27,1,1 +1,2016,11,28,0,1 +1,2016,11,29,0,1 +1,2016,11,30,0,2 +1,2016,12,1,0,1 +1,2016,12,2,0,1 +1,2016,12,3,1,1 +1,2016,12,4,1,1 +1,2016,12,5,0,6 +1,2016,12,6,0,7 +1,2016,12,7,0,8 +1,2016,12,8,0,4 +1,2016,12,9,0,7 +1,2016,12,10,1,6 +1,2016,12,11,1,5 +1,2016,12,12,0,6 +1,2016,12,13,0,6 +1,2016,12,14,0,7 +1,2016,12,15,0,6 +1,2016,12,16,0,6 +1,2016,12,17,1,8 +1,2016,12,18,1,4 +1,2016,12,19,0,3 +1,2016,12,20,0,1 +1,2016,12,21,0,1 +1,2016,12,22,0,6 +1,2016,12,23,0,6 +1,2016,12,24,1,6 +1,2016,12,25,1,7 +1,2016,12,26,0,3 +1,2016,12,27,0,1 +1,2016,12,28,0,1 +1,2016,12,29,0,2 +1,2016,12,30,0,1 +1,2016,12,31,1,6 +1,2017,1,1,1,2 +1,2017,1,2,0,3 +1,2017,1,3,0,4 +1,2017,1,4,0,4 +1,2017,1,5,0,4 +1,2017,1,6,0,4 +1,2017,1,7,1,4 +1,2017,1,8,1,3 +1,2017,1,9,0,1 +1,2017,1,10,0,1 +1,2017,1,11,0,2 +1,2017,1,12,0,4 +1,2017,1,13,0,4 +1,2017,1,14,1,4 +1,2017,1,15,1,4 +1,2017,1,16,0,4 +1,2017,1,17,0,4 +1,2017,1,18,0,2 +1,2017,1,19,0,1 +1,2017,1,20,0,1 +1,2017,1,21,1,1 +1,2017,1,22,1,1 +1,2017,1,23,0,1 +1,2017,1,24,0,2 +1,2017,1,25,0,6 +1,2017,1,26,0,6 +1,2017,1,27,0,6 +1,2017,1,28,1,6 +1,2017,1,29,1,6 +1,2017,1,30,0,1 +1,2017,1,31,0,1 +1,2017,2,1,0,3 +1,2017,2,2,0,8 +1,2017,2,3,0,8 +1,2017,2,4,1,1 +1,2017,2,5,1,1 +1,2017,2,6,0,1 +1,2017,2,7,0,5 +1,2017,2,8,0,6 +1,2017,2,9,0,5 +1,2017,2,10,0,1 +1,2017,2,11,1,1 +1,2017,2,12,1,6 +1,2017,2,13,0,6 +1,2017,2,14,0,6 +1,2017,2,15,0,5 +1,2017,2,16,0,5 +1,2017,2,17,0,1 +1,2017,2,18,1,1 +1,2017,2,19,1,1 +1,2017,2,20,0,1 +1,2017,2,21,0,5 +1,2017,2,22,0,1 +1,2017,2,23,0,1 +1,2017,2,24,0,3 +1,2017,2,25,1,3 +1,2017,2,26,1,2 +1,2017,2,27,0,1 +1,2017,2,28,0,1 +1,2017,3,1,0,8 +1,2017,3,2,0,4 +1,2017,3,3,0,3 +1,2017,3,4,1,1 +1,2017,3,5,1,5 +1,2017,3,6,0,5 +1,2017,3,7,0,7 +1,2017,3,8,0,2 +1,2017,3,9,0,3 +1,2017,3,10,0,3 +1,2017,3,11,1,3 +1,2017,3,12,1,2 +1,2017,3,13,0,3 +1,2017,3,14,0,2 +1,2017,3,15,0,1 +1,2017,3,16,0,1 +1,2017,3,17,0,2 +1,2017,3,18,1,1 +1,2017,3,19,1,1 +1,2017,3,20,0,1 +1,2017,3,21,0,1 +1,2017,3,22,0,1 +1,2017,3,23,0,5 +1,2017,3,24,0,1 +1,2017,3,25,1,1 +1,2017,3,26,1,1 +1,2017,3,27,0,1 +1,2017,3,28,0,1 +1,2017,3,29,0,2 +1,2017,3,30,0,1 +1,2017,3,31,0,5 +1,2017,4,1,1,6 +1,2017,4,2,1,7 +1,2017,4,3,0,1 +1,2017,4,4,0,5 +1,2017,4,5,0,7 +1,2017,4,6,0,7 +1,2017,4,7,0,2 +1,2017,4,8,1,1 +1,2017,4,9,1,5 +1,2017,4,10,0,6 +1,2017,4,11,0,7 +1,2017,4,12,0,2 +1,2017,4,13,0,1 +1,2017,4,14,0,1 +1,2017,4,15,1,5 +1,2017,4,16,1,7 +1,2017,4,17,0,2 +1,2017,4,18,0,2 +1,2017,4,19,0,2 +1,2017,4,20,0,2 +1,2017,4,21,0,2 +1,2017,4,22,1,4 +1,2017,4,23,1,2 +1,2017,4,24,0,1 +1,2017,4,25,0,1 +1,2017,4,26,0,1 +1,2017,4,27,0,1 +1,2017,4,28,0,1 +1,2017,4,29,1,6 +1,2017,4,30,1,7 +1,2017,5,1,0,2 +1,2017,5,2,0,2 +1,2017,5,3,0,3 +1,2017,5,4,0,8 +1,2017,5,5,0,7 +1,2017,5,6,1,5 +1,2017,5,7,1,1 +1,2017,5,8,0,1 +1,2017,5,9,0,2 +1,2017,5,10,0,2 +1,2017,5,11,0,2 +1,2017,5,12,0,5 +1,2017,5,13,1,5 +1,2017,5,14,1,1 +1,2017,5,15,0,1 +1,2017,5,16,0,1 +1,2017,5,17,0,5 +1,2017,5,18,0,1 +1,2017,5,19,0,2 +1,2017,5,20,1,3 +1,2017,5,21,1,3 +1,2017,5,22,0,8 +1,2017,5,23,0,8 +1,2017,5,24,0,6 +1,2017,5,25,0,5 +1,2017,5,26,0,5 +1,2017,5,27,1,2 +1,2017,5,28,1,3 +1,2017,5,29,0,8 +1,2017,5,30,0,7 +1,2017,5,31,0,6 +1,2017,6,1,0,5 +1,2017,6,2,0,5 +1,2017,6,3,1,6 +1,2017,6,4,1,3 +1,2017,6,5,0,3 +1,2017,6,6,0,6 +1,2017,6,7,0,6 +1,2017,6,8,0,5 +1,2017,6,9,0,1 +1,2017,6,10,1,1 +1,2017,6,11,1,1 +1,2017,6,12,0,5 +1,2017,6,13,0,5 +1,2017,6,14,0,5 +1,2017,6,15,0,5 +1,2017,6,16,0,3 +1,2017,6,17,1,4 +1,2017,6,18,1,8 +1,2017,6,19,0,8 +1,2017,6,20,0,8 +1,2017,6,21,0,4 +1,2017,6,22,0,4 +1,2017,6,23,0,8 +1,2017,6,24,1,8 +1,2017,6,25,1,8 +1,2017,6,26,0,8 +1,2017,6,27,0,4 +1,2017,6,28,0,3 +1,2017,6,29,0,3 +1,2017,6,30,0,8 +1,2017,7,1,1,2 +1,2017,7,2,1,1 +1,2017,7,3,0,5 +1,2017,7,4,0,6 +1,2017,7,5,0,2 +1,2017,7,6,0,3 +1,2017,7,7,0,8 +1,2017,7,8,1,8 +1,2017,7,9,1,8 +1,2017,7,10,0,7 +1,2017,7,11,0,5 +1,2017,7,12,0,6 +1,2017,7,13,0,7 +1,2017,7,14,0,7 +1,2017,7,15,1,8 +1,2017,7,16,1,7 +1,2017,7,17,0,6 +1,2017,7,18,0,6 +1,2017,7,19,0,6 +1,2017,7,20,0,6 +1,2017,7,21,0,6 +1,2017,7,22,1,7 +1,2017,7,23,1,8 +1,2017,7,24,0,6 +1,2017,7,25,0,7 +1,2017,7,26,0,3 +1,2017,7,27,0,7 +1,2017,7,28,0,7 +1,2017,7,29,1,7 +1,2017,7,30,1,8 +1,2017,7,31,0,4 +1,2017,8,1,0,4 +1,2017,8,2,0,4 +1,2017,8,3,0,4 +1,2017,8,4,0,4 +1,2017,8,5,1,6 +1,2017,8,6,1,2 +1,2017,8,7,0,3 +1,2017,8,8,0,3 +1,2017,8,9,0,3 +1,2017,8,10,0,3 +1,2017,8,11,0,3 +1,2017,8,12,1,7 +1,2017,8,13,1,5 +1,2017,8,14,0,5 +1,2017,8,15,0,5 +1,2017,8,16,0,1 +1,2017,8,17,0,1 +1,2017,8,18,0,2 +1,2017,8,19,1,6 +1,2017,8,20,1,5 +1,2017,8,21,0,1 +1,2017,8,22,0,2 +1,2017,8,23,0,3 +1,2017,8,24,0,5 +1,2017,8,25,0,6 +1,2017,8,26,1,8 +1,2017,8,27,1,4 +1,2017,8,28,0,4 +1,2017,8,29,0,8 +1,2017,8,30,0,8 +1,2017,8,31,0,8 +1,2017,9,1,0,4 +1,2017,9,2,1,4 +1,2017,9,3,1,4 +1,2017,9,4,0,4 +1,2017,9,5,0,4 +1,2017,9,6,0,4 +1,2017,9,7,0,4 +1,2017,9,8,0,2 +1,2017,9,9,1,2 +1,2017,9,10,1,7 +1,2017,9,11,0,4 +1,2017,9,12,0,4 +1,2017,9,13,0,2 +1,2017,9,14,0,1 +1,2017,9,15,0,1 +1,2017,9,16,1,5 +1,2017,9,17,1,5 +1,2017,9,18,0,1 +1,2017,9,19,0,1 +1,2017,9,20,0,1 +1,2017,9,21,0,1 +1,2017,9,22,0,5 +1,2017,9,23,1,5 +1,2017,9,24,1,5 +1,2017,9,25,0,5 +1,2017,9,26,0,5 +1,2017,9,27,0,5 +1,2017,9,28,0,6 +1,2017,9,29,0,5 +1,2017,9,30,1,5 +1,2017,10,1,1,3 +1,2017,10,2,0,1 +1,2017,10,3,0,1 +1,2017,10,4,0,6 +1,2017,10,5,0,6 +1,2017,10,6,0,2 +1,2017,10,7,1,2 +1,2017,10,8,1,2 +1,2017,10,9,0,1 +1,2017,10,10,0,6 +1,2017,10,11,0,1 +1,2017,10,12,0,1 +1,2017,10,13,0,5 +1,2017,10,14,1,5 +1,2017,10,15,1,5 +1,2017,10,16,0,6 +1,2017,10,17,0,6 +1,2017,10,18,0,2 +1,2017,10,19,0,2 +1,2017,10,20,0,1 +1,2017,10,21,1,1 +1,2017,10,22,1,5 +1,2017,10,23,0,6 +1,2017,10,24,0,8 +1,2017,10,25,0,7 +1,2017,10,26,0,6 +1,2017,10,27,0,6 +1,2017,10,28,1,6 +1,2017,10,29,1,6 +1,2017,10,30,0,1 +1,2017,10,31,0,1 +1,2017,11,1,0,1 +1,2017,11,2,0,1 +1,2017,11,3,0,1 +1,2017,11,4,1,1 +1,2017,11,5,1,1 +1,2017,11,6,0,2 +1,2017,11,7,0,3 +1,2017,11,8,0,2 +1,2017,11,9,0,1 +1,2017,11,10,0,1 +1,2017,11,11,1,1 +1,2017,11,12,1,6 +1,2017,11,13,0,5 +1,2017,11,14,0,1 +1,2017,11,15,0,1 +1,2017,11,16,0,1 +1,2017,11,17,0,1 +1,2017,11,18,1,6 +1,2017,11,19,1,2 +1,2017,11,20,0,1 +1,2017,11,21,0,5 +1,2017,11,22,0,5 +1,2017,11,23,0,5 +1,2017,11,24,0,1 +1,2017,11,25,1,5 +1,2017,11,26,1,5 +1,2017,11,27,0,1 +1,2017,11,28,0,1 +1,2017,11,29,0,5 +1,2017,11,30,0,7 +1,2017,12,1,0,5 +1,2017,12,2,1,5 +1,2017,12,3,1,5 +1,2017,12,4,0,6 +1,2017,12,5,0,2 +1,2017,12,6,0,2 +1,2017,12,7,0,2 +1,2017,12,8,0,1 +1,2017,12,9,1,1 +1,2017,12,10,1,1 +1,2017,12,11,0,1 +1,2017,12,12,0,1 +1,2017,12,13,0,1 +1,2017,12,14,0,1 +1,2017,12,15,0,1 +1,2017,12,16,1,5 +1,2017,12,17,1,6 +1,2017,12,18,0,1 +1,2017,12,19,0,1 +1,2017,12,20,0,5 +1,2017,12,21,0,2 +1,2017,12,22,0,2 +1,2017,12,23,1,3 +1,2017,12,24,1,4 +1,2017,12,25,0,3 +1,2017,12,26,0,3 +1,2017,12,27,0,3 +1,2017,12,28,0,2 +1,2017,12,29,0,1 +1,2017,12,30,1,1 +1,2017,12,31,1,2 +1,2018,1,1,0,7 +1,2018,1,2,0,6 +1,2018,1,3,0,2 +1,2018,1,4,0,2 +1,2018,1,5,0,1 +1,2018,1,6,1,1 +1,2018,1,7,1,1 +1,2018,1,8,0,1 +1,2018,1,9,0,1 +1,2018,1,10,0,1 +1,2018,1,11,0,1 +1,2018,1,12,0,1 +1,2018,1,13,1,5 +1,2018,1,14,1,1 +1,2018,1,15,0,1 +1,2018,1,16,0,5 +1,2018,1,17,0,5 +1,2018,1,18,0,1 +1,2018,1,19,0,1 +1,2018,1,20,1,1 +1,2018,1,21,1,1 +1,2018,1,22,0,5 +1,2018,1,23,0,5 +1,2018,1,24,0,5 +1,2018,1,25,0,1 +1,2018,1,26,0,1 +1,2018,1,27,1,5 +1,2018,1,28,1,5 +1,2018,1,29,0,5 +1,2018,1,30,0,1 +1,2018,1,31,0,1 +1,2018,2,1,0,6 +1,2018,2,2,0,5 +1,2018,2,3,1,5 +1,2018,2,4,1,5 +1,2018,2,5,0,5 +1,2018,2,6,0,5 +1,2018,2,7,0,5 +1,2018,2,8,0,5 +1,2018,2,9,0,5 +1,2018,2,10,1,7 +1,2018,2,11,1,7 +1,2018,2,12,0,8 +1,2018,2,13,0,3 +1,2018,2,14,0,1 +1,2018,2,15,0,1 +1,2018,2,16,0,1 +1,2018,2,17,1,1 +1,2018,2,18,1,1 +1,2018,2,19,0,4 +1,2018,2,20,0,4 +1,2018,2,21,0,4 +1,2018,2,22,0,4 +1,2018,2,23,0,4 +1,2018,2,24,1,3 +1,2018,2,25,1,2 +1,2018,2,26,0,2 +1,2018,2,27,0,2 +1,2018,2,28,0,1 +1,2018,3,1,0,7 +1,2018,3,2,0,5 +1,2018,3,3,1,5 +1,2018,3,4,1,6 +1,2018,3,5,0,7 +1,2018,3,6,0,8 +1,2018,3,7,0,8 +1,2018,3,8,0,2 +1,2018,3,9,0,1 +1,2018,3,10,1,6 +1,2018,3,11,1,8 +1,2018,3,12,0,4 +1,2018,3,13,0,2 +1,2018,3,14,0,1 +1,2018,3,15,0,5 +1,2018,3,16,0,5 +1,2018,3,17,1,5 +1,2018,3,18,1,5 +1,2018,3,19,0,7 +1,2018,3,20,0,3 +1,2018,3,21,0,2 +1,2018,3,22,0,1 +1,2018,3,23,0,1 +1,2018,3,24,1,5 +1,2018,3,25,1,5 +1,2018,3,26,0,5 +1,2018,3,27,0,1 +1,2018,3,28,0,2 +1,2018,3,29,0,2 +1,2018,3,30,0,1 +1,2018,3,31,1,2 +1,2018,4,1,1,2 +1,2018,4,2,0,1 +1,2018,4,3,0,5 +1,2018,4,4,0,7 +1,2018,4,5,0,2 +1,2018,4,6,0,2 +1,2018,4,7,1,3 +1,2018,4,8,1,1 +1,2018,4,9,0,7 +1,2018,4,10,0,4 +1,2018,4,11,0,2 +1,2018,4,12,0,1 +1,2018,4,13,0,5 +1,2018,4,14,1,7 +1,2018,4,15,1,7 +1,2018,4,16,0,1 +1,2018,4,17,0,5 +1,2018,4,18,0,6 +1,2018,4,19,0,5 +1,2018,4,20,0,5 +1,2018,4,21,1,7 +1,2018,4,22,1,4 +1,2018,4,23,0,4 +1,2018,4,24,0,4 +1,2018,4,25,0,4 +1,2018,4,26,0,4 +1,2018,4,27,0,3 +1,2018,4,28,1,1 +1,2018,4,29,1,1 +1,2018,4,30,0,1 +1,2018,5,1,0,1 +1,2018,5,2,0,1 +1,2018,5,3,0,2 +1,2018,5,4,0,3 +1,2018,5,5,1,3 +1,2018,5,6,1,3 +1,2018,5,7,0,7 +1,2018,5,8,0,7 +1,2018,5,9,0,7 +1,2018,5,10,0,5 +1,2018,5,11,0,5 +1,2018,5,12,1,5 +1,2018,5,13,1,2 +1,2018,5,14,0,2 +1,2018,5,15,0,2 +1,2018,5,16,0,6 +1,2018,5,17,0,5 +1,2018,5,18,0,5 +1,2018,5,19,1,6 +1,2018,5,20,1,6 +1,2018,5,21,0,6 +1,2018,5,22,0,6 +1,2018,5,23,0,6 +1,2018,5,24,0,6 +1,2018,5,25,0,6 +1,2018,5,26,1,5 +1,2018,5,27,1,6 +1,2018,5,28,0,7 +1,2018,5,29,0,7 +1,2018,5,30,0,5 +1,2018,5,31,0,5 +1,2018,6,1,0,1 +1,2018,6,2,1,5 +1,2018,6,3,1,8 +1,2018,6,4,0,6 +1,2018,6,5,0,2 +1,2018,6,6,0,1 +1,2018,6,7,0,5 +1,2018,6,8,0,5 +1,2018,6,9,1,2 +1,2018,6,10,1,1 +1,2018,6,11,0,1 +1,2018,6,12,0,6 +1,2018,6,13,0,4 +1,2018,6,14,0,3 +1,2018,6,15,0,2 +1,2018,6,16,1,1 +1,2018,6,17,1,5 +1,2018,6,18,0,5 +1,2018,6,19,0,5 +1,2018,6,20,0,8 +1,2018,6,21,0,8 +1,2018,6,22,0,4 +1,2018,6,23,1,4 +1,2018,6,24,1,7 +1,2018,6,25,0,7 +1,2018,6,26,0,3 +1,2018,6,27,0,3 +1,2018,6,28,0,3 +1,2018,6,29,0,2 +1,2018,6,30,1,6 +1,2018,7,1,1,6 +1,2018,7,2,0,5 +1,2018,7,3,0,5 +1,2018,7,4,0,1 +1,2018,7,5,0,2 +1,2018,7,6,0,4 +1,2018,7,7,1,8 +1,2018,7,8,1,8 +1,2018,7,9,0,7 +1,2018,7,10,0,7 +1,2018,7,11,0,7 +1,2018,7,12,0,8 +1,2018,7,13,0,4 +1,2018,7,14,1,8 +1,2018,7,15,1,3 +1,2018,7,16,0,3 +1,2018,7,17,0,3 +1,2018,7,18,0,8 +1,2018,7,19,0,7 +1,2018,7,20,0,6 +1,2018,7,21,1,6 +1,2018,7,22,1,7 +1,2018,7,23,0,4 +1,2018,7,24,0,4 +1,2018,7,25,0,8 +1,2018,7,26,0,4 +1,2018,7,27,0,4 +1,2018,7,28,1,4 +1,2018,7,29,1,4 +1,2018,7,30,0,4 +1,2018,7,31,0,4 +1,2018,8,1,0,3 +1,2018,8,2,0,6 +1,2018,8,3,0,6 +1,2018,8,4,1,6 +1,2018,8,5,1,2 +1,2018,8,6,0,3 +1,2018,8,7,0,3 +1,2018,8,8,0,4 +1,2018,8,9,0,4 +1,2018,8,10,0,4 +1,2018,8,11,1,3 +1,2018,8,12,1,7 +1,2018,8,13,0,6 +1,2018,8,14,0,2 +1,2018,8,15,0,2 +1,2018,8,16,0,2 +1,2018,8,17,0,3 +1,2018,8,18,1,3 +1,2018,8,19,1,3 +1,2018,8,20,0,3 +1,2018,8,21,0,2 +1,2018,8,22,0,2 +1,2018,8,23,0,1 +1,2018,8,24,0,5 +1,2018,8,25,1,5 +1,2018,8,26,1,5 +1,2018,8,27,0,5 +1,2018,8,28,0,1 +1,2018,8,29,0,1 +1,2018,8,30,0,1 +1,2018,8,31,0,5 +1,2018,9,1,1,1 +1,2018,9,2,1,2 +1,2018,9,3,0,2 +1,2018,9,4,0,2 +1,2018,9,5,0,8 +1,2018,9,6,0,8 +1,2018,9,7,0,8 +1,2018,9,8,1,4 +1,2018,9,9,1,2 +1,2018,9,10,0,2 +1,2018,9,11,0,1 +1,2018,9,12,0,1 +1,2018,9,13,0,1 +1,2018,9,14,0,1 +1,2018,9,15,1,1 +1,2018,9,16,1,1 +1,2018,9,17,0,1 +1,2018,9,18,0,1 +1,2018,9,19,0,1 +1,2018,9,20,0,1 +1,2018,9,21,0,5 +1,2018,9,22,1,2 +1,2018,9,23,1,1 +1,2018,9,24,0,1 +1,2018,9,25,0,5 +1,2018,9,26,0,6 +1,2018,9,27,0,6 +1,2018,9,28,0,5 +1,2018,9,29,1,1 +1,2018,9,30,1,1 +1,2018,10,1,0,4 +1,2018,10,2,0,4 +1,2018,10,3,0,3 +1,2018,10,4,0,2 +1,2018,10,5,0,1 +1,2018,10,6,1,2 +1,2018,10,7,1,1 +1,2018,10,8,0,1 +1,2018,10,9,0,1 +1,2018,10,10,0,1 +1,2018,10,11,0,1 +1,2018,10,12,0,1 +1,2018,10,13,1,1 +1,2018,10,14,1,5 +1,2018,10,15,0,5 +1,2018,10,16,0,5 +1,2018,10,17,0,5 +1,2018,10,18,0,5 +1,2018,10,19,0,6 +1,2018,10,20,1,6 +1,2018,10,21,1,6 +1,2018,10,22,0,6 +1,2018,10,23,0,6 +1,2018,10,24,0,6 +1,2018,10,25,0,6 +1,2018,10,26,0,6 +1,2018,10,27,1,6 +1,2018,10,28,1,6 +1,2018,10,29,0,1 +1,2018,10,30,0,1 +1,2018,10,31,0,5 +1,2018,11,1,0,5 +1,2018,11,2,0,5 +1,2018,11,3,1,5 +1,2018,11,4,1,5 +1,2018,11,5,0,1 +1,2018,11,6,0,5 +1,2018,11,7,0,7 +1,2018,11,8,0,3 +1,2018,11,9,0,8 +1,2018,11,10,1,6 +1,2018,11,11,1,3 +1,2018,11,12,0,8 +1,2018,11,13,0,8 +1,2018,11,14,0,7 +1,2018,11,15,0,6 +1,2018,11,16,0,5 +1,2018,11,17,1,8 +1,2018,11,18,1,3 +1,2018,11,19,0,8 +1,2018,11,20,0,2 +1,2018,11,21,0,2 +1,2018,11,22,0,1 +1,2018,11,23,0,1 +1,2018,11,24,1,1 +1,2018,11,25,1,2 +1,2018,11,26,0,7 +1,2018,11,27,0,5 +1,2018,11,28,0,1 +1,2018,11,29,0,1 +1,2018,11,30,0,1 +1,2018,12,1,1,5 +1,2018,12,2,1,6 +1,2018,12,3,0,1 +1,2018,12,4,0,1 +1,2018,12,5,0,6 +1,2018,12,6,0,7 +1,2018,12,7,0,7 +1,2018,12,8,1,1 +1,2018,12,9,1,1 +1,2018,12,10,0,1 +1,2018,12,11,0,5 +1,2018,12,12,0,1 +1,2018,12,13,0,1 +1,2018,12,14,0,1 +1,2018,12,15,1,1 +1,2018,12,16,1,5 +1,2018,12,17,0,5 +1,2018,12,18,0,1 +1,2018,12,19,0,1 +1,2018,12,20,0,1 +1,2018,12,21,0,5 +1,2018,12,22,1,6 +1,2018,12,23,1,1 +1,2018,12,24,0,5 +1,2018,12,25,0,6 +1,2018,12,26,0,6 +1,2018,12,27,0,6 +1,2018,12,28,0,2 +1,2018,12,29,1,1 +1,2018,12,30,1,1 +1,2018,12,31,0,7 +1,2019,1,1,0,8 +1,2019,1,2,0,7 +1,2019,1,3,0,6 +1,2019,1,4,0,5 +1,2019,1,5,1,1 +1,2019,1,6,1,1 +1,2019,1,7,0,1 +1,2019,1,8,0,2 +1,2019,1,9,0,1 +1,2019,1,10,0,1 +1,2019,1,11,0,1 +1,2019,1,12,1,1 +1,2019,1,13,1,1 +1,2019,1,14,0,2 +1,2019,1,15,0,2 +1,2019,1,16,0,1 +1,2019,1,17,0,1 +1,2019,1,18,0,1 +1,2019,1,19,1,1 +1,2019,1,20,1,1 +1,2019,1,21,0,1 +1,2019,1,22,0,2 +1,2019,1,23,0,5 +1,2019,1,24,0,5 +1,2019,1,25,0,5 +1,2019,1,26,1,5 +1,2019,1,27,1,1 +1,2019,1,28,0,1 +1,2019,1,29,0,2 +1,2019,1,30,0,2 +1,2019,1,31,0,1 +1,2019,2,1,0,5 +1,2019,2,2,1,1 +1,2019,2,3,1,1 +1,2019,2,4,0,2 +1,2019,2,5,0,4 +1,2019,2,6,0,4 +1,2019,2,7,0,4 +1,2019,2,8,0,4 +1,2019,2,9,1,4 +1,2019,2,10,1,4 +1,2019,2,11,0,4 +1,2019,2,12,0,4 +1,2019,2,13,0,1 +1,2019,2,14,0,1 +1,2019,2,15,0,1 +1,2019,2,16,1,2 +1,2019,2,17,1,4 +1,2019,2,18,0,4 +1,2019,2,19,0,4 +1,2019,2,20,0,3 +1,2019,2,21,0,4 +1,2019,2,22,0,4 +1,2019,2,23,1,3 +1,2019,2,24,1,4 +1,2019,2,25,0,3 +1,2019,2,26,0,3 +1,2019,2,27,0,8 +1,2019,2,28,0,7 +1,2019,3,1,0,6 +1,2019,3,2,1,7 +1,2019,3,3,1,8 +1,2019,3,4,0,8 +1,2019,3,5,0,8 +1,2019,3,6,0,7 +1,2019,3,7,0,5 +1,2019,3,8,0,5 +1,2019,3,9,1,5 +1,2019,3,10,1,7 +1,2019,3,11,0,7 +1,2019,3,12,0,5 +1,2019,3,13,0,5 +1,2019,3,14,0,7 +1,2019,3,15,0,8 +1,2019,3,16,1,8 +1,2019,3,17,1,4 +1,2019,3,18,0,4 +1,2019,3,19,0,3 +1,2019,3,20,0,2 +1,2019,3,21,0,2 +1,2019,3,22,0,2 +1,2019,3,23,1,1 +1,2019,3,24,1,2 +1,2019,3,25,0,3 +1,2019,3,26,0,2 +1,2019,3,27,0,1 +1,2019,3,28,0,1 +1,2019,3,29,0,1 +1,2019,3,30,1,3 +1,2019,3,31,1,4 +1,2019,4,1,0,8 +1,2019,4,2,0,2 +1,2019,4,3,0,2 +1,2019,4,4,0,6 +1,2019,4,5,0,2 +1,2019,4,6,1,1 +1,2019,4,7,1,2 +1,2019,4,8,0,4 +1,2019,4,9,0,2 +1,2019,4,10,0,1 +1,2019,4,11,0,5 +1,2019,4,12,0,1 +1,2019,4,13,1,6 +1,2019,4,14,1,2 +1,2019,4,15,0,1 +1,2019,4,16,0,1 +1,2019,4,17,0,5 +1,2019,4,18,0,8 +1,2019,4,19,0,4 +1,2019,4,20,1,2 +1,2019,4,21,1,1 +1,2019,4,22,0,7 +1,2019,4,23,0,4 +1,2019,4,24,0,4 +1,2019,4,25,0,4 +1,2019,4,26,0,4 +1,2019,4,27,1,2 +1,2019,4,28,1,2 +1,2019,4,29,0,2 +1,2019,4,30,0,1 +1,2019,5,1,0,1 +1,2019,5,2,0,2 +1,2019,5,3,0,2 +1,2019,5,4,1,2 +1,2019,5,5,1,5 +1,2019,5,6,0,1 +1,2019,5,7,0,1 +1,2019,5,8,0,2 +1,2019,5,9,0,2 +1,2019,5,10,0,2 +1,2019,5,11,1,2 +1,2019,5,12,1,2 +1,2019,5,13,0,6 +1,2019,5,14,0,6 +1,2019,5,15,0,6 +1,2019,5,16,0,5 +1,2019,5,17,0,1 +1,2019,5,18,1,1 +1,2019,5,19,1,1 +1,2019,5,20,0,1 +1,2019,5,21,0,1 +1,2019,5,22,0,1 +1,2019,5,23,0,1 +1,2019,5,24,0,1 +1,2019,5,25,1,1 +1,2019,5,26,1,5 +1,2019,5,27,0,1 +1,2019,5,28,0,1 +1,2019,5,29,0,2 +1,2019,5,30,0,7 +1,2019,5,31,0,7 +1,2019,6,1,1,5 +1,2019,6,2,1,5 +1,2019,6,3,0,5 +1,2019,6,4,0,5 +1,2019,6,5,0,6 +1,2019,6,6,0,2 +1,2019,6,7,0,1 +1,2019,6,8,1,1 +1,2019,6,9,1,6 +1,2019,6,10,0,8 +1,2019,6,11,0,8 +1,2019,6,12,0,8 +1,2019,6,13,0,8 +1,2019,6,14,0,2 +1,2019,6,15,1,5 +1,2019,6,16,1,6 +1,2019,6,17,0,6 +1,2019,6,18,0,7 +1,2019,6,19,0,6 +1,2019,6,20,0,2 +1,2019,6,21,0,1 +1,2019,6,22,1,5 +1,2019,6,23,1,6 +1,2019,6,24,0,6 +1,2019,6,25,0,3 +1,2019,6,26,0,2 +1,2019,6,27,0,5 +1,2019,6,28,0,5 +1,2019,6,29,1,6 +1,2019,6,30,1,8 +1,2019,7,1,0,1 +1,2019,7,2,0,1 +1,2019,7,3,0,5 +1,2019,7,4,0,1 +1,2019,7,5,0,1 +1,2019,7,6,1,2 +1,2019,7,7,1,1 +1,2019,7,8,0,1 +1,2019,7,9,0,1 +1,2019,7,10,0,2 +1,2019,7,11,0,2 +1,2019,7,12,0,2 +1,2019,7,13,1,7 +1,2019,7,14,1,7 +1,2019,7,15,0,2 +1,2019,7,16,0,1 +1,2019,7,17,0,5 +1,2019,7,18,0,5 +1,2019,7,19,0,5 +1,2019,7,20,1,5 +1,2019,7,21,1,2 +1,2019,7,22,0,3 +1,2019,7,23,0,4 +1,2019,7,24,0,7 +1,2019,7,25,0,8 +1,2019,7,26,0,8 +1,2019,7,27,1,8 +1,2019,7,28,1,8 +1,2019,7,29,0,7 +1,2019,7,30,0,6 +1,2019,7,31,0,6 +1,2019,8,1,0,2 +1,2019,8,2,0,2 +1,2019,8,3,1,3 +1,2019,8,4,1,3 +1,2019,8,5,0,3 +1,2019,8,6,0,7 +1,2019,8,7,0,6 +1,2019,8,8,0,1 +1,2019,8,9,0,1 +1,2019,8,10,1,1 +1,2019,8,11,1,1 +1,2019,8,12,0,1 +1,2019,8,13,0,3 +1,2019,8,14,0,4 +1,2019,8,15,0,7 +1,2019,8,16,0,6 +1,2019,8,17,1,5 +1,2019,8,18,1,5 +1,2019,8,19,0,1 +1,2019,8,20,0,1 +1,2019,8,21,0,1 +1,2019,8,22,0,5 +1,2019,8,23,0,6 +1,2019,8,24,1,6 +1,2019,8,25,1,6 +1,2019,8,26,0,7 +1,2019,8,27,0,8 +1,2019,8,28,0,3 +1,2019,8,29,0,2 +1,2019,8,30,0,2 +1,2019,8,31,1,3 +1,2019,9,1,1,4 +1,2019,9,2,0,4 +1,2019,9,3,0,4 +1,2019,9,4,0,4 +1,2019,9,5,0,4 +1,2019,9,6,0,4 +1,2019,9,7,1,3 +1,2019,9,8,1,1 +1,2019,9,9,0,1 +1,2019,9,10,0,1 +1,2019,9,11,0,1 +1,2019,9,12,0,6 +1,2019,9,13,0,7 +1,2019,9,14,1,7 +1,2019,9,15,1,2 +1,2019,9,16,0,1 +1,2019,9,17,0,1 +1,2019,9,18,0,1 +1,2019,9,19,0,1 +1,2019,9,20,0,1 +1,2019,9,21,1,5 +1,2019,9,22,1,5 +1,2019,9,23,0,5 +1,2019,9,24,0,5 +1,2019,9,25,0,5 +1,2019,9,26,0,1 +1,2019,9,27,0,1 +1,2019,9,28,1,1 +1,2019,9,29,1,1 +1,2019,9,30,0,5 +1,2019,10,1,0,1 +1,2019,10,2,0,5 +1,2019,10,3,0,6 +1,2019,10,4,0,1 +1,2019,10,5,1,6 +1,2019,10,6,1,6 +1,2019,10,7,0,7 +1,2019,10,8,0,3 +1,2019,10,9,0,1 +1,2019,10,10,0,1 +1,2019,10,11,0,5 +1,2019,10,12,1,5 +1,2019,10,13,1,5 +1,2019,10,14,0,1 +1,2019,10,15,0,5 +1,2019,10,16,0,6 +1,2019,10,17,0,2 +1,2019,10,18,0,1 +1,2019,10,19,1,1 +1,2019,10,20,1,1 +1,2019,10,21,0,5 +1,2019,10,22,0,6 +1,2019,10,23,0,6 +1,2019,10,24,0,6 +1,2019,10,25,0,6 +1,2019,10,26,1,5 +1,2019,10,27,1,1 +1,2019,10,28,0,5 +1,2019,10,29,0,5 +1,2019,10,30,0,5 +1,2019,10,31,0,5 +1,2019,11,1,0,8 +1,2019,11,2,1,8 +1,2019,11,3,1,6 +1,2019,11,4,0,6 +1,2019,11,5,0,6 +1,2019,11,6,0,7 +1,2019,11,7,0,8 +1,2019,11,8,0,6 +1,2019,11,9,1,5 +1,2019,11,10,1,5 +1,2019,11,11,0,8 +1,2019,11,12,0,7 +1,2019,11,13,0,5 +1,2019,11,14,0,6 +1,2019,11,15,0,5 +1,2019,11,16,1,5 +1,2019,11,17,1,5 +1,2019,11,18,0,5 +1,2019,11,19,0,1 +1,2019,11,20,0,1 +1,2019,11,21,0,2 +1,2019,11,22,0,2 +1,2019,11,23,1,2 +1,2019,11,24,1,5 +1,2019,11,25,0,1 +1,2019,11,26,0,1 +1,2019,11,27,0,1 +1,2019,11,28,0,2 +1,2019,11,29,0,2 +1,2019,11,30,1,2 +1,2019,12,1,1,7 +1,2019,12,2,0,5 +1,2019,12,3,0,5 +1,2019,12,4,0,5 +1,2019,12,5,0,5 +1,2019,12,6,0,5 +1,2019,12,7,1,5 +1,2019,12,8,1,5 +1,2019,12,9,0,5 +1,2019,12,10,0,1 +1,2019,12,11,0,1 +1,2019,12,12,0,5 +1,2019,12,13,0,5 +1,2019,12,14,1,5 +1,2019,12,15,1,6 +1,2019,12,16,0,2 +1,2019,12,17,0,2 +1,2019,12,18,0,1 +1,2019,12,19,0,1 +1,2019,12,20,0,1 +1,2019,12,21,1,1 +1,2019,12,22,1,5 +1,2019,12,23,0,5 +1,2019,12,24,0,6 +1,2019,12,25,0,6 +1,2019,12,26,0,6 +1,2019,12,27,0,6 +1,2019,12,28,1,1 +1,2019,12,29,1,2 +1,2019,12,30,0,2 +1,2019,12,31,0,1 +1,2020,1,1,0,1 +1,2020,1,2,0,1 +1,2020,1,3,0,5 +1,2020,1,4,1,1 +1,2020,1,5,1,1 +1,2020,1,6,0,5 +1,2020,1,7,0,5 +1,2020,1,8,0,1 +1,2020,1,9,0,1 +1,2020,1,10,0,2 +1,2020,1,11,1,5 +1,2020,1,12,1,1 +1,2020,1,13,0,2 +1,2020,1,14,0,2 +1,2020,1,15,0,3 +1,2020,1,16,0,3 +1,2020,1,17,0,2 +1,2020,1,18,1,6 +1,2020,1,19,1,5 +1,2020,1,20,0,5 +1,2020,1,21,0,1 +1,2020,1,22,0,1 +1,2020,1,23,0,1 +1,2020,1,24,0,1 +1,2020,1,25,1,1 +1,2020,1,26,1,1 +1,2020,1,27,0,1 +1,2020,1,28,0,1 +1,2020,1,29,0,1 +1,2020,1,30,0,1 +1,2020,1,31,0,5 +1,2020,2,1,1,5 +1,2020,2,2,1,1 +1,2020,2,3,0,2 +1,2020,2,4,0,4 +1,2020,2,5,0,4 +1,2020,2,6,0,1 +1,2020,2,7,0,5 +1,2020,2,8,1,1 +1,2020,2,9,1,1 +1,2020,2,10,0,6 +1,2020,2,11,0,7 +1,2020,2,12,0,1 +1,2020,2,13,0,7 +1,2020,2,14,0,1 +1,2020,2,15,1,1 +1,2020,2,16,1,5 +1,2020,2,17,0,5 +1,2020,2,18,0,7 +1,2020,2,19,0,8 +1,2020,2,20,0,8 +1,2020,2,21,0,7 +1,2020,2,22,1,5 +1,2020,2,23,1,5 +1,2020,2,24,0,1 +1,2020,2,25,0,7 +1,2020,2,26,0,6 +1,2020,2,27,0,5 +1,2020,2,28,0,5 +1,2020,2,29,1,5 +1,2020,3,1,1,5 +1,2020,3,2,0,5 +1,2020,3,3,0,1 +1,2020,3,4,0,1 +1,2020,3,5,0,4 +1,2020,3,6,0,2 +1,2020,3,7,1,1 +1,2020,3,8,1,5 +1,2020,3,9,0,7 +1,2020,3,10,0,2 +1,2020,3,11,0,1 +1,2020,3,12,0,5 +1,2020,3,13,0,6 +1,2020,3,14,1,6 +1,2020,3,15,1,7 +1,2020,3,16,0,7 +1,2020,3,17,0,6 +1,2020,3,18,0,5 +1,2020,3,19,0,5 +1,2020,3,20,0,8 +1,2020,3,21,1,3 +1,2020,3,22,1,2 +1,2020,3,23,0,1 +1,2020,3,24,0,1 +1,2020,3,25,0,5 +1,2020,3,26,0,5 +1,2020,3,27,0,5 +1,2020,3,28,1,1 +1,2020,3,29,1,1 +1,2020,3,30,0,1 +1,2020,3,31,0,1 +1,2020,4,1,0,1 +1,2020,4,2,0,5 +1,2020,4,3,0,5 +1,2020,4,4,1,5 +1,2020,4,5,1,1 +1,2020,4,6,0,1 +1,2020,4,7,0,5 +1,2020,4,8,0,5 +1,2020,4,9,0,5 +1,2020,4,10,0,6 +1,2020,4,11,1,1 +1,2020,4,12,1,5 +1,2020,4,13,0,6 +1,2020,4,14,0,7 +1,2020,4,15,0,7 +1,2020,4,16,0,7 +1,2020,4,17,0,7 +1,2020,4,18,1,1 +1,2020,4,19,1,2 +1,2020,4,20,0,2 +1,2020,4,21,0,2 +1,2020,4,22,0,2 +1,2020,4,23,0,3 +1,2020,4,24,0,3 +1,2020,4,25,1,4 +1,2020,4,26,1,4 +1,2020,4,27,0,3 +1,2020,4,28,0,4 +1,2020,4,29,0,4 +1,2020,4,30,0,3 +1,2020,5,1,0,5 +1,2020,5,2,1,6 +1,2020,5,3,1,5 +1,2020,5,4,0,1 +1,2020,5,5,0,3 +1,2020,5,6,0,3 +1,2020,5,7,0,2 +1,2020,5,8,0,3 +1,2020,5,9,1,3 +1,2020,5,10,1,3 +1,2020,5,11,0,7 +1,2020,5,12,0,5 +1,2020,5,13,0,5 +1,2020,5,14,0,1 +1,2020,5,15,0,5 +1,2020,5,16,1,6 +1,2020,5,17,1,6 +1,2020,5,18,0,5 +1,2020,5,19,0,5 +1,2020,5,20,0,1 +1,2020,5,21,0,1 +1,2020,5,22,0,5 +1,2020,5,23,1,5 +1,2020,5,24,1,2 +1,2020,5,25,0,3 +1,2020,5,26,0,8 +1,2020,5,27,0,8 +1,2020,5,28,0,8 +1,2020,5,29,0,8 +1,2020,5,30,1,6 +1,2020,5,31,1,6 +1,2020,6,1,0,5 +1,2020,6,2,0,6 +1,2020,6,3,0,7 +1,2020,6,4,0,4 +1,2020,6,5,0,2 +1,2020,6,6,1,1 +1,2020,6,7,1,1 +1,2020,6,8,0,1 +1,2020,6,9,0,5 +1,2020,6,10,0,5 +1,2020,6,11,0,7 +1,2020,6,12,0,6 +1,2020,6,13,1,1 +1,2020,6,14,1,1 +1,2020,6,15,0,5 +1,2020,6,16,0,1 +1,2020,6,17,0,1 +1,2020,6,18,0,5 +1,2020,6,19,0,6 +1,2020,6,20,1,6 +1,2020,6,21,1,6 +1,2020,6,22,0,8 +1,2020,6,23,0,8 +1,2020,6,24,0,8 +1,2020,6,25,0,4 +1,2020,6,26,0,8 +1,2020,6,27,1,4 +1,2020,6,28,1,2 +1,2020,6,29,0,1 +1,2020,6,30,0,1 +1,2020,7,1,0,5 +1,2020,7,2,0,5 +1,2020,7,3,0,1 +1,2020,7,4,1,5 +1,2020,7,5,1,6 +1,2020,7,6,0,5 +1,2020,7,7,0,5 +1,2020,7,8,0,5 +1,2020,7,9,0,5 +1,2020,7,10,0,6 +1,2020,7,11,1,7 +1,2020,7,12,1,6 +1,2020,7,13,0,5 +1,2020,7,14,0,5 +1,2020,7,15,0,1 +1,2020,7,16,0,2 +1,2020,7,17,0,1 +1,2020,7,18,1,5 +1,2020,7,19,1,2 +1,2020,7,20,0,2 +1,2020,7,21,0,2 +1,2020,7,22,0,1 +1,2020,7,23,0,1 +1,2020,7,24,0,5 +1,2020,7,25,1,5 +1,2020,7,26,1,2 +1,2020,7,27,0,3 +1,2020,7,28,0,2 +1,2020,7,29,0,2 +1,2020,7,30,0,2 +1,2020,7,31,0,3 +1,2020,8,1,1,2 +1,2020,8,2,1,2 +1,2020,8,3,0,2 +1,2020,8,4,0,2 +1,2020,8,5,0,1 +1,2020,8,6,0,1 +1,2020,8,7,0,5 +1,2020,8,8,1,5 +1,2020,8,9,1,6 +1,2020,8,10,0,6 +1,2020,8,11,0,5 +1,2020,8,12,0,5 +1,2020,8,13,0,6 +1,2020,8,14,0,8 +1,2020,8,15,1,8 +1,2020,8,16,1,4 +1,2020,8,17,0,4 +1,2020,8,18,0,4 +1,2020,8,19,0,8 +1,2020,8,20,0,7 +1,2020,8,21,0,7 +1,2020,8,22,1,7 +1,2020,8,23,1,7 +1,2020,8,24,0,7 +1,2020,8,25,0,6 +1,2020,8,26,0,6 +1,2020,8,27,0,5 +1,2020,8,28,0,6 +1,2020,8,29,1,6 +1,2020,8,30,1,5 +1,2020,8,31,0,5 +1,2020,9,1,0,2 +1,2020,9,2,0,3 +1,2020,9,3,0,4 +1,2020,9,4,0,4 +1,2020,9,5,1,4 +1,2020,9,6,1,4 +1,2020,9,7,0,4 +1,2020,9,8,0,3 +1,2020,9,9,0,6 +1,2020,9,10,0,6 +1,2020,9,11,0,5 +1,2020,9,12,1,5 +1,2020,9,13,1,5 +1,2020,9,14,0,6 +1,2020,9,15,0,6 +1,2020,9,16,0,6 +1,2020,9,17,0,7 +1,2020,9,18,0,6 +1,2020,9,19,1,2 +1,2020,9,20,1,1 +1,2020,9,21,0,6 +1,2020,9,22,0,2 +1,2020,9,23,0,5 +1,2020,9,24,0,1 +1,2020,9,25,0,1 +1,2020,9,26,1,1 +1,2020,9,27,1,5 +1,2020,9,28,0,6 +1,2020,9,29,0,6 +1,2020,9,30,0,6 +1,2020,10,1,0,8 +1,2020,10,2,0,8 +1,2020,10,3,1,4 +1,2020,10,4,1,8 +1,2020,10,5,0,4 +1,2020,10,6,0,8 +1,2020,10,7,0,4 +1,2020,10,8,0,4 +1,2020,10,9,0,3 +1,2020,10,10,1,3 +1,2020,10,11,1,2 +1,2020,10,12,0,3 +1,2020,10,13,0,8 +1,2020,10,14,0,4 +1,2020,10,15,0,8 +1,2020,10,16,0,8 +1,2020,10,17,1,3 +1,2020,10,18,1,7 +1,2020,10,19,0,3 +1,2020,10,20,0,3 +1,2020,10,21,0,2 +1,2020,10,22,0,1 +1,2020,10,23,0,5 +1,2020,10,24,1,1 +1,2020,10,25,1,1 +1,2020,10,26,0,5 +1,2020,10,27,0,5 +1,2020,10,28,0,5 +1,2020,10,29,0,5 +1,2020,10,30,0,5 +1,2020,10,31,1,5 +1,2020,11,1,1,7 +1,2020,11,2,0,6 +1,2020,11,3,0,5 +1,2020,11,4,0,5 +1,2020,11,5,0,5 +1,2020,11,6,0,1 +1,2020,11,7,1,1 +1,2020,11,8,1,1 +1,2020,11,9,0,2 +1,2020,11,10,0,1 +1,2020,11,11,0,1 +1,2020,11,12,0,2 +1,2020,11,13,0,1 +1,2020,11,14,1,1 +1,2020,11,15,1,5 +1,2020,11,16,0,5 +1,2020,11,17,0,5 +1,2020,11,18,0,1 +1,2020,11,19,0,1 +1,2020,11,20,0,8 +1,2020,11,21,1,8 +1,2020,11,22,1,3 +1,2020,11,23,0,1 +1,2020,11,24,0,1 +1,2020,11,25,0,1 +1,2020,11,26,0,2 +1,2020,11,27,0,7 +1,2020,11,28,1,7 +1,2020,11,29,1,8 +1,2020,11,30,0,7 +1,2020,12,1,0,1 +1,2020,12,2,0,1 +1,2020,12,3,0,1 +1,2020,12,4,0,1 +1,2020,12,5,1,1 +1,2020,12,6,1,1 +1,2020,12,7,0,1 +1,2020,12,8,0,1 +1,2020,12,9,0,1 +1,2020,12,10,0,6 +1,2020,12,11,0,6 +1,2020,12,12,1,6 +1,2020,12,13,1,1 +1,2020,12,14,0,1 +1,2020,12,15,0,1 +1,2020,12,16,0,1 +1,2020,12,17,0,1 +1,2020,12,18,0,1 +1,2020,12,19,1,1 +1,2020,12,20,1,1 +1,2020,12,21,0,1 +1,2020,12,22,0,5 +1,2020,12,23,0,2 +1,2020,12,24,0,2 +1,2020,12,25,0,1 +1,2020,12,26,1,5 +1,2020,12,27,1,6 +1,2020,12,28,0,6 +1,2020,12,29,0,7 +1,2020,12,30,0,2 +1,2020,12,31,0,1 \ No newline at end of file diff --git a/docs/ra_toolkit_e2e_changes.md b/docs/ra_toolkit_e2e_changes.md new file mode 100644 index 0000000000..a2cfaca46e --- /dev/null +++ b/docs/ra_toolkit_e2e_changes.md @@ -0,0 +1,122 @@ +# RA Toolkit E2E: Change Log + +## Data Toolkit Code Changes + +### `hydro_balancing_type` parameter — new feature + +Added a `--hydro_balancing_type` (`-hydro_bt`) parameter to two data toolkit +scripts, allowing users to control the balancing type used for hydro projects +(e.g., `day`, `week`, `month`). + +**`data_toolkit/project/opchar/hydro/create_hydro_iteration_input_csvs.py`** +- Added `--hydro_balancing_type` argument to argparse +- When specified, filters the balancing type-horizon pairs from + `user_defined_balancing_type_horizons` to only the requested type +- When not specified (default `None`), all balancing types are included — + preserving existing behavior +- Threaded through `calculate_from_project_year_month_data()`, the + multiprocessing pool wrapper, and `main()` + +**`data_toolkit/project/opchar/eia860_to_project_opchar_input_csvs.py`** +- Added `--hydro_balancing_type` argument to argparse +- When specified, overrides the `balancing_type_project` column for hydro + projects in the generated opchar CSV (e.g., setting all hydro to `month` + instead of the default from `gridpath_balancing_type` in the key table) +- Threaded through `get_project_opchar()` and `main()` + +### Pandas 2.x compatibility fix + +**`data_toolkit/raw_data/pudl/pudl_to_gridpath_raw_data.py`** +- Added `.astype("int64")` casts when populating `year`, `month`, + `day_of_month`, `hour_of_day` columns in both + `convert_ra_toolkit_profiles_to_csv()` and + `convert_eia930_hourly_interchange_to_csv()` +- Fixes `LossySetitemError` on pandas 2.x when overwriting these columns with + hour-starting values + +### Project aggregation to BA level + +**`data_toolkit/project/project_data_filters_common.py`** +- Added `AGG_FILTER_STR = "agg_project IS NOT NULL"` for filtering to + aggregatable projects + +**`data_toolkit/project/portfolios/eia860_to_project_portfolio_input_csvs.py`** +- Changed from mixed disaggregated/aggregated project naming to all BA-level + aggregation using `AGG_PROJECT_NAME_STR` +- Removed the separate UNION for variable gen and hydro; all projects now use + the same aggregation path with `GROUP BY project` + +**`data_toolkit/project/opchar/eia860_to_project_opchar_input_csvs.py`** +- Changed non-variable, non-hydro projects from disaggregated + (`plant_id__generator_id`) to BA-aggregated naming, matching the portfolio + change +- Added `GROUP BY project` to the non-variable gen query + +**`data_toolkit/project/availability/eia860_to_project_availability_input_csvs.py`** +**`data_toolkit/project/capacity_specified/eia860_to_project_specified_capacity_input_csvs.py`** +**`data_toolkit/project/fixed_cost/eia860_to_project_fixed_cost_input_csvs.py`** +**`data_toolkit/project/load_zones/eia860_to_project_load_zone_input_csvs.py`** +- Updated to use BA-aggregated project naming consistent with the portfolio and + opchar changes + +**`data_toolkit/manual_adjustments.py`** +- Changed `add_battery_durations()` from disaggregated to BA-aggregated project + naming (`DISAGG_PROJECT_NAME_STR` → `AGG_PROJECT_NAME_STR`), with + `GROUP BY project`, consistent with the portfolio/opchar aggregation changes + +**`data_toolkit/open_data_toolkit_settings_sample.csv`** +- Updated to 5-column format + (`script,setting,value,script_true_false_arg,reverse_default_behavior`) + +## New Files + +### E2E settings file + +**`data_toolkit/ra_toolkit_e2e_settings_sample.csv`** (new) +- Data toolkit settings file for the RA Toolkit e2e experiment +- Includes `hydro_balancing_type,month` entries for both + `create_hydro_iteration_input_csvs` and + `eia860_to_project_opchar_input_csvs` + +### E2E scenario CSV directory + +**`db/csvs_ra_toolkit_e2e/`** (new, 691 files) + +All files in this directory are new. No existing test example CSVs were +modified. + +**`scenarios.csv`** +- Defines two scenarios: `ra_toolkit_e2e_monte_carlo` (temporal ID 17) and + `ra_toolkit_e2e_sync` (temporal ID 26) + +**`temporal/26_ra_toolkit_full/`** (new temporal scenario, ID 26 to avoid +conflict with existing ID 19 in `csvs_test_examples`) +- `iterations.csv` — 28 subproblems: 14 weather years (2007–2020) × 2 hydro + years (2015 driest, 2019 wettest), each with a unique availability iteration + 1–28 +- `horizon_params.csv` — 365 day horizons + 12 month horizons (both with + `circular` boundary type) +- `horizon_timepoints.csv` — day-to-timepoint and month-to-timepoint mappings + for all 8,760 hours +- `structure.csv`, `period_params.csv`, `superperiods.csv` — standard temporal + structure for single-period 2026 study year + +**`project/opchar/1_ra_toolkit_e2e.csv`** +- `balancing_type_project` set to `month` for all 24 `gen_hydro_must_take` + projects + +**`project/opchar/hydro_operational_chars/`** — 37 hydro opchar CSVs +- 24 active projects regenerated with month-only rows: + `0,{hydro_year},1,month,{1-12},{avg},{min},{max}` +- 13 sub-BA projects (CIPV, CISC, CISD, IPFE, IPMV, IPTV, PAID, PAUT, PAWY, + SPPC, etc.) retain original daily format but are not in the project portfolio + and not used by the optimizer +- Plus corresponding iteration metadata CSVs in `iterations/` + +**`project/availability/exogenous_independent/`** — 179 availability CSVs +- Each file: 262,801 lines (header + 28 availability iterations × 8,760 + timepoints) +- Generated via Monte Carlo unit outage simulation + +### `.gitignore` +- Added `claude_chat.py` and `claude_history.json` diff --git a/docs/ra_toolkit_e2e_guide.md b/docs/ra_toolkit_e2e_guide.md new file mode 100644 index 0000000000..70926e55f4 --- /dev/null +++ b/docs/ra_toolkit_e2e_guide.md @@ -0,0 +1,410 @@ +# Running the GridPath RA Toolkit End-to-End Pipeline + +This guide walks through the complete process of running a resource adequacy +(RA) study using GridPath with the RA Toolkit data. The pipeline downloads +public energy data, processes it into GridPath's input format, builds a +scenario database, and solves a multi-iteration optimization that produces +reliability metrics (LOLE, LOLH, EUE). + +The e2e pipeline creates two scenarios: + +- **ra_toolkit_e2e_monte_carlo** — stochastic weather draws with Monte Carlo + availability iterations +- **ra_toolkit_e2e_sync** — synchronized weather years (2007-2020) convolved + with hydro years and availability iterations (28 subproblems total) + +## Data Flow Diagram + +``` + PUDL (Zenodo) GridLab RA Toolkit (Google Drive) + | | + v v + gridpath_get_pudl_data gridpath_get_ra_toolkit_data_raw + | | + v v + gridpath_pudl_to_gridpath_raw (already in CSV format) + | | + v v + ./raw_data/ ./raw_data/ + pudl_eia860_generators.csv ra_toolkit_load.csv + pudl_eiaaeo_fuel_prices.csv ra_toolkit_hydro.csv + pudl_ra_toolkit_var_profiles.csv + pudl_eia930_hourly_interchange.csv + \ / + \ / + v v + files_to_import.csv (manifest) + links raw_data/ files + user_defined_*.csv configs + into a unified raw data set + | + v + gridpath_run_data_toolkit + (reads ra_toolkit_e2e_settings_sample.csv) + | + v + db/csvs_ra_toolkit_e2e/ (691 CSV files) + temporal/ — timepoints, horizons, iterations + project/ — portfolios, capacity, opchar, profiles, + | hydro, availability + transmission/ — portfolios, capacity, opchar + system_load/ — hourly load by zone + fuels/ — fuel chars and prices + scenarios.csv — scenario definitions + | + v + gridpath_create_database → ra_toolkit_e2e.db (empty schema) + gridpath_load_csvs → ra_toolkit_e2e.db (populated) + gridpath_load_scenarios → ra_toolkit_e2e.db (scenarios registered) + | + v + gridpath_run_e2e --scenario ra_toolkit_e2e_sync --solver cbc + | + v + Results: + Per-subproblem dispatch and costs + Reliability metrics: LOLE, LOLH, EUE + Unserved energy location and timing +``` + +## Prerequisites + +- **GridPath** installed in a conda/mamba environment with all dependencies +- **Python 3.11+** with pandas, pyomo, and solver interfaces +- **Solver**: CBC (open-source, included with Pyomo) or a commercial solver + (Gurobi, CPLEX) for faster solves +- **Disk space**: ~10 GB (PUDL download ~4 GB, raw data ~2 GB, scenario CSVs + ~2 GB, database ~2 GB) +- **RAM**: 2+ GB per subproblem during solve (CBC); less with commercial + solvers +- **Internet access** for steps 1 and 3 (data downloads) + +## Step-by-Step Commands + +All commands should be run from the GridPath repository root directory unless +otherwise noted. + +--- + +### Step 1: Download PUDL Data + +```bash +gridpath_get_pudl_data +``` + +| | | +|---|---| +| **Inputs** | Internet connection; Zenodo record IDs (defaults built in) | +| **Outputs** | `./pudl_download/pudl.sqlite` (~3.5 GB) | +| | `./pudl_download/out_gridpathratoolkit__hourly_available_capacity_factor.parquet` | +| | `./pudl_download/core_eia930__hourly_interchange.parquet` | +| **Notes** | Downloads from Zenodo. Use `--pudl_download_directory` to change location. Can skip individual downloads with `--skip_pudl_sqlite_download`, `--skip_ra_toolkit_profiles_download`, `--skip_eia930_hourly_interchange_download`. | + +**What this provides:** +- EIA-860 generator inventory (capacity, fuel type, location, status) +- EIA-930 hourly interchange between balancing authorities +- EIA AEO fuel price forecasts +- RA Toolkit wind/solar capacity factor profiles (as Parquet) + +--- + +### Step 2: Extract PUDL Data to Raw CSVs + +```bash +gridpath_pudl_to_gridpath_raw +``` + +| | | +|---|---| +| **Inputs** | `./pudl_download/pudl.sqlite` | +| | `./pudl_download/out_gridpathratoolkit__hourly_available_capacity_factor.parquet` | +| | `./pudl_download/core_eia930__hourly_interchange.parquet` | +| **Outputs** | `./raw_data/pudl_eia860_generators.csv` | +| | `./raw_data/pudl_eiaaeo_fuel_prices.csv` | +| | `./raw_data/pudl_ra_toolkit_var_profiles.csv` | +| | `./raw_data/pudl_eia930_hourly_interchange.csv` | +| **Notes** | Queries pudl.sqlite and converts Parquet files to CSV. Default EIA-860 report date is 2024-01-01. Use `--eia860_report_date` to change. Will prompt before overwriting existing files. | + +--- + +### Step 3: Download RA Toolkit Load and Hydro Data + +```bash +gridpath_get_ra_toolkit_data_raw +``` + +| | | +|---|---| +| **Inputs** | Internet connection (Google Drive) | +| **Outputs** | `./raw_data/ra_toolkit_load.csv` (~5.3 MB) | +| | `./raw_data/ra_toolkit_hydro.csv` (~435 KB) | +| **Notes** | These two datasets are not available through PUDL. They were created by the GridLab RA Toolkit study team. | + +**What these provide:** +- **Load**: Projected 2026 hourly load profiles for WECC balancing areas across + weather years 2006-2020 (forward-projected, not historical actuals) +- **Hydro**: Monthly hydro energy, Pmin, and Pmax as power fractions for WECC + BA-aggregated hydro projects, years 2001-2020 + +--- + +### Step 4: Run the Data Toolkit + +```bash +cd db +gridpath_run_data_toolkit --settings_csv ../data_toolkit/ra_toolkit_e2e_settings_sample.csv +``` + +| | | +|---|---| +| **Inputs** | `ra_toolkit_e2e_settings_sample.csv` (settings file) | +| | `./raw_data/` (6 data files from steps 2-3) | +| | `csvs_test_examples/raw_data_ra_toolkit_e2e/` (14 user-defined config files + `files_to_import.csv`) | +| **Outputs** | `./ra_toolkit_e2e.db` (intermediate data toolkit database) | +| | `./csvs_ra_toolkit_e2e/` (691 CSV files organized by subscenario) | +| **Notes** | This is the longest step. Runs ~26 sub-steps sequentially. Variable generation profile creation is parallelizable (`n_parallel_projects` setting). To run a single sub-step: `gridpath_run_data_toolkit --settings_csv ... --single_step `. | + +See [Data Toolkit Sub-Steps](#data-toolkit-sub-steps) below for the full list. + +--- + +### Step 5: Create the Scenario Database + +```bash +gridpath_create_database --database ./ra_toolkit_e2e.db +``` + +| | | +|---|---| +| **Inputs** | Database schema (built into GridPath) | +| **Outputs** | `./ra_toolkit_e2e.db` (empty database with schema) | +| **Notes** | Creates a fresh SQLite database with all GridPath tables. This is the *scenario* database (distinct from the data toolkit's intermediate database). | + +--- + +### Step 6: Load CSVs into the Database + +```bash +gridpath_load_csvs --database ./ra_toolkit_e2e.db --csv_location ./csvs_ra_toolkit_e2e +``` + +| | | +|---|---| +| **Inputs** | `./ra_toolkit_e2e.db` (empty database from step 5) | +| | `./csvs_ra_toolkit_e2e/` (691 CSV files from step 4) | +| | `./csvs_ra_toolkit_e2e/csv_structure.csv` (defines import mapping) | +| **Outputs** | `./ra_toolkit_e2e.db` (populated with all subscenario data) | +| **Notes** | Loads all temporal, project, transmission, load, and fuel data into the database. The `csv_structure.csv` file controls which CSVs map to which database tables. | + +--- + +### Step 7: Load Scenarios + +```bash +gridpath_load_scenarios --database ./ra_toolkit_e2e.db --csv_path ./csvs_ra_toolkit_e2e/scenarios.csv +``` + +| | | +|---|---| +| **Inputs** | `./ra_toolkit_e2e.db` (populated database from step 6) | +| | `./csvs_ra_toolkit_e2e/scenarios.csv` | +| **Outputs** | Two scenarios registered in the `scenarios` table | +| **Notes** | `scenarios.csv` defines which subscenario IDs to combine for each scenario. This step is separate from `gridpath_load_csvs` and must be run after it. | + +**Scenarios created:** + +| Scenario | Temporal ID | Description | +|---|---|---| +| `ra_toolkit_e2e_monte_carlo` | 17 | Stochastic weather draws | +| `ra_toolkit_e2e_sync` | 26 | Synchronized 28-subproblem run | + +--- + +### Step 8: Run End-to-End + +```bash +gridpath_run_e2e --database ./ra_toolkit_e2e.db --scenario ra_toolkit_e2e_sync --solver cbc +``` + +| | | +|---|---| +| **Inputs** | `./ra_toolkit_e2e.db` (database with scenarios loaded) | +| **Outputs** | `./scenarios/ra_toolkit_e2e_sync/` (results directory) | +| | Results imported back into `ra_toolkit_e2e.db` | +| **Notes** | Runs four phases: get_inputs, run_scenario, import_results, process_results. Each subproblem takes ~15-20 minutes with CBC (model build + solve). 28 subproblems total. Use `--solver gurobi` or `--solver cplex` for significantly faster solves. | + +**E2E phases:** +1. **get_inputs** — extracts scenario inputs from the database into per-subproblem CSV directories +2. **run_scenario** — builds and solves the Pyomo optimization model for each subproblem +3. **import_results** — loads solution values back into the database +4. **process_results** — computes summary statistics (LOLE, LOLH, EUE) + +--- + +## Required Files Inventory + +Before running step 4 (data toolkit), the following files must be in place. + +### PUDL-Derived Files (from steps 1-2) + +Located in `./raw_data/`: + +| File | Source | Database Table | +|---|---|---| +| `pudl_eia860_generators.csv` | EIA-860 via pudl.sqlite | `raw_data_eia860_generators` | +| `pudl_eiaaeo_fuel_prices.csv` | EIA AEO via pudl.sqlite | `raw_data_eiaaeo_fuel_prices` | +| `pudl_ra_toolkit_var_profiles.csv` | RA Toolkit Parquet via PUDL | `raw_data_project_variable_profiles` | +| `pudl_eia930_hourly_interchange.csv` | EIA-930 Parquet via PUDL | `raw_data_eia930_hourly_interchange` | + +### RA Toolkit Files (from step 3) + +Located in `./raw_data/`: + +| File | Source | Database Table | +|---|---|---| +| `ra_toolkit_load.csv` | GridLab RA Toolkit (Google Drive) | `raw_data_system_load` | +| `ra_toolkit_hydro.csv` | GridLab RA Toolkit (Google Drive) | `raw_data_project_hydro_opchars_by_year_month` | + +### User-Defined Configuration Files + +Located in `db/csvs_test_examples/raw_data_ra_toolkit_e2e/`: + +These files are included in the GridPath repository and define how raw data +maps to GridPath's modeling framework. + +| File | Purpose | +|---|---| +| `files_to_import.csv` | Manifest linking all raw data files to database tables | +| `scenarios.csv` | Scenario definitions (subscenario ID combinations) — copied to output directory for `gridpath_load_scenarios` | +| `geographies/user_defined_baa_key.csv` | Balancing area mapping and naming | +| `project/user_defined_eia_gridpath_key.csv` | EIA prime mover/fuel to GridPath operational type mapping | +| `project/user_defined_heat_rate_curve.csv` | Generic heat rate curves by technology | +| `project/var_profiles/user_defined_var_project_units.csv` | Variable generation project unit definitions | +| `project/hydro/user_defined_hydro_years.csv` | Hydro year definitions for iteration draws | +| `project/hydro/user_defined_bt_horizons.csv` | Balancing type horizon definitions (day, week, month, year) | +| `load/user_defined_load_zone_units.csv` | Load zone unit names and mappings | +| `fuels/user_defined_generic_fuel_intensities.csv` | Default fuel emission intensities | +| `fuels/user_defined_eiaaeo_region_key.csv` | EIA AEO region to GridPath fuel mapping | +| `availability/user_defined_unit_availability_params.csv` | Forced outage rates and MTTR by technology | +| `availability/user_defined_weather_derates.csv` | Temperature-dependent capacity derates | +| `weather/user_defined_data_availability.csv` | Which weather years have data for each profile type | +| `weather/user_defined_monte_carlo_timeseries.csv` | Monte Carlo draw configuration | +| `weather/user_defined_monte_carlo_weather_bins.csv` | Weather bin definitions for stochastic draws | +| `temporal/temporal_scenarios.csv` | Temporal scenario definitions (base CSVs, iterations) | +| `temporal/iterations/iterations_sync_full.csv` | 28-subproblem iteration definitions (14 weather × 2 hydro years) | +| `temporal/base_csvs/ra_toolkit_full/` | Base temporal CSVs with day + month horizons for the full sync scenario | + +--- + +## Data Toolkit Sub-Steps + +The data toolkit (`gridpath_run_data_toolkit`) executes the following sub-steps +in order, as configured in `ra_toolkit_e2e_settings_sample.csv`: + +| Step | Sub-Step | What It Produces | +|---|---|---| +| **Database** | `create_database` | Intermediate data toolkit database (`ra_toolkit_e2e.db`) | +| | `load_raw_data` | Loads all files from `files_to_import.csv` into the database | +| **Load** | `eia930_load_zone_input_csvs` | Load zone definitions with penalty costs | +| | `create_sync_load_input_csvs` | Synchronous hourly load profiles by zone | +| | `create_monte_carlo_load_input_csvs` | Stochastic load profiles | +| **Weather** | `create_monte_carlo_weather_draws` | Weather year draws for Monte Carlo iterations | +| | `create_temporal_scenarios` | Temporal scenario CSVs (timepoints, horizons, iterations) | +| **Project portfolio** | `eia860_to_project_portfolio_input_csvs` | Project list with capacity types | +| | `eia860_to_project_load_zone_input_csvs` | Project-to-load-zone assignments | +| | `eia860_to_project_specified_capacity_input_csvs` | Specified capacity by project and period | +| | `eia860_to_project_fixed_cost_input_csvs` | Fixed O&M costs by project | +| **Project opchar** | `eia860_to_project_opchar_input_csvs` | Operational characteristics (min stable level, ramp rates, etc.) | +| | `eia860_to_project_fuel_input_csvs` | Fuel type assignments | +| | `eia860_to_project_heat_rate_input_csvs` | Heat rate curves | +| **Variable gen** | `create_sync_var_gen_input_csvs` | Synchronous wind/solar profiles (by weather year) | +| | `create_monte_carlo_var_gen_input_csvs` | Stochastic wind/solar profiles | +| | `create_sync_gen_weather_derate_input_csvs` | Synchronous temperature derates | +| | `create_monte_carlo_gen_weather_derate_input_csvs` | Stochastic temperature derates | +| **Availability** | `eia860_to_project_availability_input_csvs` | Base availability parameters | +| | `create_availability_iteration_input_csvs` | Monte Carlo unit outage draws | +| **Hydro** | `create_hydro_iteration_input_csvs` | Monthly hydro energy budgets (min/avg/max power fractions) | +| **Transmission** | `eia930_to_transmission_portfolio_input_csvs` | Transmission line inventory | +| | `eia930_to_transmission_load_zone_input_csvs` | Transmission zone connections | +| | `eia930_to_transmission_specified_capacity_input_csvs` | Line transfer capacities | +| | `eia930_to_transmission_availability_input_csvs` | Line availability | +| | `eia930_to_transmission_opchar_input_csvs` | Line operational characteristics | +| **Fuels** | `eiaaeo_to_fuel_chars_input_csvs` | Fuel characteristics and emission rates | +| | `eiaaeo_fuel_price_input_csvs` | Fuel price forecasts | + +--- + +## Key Configuration Files + +### `data_toolkit/ra_toolkit_e2e_settings_sample.csv` + +The master settings file that controls the data toolkit. Each row specifies a +script name, a setting name, and its value. Format: + +``` +script,setting,value,script_true_false_arg,reverse_default_behavior +``` + +Key settings include database paths, output directories, scenario IDs and +names, parallelism (`n_parallel_projects`), and the `hydro_balancing_type` +parameter (`month` for this experiment). + +### `db/csvs_test_examples/raw_data_ra_toolkit_e2e/files_to_import.csv` + +The manifest file that bridges external data sources with user-defined +configuration. Each row maps a CSV file to a database table: + +``` +import,filename,table +1,../../../raw_data/pudl_eia860_generators.csv,raw_data_eia860_generators +1,./project/user_defined_eia_gridpath_key.csv,user_defined_eia_gridpath_key +... +``` + +Files prefixed with `../../../raw_data/` are PUDL-derived or RA Toolkit +downloads. Files prefixed with `./` are user-defined configurations included in +the repository. + +### `db/csvs_ra_toolkit_e2e/scenarios.csv` + +Defines which subscenario IDs to combine for each named scenario. The file uses +a transposed format where each column after the first is a scenario: + +``` +optional_feature_or_subscenarios,ra_toolkit_e2e_monte_carlo,ra_toolkit_e2e_sync +temporal_scenario_id,17,26 +load_scenario_id,6,6 +project_portfolio_scenario_id,23,23 +... +``` + +--- + +## Experiment Configuration + +The `ra_toolkit_e2e_sync` scenario is configured as follows: + +- **Study year**: 2026 +- **Temporal resolution**: 8,760 hourly timepoints per subproblem +- **Subproblems**: 28 total + - 14 weather years (2007-2020) x 2 hydro years (2015 driest, 2019 wettest) + - Each subproblem has a unique availability iteration (Monte Carlo outage + draw) + - Weather year 2006 is excluded due to missing wind profile data +- **Horizons**: 365 day horizons + 12 month horizons (both circular) +- **Hydro balancing**: Monthly (hydro energy budgets enforced per calendar + month, not per day) +- **Projects**: ~249 total (thermal, hydro, wind, solar, storage) aggregated + to the balancing authority level +- **Transmission**: Inter-BA transfer lines with specified capacities +- **Load zones**: WECC balancing authorities + +### Reliability Metrics + +After all 28 subproblems solve, GridPath computes: + +- **LOLE** (Loss of Load Expectation) — expected days per year with any + unserved energy +- **LOLH** (Loss of Load Hours) — expected hours per year with unserved energy +- **EUE** (Expected Unserved Energy) — expected MWh per year of unserved load +- **LOLP** (Loss of Load Probability) — fraction of subproblems with any + unserved energy From 5cd6d38c355d8831dfd7189357e2e0618e0fb53c Mon Sep 17 00:00:00 2001 From: "Campbell, Allison M" Date: Fri, 24 Apr 2026 09:25:44 -0700 Subject: [PATCH 2/3] Fix CI: COALESCE agg_project with gridpath_technology for NULL project names AGG_PROJECT_NAME_STR now falls back to gridpath_technology when agg_project is NULL, fixing a DuckDB struct type mismatch in the open_data test (test_data_toolkit_open_data). Technologies without agg_project (e.g. BA, CT) now get proper aggregated names like Batteries_Zone1 instead of NULL. Co-Authored-By: Claude Opus 4.6 (1M context) --- data_toolkit/project/project_data_filters_common.py | 2 +- .../project/availability/3_open_data.csv | 8 ++++---- .../project/capacity/specified_capacity/8_open_data.csv | 8 ++++---- .../project/capacity/specified_fixed_cost/2_open_data.csv | 8 ++++---- db/csvs_test_examples/project/load_zones/2_open_data.csv | 8 ++++---- db/csvs_test_examples/project/opchar/38_open_data.csv | 8 ++++---- .../project/opchar/fuels/2__Gas-1-open_data.csv | 4 ++-- .../project/opchar/fuels/8__Gas-1-open_data.csv | 4 ++-- .../project/opchar/heat_rate_curves/2__Gas-1-generic.csv | 6 +++--- .../project/opchar/heat_rate_curves/8__Gas-1-generic.csv | 6 +++--- db/csvs_test_examples/project/portfolios/31_open_data.csv | 8 ++++---- 11 files changed, 35 insertions(+), 35 deletions(-) diff --git a/data_toolkit/project/project_data_filters_common.py b/data_toolkit/project/project_data_filters_common.py index 7929763e04..b1bb727ac7 100644 --- a/data_toolkit/project/project_data_filters_common.py +++ b/data_toolkit/project/project_data_filters_common.py @@ -44,5 +44,5 @@ def get_eia860_sql_filter_string(study_year, region): DISAGG_PROJECT_NAME_STR = ( "plant_id_eia || '__' || REPLACE(REPLACE(generator_id, ' ', '_'), '-', '_')" ) -AGG_PROJECT_NAME_STR = "DISTINCT agg_project || '_' || balancing_authority_code_eia" +AGG_PROJECT_NAME_STR = "DISTINCT COALESCE(agg_project, gridpath_technology) || '_' || balancing_authority_code_eia" AGG_FILTER_STR = "agg_project IS NOT NULL" diff --git a/db/csvs_test_examples/project/availability/3_open_data.csv b/db/csvs_test_examples/project/availability/3_open_data.csv index ee7ec318ff..6253e5ce13 100644 --- a/db/csvs_test_examples/project/availability/3_open_data.csv +++ b/db/csvs_test_examples/project/availability/3_open_data.csv @@ -1,8 +1,8 @@ project,availability_type,exogenous_availability_independent_scenario_id,exogenous_availability_weather_scenario_id,exogenous_availability_independent_bt_hrz_scenario_id,exogenous_availability_weather_bt_hrz_scenario_id,endogenous_availability_scenario_id -1__Batteries,exogenous,,,,, -2__Gas,exogenous,,,,, -7__Batteries,exogenous,,,,, -8__Gas,exogenous,,,,, +Batteries_Zone1,exogenous,,,,, +Batteries_Zone2,exogenous,,,,, +Gas_Zone1,exogenous,,,,, +Gas_Zone2,exogenous,,,,, Hydro_Zone1,exogenous,,,,, Hydro_Zone2,exogenous,,,,, Solar_Zone1,exogenous,,,,, diff --git a/db/csvs_test_examples/project/capacity/specified_capacity/8_open_data.csv b/db/csvs_test_examples/project/capacity/specified_capacity/8_open_data.csv index 45adfd145b..fe66df39f0 100644 --- a/db/csvs_test_examples/project/capacity/specified_capacity/8_open_data.csv +++ b/db/csvs_test_examples/project/capacity/specified_capacity/8_open_data.csv @@ -1,8 +1,8 @@ project,period,specified_capacity_mw,specified_energy_mwh,shaping_capacity_mw,hyb_gen_specified_capacity_mw,hyb_stor_specified_capacity_mw,specified_stor_capacity_mwh,fuel_production_capacity_fuelunitperhour,fuel_release_capacity_fuelunitperhour,fuel_storage_capacity_fuelunit -1__Batteries,2026,1000.0,,,,,4000.0,,, -2__Gas,2026,7500.0,,,,,,,, -7__Batteries,2026,750.0,,,,,3000.0,,, -8__Gas,2026,5625.0,,,,,,,, +Batteries_Zone1,2026,1000.0,,,,,4000.0,,, +Batteries_Zone2,2026,750.0,,,,,3000.0,,, +Gas_Zone1,2026,7500.0,,,,,,,, +Gas_Zone2,2026,5625.0,,,,,,,, Hydro_Zone1,2026,2000.0,,,,,,,, Hydro_Zone2,2026,1500.0,,,,,,,, Solar_Zone1,2026,5000.0,,,,,,,, diff --git a/db/csvs_test_examples/project/capacity/specified_fixed_cost/2_open_data.csv b/db/csvs_test_examples/project/capacity/specified_fixed_cost/2_open_data.csv index 373b37b445..cd21968e86 100644 --- a/db/csvs_test_examples/project/capacity/specified_fixed_cost/2_open_data.csv +++ b/db/csvs_test_examples/project/capacity/specified_fixed_cost/2_open_data.csv @@ -1,8 +1,8 @@ project,period,fixed_cost_per_mw_yr,fixed_cost_per_energy_mwh_yr,fixed_cost_per_shaping_mw_yr,hyb_gen_fixed_cost_per_mw_yr,hyb_stor_fixed_cost_per_mw_yr,fixed_cost_per_stor_mwh_yr,fuel_production_capacity_fixed_cost_per_fuelunitperhour_yr,fuel_release_capacity_fixed_cost_per_fuelunitperhour_yr,fuel_storage_capacity_fixed_cost_per_fuelunit_yr -1__Batteries,2026,0,0,0,,,0.0,,, -2__Gas,2026,0,0,0,,,,,, -7__Batteries,2026,0,0,0,,,0.0,,, -8__Gas,2026,0,0,0,,,,,, +Batteries_Zone1,2026,0,0,0,,,0.0,,, +Batteries_Zone2,2026,0,0,0,,,0.0,,, +Gas_Zone1,2026,0,0,0,,,,,, +Gas_Zone2,2026,0,0,0,,,,,, Hydro_Zone1,2026,0,0,0,,,,,, Hydro_Zone2,2026,0,0,0,,,,,, Solar_Zone1,2026,0,0,0,,,,,, diff --git a/db/csvs_test_examples/project/load_zones/2_open_data.csv b/db/csvs_test_examples/project/load_zones/2_open_data.csv index 333392ca36..c49ed3eb26 100644 --- a/db/csvs_test_examples/project/load_zones/2_open_data.csv +++ b/db/csvs_test_examples/project/load_zones/2_open_data.csv @@ -1,8 +1,8 @@ project,load_zone -1__Batteries,Zone1 -2__Gas,Zone1 -7__Batteries,Zone2 -8__Gas,Zone2 +Batteries_Zone1,Zone1 +Batteries_Zone2,Zone2 +Gas_Zone1,Zone1 +Gas_Zone2,Zone2 Hydro_Zone1,Zone1 Hydro_Zone2,Zone2 Solar_Zone1,Zone1 diff --git a/db/csvs_test_examples/project/opchar/38_open_data.csv b/db/csvs_test_examples/project/opchar/38_open_data.csv index e128dac8a7..155b614ef1 100644 --- a/db/csvs_test_examples/project/opchar/38_open_data.csv +++ b/db/csvs_test_examples/project/opchar/38_open_data.csv @@ -1,8 +1,8 @@ project,technology,operational_type,balancing_type_project,load_modifier_flag,distribution_loss_adjustment_factor,variable_om_cost_per_mwh,variable_om_cost_by_period_scenario_id,variable_om_cost_by_timepoint_scenario_id,project_fuel_scenario_id,heat_rate_curves_scenario_id,variable_om_curves_scenario_id,startup_chars_scenario_id,min_stable_level_fraction,unit_size_mw,startup_cost_per_mw,shutdown_cost_per_mw,startup_fuel_mmbtu_per_mw,startup_plus_ramp_up_rate,shutdown_plus_ramp_down_rate,ramp_up_when_on_rate,ramp_up_when_on_rate_monthly_adjustment_scenario_id,ramp_down_when_on_rate,ramp_down_when_on_rate_monthly_adjustment_scenario_id,ramp_up_violation_penalty,ramp_down_violation_penalty,bt_hrz_ramp_up_rate_limit_scenario_id,bt_hrz_ramp_down_rate_limit_scenario_id,total_ramp_up_limit_scenario_id,total_ramp_down_limit_scenario_id,ramp_tuning_cost_per_mw,min_up_time_hours,min_up_time_violation_penalty,min_down_time_hours,min_down_time_violation_penalty,cycle_selection_scenario_id,supplemental_firing_scenario_id,allow_startup_shutdown_power,storage_efficiency,charging_efficiency,discharging_efficiency,charging_capacity_multiplier,discharging_capacity_multiplier,soc_penalty_cost_per_energyunit,soc_last_tmp_penalty_cost_per_energyunit,max_losses_in_hrz_frac_stor_energy_capacity,flex_load_static_profile_scenario_id,minimum_duration_hours,maximum_duration_hours,aux_consumption_frac_capacity,aux_consumption_frac_power,last_commitment_stage,n_startup_limit_scenario_id,variable_generator_profile_scenario_id,cap_factor_default,curtailment_cost_scenario_id,hydro_operational_chars_scenario_id,energy_profile_scenario_id,energy_hrz_shaping_scenario_id,energy_slice_hrz_shaping_scenario_id,base_net_requirement_scenario_id,peak_deviation_demand_charge_scenario_id,lf_reserves_up_derate,lf_reserves_down_derate,regulation_up_derate,regulation_down_derate,frequency_response_derate,spinning_reserves_derate,inertia_reserves_derate,lf_reserves_up_ramp_rate,lf_reserves_down_ramp_rate,regulation_up_ramp_rate,regulation_down_ramp_rate,frequency_response_ramp_rate,spinning_reserves_ramp_rate,inertia_constant_sec,powerunithour_per_fuelunit,cap_factor_limits_scenario_id,partial_availability_threshold,stor_exog_state_of_charge_scenario_id,nonfuel_carbon_emissions_per_mwh,powerhouse,generator_efficiency,linked_load_component,load_modifier_profile_scenario_id,load_component_shift_bounds_scenario_id,efficiency_factor,energy_requirement_factor,losses_factor_in_energy_target,losses_factor_curtailment,upward_reserves_to_soc_depletion -1__Batteries,Batteries,stor,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,0.92,0.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -2__Gas,Gas,gen_commit_lin,day,,,0.0,,,1.0,1.0,,,0.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -7__Batteries,Batteries,stor,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,0.92,0.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -8__Gas,Gas,gen_commit_lin,day,,,0.0,,,1.0,1.0,,,0.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Batteries_Zone1,Batteries,stor,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,0.92,0.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Batteries_Zone2,Batteries,stor,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,0.92,0.92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gas_Zone1,Gas,gen_commit_lin,day,,,0.0,,,1.0,1.0,,,0.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gas_Zone2,Gas,gen_commit_lin,day,,,0.0,,,1.0,1.0,,,0.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Hydro_Zone1,Hydro,gen_hydro_must_take,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Hydro_Zone2,Hydro,gen_hydro_must_take,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Solar_Zone1,Solar,gen_var_must_take,day,,,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/db/csvs_test_examples/project/opchar/fuels/2__Gas-1-open_data.csv b/db/csvs_test_examples/project/opchar/fuels/2__Gas-1-open_data.csv index 4c0025c242..9313405960 100644 --- a/db/csvs_test_examples/project/opchar/fuels/2__Gas-1-open_data.csv +++ b/db/csvs_test_examples/project/opchar/fuels/2__Gas-1-open_data.csv @@ -1,2 +1,2 @@ -fuel,min_fraction_in_fuel_blend,max_fraction_in_fuel_blend -Gas_Fuel_Region1,, +fuel,min_fraction_in_fuel_blend,max_fraction_in_fuel_blend +Gas_Fuel_Region1,, diff --git a/db/csvs_test_examples/project/opchar/fuels/8__Gas-1-open_data.csv b/db/csvs_test_examples/project/opchar/fuels/8__Gas-1-open_data.csv index 163d1bf527..b781b3ec79 100644 --- a/db/csvs_test_examples/project/opchar/fuels/8__Gas-1-open_data.csv +++ b/db/csvs_test_examples/project/opchar/fuels/8__Gas-1-open_data.csv @@ -1,2 +1,2 @@ -fuel,min_fraction_in_fuel_blend,max_fraction_in_fuel_blend -Gas_Fuel_Region2,, +fuel,min_fraction_in_fuel_blend,max_fraction_in_fuel_blend +Gas_Fuel_Region2,, diff --git a/db/csvs_test_examples/project/opchar/heat_rate_curves/2__Gas-1-generic.csv b/db/csvs_test_examples/project/opchar/heat_rate_curves/2__Gas-1-generic.csv index ba07eddf8a..ba7bcf2395 100644 --- a/db/csvs_test_examples/project/opchar/heat_rate_curves/2__Gas-1-generic.csv +++ b/db/csvs_test_examples/project/opchar/heat_rate_curves/2__Gas-1-generic.csv @@ -1,3 +1,3 @@ -period,load_point_fraction,average_heat_rate_mmbtu_per_mwh -0,0.5,9.1152 -0,1,7.596 +period,load_point_fraction,average_heat_rate_mmbtu_per_mwh +0,0.5,9.1152 +0,1,7.596 diff --git a/db/csvs_test_examples/project/opchar/heat_rate_curves/8__Gas-1-generic.csv b/db/csvs_test_examples/project/opchar/heat_rate_curves/8__Gas-1-generic.csv index ba07eddf8a..ba7bcf2395 100644 --- a/db/csvs_test_examples/project/opchar/heat_rate_curves/8__Gas-1-generic.csv +++ b/db/csvs_test_examples/project/opchar/heat_rate_curves/8__Gas-1-generic.csv @@ -1,3 +1,3 @@ -period,load_point_fraction,average_heat_rate_mmbtu_per_mwh -0,0.5,9.1152 -0,1,7.596 +period,load_point_fraction,average_heat_rate_mmbtu_per_mwh +0,0.5,9.1152 +0,1,7.596 diff --git a/db/csvs_test_examples/project/portfolios/31_open_data.csv b/db/csvs_test_examples/project/portfolios/31_open_data.csv index 65e37bf024..8ef1776e5a 100644 --- a/db/csvs_test_examples/project/portfolios/31_open_data.csv +++ b/db/csvs_test_examples/project/portfolios/31_open_data.csv @@ -1,8 +1,8 @@ project,specified,new_build,capacity_type -1__Batteries,,,stor_spec -2__Gas,,,gen_spec -7__Batteries,,,stor_spec -8__Gas,,,gen_spec +Batteries_Zone1,,,stor_spec +Batteries_Zone2,,,stor_spec +Gas_Zone1,,,gen_spec +Gas_Zone2,,,gen_spec Hydro_Zone1,,,gen_spec Hydro_Zone2,,,gen_spec Solar_Zone1,,,gen_spec From 40decbe51cc8161fca63a3509d5bbe1338f87ed9 Mon Sep 17 00:00:00 2001 From: "Campbell, Allison M" Date: Fri, 24 Apr 2026 09:40:25 -0700 Subject: [PATCH 3/3] Add manual_adjustments settings to e2e sample Adds battery_duration (4h) and pumped_storage_duration (12h) defaults so storage projects without EIA-860 energy capacity data get filled in. Includes empty copy files CSV required by the manual_adjustments step. Co-Authored-By: Claude Opus 4.6 (1M context) --- data_toolkit/ra_toolkit_e2e_settings_sample.csv | 9 +++++++++ .../user_defined_manual_adjustments_copy_files.csv | 1 + 2 files changed, 10 insertions(+) create mode 100644 db/csvs_test_examples/raw_data_ra_toolkit_e2e/user_defined_manual_adjustments_copy_files.csv diff --git a/data_toolkit/ra_toolkit_e2e_settings_sample.csv b/data_toolkit/ra_toolkit_e2e_settings_sample.csv index cd0ec11982..fa6c8b6770 100644 --- a/data_toolkit/ra_toolkit_e2e_settings_sample.csv +++ b/data_toolkit/ra_toolkit_e2e_settings_sample.csv @@ -78,6 +78,15 @@ eia930_to_transmission_opchar_input_csvs,database,./ra_toolkit_e2e.db,, eia930_to_transmission_opchar_input_csvs,output_directory,./db/csvs_ra_toolkit_e2e/transmission/opchar,, eia930_to_transmission_opchar_input_csvs,transmission_operational_chars_scenario_id,1,, eia930_to_transmission_opchar_input_csvs,transmission_operational_chars_scenario_name,base,, +manual_adjustments,database,./ra_toolkit_e2e.db,, +manual_adjustments,files_to_copy_csv,./db/csvs_test_examples/raw_data_ra_toolkit_e2e/user_defined_manual_adjustments_copy_files.csv,, +manual_adjustments,capacity_specified_directory,./db/csvs_ra_toolkit_e2e/project/capacity/specified_capacity,, +manual_adjustments,project_specified_capacity_scenario_id,5,, +manual_adjustments,project_specified_capacity_scenario_name,ra_toolkit_e2e,, +manual_adjustments,study_year,2026,, +manual_adjustments,region,WECC,, +manual_adjustments,battery_duration,4,, +manual_adjustments,pumped_storage_duration,12,, create_monte_carlo_weather_draws,database,./ra_toolkit_e2e.db,, create_monte_carlo_weather_draws,weather_draws_seed,0,, create_monte_carlo_weather_draws,n_iterations,2,, diff --git a/db/csvs_test_examples/raw_data_ra_toolkit_e2e/user_defined_manual_adjustments_copy_files.csv b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/user_defined_manual_adjustments_copy_files.csv new file mode 100644 index 0000000000..71264c4d6d --- /dev/null +++ b/db/csvs_test_examples/raw_data_ra_toolkit_e2e/user_defined_manual_adjustments_copy_files.csv @@ -0,0 +1 @@ +new_file_directory,new_project,new_project_scenario_id,new_project_scenario_name,file_to_copy_directory,copy_project,copy_project_scenario_id,copy_project_scenario_name